:root {
  --ink: #090909;
  --carbon: #121212;
  --graphite: #242424;
  --line-dark: rgba(255,255,255,.13);
  --paper: #f3f1ee;
  --white: #fff;
  --signal: #ff3b16;
  --red: #f3121c;
  --gold: #b88a52;
  --text-dark: #171717;
  --muted-dark: #5e5d5b;
  --max: 1480px;
  --pad: clamp(24px, 5vw, 84px);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  font-family: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--signal); color: var(--white); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p { margin: 0; }
h1,h2,h3 { margin: 0; font-weight: 500; letter-spacing: -.045em; }
svg { display: block; }


.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, min-height .35s ease;
}
.site-header.scrolled {
  min-height: 68px;
  background: rgba(9,9,9,.82);
  backdrop-filter: blur(18px);
  border-color: var(--line-dark);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.045em;
}
.brand-mark {
  width: 8px;
  height: 8px;
  background: var(--signal);
  transform: rotate(45deg);
}
.desktop-nav { display: flex; gap: clamp(18px, 2.4vw, 42px); }
.desktop-nav a {
  font-size: 12px;
  color: rgba(255,255,255,.66);
  transition: color .25s ease;
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--white); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.28);
  font-size: 12px;
  font-weight: 500;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.header-cta:hover { background: var(--signal); border-color: var(--signal); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.dark-section { background: var(--ink); color: var(--white); }
.light-section { background: var(--paper); color: var(--text-dark); }
.signal-section { background: var(--signal); color: var(--ink); }
.section-pad { padding: clamp(96px, 11vw, 180px) var(--pad); }
.section-index {
  max-width: var(--max);
  margin: 0 auto clamp(68px, 8vw, 120px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .54;
}
.section-heading { max-width: var(--max); margin: 0 auto clamp(58px, 6vw, 96px); }
.section-heading h2 { font-size: clamp(56px, 8vw, 126px); line-height: .88; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }

.button {
  width: fit-content;
  min-height: 62px;
  padding: 0 26px 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  transition: transform .55s var(--ease);
}
.button:hover::before { transform: translateX(0); }
.button > * { position: relative; z-index: 1; }
.button svg, .contact-actions svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.button-primary { background: var(--signal); color: var(--white); }
.button-primary::before { background: var(--white); }
.button-primary:hover { color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark::before { background: var(--white); }
.button-dark:hover { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 14vh, 190px) var(--pad) 48px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 50px;
}
.hero-grid, .final-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-glow { position: absolute; width: 700px; height: 700px; right: -20%; top: 8%; background: radial-gradient(circle, rgba(255,59,22,.13), transparent 65%); }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.hero-copy .eyebrow { color: var(--signal); margin-bottom: 26px; }
.hero h1 { font-size: clamp(52px, 5.5vw, 96px); line-height: .93; max-width: 860px; }
.hero-insurance { margin-top: 32px; max-width: 700px; font-size: clamp(20px, 1.65vw, 29px); line-height: 1.2; color: var(--white); }
.hero-body { margin-top: 24px; max-width: 650px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.59); }
.hero .button { margin-top: 36px; }
.hero-visual { position: relative; z-index: 2; min-width: 0; }
.visual-frame {
  position: relative;
  aspect-ratio: 1.15;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #0b0b0b;
}
.visual-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 100px rgba(0,0,0,.6); pointer-events: none; }
.panel-art { width: 112%; height: 112%; position: absolute; left: -5%; bottom: -7%; }
.scan-line { position: absolute; z-index: 4; top: -5%; left: 0; width: 100%; height: 1px; background: var(--signal); box-shadow: 0 0 18px rgba(255,59,22,.9); animation: scan 5s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(0); opacity: 0; } 12%,82% { opacity: 1; } 50% { transform: translateY(600px); } }
.visual-note { position: absolute; z-index: 5; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.note-a { left: 30px; bottom: 28px; }
.note-b { right: 28px; top: 30px; writing-mode: vertical-rl; }
.visual-index { position: absolute; z-index: 5; right: 28px; bottom: 20px; font-size: 76px; font-weight: 300; color: rgba(255,255,255,.12); letter-spacing: -.08em; }
.hero-bottom {
  grid-column: 1 / -1;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 60px;
  padding-top: 12px;
}
.metric { display: flex; align-items: flex-end; gap: 16px; }
.metric strong { font-size: 56px; line-height: .85; font-weight: 400; letter-spacing: -.06em; color: var(--signal); }
.metric span { max-width: 160px; font-size: 11px; line-height: 1.3; color: rgba(255,255,255,.48); }
.hero-scroll { margin-left: auto; width: 1px; height: 70px; position: relative; background: rgba(255,255,255,.18); overflow: hidden; }
.hero-scroll span { display: block; width: 100%; height: 30px; background: var(--signal); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { from { transform: translateY(-32px); } to { transform: translateY(72px); } }

.intro-layout, .insurance-layout, .story-layout, .faq-layout, .contact-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 180px);
}
.intro-title h2 { font-size: clamp(52px, 6vw, 100px); line-height: .94; }
.intro-copy { align-self: end; display: grid; gap: 26px; }
.intro-copy p, .story-copy p { font-size: clamp(18px, 1.4vw, 23px); line-height: 1.55; color: var(--muted-dark); }
.purpose-band {
  max-width: var(--max);
  margin: clamp(90px, 10vw, 160px) auto 0;
  padding: clamp(42px, 5vw, 76px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: .48fr 1.52fr;
  gap: 50px;
  align-items: start;
}
.purpose-band p { font-size: 13px; color: var(--signal); }
.purpose-band strong { font-size: clamp(34px, 4vw, 68px); line-height: 1.03; font-weight: 400; letter-spacing: -.04em; }

.insurance { position: relative; overflow: hidden; padding: clamp(96px, 11vw, 180px) var(--pad); }
.insurance-noise { position: absolute; inset: 0; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E"); mix-blend-mode: multiply; pointer-events: none; }
.insurance > * { position: relative; z-index: 1; }
.insurance-title h2 { font-size: clamp(58px, 7.6vw, 122px); line-height: .88; }
.insurance-copy { display: grid; gap: 26px; align-content: end; padding-top: 16px; }
.insurance-copy p { font-size: clamp(17px, 1.35vw, 22px); line-height: 1.55; }
.insurance-copy .button { margin-top: 20px; }
.insurance-stamp { position: absolute; left: 2.5vw; bottom: 1vw; width: 180px; opacity: .34; transform: rotate(-12deg); }
.insurance-stamp svg { width: 100%; fill: none; stroke: var(--ink); stroke-width: 1.2; }
.insurance-stamp text { fill: var(--ink); stroke: none; font-family: "IBM Plex Sans", Arial, sans-serif; font-size: 10px; letter-spacing: 2px; }

.services { overflow: hidden; }
.service-card {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 580px;
  display: grid;
  grid-template-columns: .25fr 1fr .72fr;
  gap: clamp(36px, 6vw, 100px);
  padding: clamp(58px, 7vw, 112px) 0;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.service-card:last-child { border-bottom: 1px solid var(--line-dark); }
.service-number { font-size: 14px; color: var(--signal); }
.service-content, .service-list { position: relative; z-index: 2; }
.service-content h3 { font-size: clamp(42px, 5vw, 78px); line-height: .95; margin-bottom: 36px; }
.service-content p { max-width: 660px; color: rgba(255,255,255,.58); font-size: 17px; line-height: 1.6; margin-top: 20px; }
.service-list { align-self: end; }
.service-list > p { margin-bottom: 22px; color: var(--signal); font-size: 13px; }
.service-list ul { margin: 0; padding: 0; list-style: none; }
.service-list li { padding: 13px 0; border-top: 1px solid var(--line-dark); font-size: 15px; color: rgba(255,255,255,.76); }
.service-list li::before { content: "↗"; color: var(--signal); margin-right: 12px; }
.service-art { position: absolute; pointer-events: none; opacity: .45; }
.hail-art { width: 360px; height: 360px; right: -18%; top: 3%; }
.hail-art span { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.hail-art span:nth-child(1) { inset: 2%; }
.hail-art span:nth-child(2) { inset: 15%; }
.hail-art span:nth-child(3) { inset: 30%; }
.hail-art span:nth-child(4) { inset: 42%; border-color: var(--signal); }
.hail-art span:nth-child(5) { width: 8px; height: 8px; top: 49%; left: 49%; background: var(--signal); border: 0; }
.pdr-art { width: 300px; height: 300px; right: -9%; top: 14%; background: repeating-linear-gradient(115deg, transparent 0 13px, rgba(255,255,255,.1) 14px 15px); clip-path: polygon(0 15%, 100% 0, 86% 100%, 7% 86%); }
.pdr-art span { position: absolute; inset: 35%; border: 2px solid var(--signal); border-radius: 50%; box-shadow: 0 0 40px var(--signal); }
.general-art { right: -10%; bottom: 8%; width: 320px; height: 200px; }
.general-art span { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: rotate(-12deg); }
.general-art span:nth-child(2) { inset: 18%; border-color: rgba(255,59,22,.65); transform: rotate(-12deg) translateX(-18px); }

.why-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 180px); align-items: start; }
.why-sticky { position: sticky; top: 130px; }
.why-sticky h2 { font-size: clamp(58px, 7vw, 116px); line-height: .9; }
.why-graphic { width: min(420px, 85%); aspect-ratio: 1; margin-top: 74px; position: relative; display: grid; place-items: center; }
.why-ring { position: absolute; border: 1px solid rgba(0,0,0,.18); border-radius: 50%; }
.why-ring:nth-child(1) { inset: 0; }
.why-ring:nth-child(2) { inset: 18%; }
.why-ring:nth-child(3) { inset: 36%; border-color: var(--signal); }
.why-graphic span { font-size: 18px; font-weight: 700; letter-spacing: -.04em; }
.why-items { border-top: 1px solid rgba(0,0,0,.16); }
.why-item { display: grid; grid-template-columns: 64px 1fr; gap: 34px; padding: clamp(40px, 5vw, 76px) 0; border-bottom: 1px solid rgba(0,0,0,.16); }
.why-item > span { font-size: 12px; color: var(--signal); padding-top: 8px; }
.why-item h3 { font-size: clamp(30px, 3vw, 52px); line-height: 1.02; margin-bottom: 25px; }
.why-item p { font-size: 17px; line-height: 1.6; color: var(--muted-dark); margin-top: 15px; max-width: 700px; }

.process { overflow: hidden; }
.process-heading h2 { max-width: 1100px; }
.process-track { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); border-top: 1px solid var(--line-dark); }
.process-step { position: relative; min-height: 440px; padding: 54px clamp(22px,2.5vw,42px) 30px 0; border-right: 1px solid var(--line-dark); }
.process-step:not(:first-child) { padding-left: clamp(22px,2.5vw,42px); }
.process-step:last-child { border-right: 0; }
.step-dot { position: absolute; width: 9px; height: 9px; top: -5px; left: -4px; background: var(--signal); transform: rotate(45deg); }
.process-step:not(:first-child) .step-dot { left: -5px; }
.process-step > span { display: block; color: var(--signal); font-size: 13px; margin-bottom: 92px; }
.process-step h3 { font-size: clamp(26px, 2.25vw, 38px); line-height: 1; min-height: 80px; }
.process-step p { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.6; margin-top: 28px; }

.story-layout { align-items: center; }
.story-visual { position: relative; aspect-ratio: .95; background: var(--ink); overflow: hidden; }
.story-panel { position: absolute; width: 120%; height: 72%; left: -8%; top: 15%; border-radius: 48% 52% 46% 54%; background: radial-gradient(circle at 35% 35%, #555, #161616 38%, #080808 70%); transform: rotate(-17deg); }
.story-line { position: absolute; left: 12%; width: 76%; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transform: rotate(-17deg); }
.story-line.one { top: 29%; height: 24%; }
.story-line.two { top: 25%; height: 36%; }
.story-line.three { top: 19%; height: 51%; border-color: rgba(255,59,22,.8); }
.story-caption { position: absolute; left: 28px; bottom: 28px; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.story-copy h2 { font-size: clamp(50px, 6vw, 96px); line-height: .92; margin-bottom: 58px; }
.story-copy { display: grid; gap: 25px; }

.specialist { min-height: 980px; display: grid; place-items: center; position: relative; padding: 120px var(--pad); overflow: hidden; }
.specialist::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255,59,22,.12), transparent 36%); }
.specialist-word { position: absolute; font-size: clamp(180px, 29vw, 530px); font-weight: 700; letter-spacing: -.09em; color: rgba(255,255,255,.028); left: 50%; top: 50%; transform: translate(-50%,-50%); white-space: nowrap; }
.specialist-inner { position: relative; z-index: 2; max-width: 900px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.specialist .eyebrow { color: var(--signal); margin-bottom: 30px; }
.specialist h2 { font-size: clamp(62px, 7.5vw, 124px); line-height: .88; margin-bottom: 42px; }
.specialist-inner > p:not(.eyebrow):not(.specialist-line) { max-width: 760px; font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.58); margin-top: 18px; }
.specialist-line { font-size: clamp(22px, 2.3vw, 38px); line-height: 1.15; margin-top: 32px; }
.specialist-line + .specialist-line { margin-top: 6px; color: var(--signal); }
.specialist .button { margin-top: 44px; }

.faq-layout { align-items: start; }
.faq-title { position: sticky; top: 130px; }
.faq-title h2 { font-size: clamp(58px, 7.5vw, 118px); line-height: .88; }
.faq-list { border-top: 1px solid rgba(0,0,0,.16); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.16); }
.faq-item summary { list-style: none; cursor: pointer; padding: 32px 0; display: grid; grid-template-columns: 1fr 32px; gap: 24px; align-items: center; font-size: clamp(21px, 2vw, 31px); letter-spacing: -.03em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { width: 30px; height: 30px; position: relative; border: 1px solid rgba(0,0,0,.25); border-radius: 50%; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 8px; right: 8px; top: 14px; height: 1px; background: var(--ink); transition: transform .35s var(--ease); }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-item[open] div { grid-template-rows: 1fr; }
.faq-item div p { overflow: hidden; max-width: 720px; padding: 0 0 0; font-size: 17px; line-height: 1.65; color: var(--muted-dark); }
.faq-item[open] div p { padding-bottom: 34px; }

.contact { overflow: hidden; }
.contact-title h2 { font-size: clamp(62px, 8.6vw, 140px); line-height: .86; }
.contact-title h3 { font-size: clamp(26px, 3vw, 48px); line-height: 1.05; margin-top: 42px; max-width: 680px; color: rgba(255,255,255,.75); }
.contact-copy { align-self: end; }
.contact-copy p { font-size: clamp(19px, 1.65vw, 27px); line-height: 1.42; color: rgba(255,255,255,.6); max-width: 680px; }
.contact-copy .contact-highlight { color: var(--signal); margin-top: 28px; font-size: clamp(28px, 3vw, 50px); line-height: 1.02; }
.contact-card { max-width: var(--max); margin: clamp(80px, 10vw, 160px) auto 0; display: grid; grid-template-columns: .7fr .7fr 1.6fr; align-items: end; gap: 50px; padding: clamp(46px, 5vw, 80px); border: 1px solid var(--line-dark); position: relative; }
.contact-card::before { content: ""; position: absolute; top: 0; left: 0; width: 25%; height: 3px; background: var(--signal); }
.contact-brand { font-size: clamp(42px,5vw,76px); text-transform: uppercase; font-weight: 700; letter-spacing: -.06em; }
.contact-card address { font-style: normal; color: rgba(255,255,255,.62); line-height: 1.7; font-size: 16px; }
.contact-actions { display: grid; }
.contact-actions a { min-height: 68px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-dark); font-size: 18px; transition: color .25s ease, padding .25s ease; }
.contact-actions a:last-child { border-bottom: 1px solid var(--line-dark); }
.contact-actions a:hover { color: var(--signal); padding-left: 10px; }

