
:root {
  --ink: #111b26;
  --navy: #071b2d;
  --blue: #42a8e8;
  --blue-bright: #65c5f5;
  --paper: #f4f5f2;
  --line: #d8ddd9;
  --muted: #66717a;
  --font-geist-sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-geist-sans), Arial, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--blue); color: #fff; }

.site-header {
  height: 84px; padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between;
  position: absolute; z-index: 20; top: 0; left: 0; width: 100%; color: var(--ink); background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(12,36,55,.1);
}
.brand { display: flex; align-items: center; }
.brand-logo { position: relative; display: block; width: 108px; height: 70px; overflow: hidden; background: transparent; flex: none; }
.brand-logo img { position: absolute; width: 152px; height: auto; max-width: none; left: -22px; top: -25px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); margin-left: auto; margin-right: clamp(28px, 4vw, 64px); }
.desktop-nav a { font-size: 13px; color: rgba(17,27,38,.68); transition: color .2s; }
.desktop-nav a:hover { color: var(--ink); }
.nav-cta { font-size: 12px; font-weight: 650; border: 1px solid rgba(17,27,38,.28); padding: 13px 18px; display: flex; gap: 18px; transition: .2s; }
.nav-cta:hover { background: var(--navy); color: white; }
.mobile-menu { display: none; position: relative; }

.hero {
  min-height: 830px; background: var(--navy); color: #fff; position: relative; padding: 188px clamp(24px, 7vw, 112px) 94px; overflow: hidden;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-glow { position: absolute; width: 670px; height: 670px; border-radius: 50%; right: -100px; top: 110px; background: radial-gradient(circle at 45% 45%, rgba(65,173,232,.26), rgba(18,72,105,.11) 42%, transparent 69%); z-index: -2; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: 2.4px; font: 600 10px var(--font-geist-mono), monospace; display: flex; align-items: center; gap: 10px; }
.eyebrow { color: var(--blue-bright); margin-bottom: 38px; }
.eyebrow span { width: 24px; height: 1px; background: currentColor; }
.hero h1 { font-size: clamp(56px, 7.6vw, 116px); line-height: .9; letter-spacing: -.075em; max-width: 1120px; margin: 0; font-weight: 520; position: relative; z-index: 2; }
.hero h1 em, .process h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--blue-bright); }
.hero-bottom { max-width: 1120px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-top: 58px; align-items: end; position: relative; z-index: 3; }
.hero-bottom > p { font-size: 18px; line-height: 1.6; margin: 0; color: rgba(255,255,255,.72); max-width: 540px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; padding: 18px 21px; min-width: 205px; font-size: 12px; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--navy); }
.text-link { font-size: 12px; font-weight: 650; display: inline-flex; align-items: center; gap: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.text-link.dark { color: var(--ink); border-color: var(--ink); }
.signal-card { position: absolute; width: 190px; height: 116px; border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px); padding: 18px; display: grid; z-index: 1; background: rgba(5,24,39,.45); }
.signal-card i { font: 10px var(--font-geist-mono); color: var(--blue-bright); font-style: normal; }
.signal-card b { font-size: 13px; align-self: end; }
.signal-card span { font-size: 9px; color: rgba(255,255,255,.55); }
.signal-one { right: 9%; top: 24%; transform: rotate(3deg); }
.signal-two { right: 20%; bottom: 10%; transform: rotate(-3deg); }
.orbit { position: absolute; border: 1px solid rgba(94,193,241,.13); border-radius: 50%; z-index: -1; }
.orbit-one { width: 520px; height: 520px; right: 2%; top: 18%; }
.orbit-two { width: 320px; height: 320px; right: 10%; top: 30%; }

