:root {
  --ink: #0a1d18;
  --green-950: #032820;
  --green-900: #052f27;
  --green-800: #074a3a;
  --green-700: #0b6650;
  --emerald: #59e4aa;
  --signal: #caff77;
  --mint: #d9f7e8;
  --paper: #f4f1e8;
  --paper-deep: #e9e7dc;
  --white: #fffdf7;
  --muted: #687a73;
  --line: rgba(10, 29, 24, 0.15);
  --line-light: rgba(236, 255, 246, 0.18);
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "DM Mono", Consolas, monospace;
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

::selection { color: var(--green-950); background: var(--signal); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--signal);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--signal); transform: scaleX(0); transform-origin: left; will-change: transform; }

.arrow-icon,
.down-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
}
.arrow-icon::before { content: ""; position: absolute; top: 5px; left: 1px; width: 10px; height: 1px; background: currentColor; transform: rotate(-45deg); }
.arrow-icon::after { content: ""; position: absolute; top: 0; right: 0; width: 5px; height: 5px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; }
.down-icon::before { content: ""; position: absolute; top: 1px; left: 5px; width: 1px; height: 10px; background: currentColor; }
.down-icon::after { content: ""; position: absolute; right: 2px; bottom: 1px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.2vw, 72px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: min-height 300ms ease, background-color 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: clamp(24px, 4.2vw, 72px);
  bottom: 0;
  left: clamp(24px, 4.2vw, 72px);
  height: 1px;
  background: var(--line-light);
  transition: left 300ms ease, right 300ms ease;
}

.site-header.scrolled,
.site-header.solid {
  min-height: 70px;
  background: rgba(3, 40, 32, 0.93);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.site-header.scrolled::after,
.site-header.solid::after { left: 0; right: 0; opacity: 0; }

.brand { position: relative; z-index: 2; display: inline-flex; align-items: center; }
.brand img { width: 222px; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(22px, 2.2vw, 40px); }
.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 253, 247, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta).active { color: var(--white); }
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta).active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--green-950);
  background: var(--signal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background-color 180ms ease, transform 180ms ease;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }
.nav-cta .arrow-icon { width: 11px; height: 11px; }

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
  padding: clamp(132px, 14vh, 184px) clamp(24px, 4.2vw, 72px) clamp(112px, 12vh, 154px);
  color: var(--white);
  background: var(--green-950);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 82% 18%, rgba(17, 135, 100, 0.47), transparent 30%),
    radial-gradient(circle at 42% 120%, rgba(13, 100, 78, 0.32), transparent 45%),
    linear-gradient(135deg, #032820 0%, #053a2e 52%, #02241d 100%);
}

.hero-aurora {
  position: absolute;
  z-index: -2;
  top: -26%;
  right: -12%;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 190deg, rgba(202, 255, 119, 0), rgba(101, 243, 179, 0.16), rgba(202, 255, 119, 0.04), rgba(60, 220, 158, 0.26), rgba(202, 255, 119, 0));
  filter: blur(62px);
  animation: aurora-drift 14s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(211, 255, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 255, 235, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent 4%, rgba(0,0,0,.65) 42%, #000 100%);
  animation: grid-shift 24s linear infinite;
}

.hero-copy { position: relative; z-index: 2; max-width: 720px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--green-700);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow > span { width: 22px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(205, 244, 226, 0.62); }
.eyebrow.light > span { background: var(--signal); }

.hero h1,
.section-heading h2,
.reporting-copy h2,
.contact-inner h2,
.legal-content h1,
.not-found h1 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.hero h1 { max-width: 750px; font-size: clamp(66px, 6.15vw, 106px); }

.hero h1 em,
.section-heading h2 em,
.reporting-copy h2 em,
.contact-inner h2 em,
.legal-content h1 em,
.not-found h1 em {
  color: var(--signal);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 615px;
  margin: 36px 0 0;
  color: rgba(238, 250, 244, 0.72);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.62;
  letter-spacing: -0.024em;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 0 21px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.button span { font-size: 16px; }
.button-bright { color: var(--green-950); background: var(--signal); }
.button-bright:hover { background: var(--white); transform: translateY(-2px); }
.button-large { min-width: 245px; min-height: 60px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 180ms ease, border-color 180ms ease;
}
.text-link.light { color: rgba(255, 255, 255, 0.72); }
.text-link:hover { color: var(--white); border-color: var(--signal); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin-top: clamp(58px, 7vh, 88px);
  border-top: 1px solid var(--line-light);
}
.hero-proof > div { position: relative; padding: 22px 12px 0 0; }
.hero-proof > div:not(:first-child) { padding-left: 24px; border-left: 1px solid var(--line-light); }
.hero-proof strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 12px; font-weight: 600; }
.hero-proof small { color: rgba(224, 245, 235, 0.42); font-size: 10px; }
.proof-dot { display: inline-block; width: 5px; height: 5px; margin: 0 7px 2px 0; background: var(--signal); border-radius: 50%; box-shadow: 0 0 10px rgba(202,255,119,.62); }

.hero-engine {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  justify-self: end;
  perspective: 1200px;
}