.final-cta { min-height: 900px; display: grid; place-items: center; padding: 110px var(--pad); position: relative; overflow: hidden; }
.final-grid { mask-image: none; opacity: .22; background-image: linear-gradient(rgba(0,0,0,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.18) 1px, transparent 1px); }
.final-inner { position: relative; z-index: 2; max-width: 1150px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.final-inner > p:first-child { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 32px; }
.final-inner h2 { font-size: clamp(58px, 8.7vw, 142px); line-height: .85; }
.final-inner h3 { font-size: clamp(29px, 4vw, 66px); line-height: .98; margin-top: 32px; max-width: 930px; }
.final-inner > p:not(:first-child) { font-size: clamp(18px, 1.5vw, 24px); line-height: 1.5; max-width: 760px; margin-top: 34px; }
.final-inner .button { margin-top: 42px; }
.final-mark { position: absolute; right: -6vw; bottom: -16vw; font-size: 58vw; font-weight: 700; line-height: .7; color: rgba(0,0,0,.06); letter-spacing: -.16em; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); background: transparent; display: grid; place-content: center; gap: 7px; color: var(--white); cursor: pointer; }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 45; inset: 0; padding: 130px var(--pad) 60px; background: rgba(9,9,9,.97); color: var(--white); display: flex; flex-direction: column; justify-content: center; gap: 20px; transform: translateY(-105%); transition: transform .55s var(--ease); }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { font-size: clamp(34px, 6vw, 68px); line-height: 1; letter-spacing: -.05em; border-bottom: 1px solid var(--line-dark); padding-bottom: 18px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(48px, 6vw, 76px); }
  .service-card { grid-template-columns: 70px 1fr 1fr; }
  .process-track { grid-template-columns: repeat(3,1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
  .contact-card { grid-template-columns: 1fr 1fr; }
  .contact-actions { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --pad: 24px; }
  .site-header { min-height: 70px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-top: 130px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 48px; }
  .hero-copy, .hero-visual { width: 100%; }
  .hero h1 { font-size: clamp(48px, 13vw, 72px); }
  .hero-body { font-size: 15px; }
  .hero-bottom { flex-wrap: wrap; gap: 32px; padding: 20px 0 14px; }
  .hero-scroll { display: none; }
  .metric strong { font-size: 44px; }
  .metric span { max-width: 120px; }
  .section-pad, .insurance { padding-top: 100px; padding-bottom: 100px; }
  .section-index { margin-bottom: 58px; }
  .intro-layout, .insurance-layout, .story-layout, .faq-layout, .contact-top { grid-template-columns: 1fr; gap: 54px; }
  .intro-title h2, .insurance-title h2, .story-copy h2, .faq-title h2, .contact-title h2 { font-size: clamp(50px, 14vw, 80px); }
  .purpose-band { grid-template-columns: 1fr; gap: 28px; padding: 34px 28px; }
  .purpose-band strong { font-size: 36px; }
  .insurance-stamp { display: none; }
  .section-heading h2 { font-size: clamp(56px, 18vw, 96px); }
  .service-card { min-height: 0; grid-template-columns: 1fr; gap: 34px; padding: 64px 0; }
  .service-number { margin-bottom: -10px; }
  .service-content h3 { font-size: 48px; }
  .service-list { align-self: auto; }
  .service-art { opacity: .18; right: -45%; }
  .why-layout { grid-template-columns: 1fr; gap: 66px; }
  .why-sticky, .faq-title { position: static; }
  .why-graphic { display: none; }
  .why-item { grid-template-columns: 42px 1fr; gap: 14px; }
  .process-track { grid-template-columns: 1fr; }
  .process-step, .process-step:not(:first-child) { min-height: auto; padding: 48px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); border-top: 0; }
  .process-step > span { margin-bottom: 46px; }
  .process-step h3 { min-height: 0; font-size: 34px; }
  .step-dot, .process-step:not(:first-child) .step-dot { left: 0; top: -5px; }
  .story-layout { grid-template-columns: 1fr; }
  .story-copy { order: -1; }
  .specialist { min-height: 900px; padding: 100px 24px; }
  .specialist h2 { font-size: clamp(58px, 16vw, 86px); }
  .contact-card { grid-template-columns: 1fr; padding: 34px 26px; gap: 34px; }
  .contact-actions { grid-column: auto; }
  .final-cta { min-height: 800px; }
  .final-inner h2 { font-size: clamp(58px, 16vw, 88px); }
}