.trust-strip { min-height: 100px; padding: 25px clamp(24px, 7vw, 112px); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 40px; background: #fff; }
.trust-strip p { font: 10px var(--font-geist-mono); text-transform: uppercase; color: var(--muted); letter-spacing: 1.4px; }
.trust-strip div { display: flex; align-items: center; gap: clamp(20px, 4vw, 58px); color: #73808a; }
.trust-strip span { font-size: 14px; font-weight: 620; }

.section { padding: 130px clamp(24px, 7vw, 112px); }
.section-label { color: #6a747b; margin-bottom: 42px; }
.section-label::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.section-label.light { color: var(--blue-bright); }
.intro { background: var(--paper); }
.intro-copy { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; }
.intro h2, .section-heading h2, .proof h2 { font-size: clamp(42px, 5.5vw, 78px); line-height: 1; letter-spacing: -.06em; margin: 0; font-weight: 520; }
.intro h2 { max-width: 850px; }
.intro-detail p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 34px; }
.problem-grid { margin-top: 100px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.problem-grid article { padding: 28px 48px 0 0; border-right: 1px solid var(--line); min-height: 225px; }
.problem-grid article + article { padding-left: 42px; }
.problem-grid article:last-child { border: 0; }
.problem-grid article > span { font: 10px var(--font-geist-mono); color: var(--blue); }
.problem-grid h3 { font-size: 19px; margin: 48px 0 14px; }
.problem-grid p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 320px; }

.services { background: var(--navy); color: white; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 100px; align-items: end; margin-bottom: 75px; }
.section-heading > p { color: var(--muted); line-height: 1.65; font-size: 15px; max-width: 430px; }
.services .section-heading > p { color: rgba(255,255,255,.56); }
.service-list { border-top: 1px solid rgba(255,255,255,.16); }
.service-list article { display: grid; grid-template-columns: 70px 1.1fr 1.3fr 1fr 35px; align-items: center; gap: 28px; min-height: 160px; border-bottom: 1px solid rgba(255,255,255,.16); transition: background .25s, padding .25s; }
.service-list article:hover { background: rgba(63,168,229,.07); padding: 0 18px; }
.service-list article > span { font: 10px var(--font-geist-mono); color: var(--blue-bright); }
.service-list h3 { font-size: 20px; margin: 0; }
.service-list p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.58); max-width: 430px; }
.service-list article > div { display: flex; flex-wrap: wrap; gap: 6px; }
.service-list small { border: 1px solid rgba(255,255,255,.18); padding: 7px 9px; font-size: 9px; color: rgba(255,255,255,.7); }
.service-list article > i { font-style: normal; color: var(--blue-bright); font-size: 18px; }

