:root {
  --ink: #071c13;
  --body: #456052;
  --green: #0b7d3d;
  --deep: #04250f;
  --navy: #071f38;
  --gold: #e9b10e;
  --paper: #f5f8f6;
  --line: #dbe8df;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: #fff;
  color: #04250f;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 37, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-row {
  width: min(1500px, calc(100% - 40px));
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-brand {
  display: flex;
  align-items: center;
  margin-right: 0;
  text-decoration: none;
}
.site-brand img {
  width: 190px;
  height: 58px;
  object-fit: contain;
  animation: marketer-glow 3.8s ease-in-out infinite;
}
.site-brand span { display: none; }
.header-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  color: var(--gold);
  white-space: nowrap;
  text-decoration: none;
}
.header-phone span {
  color: #b9d1c4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
}
.header-phone strong {
  color: var(--gold);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: .4px;
  line-height: 1.05;
}
.site-brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.site-brand small {
  display: block;
  margin-top: 5px;
  color: #e9b10e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.6px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: auto;
}
.site-nav a {
  color: #d8e7dc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}
.nav-cta {
  margin-left: 22px;
  padding: 11px 17px !important;
  border-radius: 999px;
  background: var(--gold);
  color: #10251a !important;
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}
.hero-short {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(20, 164, 76, 0.23),
      transparent 32%
    ),
    linear-gradient(135deg, #031b0e, #07243d 58%, #04250f);
  color: #fff;
}
.hero-short::before {
  content: "";
  position: absolute;
  inset: 0 0 0 46%;
  background: url("assets/hero-tax-professional.webp") 100% 34% / cover no-repeat;
  opacity: .5;
  filter: saturate(.82) contrast(1.05);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  pointer-events: none;
}
.hero-short::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,27,14,.99) 0%, rgba(5,28,30,.86) 45%, rgba(7,31,56,.12) 75%, rgba(4,37,15,.22) 100%);
  pointer-events: none;
}
.hero-short .page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 70px;
  align-items: center;
  padding: 86px 0;
}