@media (max-width: 480px) {
  .button { width: 100%; min-height: 58px; padding-left: 20px; padding-right: 18px; gap: 14px; }
  .hero { padding-top: 112px; }
  .hero-insurance { font-size: 19px; }
  .visual-frame { aspect-ratio: .9; }
  .metric { width: 100%; }
  .metric span { max-width: 180px; }
  .purpose-band strong { font-size: 31px; }
  .why-item { grid-template-columns: 1fr; }
  .why-item > span { margin-bottom: 6px; }
  .faq-item summary { font-size: 21px; }
  .specialist-inner > p:not(.eyebrow):not(.specialist-line) { font-size: 16px; }
  .specialist-line { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ==========================================================
   ARAUTO — REFINEMENT PASS 02
   Smaller hero H1, real photography and line icons
   ========================================================== */
.icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 4.15vw, 72px);
  line-height: .98;
  letter-spacing: -.04em;
}
.hero-copy { max-width: 710px; }
.hero { grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); }
.visual-frame { aspect-ratio: 1.06; background: #050505; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 46%;
  filter: saturate(.56) contrast(1.15) brightness(.7);
  transform: scale(1.025);
  transition: transform 1.2s var(--ease), filter .7s ease;
}
.hero-visual:hover .hero-photo { transform: scale(1.065); filter: saturate(.72) contrast(1.12) brightness(.76); }
.hero-photo-scrim {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,.08) 0%, rgba(7,7,7,.12) 54%, rgba(7,7,7,.8) 100%),
    linear-gradient(90deg, rgba(7,7,7,.22), transparent 48%);
  pointer-events: none;
}
.visual-frame::after { z-index: 3; }
.visual-note, .visual-index { z-index: 5; }
.scan-line { z-index: 6; }