.work { background: #f7f7f4; }
.cases { display: grid; gap: 26px; }
.case { min-height: 540px; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; }
.case-copy { padding: clamp(38px,5vw,72px); background: #fff; display: flex; flex-direction: column; }
.case-copy > span { font: 10px var(--font-geist-mono); letter-spacing: 1.6px; text-transform: uppercase; color: var(--blue); }
.case-copy h3 { font-size: clamp(30px, 3vw, 47px); line-height: 1.05; letter-spacing: -.045em; margin: 28px 0 20px; font-weight: 540; }
.case-copy > p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.result { margin-top: auto; border-top: 1px solid var(--line); padding-top: 22px; display: grid; gap: 7px; }
.result small { font: 9px var(--font-geist-mono); letter-spacing: 1.4px; color: var(--muted); }
.result b { font-size: 14px; font-weight: 600; }
.case-copy > a { font-size: 11px; font-weight: 650; margin-top: 30px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--ink); padding-bottom: 9px; width: 180px; }
.case-visual { position: relative; display: grid; place-items: center; overflow: hidden; min-width: 0; }
.case-blue .case-visual { background: #2a94d0; }
.case-mint .case-visual { background: #a8d7cb; }
.case-sand .case-visual { background: #d8c5ac; }
.case-number { position: absolute; left: 32px; top: 24px; color: rgba(255,255,255,.45); font: 10px var(--font-geist-mono); }
.product-window { width: 76%; aspect-ratio: 1.4; background: #f8faf9; box-shadow: 0 30px 80px rgba(9,31,43,.25); transform: rotate(-3deg); overflow: hidden; color: #172631; }
.operations-window { transform: rotate(2.5deg); }
.portal-window { transform: rotate(-2deg); }
.window-bar { height: 32px; display: flex; align-items: center; gap: 6px; background: #fff; padding: 0 12px; border-bottom: 1px solid #e5e9e8; }
.window-bar i { width: 5px; height: 5px; border-radius: 50%; background: #c7ced0; }
.window-bar span { font-size: 6px; margin-left: 8px; color: #899397; }
.commerce-grid { height: calc(100% - 32px); display: grid; grid-template-columns: 38px 1fr; position: relative; }
.mini-sidebar { background: #0d2637; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 14px; }
.mini-sidebar b { font-size: 7px; color: #5bc0ef; }
.mini-sidebar i { width: 10px; height: 2px; background: rgba(255,255,255,.25); }
.mini-content { padding: 10%; }
.mini-kicker { font: 5px var(--font-geist-mono); color: #8a969b; }
.metric-row { display: flex; justify-content: space-between; margin-top: 9px; align-items: end; }
.metric-row b { font-size: 19px; letter-spacing: -.8px; }
.metric-row span { font-size: 6px; color: #2db183; }
.chart-bars { height: 42%; display: flex; align-items: end; gap: 5px; margin-top: 16px; border-bottom: 1px solid #dce3e2; }
.chart-bars i { flex: 1; background: linear-gradient(#52b5e8,#2587c1); border-radius: 2px 2px 0 0; }
.order-card { position: absolute; right: 6%; bottom: 7%; background: white; width: 40%; padding: 12px; display: grid; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.order-card small { font: 5px var(--font-geist-mono); color: #8b969b; }
.order-card b { font-size: 11px; margin-top: 5px; }
.order-card span { font-size: 6px; color: #42a78a; margin-top: 3px; }
.order-card button { border: 0; background: #168bc9; color: #fff; font-size: 6px; padding: 6px; margin-top: 8px; }
.ops-header { padding: 8% 9% 3%; display: flex; justify-content: space-between; font-size: 7px; }
.ops-header b { font-size: 13px; color: #2e9c78; }
.stock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; padding: 0 9%; }
.stock-grid div { background: #fff; padding: 9px; display: grid; gap: 3px; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.stock-grid small { font-size: 4px; color: #879196; }
.stock-grid b { font-size: 12px; }
.stock-grid i { font-size: 5px; font-style: normal; color: #7e898d; }
.stock-grid .positive { color: #2d9e76; }
.stock-grid .attention { color: #c98b42; }
.stock-list { display: grid; grid-template-columns: .7fr 1.5fr .8fr; align-items: center; row-gap: 7px; padding: 8% 9%; font-size: 5px; }
.stock-list > span { color: #8b9699; }
.stock-list b { font-size: 6px; }
.stock-list p { margin: 0; }
.stock-list em { font-style: normal; color: #258c68; background: #e2f3ec; padding: 4px; text-align: center; }
.portal-shell { padding: 9%; }
.portal-top { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; }
.avatar { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #1f91ca; color: #fff; font-size: 7px; }
.portal-top div:nth-child(2) { display: grid; }
.portal-top small { font-size: 4px; color: #919a9f; }
.portal-top b { font-size: 10px; margin-top: 2px; }
.portal-top > span { font-size: 5px; padding: 5px 7px; background: #e8f4f8; color: #2587ad; }
.portal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13%; }
.portal-cards > div { background: white; box-shadow: 0 4px 16px rgba(0,0,0,.06); min-height: 70px; padding: 10px; display: grid; grid-template-columns: 1fr auto; }
.portal-cards i { font-style: normal; color: #2395ca; font-size: 9px; }
.portal-cards small { font-size: 4px; color: #8d989c; align-self: end; }
.portal-cards b { font-size: 18px; grid-row: 1/3; grid-column: 2; align-self: center; }
.progress-line { background: white; box-shadow: 0 4px 16px rgba(0,0,0,.06); padding: 11px; margin-top: 8px; display: grid; grid-template-columns: 1fr auto; gap: 6px; font-size: 6px; }
.progress-line > i { grid-column: 1/3; height: 3px; background: #e6ebeb; }
.progress-line > i em { display: block; width: 72%; height: 100%; background: #2d96c6; }

.process { background: #0c2437; color: #fff; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.process-intro { position: sticky; top: 80px; align-self: start; }
.process h2 { font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; margin: 0; font-weight: 520; }
.process-intro > p { color: rgba(255,255,255,.55); line-height: 1.7; font-size: 14px; max-width: 430px; margin-top: 40px; }
.process-list article { display: grid; grid-template-columns: 70px 1fr; padding: 42px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list article > span { font: 10px var(--font-geist-mono); color: var(--blue-bright); }
.process-list h3 { margin: 0 0 15px; font-size: 23px; font-weight: 540; }
.process-list p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; max-width: 530px; }

.proof { background: #fff; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; }
.proof h2 { max-width: 780px; }
.proof-copy > p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 640px; margin: 35px 0; }
.stats { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); align-self: end; }
.stats div { min-height: 190px; padding: 26px 15px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.stats div:nth-child(odd) { border-right: 1px solid var(--line); }
.stats div:last-child { grid-column: 1/3; border-right: 0; }
.stats b { font-size: 58px; font-weight: 460; letter-spacing: -.06em; }
.stats sup { font-size: 22px; color: var(--blue); }
.stats span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; line-height: 1.5; }

.contact { background: var(--blue); padding: 110px clamp(24px,7vw,112px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 120px; color: var(--navy); }
.contact .section-label { color: rgba(6,28,44,.7); }
.contact-copy h2 { font-size: clamp(46px,6vw,86px); line-height: .95; letter-spacing: -.06em; margin: 0; max-width: 850px; font-weight: 540; }
.contact-copy > p { max-width: 590px; line-height: 1.65; margin: 32px 0; color: rgba(6,28,44,.73); }
.button-light { background: #fff; }
.contact-details { border-top: 1px solid rgba(7,27,45,.25); }
.contact-details div { padding: 28px 0; border-bottom: 1px solid rgba(7,27,45,.25); display: grid; gap: 10px; }
.contact-details small { font: 9px var(--font-geist-mono); letter-spacing: 1.4px; opacity: .62; }
.contact-details a, .contact-details address { font-size: 14px; font-weight: 560; font-style: normal; line-height: 1.6; }

footer { background: #f4f5f2; color: var(--ink); padding: 62px clamp(24px,7vw,112px) 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.footer-brand { align-self: start; width: fit-content; }
.footer-brand .brand-logo { width: 154px; height: 102px; }
.footer-brand .brand-logo img { width: 216px; left: -31px; top: -35px; }
footer > p { color: rgba(17,27,38,.55); margin: 0; font-size: 14px; text-align: right; }
footer > div { grid-column: 1/3; border-top: 1px solid rgba(17,27,38,.14); padding-top: 25px; display: flex; justify-content: space-between; font-size: 10px; color: rgba(17,27,38,.5); }

@media (max-width: 980px) {
  .desktop-nav, .nav-cta { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary { list-style: none; width: 42px; height: 42px; border: 1px solid rgba(17,27,38,.26); display: grid; place-content: center; gap: 7px; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 17px; height: 1px; background: var(--ink); }
  .mobile-menu nav { position: absolute; right: 0; top: 52px; width: 240px; background: white; color: var(--ink); display: grid; padding: 16px 24px; box-shadow: 0 20px 50px rgba(0,0,0,.2); }
  .mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
  .hero { min-height: 760px; }
  .signal-card { opacity: .55; }
  .signal-one { right: -40px; }
  .signal-two { right: 4%; }
  .hero-bottom, .intro-copy, .section-heading, .proof { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { flex-wrap: wrap; }
  .service-list article { grid-template-columns: 55px 1fr 1.2fr 30px; }
  .service-list article > div { display: none; }
  .case { grid-template-columns: .9fr 1.1fr; }
  .process { grid-template-columns: 1fr; gap: 70px; }
  .process-intro { position: static; }
  .contact { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 680px) {
  .site-header { height: 72px; }
  .brand-logo { width: 94px; height: 62px; }
  .brand-logo img { width: 132px; left: -19px; top: -22px; }
  .hero { min-height: 760px; padding-top: 150px; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(51px, 15vw, 76px); line-height: .94; }
  .hero-bottom { margin-top: 42px; gap: 30px; }
  .hero-bottom > p { font-size: 16px; }
  .signal-card { display: none; }
  .orbit-one { right: -270px; top: 20%; }
  .trust-strip { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 22px; padding-bottom: 22px; }
  .trust-strip p { margin: 0; }
  .trust-strip div { flex-wrap: wrap; gap: 10px 24px; }
  .trust-strip span { font-size: 11px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-label { margin-bottom: 28px; }
  .intro h2, .section-heading h2, .proof h2 { font-size: 43px; }
  .problem-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .problem-grid article, .problem-grid article + article { padding: 25px 0; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-grid h3 { margin: 25px 0 8px; }
  .section-heading { margin-bottom: 45px; }
  .service-list article { grid-template-columns: 35px 1fr 25px; gap: 14px; padding: 27px 0; }
  .service-list article:hover { padding: 27px 8px; }
  .service-list article > p { grid-column: 2/4; margin: 0; }
  .service-list article > i { grid-column: 3; grid-row: 1; }
  .case { grid-template-columns: 1fr; }
  .case-copy { min-height: 480px; }
  .case-visual { min-height: 340px; grid-row: 1; }
  .product-window { width: 82%; }
  .process-list article { grid-template-columns: 45px 1fr; }
  .proof { gap: 65px; }
  .stats b { font-size: 46px; }
  .contact { padding-top: 85px; padding-bottom: 85px; }
  .contact-copy h2 { font-size: 49px; }
  .contact-copy .button { min-width: 100%; font-size: 11px; }
  footer { grid-template-columns: 1fr; gap: 35px; }
  footer > p { text-align: left; }
  footer > div { grid-column: 1; gap: 20px; flex-direction: column; }
}

/* Vanilla JavaScript navigation */
.menu-toggle, .mobile-nav { display: none; }
.menu-toggle {
  width: 42px; height: 42px; border: 1px solid rgba(17,27,38,.26);
  background: transparent; place-content: center; gap: 7px; cursor: pointer;
}
.menu-toggle span { display: block; width: 17px; height: 1px; background: var(--ink); }
.mobile-nav {
  position: absolute; right: 24px; top: 72px; width: min(280px, calc(100vw - 48px));
  background: white; color: var(--ink); padding: 14px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.mobile-nav a:last-child { border-bottom: 0; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .mobile-nav.open { display: grid; }
}

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

/* Multi-page corporate site */
.content-section { padding: 120px clamp(24px, 7vw, 112px); }
.nav-group { position: relative; padding: 30px 0; }
.nav-group > a { display: flex; gap: 6px; align-items: center; }
.nav-group > a span { color: var(--blue); font-size: 11px; }
.nav-dropdown { visibility: hidden; opacity: 0; transform: translateY(8px); transition: .2s; position: absolute; left: -22px; top: 72px; min-width: 210px; padding: 10px; display: grid; background: white; box-shadow: 0 18px 50px rgba(8,28,44,.14); border-top: 2px solid var(--blue); }
.nav-dropdown a { padding: 12px 13px; color: #4f5b64; border-bottom: 1px solid #e9ecea; }
.nav-dropdown a:last-child { border: 0; }
.nav-dropdown a:hover { color: var(--blue); background: #f5f8f9; }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { visibility: visible; opacity: 1; transform: translateY(0); }

.visual-hero { min-height: 820px; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.visual-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.65); }
.visual-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,24,39,.94) 0%, rgba(5,24,39,.75) 43%, rgba(5,24,39,.25) 74%, rgba(5,24,39,.08)); }
.visual-hero-copy { position: relative; z-index: 2; color: #fff; padding: 170px clamp(24px, 7vw, 112px) 90px; max-width: 1080px; }
.visual-hero-copy h1 { font-size: clamp(58px, 7.3vw, 108px); line-height: .91; letter-spacing: -.07em; font-weight: 520; margin: 0; }
.visual-hero-copy h1 em, .page-hero h1 em, .image-cta h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--blue-bright); }
.visual-hero-copy > p { max-width: 650px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; margin: 38px 0; }
.visual-hero-copy > div:last-child { display: flex; gap: 28px; align-items: center; }
.hero-link { color: #fff; font-size: 12px; font-weight: 650; border-bottom: 1px solid rgba(255,255,255,.4); padding: 10px 0; display: flex; gap: 30px; }
.hero-proof { position: absolute; z-index: 2; right: clamp(24px, 7vw, 112px); bottom: 55px; color: #fff; border-left: 1px solid rgba(255,255,255,.35); padding-left: 25px; display: flex; gap: 18px; align-items: center; }
.hero-proof b { font-size: 42px; letter-spacing: -.05em; }
.hero-proof span { font-size: 10px; line-height: 1.5; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: 1px; }

.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; align-items: end; }
.split-heading > h2, .editorial-grid h2, .about-visual h2, .contact-info h2 { font-size: clamp(43px, 5.2vw, 75px); line-height: 1; letter-spacing: -.06em; font-weight: 520; margin: 0; }
.split-heading p, .editorial-grid p, .about-visual p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.image-story { margin-top: 90px; display: grid; grid-template-columns: 1.25fr .75fr; min-height: 520px; }
.image-story > img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.image-story > div { background: var(--navy); color: #fff; padding: clamp(45px, 5vw, 75px); display: flex; flex-direction: column; justify-content: center; }
.image-story small, .image-cta small { font: 9px var(--font-geist-mono); letter-spacing: 1.8px; color: var(--blue-bright); }
.image-story h3 { font-size: clamp(30px, 3.1vw, 47px); line-height: 1.05; letter-spacing: -.045em; margin: 30px 0 18px; font-weight: 520; }
.image-story p { color: rgba(255,255,255,.62); line-height: 1.7; font-size: 14px; }
.image-story a { margin-top: 30px; display: flex; justify-content: space-between; width: 180px; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 9px; font-size: 11px; }

.home-services { background: var(--navy); color: #fff; }
.light-copy > p { color: rgba(255,255,255,.6); }
.home-service-grid { margin: 70px 0 45px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.home-service-grid article { min-height: 360px; padding: 28px 25px; border-right: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; }
.home-service-grid article:last-child { border: 0; }
.home-service-grid span { font: 10px var(--font-geist-mono); color: var(--blue-bright); }
.home-service-grid h3 { font-size: 21px; line-height: 1.2; margin: 70px 0 20px; }
.home-service-grid p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.7; }
.home-service-grid a { margin-top: auto; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; }
.button-outline { border: 1px solid rgba(255,255,255,.35); color: #fff; }

.image-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px 24px; margin-top: 70px; }
.project-image { aspect-ratio: 1; overflow: hidden; position: relative; background: #dce3e5; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.image-project-grid article:hover img { transform: scale(1.045); }
.project-image a { position: absolute; right: 18px; bottom: 18px; width: 45px; height: 45px; background: var(--blue); color: var(--navy); display: grid; place-items: center; transform: translateY(8px); opacity: 0; transition: .3s; }
.image-project-grid article:hover .project-image a { opacity: 1; transform: translateY(0); }
.image-project-grid small { display: block; margin: 20px 0 8px; color: var(--blue); font: 9px var(--font-geist-mono); letter-spacing: 1.4px; text-transform: uppercase; }
.image-project-grid h3 { margin: 0; font-size: 21px; font-weight: 560; }

.image-cta { min-height: 690px; position: relative; display: grid; align-items: center; overflow: hidden; }
.image-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35); }
.image-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,24,39,.93), rgba(5,24,39,.72) 55%, rgba(5,24,39,.15)); }
.image-cta > div { position: relative; z-index: 2; color: #fff; padding: 100px clamp(24px,7vw,112px); max-width: 900px; }
.image-cta h2 { font-size: clamp(45px,5.5vw,78px); line-height: .98; letter-spacing: -.06em; margin: 26px 0; font-weight: 520; }
.image-cta p { color: rgba(255,255,255,.65); line-height: 1.7; max-width: 590px; margin-bottom: 35px; }

.page-hero { height: 570px; position: relative; overflow: hidden; display: flex; align-items: end; background: var(--navy); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,24,39,.92), rgba(5,24,39,.58) 60%, rgba(5,24,39,.25)); }
.page-hero-copy { position: relative; z-index: 2; color: #fff; padding: 155px clamp(24px,7vw,112px) 75px; }
.page-hero h1 { margin: 0; font-size: clamp(48px,5.8vw,82px); line-height: .96; letter-spacing: -.06em; font-weight: 520; }
.page-hero-copy p { max-width: 650px; color: rgba(255,255,255,.66); line-height: 1.65; margin: 25px 0 0; }

.editorial-grid { display: grid; grid-template-columns: .34fr .66fr; gap: 100px; }
.editorial-grid h2 { margin-bottom: 35px; }
.editorial-grid p { max-width: 820px; }
.about-visual { padding-top: 0; display: grid; grid-template-columns: 1fr 1fr; }
.about-visual > img { width: 100%; height: 100%; object-fit: cover; min-height: 580px; background: #dce5e8; }
.about-visual > div { background: white; padding: clamp(45px,6vw,85px); }
.about-visual small, .vision-grid small, .process-band small, .capability-list small { color: var(--blue); letter-spacing: 1.8px; font: 9px var(--font-geist-mono); }
.about-visual h2 { margin: 25px 0; }
.about-visual ul { list-style: none; padding: 18px 0 0; margin: 0; }
.about-visual li { border-top: 1px solid var(--line); padding: 15px 0; font-size: 13px; }
.about-visual li::before { content: "✓"; color: var(--blue); margin-right: 12px; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); padding-top: 0; }
.vision-grid article { background: var(--paper); padding: clamp(45px,6vw,85px); }
.vision-grid h3 { font-size: clamp(30px,3vw,44px); line-height: 1.08; letter-spacing: -.04em; font-weight: 520; margin: 30px 0 18px; }
.vision-grid p { color: var(--muted); line-height: 1.7; }

.reason-grid, .offer-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 80px; border-top: 1px solid var(--line); }
.reason-grid article, .offer-grid article { min-height: 310px; padding: 27px 35px 30px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reason-grid article:nth-child(3n+2), .offer-grid article:nth-child(3n+2) { padding-left: 35px; }
.reason-grid article:nth-child(3n), .offer-grid article:nth-child(3n) { padding-left: 35px; border-right: 0; }
.reason-grid span, .offer-grid span { color: var(--blue); font: 10px var(--font-geist-mono); }
.reason-grid h3, .offer-grid h3 { margin: 55px 0 15px; font-size: 20px; }
.reason-grid p, .offer-grid p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.offer-grid a { display: flex; justify-content: space-between; font-size: 10px; margin-top: 25px; border-top: 1px solid var(--line); padding-top: 14px; }
.process-band { background: var(--navy); color: #fff; padding: 100px clamp(24px,7vw,112px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-band h2 { font-size: clamp(40px,4vw,62px); line-height: 1; letter-spacing: -.05em; font-weight: 520; }
.process-band > div > a { color: var(--blue-bright); font-size: 12px; display: flex; gap: 20px; width: fit-content; border-bottom: 1px solid currentColor; padding-bottom: 8px; }
.process-band ol { list-style: none; padding: 0; margin: 0; }
.process-band li { display: grid; grid-template-columns: .5fr 1fr; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-band li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-band li b { font-size: 16px; }
.process-band li span { color: rgba(255,255,255,.53); font-size: 12px; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-layout h2 { font-size: clamp(40px,4vw,60px); line-height: 1; letter-spacing: -.05em; margin: 0 0 25px; }
.faq-layout > div:first-child > p { color: var(--muted); line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0 5px; }
.faq-list summary { list-style: none; padding: 28px 0; display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; cursor: pointer; font-weight: 600; font-size: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font: 9px var(--font-geist-mono); }
.faq-list summary b { color: var(--blue); font-size: 21px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details p { margin: 0 20px 28px 42px; color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 700px; }

.service-paths { display: grid; grid-template-columns: 1fr 1fr; }
.service-paths > a { min-height: 620px; position: relative; overflow: hidden; padding: 65px; color: #fff; display: flex; flex-direction: column; justify-content: end; }
.service-paths img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-paths > a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 20%, rgba(5,24,39,.87)); }
.service-paths > a:hover img { transform: scale(1.04); }
.service-paths span, .service-paths h2, .service-paths b { position: relative; z-index: 2; }
.service-paths span { color: var(--blue-bright); font: 9px var(--font-geist-mono); letter-spacing: 1.6px; }
.service-paths h2 { font-size: clamp(36px,4vw,56px); line-height: 1; letter-spacing: -.05em; max-width: 600px; }
.service-paths b { font-size: 11px; display: flex; gap: 25px; font-weight: 600; }
.service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.service-detail h2 { font-size: clamp(42px,4.7vw,68px); line-height: 1; letter-spacing: -.055em; font-weight: 520; }
.service-detail p { color: var(--muted); line-height: 1.75; }
.service-detail > img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.capability-list { background: var(--navy); color: #fff; display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.capability-list h2 { font-size: clamp(42px,5vw,68px); letter-spacing: -.055em; }
.capability-list > div:last-child { border-top: 1px solid rgba(255,255,255,.16); }
.capability-list p { margin: 0; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.16); display: grid; grid-template-columns: 60px 1fr; }
.capability-list p span { color: var(--blue-bright); font: 9px var(--font-geist-mono); }
.mobile-feature-band { background: var(--navy); color: #fff; padding: 0 clamp(24px,7vw,112px); display: grid; grid-template-columns: repeat(4,1fr); }
.mobile-feature-band article { min-height: 340px; padding: 45px 30px; border-right: 1px solid rgba(255,255,255,.16); }
.mobile-feature-band article:last-child { border: 0; }
.mobile-feature-band span { color: var(--blue-bright); font: 10px var(--font-geist-mono); }
.mobile-feature-band h3 { margin: 90px 0 16px; }
.mobile-feature-band p { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 60px 28px; }
.blog-grid article img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.blog-grid small { color: var(--blue); font: 9px var(--font-geist-mono); letter-spacing: 1.2px; text-transform: uppercase; display: block; margin-top: 20px; }
.blog-grid h2 { font-size: 25px; line-height: 1.15; letter-spacing: -.03em; }
.blog-grid p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.blog-grid a { display: flex; justify-content: space-between; width: 145px; border-bottom: 1px solid var(--ink); font-size: 10px; padding-bottom: 7px; margin-top: 24px; }

.contact-page { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.contact-info h2 { margin-bottom: 25px; }
.contact-info > p { color: var(--muted); }
.info-list { margin-top: 55px; border-top: 1px solid var(--line); }
.info-list > div { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.info-list small, .contact-page label { font: 9px var(--font-geist-mono); letter-spacing: 1.2px; color: var(--muted); text-transform: uppercase; }
.info-list a { font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; }
.info-list address { font-style: normal; font-size: 14px; line-height: 1.7; }
.contact-page form { background: #fff; padding: clamp(35px,5vw,65px); display: grid; gap: 28px; box-shadow: 0 20px 65px rgba(8,28,44,.06); }
.contact-page form > div { display: grid; gap: 9px; }
.contact-page input, .contact-page select, .contact-page textarea { border: 0; border-bottom: 1px solid #cfd6d5; background: transparent; padding: 13px 0; color: var(--ink); outline: none; }
.contact-page textarea { resize: vertical; }
.contact-page input:focus, .contact-page select:focus, .contact-page textarea:focus { border-color: var(--blue); }

.contact-band { padding: 85px clamp(24px,7vw,112px); background: var(--blue); color: var(--navy); display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.contact-band small { font: 9px var(--font-geist-mono); letter-spacing: 1.5px; }
.contact-band h2 { font-size: clamp(38px,4.5vw,65px); line-height: 1; letter-spacing: -.05em; max-width: 900px; margin: 22px 0 0; font-weight: 520; }
.contact-band .button { flex: none; }

footer { grid-template-columns: .8fr 1.2fr; }
footer > div:first-child { display: block; }
.footer-blurb { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 260px; margin-top: 25px; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 38px 40px; border: 0; padding: 0; color: var(--ink); }
.footer-links section { display: grid; align-content: start; gap: 13px; }
.footer-links small { font: 9px var(--font-geist-mono); letter-spacing: 1.4px; color: var(--blue); margin-bottom: 10px; }
.footer-links a { font-size: 12px; color: var(--muted); }
.footer-links a:hover { color: var(--blue); }
.footer-links address { margin: 0; color: var(--muted); font-size: 12px; font-style: normal; line-height: 1.7; }
.footer-blurb strong { color: var(--ink); font-weight: 650; }
.footer-bottom { grid-column: 1/3; border-top: 1px solid var(--line); padding-top: 25px; display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); }

@media (max-width: 980px) {
  .split-heading, .editorial-grid, .faq-layout, .service-detail, .capability-list, .contact-page { grid-template-columns: 1fr; gap: 45px; }
  .home-service-grid, .mobile-feature-band { grid-template-columns: 1fr 1fr; }
  .home-service-grid article:nth-child(2) { border-right: 0; }
  .image-story { grid-template-columns: 1fr; }
  .image-project-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .reason-grid, .offer-grid { grid-template-columns: 1fr 1fr; }
  .reason-grid article:nth-child(3n), .offer-grid article:nth-child(3n) { border-right: 1px solid var(--line); padding-left: 0; }
  .reason-grid article:nth-child(even), .offer-grid article:nth-child(even) { border-right: 0; padding-left: 35px; }
  .process-band { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 680px) {
  .content-section { padding-top: 82px; padding-bottom: 82px; }
  .visual-hero { min-height: 760px; }
  .visual-hero-copy { padding-top: 140px; }
  .visual-hero-copy h1 { font-size: 53px; }
  .visual-hero-copy > p { font-size: 16px; }
  .hero-proof { display: none; }
  .page-hero { height: 540px; }
  .page-hero-copy { padding-top: 135px; padding-bottom: 60px; }
  .page-hero h1 { font-size: 47px; }
  .split-heading > h2, .editorial-grid h2, .about-visual h2, .contact-info h2 { font-size: 42px; }
  .image-story > img { min-height: 330px; }
  .home-service-grid, .image-project-grid, .blog-grid, .reason-grid, .offer-grid, .about-visual, .vision-grid, .service-paths, .mobile-feature-band { grid-template-columns: 1fr; }
  .home-service-grid article { min-height: 290px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .home-service-grid h3 { margin-top: 45px; }
  .reason-grid article, .reason-grid article:nth-child(3n), .reason-grid article:nth-child(even), .offer-grid article, .offer-grid article:nth-child(3n), .offer-grid article:nth-child(even) { border-right: 0; padding: 27px 0 30px; min-height: 260px; }
  .service-paths > a { min-height: 500px; padding: 35px; }
  .mobile-feature-band article { min-height: 270px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .mobile-feature-band h3 { margin-top: 55px; }
  .contact-band { align-items: start; flex-direction: column; }
  footer, .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { grid-column: 1; flex-direction: column; gap: 12px; }
}