.hero-brand-large {
  display: block;
  width: min(76%, 430px);
  margin: 0 auto 30px;
  text-decoration: none;
}
.hero-brand-large img {
  width: 100%;
  height: auto;
  animation: marketer-glow-hero 3.8s ease-in-out infinite;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
.hero-short .eyebrow {
  text-align: center;
}
.hero-short h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero-short h1 em,
.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-short .lead,
.page-hero .lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #c2d6c8;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}
.button.gold {
  background: var(--gold);
  color: #17271e;
}
.button.light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.button.green {
  background: var(--green);
  color: #fff;
}
.button.outline {
  border-color: #b9d3c2;
  background: #fff;
  color: #07502a;
}
.architecture-card {
  justify-self: center;
  width: calc(100% - 20px);
  transform: none;
  padding: 26px;
  border: 1px solid rgba(233, 177, 14, 0.35);
  border-radius: 20px;
  background: rgba(2, 20, 12, 0.56);
  backdrop-filter: blur(3px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}
.hero-short .architecture-card {
  transform: none;
  align-self: end;
  margin-bottom: 24px;
}
.platform-lockup {
  width: min(100%, 330px);
  margin: 0 auto 22px;
  padding: 4px 8px;
}
.platform-lockup img { width: 100%; height: auto; animation: marketer-glow-hero 3.8s ease-in-out infinite; }
@keyframes marketer-glow {
  0%, 100% { filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .3)) drop-shadow(0 0 5px rgba(45, 201, 255, .25)); }
  50% { filter: drop-shadow(0 7px 17px rgba(0, 0, 0, .34)) drop-shadow(0 0 11px rgba(45, 201, 255, .72)) drop-shadow(0 0 16px rgba(233, 177, 14, .28)); }
}
@keyframes marketer-glow-hero {
  0%, 100% { filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .35)) drop-shadow(0 0 10px rgba(45, 201, 255, .25)); }
  50% { filter: drop-shadow(0 20px 32px rgba(0, 0, 0, .4)) drop-shadow(0 0 22px rgba(45, 201, 255, .72)) drop-shadow(0 0 30px rgba(233, 177, 14, .3)); }
}
@media (prefers-reduced-motion: reduce) {
  .site-brand img, .platform-lockup img, .hero-brand-large img { animation: none; filter: drop-shadow(0 7px 16px rgba(45, 201, 255, .38)); }
}
.architecture-card > span {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(233, 177, 14, 0.14);
  color: #f2cd55;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.architecture-card h2 {
  margin: 18px 0 10px;
  font-size: 28px;
}
.architecture-card p {
  margin: 0;
  color: #bdd2c4;
  line-height: 1.6;
}
.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.module-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #e4eee7;
  font-size: 12px;
  font-weight: 750;
}
.section {
  padding: 78px 0;
}
.section.white {
  background: #fff;
}
.section.dark {
  background: linear-gradient(135deg, #04250f, #07331a);
  color: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.section-head p:last-child {
  margin: 17px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}
.dark .section-head p:last-child {
  color: #bad0c0;
}
.choice-grid,
.feature-grid,
.price-preview,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.choice-card,
.feature-card,
.price-card,
.proof-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 45, 24, 0.07);
}
.choice-card.office {
  border-color: rgba(233, 177, 14, 0.65);
  background: linear-gradient(145deg, #06351b, #0a4925);
  color: #fff;
}
.choice-card span,
.feature-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.choice-card h3,
.feature-card h3,
.price-card h3 {
  margin: 13px 0 10px;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.choice-card p,
.feature-card p,
.price-card p,
.proof-card p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.62;
}
.choice-card.office p {
  color: #c5d9cc;
}
.choice-card ul,
.feature-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.choice-card li,
.feature-card li {
  margin: 10px 0;
  color: inherit;
}
.choice-card li:before,
.feature-card li:before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold);
  font-weight: 900;
}
.choice-card .button {
  margin-top: 24px;
}
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
  padding: 26px;
}
.feature-card h3 {
  font-size: 23px;
}
.feature-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}
.price-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.price-card strong {
  display: block;
  margin: 14px 0 6px;
  color: var(--green);
  font-size: 36px;
}
.price-card.featured {
  background: #062b17;
  color: #fff;
  border-color: #8a6d12;
}
.price-card.featured p {
  color: #bfd3c5;
}
.price-card.featured strong {
  color: var(--gold);
}
.founder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(20, 164, 76, .2), transparent 30%),
    linear-gradient(135deg, #03190e 0%, #071f38 62%, #04250f 100%);
}
.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  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: 48px 48px;
  pointer-events: none;
}
.founder-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .65fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}
.founder-copy h2 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.045em;
}
.founder-copy h2 em { color: var(--gold); font-style: normal; }
.founder-copy blockquote {
  max-width: 690px;
  margin: 0 0 24px;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--gold);
  color: #fff;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 750;
  line-height: 1.42;
}
.founder-copy > p {
  max-width: 690px;
  margin: 0 0 17px;
  color: #bfd2c7;
  font-size: 17px;
  line-height: 1.72;
}
.founder-belief strong { color: #fff; }
.founder-signoff {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: #fff;
}
.founder-portrait {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 2px solid rgba(233,177,14,.78);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
  box-shadow: 0 0 0 4px rgba(233,177,14,.08), 0 8px 24px rgba(0,0,0,.3);
}
.founder-signoff strong, .founder-signoff small { display: block; }
.founder-signoff small { margin-top: 3px; color: #9fb9aa; }
.founder-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.founder-text-link { color: #fff; font-weight: 800; text-underline-offset: 5px; }
.founder-video {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(233,177,14,.48);
  border-radius: 30px;
  background: rgba(1,14,9,.74);
  box-shadow: 0 35px 80px rgba(0,0,0,.46), 0 0 38px rgba(31,183,102,.12);
}
.founder-video::before {
  content: "FROM THE FOUNDER";
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(233,177,14,.5);
  border-radius: 999px;
  background: rgba(4,37,15,.82);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  pointer-events: none;
}
.founder-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  background: #061c2c;
  object-fit: cover;
}
.founder-video figcaption { display: grid; gap: 3px; padding: 17px 10px 8px; }
.founder-video figcaption span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: 1.3px; }
.founder-video figcaption strong { color: #fff; font-size: 17px; }
.founder-video figcaption small { color: #8fa99a; }
.short-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 25px;
}
.short-form label {
  display: grid;
  gap: 7px;
  color: #d9e7dd;
  font-size: 14px;
  font-weight: 750;
}
.short-form input,
.short-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #fff;
  color: #14271c;
  font: inherit;
}
.short-form .consent-short {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 900px;
  color: #b8ccbe;
  font-size: 12px;
  line-height: 1.5;
}
.short-form .consent-short input {
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: 0 0 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--gold);
}
.short-form .consent-short span {
  display: block;
}
.short-form button {
  grid-column: 1/3;
  border: 0;
  cursor: pointer;
}
.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: #07502a;
}
.page-hero {
  padding: 78px 0;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(233, 177, 14, 0.15),
      transparent 30%
    ),
    linear-gradient(135deg, #04250f, #071f38);
  color: #fff;
}
.page-hero .page-shell {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  gap: 55px;
  align-items: center;
}
.page-hero-visual {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}
.page-hero-visual img {
  width: 100%;
  border-radius: 12px;
}
.academy-brand-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}
.academy-brand-panel img {
  width: min(100%, 390px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}
.academy-brand-panel p {
  max-width: 440px;
  margin: 0;
  color: #c2d6c8;
  line-height: 1.6;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.content-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.content-card b {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 1px;
}
.content-card h3 {
  margin: 12px 0 9px;
  font-size: 24px;
}
.content-card p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process article {
  padding: 23px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.process span {
  color: var(--gold);
  font-weight: 900;
}
.process h3 {
  font-size: 20px;
}
.process p {
  color: #bfd3c5;
  line-height: 1.55;
}
.notice {
  margin-top: 24px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #fff8df;
  color: #4b4323;
  line-height: 1.6;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}
.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}
.faq-list summary span {
  color: var(--gold);
}
.video-grid-new {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.video-card-new {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  background: #061f12;
  color: #fff;
}
.video-card-new img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card-new:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 15, 10, 0.06) 25%,
    rgba(2, 20, 12, 0.94) 100%
  );
}
.video-card-new button {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #10251a;
  cursor: pointer;
}
.video-card-new div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.video-card-new small {
  color: var(--gold);
  font-weight: 900;
}
.video-card-new h3 {
  margin: 8px 0 5px;
  font-size: 21px;
}
.video-card-new p {
  margin: 0;
  color: #c8d9ce;
  font-size: 14px;
  line-height: 1.45;
}
.video-modal {
  width: min(900px, calc(100% - 24px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #041a0d;
  color: #fff;
}
.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
}
.video-modal-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) 1fr;
}
.video-modal video {
  width: 100%;
  max-height: 82vh;
  background: #000;
}
.video-modal-copy {
  align-self: center;
  padding: 32px;
}
.video-modal-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.video-modal-copy h3 {
  font-size: 30px;
}
.video-modal-copy p {
  color: #bfd3c5;
  line-height: 1.6;
}
.video-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #071c13;
  font-size: 22px;
}
.site-footer {
  padding: 55px 0 25px;
  background: #03250f;
  color: #c0d4c6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.6fr);
  gap: 60px;
}
.footer-brand p {
  max-width: 520px;
  line-height: 1.65;
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.2px;
}
.footer-links a {
  font-size: 14px;
  text-decoration: none;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-social a {
  padding: 8px 11px;
  border: 1px solid rgba(233, 177, 14, 0.45);
  border-radius: 999px;
  color: #f2cd55;
  font-size: 12px;
  text-decoration: none;
}
.footer-legal {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  line-height: 1.6;
  color: #8faa98;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison {
  overflow: auto;
}
.comparison table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.comparison th,
.comparison td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.comparison th {
  background: #eaf4ed;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat-strip article {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.stat-strip strong {
  display: block;
  color: var(--green);
  font-size: 28px;
}
.stat-strip span {
  color: var(--body);
  font-size: 14px;
}
@media (max-width: 1180px) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    padding: 18px 20px;
    background: #04250f;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  }
  .site-nav.is-open {
    display: grid;
  }
  .nav-toggle {
    display: block;
  }
  .hero-short .page-shell,
  .page-hero .page-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .architecture-card { width: 100%; transform: none; }
  .feature-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
  .process,
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-story { grid-template-columns: minmax(0, 1fr) minmax(290px, .65fr); gap: 38px; }
  .short-form {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }
  .nav-row {
    min-height: 68px;
  }
  .site-nav {
    top: 68px;
  }
  .site-brand img {
    width: 145px;
    height: 46px;
  }
  .site-brand strong {
    font-size: 18px;
  }
  .header-phone { display: inline-flex; }
  .header-phone span { font-size: 8px; }
  .header-phone strong { font-size: 17px; }
  .hero-short .page-shell {
    padding: 62px 0;
  }
  .hero-brand-large { width: min(82%, 330px); margin-bottom: 24px; }
  .hero-short::before {
    inset: 0;
    background-position: 62% 22%;
    opacity: .2;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
  }
  .hero-short::after {
    background: linear-gradient(180deg, rgba(3,27,14,.56) 0%, rgba(3,27,14,.9) 48%, rgba(7,31,56,.97) 100%);
  }
  .hero-short h1,
  .page-hero h1 {
    font-size: 43px;
  }
  .hero-short .lead,
  .page-hero .lead {
    font-size: 16px;
  }
  .section {
    padding: 58px 0;
  }
  .choice-grid,
  .feature-grid,
  .price-preview,
  .content-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .process,
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .founder-story { grid-template-columns: 1fr; }
  .founder-video { width: min(100%, 360px); }
  .short-form {
    grid-template-columns: 1fr;
  }
  .short-form button {
    grid-column: auto;
  }
  .video-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .video-card-new {
    min-height: 360px;
  }
  .video-card-new h3 {
    font-size: 17px;
  }
  .video-card-new p {
    font-size: 12px;
  }
  .video-modal-frame {
    grid-template-columns: 1fr;
  }
  .video-modal-copy {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}
@media (max-width: 430px) {
  .video-grid-new {
    grid-template-columns: 1fr;
  }
  .video-card-new {
    min-height: 520px;
  }
}

/* Repair: keep the reference design within the viewport at every breakpoint. */
section[id], article[id], main[id] { scroll-margin-top: 100px; }
:focus-visible { outline: 3px solid #e9b10e; outline-offset: 4px; }
.nav-row { position: relative; }
.nav-toggle { margin-left: auto; min-height: 44px; cursor: pointer; }
.site-nav { max-height: calc(100dvh - 100px); overflow-y: auto; }
.site-nav a { min-height: 28px; display: inline-flex; align-items: center; }
.hero-short .page-shell > *, .page-hero .page-shell > * { min-width: 0; }
.page-hero h1 { overflow-wrap: anywhere; }
.short-form input, .short-form select { min-width: 0; font-size: 16px; }
.short-form input[type="hidden"] { display: none; }
.form-status.error { color: #762521; background: #fff0ee; }
.form-status.success { color: #15472b; background: #edfff2; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-trap input { min-height: 0; }
.site-footer a { overflow-wrap: anywhere; }
@media (max-width: 1180px) {
  .site-nav { top: 100%; }
  .site-nav a { min-height: 40px; }
  .nav-cta { margin-left: 0; justify-self: start; }
  .hero-short .architecture-card { align-self: auto; margin-bottom: 0; }
}
@media (max-width: 680px) {
  .nav-row > .site-brand { display: none; }
  .nav-row { gap: 16px; }
  .site-nav { top: 100%; }
  .button { max-width: 100%; text-align: center; }
  .hero-short .page-shell { padding: 42px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