.media-strip {
  overflow: hidden;
  padding: 0 var(--pad) clamp(110px, 11vw, 180px);
}
.media-strip-inner {
  max-width: var(--max);
  height: clamp(500px, 49vw, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .72fr .58fr;
  gap: clamp(10px, 1.2vw, 20px);
  align-items: stretch;
}
.media-shot {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-dark);
}
.media-shot::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.48));
  pointer-events: none;
}
.media-shot::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 22px;
  width: 42px;
  height: 2px;
  background: var(--signal);
}
.media-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.58) contrast(1.12) brightness(.83);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter .7s ease;
}
.media-shot:hover img { transform: scale(1.065); filter: saturate(.78) contrast(1.08) brightness(.9); }
.media-shot-large img { object-position: 52% 48%; }
.media-shot-mid { margin-top: 8%; margin-bottom: 5%; }
.media-shot-mid img { object-position: 50% 24%; }
.media-shot-small { margin-top: 17%; margin-bottom: 12%; }
.media-shot-small img { object-position: 50% 42%; }

.service-content { padding-right: clamp(0px, 2vw, 28px); }
.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--signal);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.025);
}
.service-icon .icon-svg { width: 27px; height: 27px; }
.service-content h3 { margin-bottom: 32px; }
.service-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.service-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-top: 1px solid var(--signal);
  border-right: 1px solid var(--signal);
  transform: rotate(45deg) translateY(-1px);
  margin-right: 2px;
}

