546 lines
7.9 KiB
CSS
546 lines
7.9 KiB
CSS
:root {
|
|
--bg: #f4f6f8;
|
|
--surface: #ffffff;
|
|
--ink: #101722;
|
|
--muted: #566270;
|
|
--line: #d9dee6;
|
|
--navy: #082a60;
|
|
--navy-2: #0e3a78;
|
|
--steel: #666d76;
|
|
--cyan: #1e9fb8;
|
|
--orange: #f28c28;
|
|
--radius: 8px;
|
|
--shadow: 0 18px 44px rgba(8, 42, 96, 0.12);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: var(--bg);
|
|
color: var(--ink);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
}
|
|
|
|
.container {
|
|
width: min(1120px, calc(100% - 32px));
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.site-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 20;
|
|
border-bottom: 1px solid rgba(8, 42, 96, 0.12);
|
|
background: rgba(255, 255, 255, 0.96);
|
|
color: var(--ink);
|
|
box-shadow: 0 8px 24px rgba(8, 42, 96, 0.06);
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
|
|
.header-inner {
|
|
display: flex;
|
|
min-height: 78px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 18px;
|
|
}
|
|
|
|
.brand {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.brand-logo {
|
|
width: 286px;
|
|
height: 68px;
|
|
object-fit: cover;
|
|
object-position: center;
|
|
display: block;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1 1 auto;
|
|
gap: 6px;
|
|
}
|
|
|
|
.nav a {
|
|
border-radius: 8px;
|
|
padding: 9px 11px;
|
|
color: var(--muted);
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.nav a:hover {
|
|
background: rgba(8, 42, 96, 0.07);
|
|
color: var(--navy);
|
|
}
|
|
|
|
.nav a[aria-current="page"] {
|
|
background: rgba(8, 42, 96, 0.1);
|
|
color: var(--navy);
|
|
}
|
|
|
|
.header-cta {
|
|
display: inline-flex;
|
|
min-height: 40px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 8px;
|
|
background: var(--navy);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
padding: 0 14px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.header-cta:hover {
|
|
background: var(--navy-2);
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: none;
|
|
min-height: 40px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
color: var(--navy);
|
|
font-weight: 800;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.hero {
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: calc(100vh - 78px);
|
|
display: grid;
|
|
align-items: center;
|
|
color: #fff;
|
|
background:
|
|
linear-gradient(90deg, rgba(6, 24, 52, 0.96), rgba(8, 42, 96, 0.78), rgba(8, 42, 96, 0.58)),
|
|
url("/workbench-signal.svg"),
|
|
linear-gradient(135deg, #07172d, #0b3778);
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 760px;
|
|
padding: 76px 0 118px;
|
|
}
|
|
|
|
.eyebrow {
|
|
color: var(--cyan);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
letter-spacing: 0;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
p {
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 18px;
|
|
font-size: clamp(44px, 7vw, 76px);
|
|
line-height: 0.96;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 14px;
|
|
color: var(--ink);
|
|
font-size: clamp(30px, 4vw, 44px);
|
|
line-height: 1.05;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 8px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.lead {
|
|
max-width: 720px;
|
|
color: var(--muted);
|
|
font-size: 19px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.hero .lead {
|
|
color: rgba(255, 255, 255, 0.82);
|
|
font-size: 21px;
|
|
}
|
|
|
|
.hero-copy {
|
|
max-width: 720px;
|
|
color: rgba(255, 255, 255, 0.78);
|
|
font-size: 17px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.hero-badges {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.hero-badges span {
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.86);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
padding: 7px 10px;
|
|
}
|
|
|
|
.hero-actions,
|
|
.actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-top: 28px;
|
|
}
|
|
|
|
.button {
|
|
display: inline-flex;
|
|
min-height: 44px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
padding: 0 18px;
|
|
background: var(--navy);
|
|
color: #fff;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.button:hover {
|
|
background: var(--navy-2);
|
|
}
|
|
|
|
.button.secondary {
|
|
border-color: rgba(255, 255, 255, 0.36);
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
}
|
|
|
|
.button.light {
|
|
border-color: var(--navy);
|
|
background: #fff;
|
|
color: var(--navy);
|
|
}
|
|
|
|
.button.light:hover {
|
|
background: #eef3f8;
|
|
}
|
|
|
|
.section {
|
|
padding: 82px 0;
|
|
}
|
|
|
|
.section.dark {
|
|
background: var(--navy);
|
|
color: #fff;
|
|
}
|
|
|
|
.section.dark h2,
|
|
.section.dark h3 {
|
|
color: #fff;
|
|
}
|
|
|
|
.section.dark .lead,
|
|
.section.dark p {
|
|
color: rgba(255, 255, 255, 0.72);
|
|
}
|
|
|
|
.section-head {
|
|
max-width: 760px;
|
|
margin-bottom: 34px;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.grid.three {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.grid.two {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.service-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.card {
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius);
|
|
background: var(--surface);
|
|
padding: 24px;
|
|
box-shadow: 0 10px 26px rgba(8, 42, 96, 0.06);
|
|
}
|
|
|
|
.card h3::before {
|
|
display: block;
|
|
width: 34px;
|
|
height: 3px;
|
|
margin-bottom: 14px;
|
|
border-radius: 999px;
|
|
background: var(--orange);
|
|
content: "";
|
|
}
|
|
|
|
.dark .card {
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.card p,
|
|
.list li {
|
|
color: var(--muted);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.dark .card p,
|
|
.dark .list li {
|
|
color: rgba(255, 255, 255, 0.72);
|
|
}
|
|
|
|
.list {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding-left: 19px;
|
|
}
|
|
|
|
.split {
|
|
display: grid;
|
|
grid-template-columns: 1.05fr 0.95fr;
|
|
gap: 34px;
|
|
align-items: start;
|
|
}
|
|
|
|
.panel {
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius);
|
|
background: #fff;
|
|
padding: 28px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.form {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.field {
|
|
display: grid;
|
|
gap: 7px;
|
|
}
|
|
|
|
.field label {
|
|
color: var(--ink);
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.field input,
|
|
.field select,
|
|
.field textarea {
|
|
width: 100%;
|
|
border: 1px solid #cfd8e5;
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
padding: 11px 12px;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.field textarea {
|
|
min-height: 130px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.checkbox {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
color: var(--muted);
|
|
font-size: 14px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.error {
|
|
color: #b42318;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.success {
|
|
border: 1px solid #a6d8bd;
|
|
border-radius: 8px;
|
|
background: #edf9f1;
|
|
padding: 12px;
|
|
color: #15562d;
|
|
}
|
|
|
|
.notice {
|
|
border-left: 4px solid var(--orange);
|
|
background: #fff8ef;
|
|
padding: 14px 16px;
|
|
color: #5a3713;
|
|
}
|
|
|
|
.footer {
|
|
background: #08111f;
|
|
color: rgba(255, 255, 255, 0.76);
|
|
padding: 44px 0;
|
|
}
|
|
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.3fr 1fr 1fr;
|
|
gap: 28px;
|
|
}
|
|
|
|
.footer a {
|
|
color: #fff;
|
|
}
|
|
|
|
.footer-logo {
|
|
display: block;
|
|
width: 220px;
|
|
height: 52px;
|
|
margin-bottom: 14px;
|
|
object-fit: cover;
|
|
object-position: center;
|
|
}
|
|
|
|
.copyright {
|
|
color: rgba(255, 255, 255, 0.58);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.legal {
|
|
max-width: 860px;
|
|
}
|
|
|
|
.legal h2 {
|
|
margin-top: 28px;
|
|
font-size: 26px;
|
|
}
|
|
|
|
@media (max-width: 1080px) and (min-width: 861px) {
|
|
.brand-logo {
|
|
width: 236px;
|
|
height: 56px;
|
|
}
|
|
|
|
.header-inner {
|
|
gap: 12px;
|
|
}
|
|
|
|
.nav a {
|
|
padding: 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.header-cta {
|
|
padding: 0 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 860px) {
|
|
.header-inner {
|
|
min-height: 68px;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.brand {
|
|
min-width: 0;
|
|
}
|
|
|
|
.brand-logo {
|
|
width: 194px;
|
|
height: 46px;
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.header-cta {
|
|
min-height: 38px;
|
|
order: 3;
|
|
width: 100%;
|
|
}
|
|
|
|
.nav {
|
|
display: none;
|
|
order: 4;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
border-top: 1px solid var(--line);
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.nav.is-open {
|
|
display: flex;
|
|
}
|
|
|
|
.nav a {
|
|
padding: 11px 12px;
|
|
}
|
|
|
|
.hero {
|
|
min-height: auto;
|
|
}
|
|
|
|
.hero-content {
|
|
padding: 64px 0 92px;
|
|
}
|
|
|
|
.grid.three,
|
|
.grid.two,
|
|
.service-grid,
|
|
.split,
|
|
.footer-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|