:root {
  --cream: #071b33;
  --white: #fff;
  --ink: #f4f7fb;
  --muted: #9eafc2;
  --line: rgba(255,255,255,.14);
  --green: #67b5df;
  --green-dark: #0c2948;
  --mint: #113658;
  --lime: #65add4;
  --peach: #ca5b62;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Inter, "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header { position: absolute; z-index: 10; top: 0; left: 50%; width: min(calc(100% - 64px), var(--max)); height: 92px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 154px; height: auto; filter: none; }
nav { display: flex; align-items: center; gap: 34px; }
nav a { color: #c4d0dc; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
nav a:hover, nav a:focus-visible { color: var(--green); }
.nav-cta { border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 12px 18px; }
.nav-cta span { margin-left: 8px; color: var(--green); }

.hero { position: relative; min-height: 780px; height: 100svh; overflow: hidden; display: grid; align-items: center; background: linear-gradient(125deg, #071b33 0%, #0a2643 62%, #0e3354 100%); border-bottom: 1px solid var(--line); }
.hero-content { position: relative; z-index: 3; width: min(calc(100% - 64px), var(--max)); margin: 70px auto 0; }
.eyebrow, .section-label { color: var(--green); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 800; }
.eyebrow { margin-bottom: 28px; }
h1 { max-width: 900px; margin-bottom: 30px; font-size: clamp(3.7rem, 7.2vw, 7.2rem); line-height: .93; letter-spacing: -.065em; font-weight: 700; }
h1 em { color: var(--green); font-style: normal; }
.hero-copy { max-width: 590px; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero-actions { margin-top: 40px; display: flex; gap: 30px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 220px; padding: 18px 21px; border-radius: 3px; font-size: .82rem; font-weight: 750; letter-spacing: .03em; }
.button-primary { color: #071b33; background: #eef6fb; box-shadow: 0 12px 34px rgba(0,0,0,.18); transition: background .2s, transform .2s; }
.button-primary:hover, .button-primary:focus-visible { background: var(--green); transform: translateY(-2px); }
.text-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.28); color: #d6e0ea; font-size: .84rem; font-weight: 650; }
.text-link span { margin-left: 12px; color: var(--green); }
.hero-orbit { position: absolute; border: 1px solid rgba(103,181,223,.18); border-radius: 50%; }
.orbit-one { width: 670px; height: 670px; right: -110px; top: 60px; }
.orbit-two { width: 480px; height: 480px; right: -15px; top: 155px; }
.hero-visual { position: absolute; z-index: 2; inset: 92px 0 0 42%; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #071b33 0%, rgba(7,27,51,.8) 11%, rgba(7,27,51,0) 42%), linear-gradient(0deg, #071b33 0%, rgba(7,27,51,0) 25%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center right; }
.hero-visual span { position: absolute; z-index: 2; right: max(32px, calc((100vw - var(--max)) / 2)); bottom: 38px; color: rgba(255,255,255,.62); font-size: .65rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }

.intro, .services, .process, .contact, footer { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.intro { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding: 135px 0; border-bottom: 1px solid var(--line); }
.intro h2, .section-heading h2, .contact h2 { font-size: clamp(2.7rem, 5.2vw, 5rem); line-height: .98; letter-spacing: -.05em; }
.intro-copy p { max-width: 680px; margin: 36px 0 0 auto; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }

.services { padding: 130px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { margin: 25px 0 0; }
.heading-copy { color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-card { position: relative; min-height: 410px; padding: 34px; display: flex; flex-direction: column; border-radius: 6px; overflow: hidden; }
.card-oem { color: white; background: var(--green-dark); }
.card-odm { color: white; background: var(--mint); }
.service-card::after { content: ""; position: absolute; width: 270px; height: 270px; right: -80px; top: -90px; border: 1px solid currentColor; border-radius: 50%; opacity: .12; }
.card-number { font-size: .71rem; font-weight: 800; letter-spacing: .16em; opacity: .7; }
.card-title { margin-top: auto; }
.card-title span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .68; }
.service-card h3 { margin: 9px 0 20px; font-size: clamp(3.5rem, 6vw, 5.8rem); line-height: .8; letter-spacing: -.06em; }
.service-card p { max-width: 440px; margin-bottom: 30px; line-height: 1.65; opacity: .78; }
.service-card a { width: fit-content; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 700; }
.service-card a span { margin-left: 12px; }
.distribution-note { margin-top: 22px; padding: 22px 26px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--line); border-radius: 4px; background: rgba(17,54,88,.72); color: var(--muted); font-size: .84rem; line-height: 1.5; }
.distribution-note p { margin: 0; }
.distribution-note strong { color: var(--ink); }
.note-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(47,107,82,.1); }

.process { padding: 115px 0 125px; border-top: 1px solid var(--line); }
.process-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-grid > div { padding: 34px 35px 12px 0; border-right: 1px solid var(--line); }
.process-grid > div + div { padding-left: 35px; }
.process-grid > div:last-child { border-right: 0; }
.process-grid span { color: var(--green); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.process-grid h3 { margin: 55px 0 16px; font-size: 1.35rem; letter-spacing: -.025em; }
.process-grid p { max-width: 300px; color: var(--muted); line-height: 1.65; }

.contact { padding: 120px 0; border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: 1.45fr 1fr; gap: 80px; align-items: end; }
.contact h2 { margin: 34px 0 28px; }
.contact-inner > div > p { max-width: 560px; color: var(--muted); line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; }
.contact-links a { display: flex; justify-content: space-between; padding: 22px 4px; border-bottom: 1px solid var(--line); font-size: clamp(1rem, 2vw, 1.18rem); transition: color .2s, padding .2s; }
.contact-links a:first-child { border-top: 1px solid var(--line); }
.contact-links a span { color: var(--green); }
.contact-links a:hover { color: var(--green); padding-left: 9px; }
.contact-links address { margin-top: 25px; color: var(--muted); font-size: .88rem; font-style: normal; line-height: 1.7; }

footer { max-width: none; width: 100%; padding: 38px max(32px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: var(--green-dark); color: rgba(255,255,255,.58); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
footer p { margin: 0; }
footer p:last-child { text-align: right; }
footer .brand img { width: 126px; filter: none; }

@media (max-width: 950px) {
  .hero-visual { left: 36%; opacity: .72; }
  .hero-content { position: relative; z-index: 4; }
}

@media (max-width: 800px) {
  .site-header, .hero-content, .intro, .services, .process, .contact { width: min(calc(100% - 40px), var(--max)); }
  .site-header { height: 76px; }
  .brand img { width: 130px; }
  nav { gap: 16px; }
  nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 720px; }
  .hero-content { margin-top: 45px; }
  h1 { font-size: clamp(3rem, 13vw, 5.2rem); }
  .hero-copy { max-width: 90%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-visual { inset: 76px -260px 0 20%; opacity: .34; }
  .intro { grid-template-columns: 1fr; padding: 90px 0; }
  .intro-copy p { margin-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .services { padding: 90px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .process { padding: 90px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div, .process-grid > div + div { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid > div:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 28px; }
  .contact { padding: 90px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { grid-template-columns: 1fr 1fr; gap: 24px; padding-inline: 20px; }
  footer p:nth-child(2) { display: none; }
}

@media (max-width: 430px) {
  h1 { font-size: 2.85rem; }
  .button { width: 100%; }
  .distribution-note { align-items: flex-start; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