.why-item { grid-template-columns: 68px 1fr; }
.why-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 8px;
}
.why-rail > span { font-size: 12px; color: var(--signal); }
.why-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.18);
}
.why-icon .icon-svg { width: 21px; height: 21px; }

.process-step > span { margin-bottom: 24px; }
.process-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--signal);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 52px;
}
.process-icon .icon-svg { width: 23px; height: 23px; }

.story-visual { background: #080808; }
.story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(.52) contrast(1.14) brightness(.76);
  transform: scale(1.015);
}
.story-photo-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18) 50%, rgba(0,0,0,.76));
}
.story-line, .story-caption { z-index: 2; }
.story-line { border-color: rgba(255,255,255,.46); }
.story-line.three { border-color: rgba(255,59,22,.95); }

.contact-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr); }
  .hero h1 { font-size: clamp(40px, 5vw, 64px); }
}

@media (max-width: 820px) {
  .hero h1 { font-size: clamp(40px, 10vw, 60px); line-height: 1; }
  .media-strip { padding-left: 0; padding-right: 0; }
  .media-strip-inner {
    height: auto;
    grid-template-columns: 1.18fr .82fr;
    gap: 10px;
  }
  .media-shot { min-height: 470px; }
  .media-shot-mid { margin: 13% 0 0; }
  .media-shot-small { grid-column: 1 / -1; min-height: 300px; margin: 0 24px; }
  .media-shot-small img { object-position: 50% 47%; }
  .why-item { grid-template-columns: 62px 1fr; gap: 18px; }
  .process-icon { margin-bottom: 34px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(38px, 11.5vw, 52px); }
  .visual-frame { aspect-ratio: .82; }
  .media-strip-inner { grid-template-columns: 1fr; gap: 10px; }
  .media-shot, .media-shot-mid, .media-shot-small {
    min-height: 390px;
    margin: 0 24px;
    grid-column: auto;
  }
  .media-shot-small { min-height: 320px; }
  .why-item { grid-template-columns: 1fr; }
  .why-rail { flex-direction: row; align-items: center; gap: 16px; }
}