.engine-frame {
  position: relative;
  padding: 20px;
  background: rgba(5, 52, 42, 0.6);
  border: 1px solid rgba(180, 244, 214, 0.19);
  box-shadow: 0 38px 90px rgba(0, 18, 14, 0.4), inset 0 0 70px rgba(55, 204, 150, 0.045);
  backdrop-filter: blur(12px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.engine-frame::before,
.engine-frame::after { content: ""; position: absolute; width: 18px; height: 18px; border-color: var(--signal); opacity: .78; }
.engine-frame::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.engine-frame::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }

.engine-topline,
.engine-footer,
.report-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(219, 249, 234, 0.52);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.engine-topline { padding: 2px 4px 17px; border-bottom: 1px solid var(--line-light); }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--emerald); }
.status i { display: block; width: 5px; height: 5px; background: currentColor; border-radius: 50%; box-shadow: 0 0 8px currentColor; animation: blink 2s ease-in-out infinite; }

.orbit-stage { position: relative; aspect-ratio: 1.06; overflow: hidden; }
.orbit-stage::before {
  content: "";
  position: absolute;
  inset: 7%;
  background: radial-gradient(circle, rgba(89, 228, 170, .16) 0%, rgba(8, 70, 54, .08) 32%, transparent 68%);
}
.orbit-lines { position: absolute; inset: 1% 7%; width: 86%; height: 98%; overflow: visible; }
.ring { fill: none; stroke: rgba(184, 243, 215, 0.14); stroke-width: 1; stroke-dasharray: 2 7; transform-origin: 260px 260px; }
.ring-one { animation: rotate 44s linear infinite; }
.ring-two { stroke-dasharray: 34 8 2 8; stroke: rgba(164, 239, 202, .2); animation: rotate-back 31s linear infinite; }
.ring-three { stroke: url(#ringGlow); stroke-width: 1.4; stroke-dasharray: 70 18; animation: rotate 19s linear infinite; }
.signal-path { fill: none; stroke: rgba(164, 239, 202, .2); stroke-width: 1; }

.monogram-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 172px;
  height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(188, 247, 219, 0.26);
  border-radius: 50%;
  background: rgba(4, 46, 37, 0.84);
  box-shadow: inset 0 0 42px rgba(72, 220, 161, .1), 0 0 55px rgba(0, 35, 27, .55);
  transform: translate(-50%, -50%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.monogram-core::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(202,255,119,.1); border-radius: 50%; }
.monogram-core:hover { border-color: rgba(202,255,119,.58); box-shadow: inset 0 0 42px rgba(72,220,161,.15), 0 0 70px rgba(202,255,119,.1); transform: translate(-50%, -50%) scale(1.025); }
.monogram-core img { width: 67px; margin: 3px 0; }
.core-kicker,
.core-state { font-family: var(--mono); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.core-kicker { color: rgba(220, 249, 234, .39); }
.core-state { color: var(--signal); }

.engine-tag {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  min-width: 128px;
  padding: 10px 12px;
  color: rgba(242, 255, 249, .86);
  background: rgba(3, 41, 33, .82);
  border: 1px solid rgba(188, 247, 219, .18);
  backdrop-filter: blur(9px);
  font-size: 10px;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(0, 25, 19, .32);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.engine-tag > span { grid-row: span 2; color: rgba(191, 235, 214, .42); font-family: var(--mono); font-size: 8px; }
.engine-tag i { color: var(--emerald); font-family: var(--mono); font-size: 7px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.engine-tag:hover,
.engine-tag.active { color: var(--white); background: rgba(6, 76, 59, .96); border-color: rgba(202,255,119,.58); box-shadow: 0 12px 34px rgba(0,25,19,.45), inset 2px 0 0 var(--signal); }
.tag-one { top: 13%; left: 4%; animation: tag-float 6.2s ease-in-out infinite; }
.tag-two { top: 10%; right: 3%; animation: tag-float 7s -2s ease-in-out infinite; }
.tag-three { top: 54%; left: 0; animation: tag-float 6.8s -4s ease-in-out infinite; }
.tag-four { top: 57%; right: 0; animation: tag-float 7.5s -1s ease-in-out infinite; }
.tag-five { right: 24%; bottom: 4%; animation: tag-float 6s -3.5s ease-in-out infinite; }

.engine-footer { gap: 20px; padding: 16px 4px 2px; border-top: 1px solid var(--line-light); }
.engine-footer > div:not(.pulse-line) { display: flex; flex-direction: column; gap: 2px; }
.engine-footer strong { color: rgba(239, 253, 246, .88); font-size: 9px; font-weight: 500; }
.engine-footer .align-right { text-align: right; }
.pulse-line { height: 22px; display: flex; flex: 1; align-items: flex-end; justify-content: center; gap: 5px; overflow: hidden; }
.pulse-line i { width: 2px; height: 22%; background: var(--emerald); opacity: .6; animation: bars 1.6s ease-in-out infinite alternate; }
.pulse-line i:nth-child(2n) { animation-delay: -.4s; }
.pulse-line i:nth-child(3n) { animation-delay: -.8s; }

.hero-scroll {
  position: absolute;
  bottom: 31px;
  left: clamp(24px, 4.2vw, 72px);
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(226, 247, 237, .35);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-scroll i { position: relative; display: block; width: 40px; height: 1px; overflow: hidden; background: rgba(226,247,237,.16); }
.hero-scroll i::after { content: ""; position: absolute; inset: 0; background: var(--signal); transform: translateX(-100%); animation: scroll-line 2.5s ease-in-out infinite; }

.section { padding: clamp(100px, 11vw, 172px) clamp(24px, 7.2vw, 118px); }
.services-section { background: var(--paper); }

.section-heading { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(320px, 1fr); grid-template-areas: "label title" ". copy"; column-gap: clamp(50px, 8vw, 150px); margin-bottom: clamp(64px, 8vw, 112px); }
.section-heading .eyebrow { grid-area: label; margin-top: 10px; }
.section-heading h2 { grid-area: title; max-width: 820px; font-size: clamp(52px, 5.5vw, 92px); }
.section-heading h2 em { color: var(--green-700); }
.section-heading > p:last-child { grid-area: copy; max-width: 625px; margin: 34px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; letter-spacing: -.02em; }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  position: relative;
  min-height: 182px;
  display: grid;
  grid-template-columns: 64px minmax(250px, .8fr) minmax(300px, 1fr) 90px;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.service-row::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--green-900); transform: translateY(102%); transition: transform 480ms cubic-bezier(.2,.7,.2,1); }
.service-row > * { position: relative; z-index: 1; }
.service-row:hover::before,
.service-row:focus-visible::before,
.service-row.spotlight::before { transform: translateY(0); }
.service-number { color: var(--green-700); font-family: var(--mono); font-size: 10px; }
.service-title h3 { margin: 0; font-size: clamp(23px, 2vw, 31px); font-weight: 600; line-height: 1.15; letter-spacing: -.045em; }
.service-title span { display: block; margin-top: 9px; color: var(--muted); font-family: var(--serif); font-size: 18px; font-style: italic; }
.service-row > p { max-width: 610px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-row:hover .service-number,
.service-row:focus-visible .service-number,
.service-row.spotlight .service-number,
.service-row:hover .service-title h3,
.service-row:focus-visible .service-title h3,
.service-row.spotlight .service-title h3 { color: var(--white); }
.service-row:hover .service-title span,
.service-row:focus-visible .service-title span,
.service-row.spotlight .service-title span { color: var(--signal); }
.service-row:hover > p,
.service-row:focus-visible > p,
.service-row.spotlight > p { color: rgba(238, 251, 244, .65); }

.service-icon { position: relative; width: 62px; height: 62px; justify-self: end; border: 1px solid var(--line); transition: border-color 300ms ease, transform 300ms ease; }
.service-icon i { position: absolute; left: 13px; width: 36px; height: 3px; background: var(--green-700); transform-origin: left; transition: background 300ms ease, transform 500ms ease; }
.service-icon i:nth-child(1) { top: 16px; transform: scaleX(.66); }
.service-icon i:nth-child(2) { top: 29px; transform: scaleX(1); }
.service-icon i:nth-child(3) { top: 42px; transform: scaleX(.42); }
.service-row:hover .service-icon { border-color: rgba(202,255,119,.35); transform: rotate(2deg); }
.service-row:hover .service-icon i { background: var(--signal); }
.service-row:hover .service-icon i:nth-child(1) { transform: scaleX(.92); }
.service-row:hover .service-icon i:nth-child(2) { transform: scaleX(.52); }
.service-row:hover .service-icon i:nth-child(3) { transform: scaleX(.8); }
.payroll-icon i { height: 7px; }
.vat-icon { border-radius: 50%; }
.vat-icon i { top: 29px !important; left: 17px; width: 28px; height: 1px; transform: rotate(-36deg) !important; }
.vat-icon i:nth-child(2) { width: 7px; height: 7px; top: 17px !important; left: 17px; border-radius: 50%; }
.vat-icon i:nth-child(3) { width: 7px; height: 7px; top: 39px !important; left: 38px; border-radius: 50%; }
.tax-icon i:nth-child(1) { transform: scaleX(.82); }
.tax-icon i:nth-child(2) { transform: scaleX(.66); }
.tax-icon i:nth-child(3) { transform: scaleX(.48); }
.report-icon { display: flex; align-items: flex-end; gap: 4px; padding: 13px; }
.report-icon i { position: static; width: 8px; transform: none !important; }
.report-icon i:nth-child(1) { height: 34%; }.report-icon i:nth-child(2) { height: 80%; }.report-icon i:nth-child(3) { height: 55%; }

.office-section {
  display: grid;
  grid-template-columns: minmax(340px, .68fr) minmax(620px, 1.32fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
  padding: clamp(100px, 11vw, 170px) clamp(24px, 5vw, 80px);
  background: var(--paper-deep);
}
.office-copy h2 { margin-top: 26px; font-size: clamp(52px, 5vw, 84px); }
.office-copy h2 em { color: var(--green-700); }
.office-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.office-tabs { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.office-tabs button { display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 12px; background: transparent; border: 0; border-right: 1px solid var(--line); cursor: pointer; font-size: 11px; font-weight: 700; }
.office-tabs button:last-child { border-right: 0; }
.office-tabs button span { color: var(--green-700); font-family: var(--mono); font-size: 8px; }
.office-tabs button:hover,
.office-tabs button[aria-selected="true"] { color: var(--white); background: var(--green-800); }
.office-tabs button[aria-selected="true"] span { color: var(--signal); }
.office-detail { min-height: 158px; padding: 28px 0 0; }
.office-detail > span { color: var(--green-700); font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.office-detail h3 { margin: 7px 0 8px; font-size: 25px; line-height: 1.2; letter-spacing: -.04em; }
.office-detail p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.office-image { position: relative; margin: 0; aspect-ratio: 16 / 9; background: var(--green-900); overflow: hidden; }
.office-image > img:first-child { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); will-change: transform; }
.office-wall-logo { position: absolute; top: 33%; left: 20%; width: 21%; filter: drop-shadow(0 4px 9px rgba(0,0,0,.32)); }
.office-image figcaption { position: absolute; right: 14px; bottom: 12px; padding: 7px 9px; color: rgba(255,253,247,.65); background: rgba(3,40,32,.82); font-family: var(--mono); font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.image-hotspot { position: absolute; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(3,40,32,.78); border: 1px solid rgba(255,253,247,.48); box-shadow: 0 8px 24px rgba(0,0,0,.25); backdrop-filter: blur(6px); cursor: pointer; transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.image-hotspot::before { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(202,255,119,.25); transform: scale(.82); opacity: 0; transition: opacity 180ms ease, transform 180ms ease; }
.image-hotspot span { font-family: var(--mono); font-size: 8px; }
.image-hotspot:hover,
.image-hotspot.active { color: var(--green-950); background: var(--signal); border-color: var(--signal); transform: translateY(-2px); }
.image-hotspot.active::before { opacity: 1; transform: scale(1); }
.hotspot-collect { top: 64%; left: 27%; }
.hotspot-review { top: 50%; left: 64%; }
.hotspot-explain { right: 5%; bottom: 18%; }

.control-statement {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  color: var(--white);
  text-align: center;
  background: var(--green-800);
  overflow: hidden;
}
.control-statement::before,
.control-statement::after { content: ""; position: absolute; border: 1px solid rgba(206, 249, 227, .1); border-radius: 50%; }
.control-statement::before { width: 520px; height: 520px; }
.control-statement::after { width: 760px; height: 760px; }
.statement-mark { position: relative; z-index: 1; margin-bottom: 38px; }
.statement-mark img { width: 58px; }
.control-statement > p { position: relative; z-index: 1; max-width: 920px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.1vw, 65px); font-style: italic; line-height: 1.12; letter-spacing: -.025em; }
.statement-caption { position: relative; z-index: 1; margin-top: 34px; color: var(--signal); font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.approach-section { background: var(--paper-deep); }
.approach-heading { display: grid; grid-template-columns: minmax(250px, .8fr) 1fr; grid-template-areas: "label title"; }
.approach-grid { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(360px, .92fr); gap: clamp(60px, 8vw, 140px); align-items: center; }

.approach-visual { position: relative; min-height: 550px; padding: 28px; background: var(--green-900); color: var(--white); overflow: hidden; box-shadow: 0 35px 90px rgba(7, 40, 32, .16); }
.approach-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(208,246,227,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(208,246,227,.05) 1px, transparent 1px); background-size: 40px 40px; }
.calendar-head { position: relative; z-index: 1; display: flex; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid var(--line-light); color: rgba(219,247,233,.45); font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.calendar-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin: 50px 4px 62px; }
.calendar-grid i { aspect-ratio: 1; border: 1px solid rgba(201,244,222,.11); }
.calendar-grid i.done { background: rgba(89,228,170,.16); border-color: rgba(89,228,170,.32); }
.calendar-grid i.active { background: rgba(202,255,119,.09); border-color: var(--signal); box-shadow: 0 0 22px rgba(202,255,119,.12); }
.calendar-grid i.focus { position: relative; background: var(--signal); border-color: var(--signal); }
.calendar-grid i.focus::after { content: ""; position: absolute; inset: 34%; background: var(--green-900); }
.calendar-flow { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 22px; border-top: 1px solid var(--line-light); color: rgba(225,247,237,.54); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.calendar-flow span:not(:first-child) { text-align: center; }
.calendar-flow span:last-child { text-align: right; color: var(--signal); }
.approach-visual svg { position: absolute; right: 0; bottom: 0; left: 0; width: 100%; height: 120px; }
.approach-visual svg path:first-child { fill: none; stroke: var(--emerald); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.approach-visual .flow-fill { fill: rgba(89,228,170,.08); stroke: none; }

.approach-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.approach-steps li { border-bottom: 1px solid var(--line); transition: background-color 220ms ease, transform 220ms ease; }
.approach-steps li.active { background: rgba(11,102,80,.07); transform: translateX(8px); }
.approach-steps button { width: 100%; display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 32px 14px 32px 0; background: transparent; border: 0; cursor: pointer; text-align: left; }
.approach-steps button > span { color: var(--green-700); font-family: var(--mono); font-size: 10px; padding-top: 5px; }
.approach-steps li.active button > span { color: var(--green-800); }
.approach-steps h3 { margin: 0 0 10px; font-size: 23px; font-weight: 600; line-height: 1.2; letter-spacing: -.04em; }
.approach-steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.reporting-section { display: grid; grid-template-columns: minmax(380px, .84fr) minmax(500px, 1.16fr); gap: clamp(70px, 9vw, 160px); align-items: center; padding: clamp(105px, 12vw, 180px) clamp(24px, 7.2vw, 118px); color: var(--white); background: var(--green-950); }
.reporting-copy h2 { font-size: clamp(52px, 5.1vw, 84px); }
.reporting-copy > p:not(.eyebrow) { max-width: 630px; margin: 34px 0 0; color: rgba(226,247,237,.62); font-size: 16px; line-height: 1.75; }
.reporting-copy ul { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.reporting-copy li { display: flex; gap: 20px; padding: 17px 0; color: rgba(242,253,248,.82); border-bottom: 1px solid var(--line-light); font-size: 13px; }
.reporting-copy li span { color: var(--emerald); font-family: var(--mono); font-size: 9px; }

.report-card { position: relative; padding: 28px; color: var(--white); background: rgba(8, 66, 52, .44); border: 1px solid rgba(188, 244, 217, .17); box-shadow: 0 40px 100px rgba(0,20,16,.42); overflow: hidden; }
.report-card::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(214,250,232,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(214,250,232,.05) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
.report-card > * { position: relative; z-index: 1; }
.report-card-top { padding-bottom: 22px; border-bottom: 1px solid var(--line-light); }
.report-metric { margin: 45px 0 10px; }
.report-metric > span { display: block; color: rgba(222,247,235,.48); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.report-metric strong { display: block; margin: 5px 0 0; font-size: clamp(42px, 5vw, 72px); font-weight: 500; line-height: 1; letter-spacing: -.06em; }
.report-metric small { color: var(--emerald); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.bar-chart { height: 208px; display: flex; align-items: flex-end; gap: 10px; margin: 35px 0 45px; padding-top: 20px; border-bottom: 1px solid var(--line-light); }
.bar-chart button { position: relative; flex: 1; height: var(--h); min-width: 0; padding: 0; background: rgba(112,231,178,.14); border: 0; border-top: 1px solid rgba(112,231,178,.52); cursor: pointer; transition: height 380ms cubic-bezier(.2,.7,.2,1), background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.bar-chart button::after { content: ""; position: absolute; inset: 0; background: rgba(112,231,178,.06); transform: scaleY(.15); transform-origin: bottom; transition: transform 260ms ease; }
.bar-chart button span { position: absolute; right: 0; bottom: -25px; left: 0; color: rgba(220,245,233,.38); font-family: var(--mono); font-size: 7px; text-align: center; }
.bar-chart button:hover { background: rgba(112,231,178,.24); transform: translateY(-3px); }
.bar-chart button:hover::after,
.bar-chart button.current::after { transform: scaleY(1); }
.bar-chart button.current { background: rgba(202,255,119,.17); border-color: var(--signal); box-shadow: 0 -10px 26px rgba(202,255,119,.08); }
.bar-chart button.current span { color: var(--signal); }
.report-lines { display: grid; gap: 13px; }
.report-lines > div { display: grid; grid-template-columns: 85px 1fr 68px; align-items: center; gap: 12px; color: rgba(220,245,233,.48); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.report-lines i { height: 2px; background: rgba(211,245,228,.1); }
.report-lines b { display: block; width: var(--w); height: 100%; background: var(--emerald); }
.report-lines strong { color: rgba(238,253,246,.75); font-size: 7px; font-weight: 400; text-align: right; }
.report-note { display: flex; align-items: center; gap: 13px; margin: 30px 0 0; padding: 18px; color: rgba(236,252,244,.7); background: rgba(2,37,29,.55); font-size: 12px; }
.report-note > span:last-child { color: inherit; font-size: inherit; }
.note-mark { position: relative; flex: 0 0 15px; width: 15px; height: 15px; border: 1px solid var(--signal); }
.note-mark::after { content: ""; position: absolute; top: 3px; right: 3px; width: 4px; height: 7px; border-right: 1px solid var(--signal); border-bottom: 1px solid var(--signal); transform: rotate(45deg); }

.review-image { position: relative; grid-column: 1 / -1; min-height: 520px; margin: 20px 0 0; overflow: hidden; }
.review-image > img { width: 100%; height: clamp(460px, 42vw, 660px); object-fit: cover; object-position: center 62%; }
.review-image figcaption { position: absolute; right: 0; bottom: 0; width: min(100%, 480px); display: flex; flex-direction: column; align-items: flex-start; padding: 32px; color: var(--white); background: rgba(3,40,32,.94); }
.review-image figcaption > span { color: var(--emerald); font-family: var(--mono); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.review-image figcaption strong { margin: 10px 0 25px; font-family: var(--serif); font-size: 28px; font-style: italic; font-weight: 400; line-height: 1.15; }
.review-image figcaption a { display: inline-flex; align-items: center; gap: 14px; color: var(--signal); font-size: 11px; font-weight: 700; }

.fit-section { background: var(--paper); }
.fit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fit-card { position: relative; min-height: 360px; padding: clamp(30px, 3vw, 48px); background: var(--paper); transition: background 300ms ease, color 300ms ease, transform 300ms ease; }
.fit-card:hover { color: var(--white); background: var(--green-800); transform: translateY(-5px); }
.fit-card > span { color: var(--green-700); font-family: var(--mono); font-size: 10px; }
.fit-card h3 { max-width: 280px; margin: 105px 0 18px; font-size: clamp(23px, 2.2vw, 31px); font-weight: 600; line-height: 1.15; letter-spacing: -.045em; }
.fit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.fit-card:hover > span { color: var(--signal); }
.fit-card:hover p { color: rgba(238,253,246,.63); }
.fit-card .card-action { position: absolute; right: clamp(30px,3vw,48px); bottom: 28px; left: clamp(30px,3vw,48px); display: flex; align-items: center; justify-content: space-between; padding-top: 14px; color: var(--green-700); border-top: 1px solid var(--line); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.fit-card:hover .card-action { color: var(--signal); border-color: var(--line-light); }

.faq-section { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr); gap: clamp(70px, 10vw, 180px); background: var(--paper-deep); }
.faq-heading { display: block; margin: 0; }
.faq-heading .eyebrow { margin-top: 0; }
.faq-heading h2 { font-size: clamp(50px, 4.6vw, 76px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; justify-content: space-between; gap: 22px; padding: 28px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 600; line-height: 1.4; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-list summary span::before,
.faq-list summary span::after { content: ""; position: absolute; top: 10px; right: 0; width: 16px; height: 1px; background: var(--green-700); transition: transform 220ms ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--green-700); }
.faq-list details p { max-width: 670px; margin: -5px 50px 26px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.contact-section { position: relative; min-height: 720px; display: flex; align-items: center; justify-content: center; padding: 110px 24px; color: var(--white); text-align: center; background: var(--green-800); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(221,252,237,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(221,252,237,.045) 1px, transparent 1px); background-size: 45px 45px; mask-image: radial-gradient(circle at center, #000, transparent 70%); }
.contact-orbit { position: absolute; top: 50%; left: 50%; width: min(76vw, 900px); aspect-ratio: 1; transform: translate(-50%, -50%); }
.contact-orbit i { position: absolute; border: 1px solid rgba(215,250,233,.1); border-radius: 50%; animation: orbit-breathe 7s ease-in-out infinite alternate; }
.contact-orbit i:nth-child(1) { inset: 2%; }
.contact-orbit i:nth-child(2) { inset: 17%; animation-delay: -2s; }
.contact-orbit i:nth-child(3) { inset: 32%; animation-delay: -4s; border-color: rgba(202,255,119,.2); }
.contact-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.contact-inner > img { width: 56px; margin-bottom: 32px; }
.contact-inner .eyebrow { margin-bottom: 24px; }
.contact-inner h2 { font-size: clamp(58px, 6.4vw, 104px); }
.contact-inner > p:not(.eyebrow) { max-width: 640px; margin: 30px auto 35px; color: rgba(235,251,243,.66); font-size: 17px; }
.contact-inner small { margin-top: 18px; color: rgba(230,248,239,.42); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { display: grid; grid-template-columns: 1.2fr .65fr 1fr; gap: 60px; align-items: end; padding: 72px clamp(24px, 5vw, 80px) 35px; color: var(--white); background: var(--green-950); border-top: 1px solid var(--line-light); }
.footer-brand img { width: 222px; }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: rgba(225,246,236,.42); font-size: 11px; line-height: 1.8; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { width: fit-content; color: rgba(235,250,243,.58); font-size: 12px; transition: color 180ms ease; }
.footer-links a:hover { color: var(--signal); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; color: rgba(221,244,233,.32); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.airise-credit { color: rgba(220,244,232,.5); transition: color 180ms ease; }
.airise-credit:hover { color: var(--signal); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-row.reveal:nth-child(2), .approach-steps li:nth-child(2), .fit-card:nth-child(2) { transition-delay: 70ms; }
.service-row.reveal:nth-child(3), .approach-steps li:nth-child(3), .fit-card:nth-child(3) { transition-delay: 140ms; }
.service-row.reveal:nth-child(4), .approach-steps li:nth-child(4) { transition-delay: 210ms; }
.service-row.reveal:nth-child(5) { transition-delay: 280ms; }

.legal-page { background: var(--paper); }
.site-header.compact { position: relative; }
.legal-back { margin-left: auto; }
.legal-content { max-width: 1040px; margin: 0 auto; padding: clamp(100px, 11vw, 160px) 24px; }
.legal-content h1 { max-width: 800px; font-size: clamp(58px, 7vw, 102px); }
.legal-content h1 em { color: var(--green-700); }
.legal-intro { max-width: 700px; margin: 38px 0 82px; color: var(--muted); font-size: 18px; }
.legal-content section { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 35px 0; border-top: 1px solid var(--line); }
.legal-content section > span { color: var(--green-700); font-family: var(--mono); font-size: 10px; }
.legal-content section h2 { margin: 0 0 12px; font-size: 25px; line-height: 1.25; letter-spacing: -.035em; }
.legal-content section p { max-width: 760px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.legal-contact { margin-top: 70px; padding: 32px; color: var(--white); background: var(--green-800); }
.legal-contact p { margin: 0 0 8px; color: rgba(235,251,243,.58); font-size: 13px; }
.legal-contact a { color: var(--signal); font-size: 18px; font-weight: 600; }
.minimal-footer { grid-template-columns: 1fr 1fr; align-items: center; padding-top: 34px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.minimal-footer .airise-credit { justify-self: end; }

.not-found-page { min-height: 100svh; color: var(--white); background: var(--green-950); overflow: hidden; }
.not-found { position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; text-align: center; }
.not-found > img { width: 68px; margin-bottom: 34px; }
.not-found .eyebrow { margin-bottom: 26px; }
.not-found h1 { font-size: clamp(60px, 8vw, 118px); }
.not-found > p:not(.eyebrow) { margin: 30px 0; color: rgba(230,250,240,.6); }
.not-found-orbit { position: absolute; top: 50%; left: 50%; width: min(88vw, 850px); aspect-ratio: 1; transform: translate(-50%, -50%); }
.not-found-orbit i { position: absolute; border: 1px solid rgba(212,248,230,.08); border-radius: 50%; }
.not-found-orbit i:nth-child(1) { inset: 0; }.not-found-orbit i:nth-child(2) { inset: 18%; }.not-found-orbit i:nth-child(3) { inset: 36%; border-color: rgba(202,255,119,.16); }
.floating-credit { position: fixed; right: 25px; bottom: 22px; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }

@keyframes aurora-drift { to { transform: translate(-8%, 9%) rotate(22deg) scale(1.12); } }
@keyframes grid-shift { to { background-position: 46px 46px; } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotate-back { to { transform: rotate(-360deg); } }
@keyframes blink { 50% { opacity: .35; box-shadow: 0 0 2px currentColor; } }
@keyframes tag-float { 50% { transform: translateY(-7px); } }
@keyframes bars { to { height: 92%; opacity: .95; } }
@keyframes scroll-line { 0%, 20% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }
@keyframes orbit-breathe { to { transform: scale(1.035); opacity: .5; } }

@media (max-width: 1180px) {
  .site-nav { gap: 20px; }
  .hero { grid-template-columns: .92fr 1.08fr; gap: 30px; }
  .hero h1 { font-size: clamp(62px, 6.7vw, 84px); }
  .engine-tag { min-width: 112px; padding: 8px 9px; font-size: 9px; }
  .monogram-core { width: 150px; height: 150px; }
  .service-row { grid-template-columns: 45px minmax(210px,.8fr) 1fr 70px; gap: 24px; }
  .approach-grid { gap: 60px; }
  .reporting-section { gap: 65px; }
  .faq-section { gap: 70px; }
}

@media (max-width: 1100px) {
  :root { --header-height: 74px; }
  .site-header { padding: 0 24px; }
  .site-header::after { right: 24px; left: 24px; }
  .brand img { width: 202px; }
  .nav-toggle { position: relative; z-index: 102; width: 46px; height: 46px; display: grid; place-content: center; gap: 7px; padding: 0; border: 1px solid var(--line-light); background: transparent; cursor: pointer; }
  .nav-toggle span { display: block; width: 18px; height: 1px; background: var(--white); transition: transform 220ms ease; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 110px 32px 40px; color: var(--white); background: var(--green-950); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity 240ms ease, transform 240ms ease, visibility 240ms; }
  .nav-open .site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { width: 100%; padding: 15px 0; color: var(--white); border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 38px; font-weight: 400; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { width: 100%; min-height: 58px; margin-top: 32px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 70px; padding-top: 140px; }
  .hero-copy { max-width: 780px; }
  .hero h1 { font-size: clamp(68px, 10vw, 98px); }
  .hero-engine { width: min(100%, 720px); justify-self: center; }
  .hero-scroll { display: none; }
  .section-heading { grid-template-columns: 1fr; grid-template-areas: "label" "title" "copy"; }
  .section-heading .eyebrow { margin-top: 0; }
  .service-row { grid-template-columns: 42px minmax(220px,.7fr) 1fr 62px; }
  .office-section { grid-template-columns: 1fr; }
  .office-copy { max-width: 760px; }
  .office-image { width: min(100%, 980px); }
  .approach-heading { grid-template-columns: 1fr; grid-template-areas: "label" "title"; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-visual { width: min(100%, 720px); }
  .reporting-section { grid-template-columns: 1fr; }
  .reporting-copy { max-width: 760px; }
  .report-card { width: min(100%, 760px); }
  .review-image { width: 100%; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-heading { max-width: 760px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line-light); }
  .legal-back { display: inline-flex; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .site-header { min-height: 70px; }
  .brand img { width: 190px; }
  .hero { gap: 58px; padding: 126px 20px 80px; }
  .hero h1 { max-width: 600px; font-size: clamp(55px, 15.2vw, 74px); line-height: .94; letter-spacing: -.065em; }
  .hero-intro { margin-top: 28px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; margin-top: 32px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 48px; }
  .hero-proof > div { display: grid; grid-template-columns: 110px 1fr; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
  .hero-proof > div:not(:first-child) { padding-left: 0; border-left: 0; }
  .proof-dot { display: none; }
  .hero-proof strong { margin: 0; }
  .engine-frame { padding: 14px; }
  .engine-topline { padding-bottom: 13px; font-size: 7px; }
  .orbit-stage { aspect-ratio: .86; }
  .orbit-lines { inset: 9% -4%; width: 108%; height: 83%; }
  .monogram-core { width: 126px; height: 126px; }
  .monogram-core img { width: 52px; }
  .core-kicker, .core-state { font-size: 6px; }
  .engine-tag { min-width: 104px; font-size: 8px; }
  .engine-tag > span { font-size: 6px; }
  .engine-tag i { font-size: 6px; }
  .tag-one { top: 15%; left: 1%; }.tag-two { top: 13%; right: 0; }.tag-three { top: 55%; left: -1%; }.tag-four { top: 58%; right: -1%; }.tag-five { right: 18%; bottom: 5%; }
  .engine-footer { font-size: 7px; }
  .engine-footer strong { font-size: 7px; }
  .section { padding: 90px 20px; }
  .section-heading { margin-bottom: 56px; }
  .section-heading h2 { font-size: clamp(48px, 13.4vw, 66px); }
  .section-heading > p:last-child { margin-top: 26px; font-size: 15px; }
  .service-row { min-height: 0; grid-template-columns: 38px 1fr 50px; gap: 12px; padding: 28px 0; }
  .service-title { padding-right: 6px; }
  .service-row > p { grid-column: 2 / -1; padding-right: 4px; }
  .service-icon { grid-column: 3; grid-row: 1; width: 48px; height: 48px; }
  .service-icon i { left: 10px; width: 28px; }.service-icon i:nth-child(1) { top: 12px; }.service-icon i:nth-child(2) { top: 23px; }.service-icon i:nth-child(3) { top: 34px; }
  .vat-icon i { left: 13px; width: 22px; top: 23px !important; }.vat-icon i:nth-child(2) { top: 13px !important; left: 13px; }.vat-icon i:nth-child(3) { top: 30px !important; left: 30px; }
  .report-icon { padding: 10px; }
  .service-row:hover::before { transform: translateY(102%); }
  .service-row:hover .service-number { color: var(--green-700); }.service-row:hover .service-title h3 { color: var(--ink); }.service-row:hover .service-title span { color: var(--muted); }.service-row:hover > p { color: var(--muted); }
  .office-section { gap: 52px; padding: 90px 20px; }
  .office-copy h2 { font-size: clamp(48px, 13.4vw, 66px); }
  .office-tabs { margin-top: 34px; }
  .office-image { aspect-ratio: 4 / 3; }
  .office-image > img:first-child { object-position: 45% center; }
  .office-wall-logo { top: 34%; left: 14%; width: 30%; }
  .office-image figcaption { right: 8px; bottom: 8px; max-width: 62%; }
  .image-hotspot { width: 38px; height: 38px; }
  .hotspot-collect { top: 62%; left: 21%; }
  .hotspot-review { top: 49%; left: 62%; }
  .hotspot-explain { right: 4%; bottom: 17%; }
  .control-statement { min-height: 480px; padding: 80px 20px; }
  .control-statement::before { width: 420px; height: 420px; }.control-statement::after { width: 620px; height: 620px; }
  .control-statement > p { font-size: clamp(34px, 10vw, 48px); }
  .approach-grid { gap: 45px; }
  .approach-visual { min-height: 420px; padding: 20px; }
  .calendar-grid { gap: 5px; margin: 38px 0 48px; }
  .calendar-flow { font-size: 6px; }
  .approach-steps button { grid-template-columns: 37px 1fr; gap: 12px; padding: 26px 10px 26px 0; }
  .reporting-section { gap: 58px; padding: 90px 20px; }
  .reporting-copy h2 { font-size: clamp(50px, 13.5vw, 66px); }
  .report-card { padding: 19px; }
  .report-metric { margin-top: 35px; }
  .bar-chart { height: 160px; gap: 6px; }
  .report-lines > div { grid-template-columns: 70px 1fr 56px; gap: 7px; font-size: 7px; }
  .report-note { padding: 14px; font-size: 10px; }
  .review-image { min-height: 470px; }
  .review-image > img { height: 470px; object-position: 45% center; }
  .review-image figcaption { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 24px; }
  .fit-cards { grid-template-columns: 1fr; }
  .fit-card { min-height: 270px; }
  .fit-card h3 { margin-top: 65px; }
  .faq-section { gap: 58px; }
  .faq-list summary { padding: 24px 0; font-size: 15px; }
  .contact-section { min-height: 660px; padding: 95px 20px; }
  .contact-orbit { width: 180vw; }
  .contact-inner h2 { font-size: clamp(58px, 15vw, 76px); }
  .contact-inner > p:not(.eyebrow) { font-size: 15px; }
  .contact-inner .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 42px; padding: 58px 20px 30px; }
  .footer-meta { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 12px; }
  .legal-back { min-height: 42px; gap: 9px; padding: 0 12px; font-size: 9px; }
  .legal-content { padding: 90px 20px; }
  .legal-content h1 { font-size: clamp(56px, 15vw, 74px); }
  .legal-intro { margin: 30px 0 60px; font-size: 16px; }
  .legal-content section { grid-template-columns: 38px 1fr; gap: 12px; }
  .legal-contact { padding: 24px; }
  .legal-contact a { font-size: 14px; overflow-wrap: anywhere; }
  .minimal-footer { grid-template-columns: 1fr; gap: 10px; }
  .minimal-footer .airise-credit { justify-self: start; }
  .not-found h1 { font-size: clamp(58px, 16vw, 78px); }
  .floating-credit { right: auto; bottom: 17px; left: 50%; white-space: nowrap; transform: translateX(-50%); }
}

@media (max-width: 380px) {
  .brand img { width: 174px; }
  .hero { padding-right: 16px; padding-left: 16px; }
  .hero h1 { font-size: 52px; }
  .engine-tag { min-width: 92px; padding: 7px; font-size: 7px; }
  .monogram-core { width: 112px; height: 112px; }
  .section, .reporting-section, .office-section { padding-right: 16px; padding-left: 16px; }
  .section-heading h2, .reporting-copy h2 { font-size: 45px; }
}

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