:root {
  --navy: #111a24;
  --navy-2: #192530;
  --ink: #17202a;
  --ivory: #f4f0e8;
  --paper: #fbf9f4;
  --orange: #f1784b;
  --sage: #9fb3a6;
  --blue: #7597bd;
  --line: rgba(23, 32, 42, 0.16);
  --muted: #6e7478;
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(17, 26, 36, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.dark { color: white; background: var(--navy); }
.ivory { background: var(--ivory); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(3.2rem, 7vw, 7.2rem); font-weight: 650; }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4.4vw, 4.6rem); font-weight: 620; }
h3 { margin-bottom: 12px; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.lead { max-width: 760px; color: #4f575d; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.dark .lead { color: rgba(255,255,255,.7); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 780px; }
.section-head h2 { margin-bottom: 0; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: white;
  background: rgba(17, 26, 36, .94);
  backdrop-filter: blur(16px);
}
.nav { display: flex; height: 78px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 750; letter-spacing: -.02em; }
.brand-mark { display: grid; width: 29px; height: 29px; grid-template-columns: repeat(2, 1fr); gap: 3px; transform: rotate(45deg); }
.brand-mark i { display: block; border-radius: 50%; background: #fff; }
.brand-mark i:nth-child(2) { background: var(--orange); }
.brand-mark i:nth-child(3) { background: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 27px; font-size: .82rem; font-weight: 700; }
.nav-links a { position: relative; color: rgba(255,255,255,.72); transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a.active::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--orange); content: ""; }
.nav-cta { padding: 11px 18px; border-radius: 999px; color: var(--navy) !important; background: var(--orange); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; color: white; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0 0 0 42%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg,var(--navy) 0%,rgba(17,26,36,.6) 24%,rgba(17,26,36,.08) 70%); content: ""; }
.hero-inner { position: relative; z-index: 2; display: flex; min-height: calc(100vh - 78px); align-items: center; }
.hero-copy { max-width: 700px; padding: 80px 0; }
.hero-copy h1 { max-width: 640px; }
.hero-copy .lead { max-width: 590px; color: rgba(255,255,255,.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero-note { position: absolute; right: 0; bottom: 28px; z-index: 2; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .65; }

.page-hero { position: relative; overflow: hidden; padding: 108px 0 90px; color: white; background: var(--navy); }
.page-hero::after { position: absolute; right: -5%; bottom: -65%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(241,120,75,.2), transparent 67%); content: ""; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3rem, 6.5vw, 6.5rem); }
.page-hero .lead { color: rgba(255,255,255,.7); }
.breadcrumbs { margin-bottom: 38px; color: rgba(255,255,255,.52); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs span { margin: 0 8px; color: var(--orange); }

.btn { display: inline-flex; min-height: 50px; padding: 0 24px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; font-size: .82rem; font-weight: 800; letter-spacing: .035em; transition: transform .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--orange); }
.btn-outline { border-color: rgba(255,255,255,.35); color: white; }
.btn-dark { color: white; background: var(--navy); }
.btn-light { border-color: var(--line); background: white; }
.arrow { font-size: 1.1rem; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.split { display: grid; min-height: 620px; grid-template-columns: 1fr 1fr; }
.split-media { min-height: 500px; }
.split-media img { height: 100%; object-fit: cover; }
.split-copy { display: flex; padding: clamp(48px,7vw,100px); flex-direction: column; align-items: flex-start; justify-content: center; }

.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.proof-item { min-height: 210px; padding: 32px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.proof-num { display: block; margin-bottom: 42px; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.proof-item p { margin-bottom: 0; color: rgba(255,255,255,.6); font-size: .9rem; }

.card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.card-media { overflow: hidden; height: 280px; }
.card-media img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media img { transform: scale(1.035); }
.card-body { padding: 28px; }
.card-body p { margin-bottom: 0; color: var(--muted); }
.card-link { display: inline-flex; margin-top: 22px; color: var(--orange); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.feature-card { padding: 32px; border-top: 3px solid var(--orange); background: white; box-shadow: 0 12px 30px rgba(17,26,36,.06); }
.feature-card .num { color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.feature-card h3 { margin-top: 44px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.stat-row { display: grid; margin-top: 48px; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 30px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(2.1rem,4vw,4rem); font-weight: 550; letter-spacing: -.05em; }
.stat span { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.color-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.swatch { aspect-ratio: 1; padding: 16px; display: flex; align-items: end; border-radius: 16px; color: var(--navy); font-size: .75rem; font-weight: 800; }
.swatch:nth-child(1) { background: #919895; }
.swatch:nth-child(2) { background: #7597bd; }
.swatch:nth-child(3) { background: #ece8df; }
.swatch:nth-child(4) { background: #d7a8a5; }
.swatch:nth-child(5) { background: #9ebfbd; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 20px 0; text-align: left; vertical-align: top; }
.spec-table th { width: 36%; color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-table td { font-weight: 650; }
.note { padding: 18px 20px; border-left: 3px solid var(--orange); color: var(--muted); background: rgba(241,120,75,.08); font-size: .87rem; }

.market-card { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); color: white; background: var(--navy); }
.market-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.market-card::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 25%,rgba(17,26,36,.9)); content: ""; }
.market-card .card-body { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; }
.market-card p { color: rgba(255,255,255,.7); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .68rem; text-transform: uppercase; }

.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { min-height: 210px; padding: 28px; background: var(--paper); }
.process-step b { color: var(--orange); font-size: .72rem; letter-spacing: .1em; }
.process-step h3 { margin-top: 42px; font-size: 1.15rem; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: .86rem; }

.cta-band { position: relative; overflow: hidden; color: white; background: var(--navy); }
.cta-band::after { position: absolute; top: 0; right: 0; width: 42%; height: 100%; background: url('../images/brand-pattern.webp') center/cover; opacity: .24; content: ""; }
.cta-inner { position: relative; z-index: 2; display: flex; min-height: 390px; align-items: center; justify-content: space-between; gap: 48px; }
.cta-inner h2 { max-width: 700px; margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-list { margin: 36px 0; padding: 0; list-style: none; }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; margin-bottom: 3px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-form { padding: clamp(28px,5vw,56px); border-radius: var(--radius); background: var(--ivory); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 9px; outline: 0; background: white; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,120,75,.12); }
.field textarea { min-height: 140px; resize: vertical; }

.site-footer { padding: 74px 0 28px; color: white; background: #0b121a; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr 1fr; gap: 50px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.52); }
.footer-col h4 { margin: 0 0 20px; color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.72); font-size: .86rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; margin-top: 64px; padding-top: 22px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav-links { gap: 17px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; z-index: 60; top: 78px; right: 0; left: 0; display: none; width: 100%; height: calc(100dvh - 78px); padding: 42px 24px; align-items: stretch; flex-direction: column; gap: 24px; font-size: 1.15rem; background: var(--navy); }
  .menu-open .nav-links { display: flex; }
  .nav-links a.active::after { display: none; }
  .nav-cta { width: max-content; }
  .hero-media { inset: 0; opacity: .48; }
  .hero-media::after { background: linear-gradient(90deg,var(--navy),rgba(17,26,36,.45)); }
  .hero-copy { max-width: 620px; }
  .hero-note { left: 16px; right: auto; }
  .grid-3, .proof-grid { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 64px 0; align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 600px) {
  .section-head { align-items: flex-start; flex-direction: column; }
  .grid-2, .grid-3, .grid-4, .proof-grid, .process, .form-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 78px 0 66px; }
  .page-hero h1 { font-size: 3rem; }
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.45rem; }
  .split-media { min-height: 330px; }
  .split-copy { padding: 50px 24px; }
  .color-grid { grid-template-columns: repeat(2,1fr); }
  .swatch:last-child { grid-column: span 2; aspect-ratio: 2 / 1; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .market-card { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