/* ==========================================================
   ARAUTO — REFINEMENT PASS 03
   Tighter typography scale, stronger numeric hierarchy, no cursor glow
   ========================================================== */

/* Main typography scale */
.hero h1 {
  max-width: 650px;
  font-size: clamp(38px, 3.45vw, 58px);
  line-height: 1.01;
}
.hero-insurance {
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.3;
}
.hero-body { font-size: 15px; line-height: 1.65; }

.section-heading h2 {
  font-size: clamp(42px, 5.7vw, 88px);
  line-height: .93;
}
.intro-title h2 {
  font-size: clamp(40px, 4.3vw, 70px);
  line-height: .98;
}
.intro-copy p, .story-copy p {
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.62;
}
.purpose-band strong {
  font-size: clamp(30px, 3.15vw, 52px);
  line-height: 1.08;
}
.insurance-title h2 {
  font-size: clamp(44px, 5vw, 82px);
  line-height: .94;
}
.insurance-copy p {
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.62;
}
.service-content h3 {
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1;
}
.service-content p { font-size: 16px; line-height: 1.62; }
.service-list li { font-size: 14px; }
.why-sticky h2 {
  font-size: clamp(44px, 5vw, 80px);
  line-height: .94;
}
.why-item h3 {
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.06;
}
.why-item p { font-size: 16px; line-height: 1.62; }
.process-step h3 {
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.06;
  min-height: 66px;
}
.process-step p { font-size: 14px; line-height: 1.62; }
.story-copy h2 {
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: .96;
}
.specialist h2 {
  font-size: clamp(46px, 5.3vw, 84px);
  line-height: .92;
}
.specialist-inner > p:not(.eyebrow):not(.specialist-line) {
  font-size: 16px;
  line-height: 1.62;
}
.specialist-line {
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.22;
}
.faq-title h2 {
  font-size: clamp(44px, 5vw, 80px);
  line-height: .94;
}
.faq-item summary {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.25;
}
.faq-item div p { font-size: 16px; line-height: 1.62; }
.contact-title h2 {
  font-size: clamp(48px, 5.6vw, 90px);
  line-height: .92;
}
.contact-title h3 {
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.12;
}
.contact-copy p {
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.5;
}
.contact-copy .contact-highlight {
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.08;
}
.contact-brand { font-size: clamp(36px, 4vw, 60px); }
.contact-actions a { font-size: 16px; }
.final-inner h2 {
  font-size: clamp(46px, 5.8vw, 92px);
  line-height: .91;
}
.final-inner h3 {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
}
.final-inner > p:not(:first-child) {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

/* Numeric hierarchy */
.service-number {
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.04em;
}
.why-rail > span {
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.04em;
}
.process-step > span {
  margin-bottom: 26px;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.055em;
}
.process-icon { margin-bottom: 42px; }

@media (max-width: 820px) {
  .hero h1 { font-size: clamp(36px, 8.8vw, 52px); }
  .intro-title h2, .insurance-title h2, .story-copy h2, .faq-title h2, .contact-title h2 {
    font-size: clamp(40px, 10vw, 62px);
  }
  .section-heading h2 { font-size: clamp(42px, 12vw, 68px); }
  .service-content h3 { font-size: clamp(34px, 9vw, 48px); }
  .why-sticky h2 { font-size: clamp(42px, 11vw, 64px); }
  .why-item h3 { font-size: clamp(26px, 7vw, 36px); }
  .process-step h3 { min-height: 0; font-size: clamp(25px, 6.8vw, 34px); }
  .specialist h2 { font-size: clamp(44px, 11.5vw, 68px); }
  .final-inner h2 { font-size: clamp(44px, 12vw, 70px); }
  .final-inner h3 { font-size: clamp(25px, 7.2vw, 38px); }
  .process-step > span { font-size: 32px; }
  .service-number, .why-rail > span { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(34px, 9.7vw, 46px); }
  .hero-insurance { font-size: 17px; }
  .intro-copy p, .story-copy p, .insurance-copy p, .why-item p,
  .specialist-inner > p:not(.eyebrow):not(.specialist-line), .faq-item div p { font-size: 15px; }
  .purpose-band strong { font-size: 28px; }
  .faq-item summary { font-size: 19px; }
  .specialist-line { font-size: 21px; }
  .contact-copy p { font-size: 17px; }
  .contact-copy .contact-highlight { font-size: 26px; }
}
/* ==========================================================
   ARAUTO — PURPOSE FEATURE REFINEMENT PASS 04
   Editorial PDR statement with technical visual language
   ========================================================== */
.purpose-band {
  max-width: var(--max);
  min-height: 440px;
  margin: clamp(84px, 9vw, 148px) auto 0;
  padding: 0;
  background: #080808;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.purpose-band::before {
  content: "A";
  position: absolute;
  right: -.045em;
  bottom: -.34em;
  z-index: 0;
  font-size: clamp(300px, 30vw, 520px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.065);
  pointer-events: none;
}
.purpose-band::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: clamp(72px, 7vw, 112px);
  height: 6px;
  background: var(--signal);
}
.purpose-media {
  min-width: 0;
  min-height: 440px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
}
.purpose-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .22;
  pointer-events: none;
}
.purpose-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(8,8,8,.02) 58%, #080808 100%),
    linear-gradient(0deg, rgba(0,0,0,.34), transparent 58%);
  pointer-events: none;
}
.purpose-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 38%;
  filter: grayscale(1) contrast(1.16) brightness(.62);
  transform: scale(1.025);
  transition: transform .8s cubic-bezier(.2,.65,.25,1), filter .8s ease;
}
.purpose-band:hover .purpose-media img {
  transform: scale(1.055);
  filter: grayscale(.86) contrast(1.14) brightness(.68);
}
.purpose-focus {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 50%;
  pointer-events: none;
}
.purpose-focus::before,
.purpose-focus::after {
  content: "";
  position: absolute;
  background: var(--signal);
}
.purpose-focus::before { width: 70px; height: 1px; left: -13px; top: 22px; }
.purpose-focus::after { width: 1px; height: 70px; left: 22px; top: -13px; }
.purpose-focus-a { left: 19%; top: 26%; }
.purpose-focus-b { right: 18%; bottom: 18%; width: 24px; height: 24px; opacity: .62; }
.purpose-focus-b::before { width: 44px; left: -10px; top: 11px; }
.purpose-focus-b::after { height: 44px; left: 11px; top: -10px; }
.purpose-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 6vw, 96px) clamp(48px, 6vw, 104px);
}
.purpose-band .purpose-copy p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 clamp(28px, 3vw, 42px);
  color: var(--signal);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.purpose-band .purpose-copy p::before {
  content: "";
  width: 42px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--signal);
}
.purpose-band .purpose-copy strong {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(33px, 3.05vw, 51px);
  line-height: 1.045;
  font-weight: 400;
  letter-spacing: -.042em;
  text-wrap: balance;
}
.purpose-lines {
  width: min(260px, 54%);
  margin-top: clamp(38px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.purpose-lines span {
  display: block;
  height: 2px;
}
.purpose-lines span:nth-child(1) { width: 100%; background: rgba(255,255,255,.22); }
.purpose-lines span:nth-child(2) { width: 42%; background: var(--signal); }
.purpose-lines span:nth-child(3) { width: 14%; background: rgba(255,255,255,.48); }

@media (max-width: 900px) {
  .purpose-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .purpose-media { min-height: 300px; }
  .purpose-media::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(8,8,8,.08) 56%, #080808 100%),
      linear-gradient(0deg, rgba(0,0,0,.2), transparent 58%);
  }
  .purpose-copy { padding: 48px 36px 58px; }
  .purpose-band .purpose-copy strong { font-size: clamp(31px, 7.5vw, 46px); }
  .purpose-band::before { font-size: clamp(250px, 72vw, 430px); bottom: -.3em; }
}

@media (max-width: 480px) {
  .purpose-band { margin-top: 72px; }
  .purpose-media { min-height: 245px; }
  .purpose-copy { padding: 40px 26px 48px; }
  .purpose-band .purpose-copy p { margin-bottom: 24px; font-size: 10px; }
  .purpose-band .purpose-copy strong { font-size: clamp(29px, 9.2vw, 38px); line-height: 1.08; }
  .purpose-lines { margin-top: 34px; width: 64%; }
  .purpose-focus-a { left: 22%; top: 24%; }
}

/* ==========================================================
   ARAUTO — MOBILE HERO FIX
   Must remain at the very end of the stylesheet.
   ========================================================== */

@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 40px;

    width: 100%;
    min-width: 0;
    min-height: auto;
    padding-top: 112px;
    overflow: hidden;
  }

  .hero-copy,
  .hero-visual,
  .hero-bottom {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-visual {
    grid-column: 1;
  }

  .hero-bottom {
    grid-column: 1;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-insurance {
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.4;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-body {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero .button {
    max-width: 100%;
  }

  .visual-frame {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --pad: 22px;
  }

  .hero {
    padding-top: 104px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 38px);
    line-height: 1;
  }

  .hero-insurance {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-body {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero .button {
    width: 100%;
  }

  .visual-frame {
    aspect-ratio: 0.82;
  }
}
