    :root {
      --bg: #fcfaf5;
      --surface: #f8f7f3;
      --surface-strong: #ffffff;
      --surface-dark: #213f61;
      --surface-navy: #213f61;
      --text: #213f61;
      --text-soft: #5b5a57;
      --text-light: #fffaf2;
      --gold: #fd8c00;
      --gold-deep: #fd8c00;
      --gold-soft: #fff0d8;
      --line: #ece3d6;
      --shadow: 0 18px 42px rgba(33, 63, 97, 0.08);
      --shadow-soft: 0 10px 24px rgba(33, 63, 97, 0.05);
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: min(1160px, calc(100vw - 1.5rem));
      --section-space: clamp(4.75rem, 8vw, 6.5rem);
      --hero-space: clamp(5.5rem, 10vw, 8rem);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Figtree", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #fffdf8 0%, #fcfaf5 100%);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before,
    body::after {
      display: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    .page-shell {
      position: relative;
      isolation: isolate;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(12px);
      background: rgba(255, 253, 248, 0.94);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      width: var(--container);
      margin: 0 auto;
      padding: 1rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0;
      min-width: 0;
    }

    .brand-logo {
      display: block;
      width: clamp(120px, 15vw, 180px);
      height: auto;
    }

    .brand-copy strong,
    .brand-copy span {
      display: block;
      white-space: nowrap;
    }

    .brand-copy strong {
      font-family: "Figtree", sans-serif;
      font-size: 0.98rem;
      letter-spacing: 0.02em;
      font-weight: 800;
    }

    .brand-copy span {
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 1.4rem;
      color: var(--text-soft);
      font-size: 1.2rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.18rem;
      transition: color 180ms ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.2rem;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: var(--gold-deep);
      opacity: 0;
      transform: scaleX(0.55);
      transform-origin: center;
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--text);
    }

    .nav-links a.is-active {
      color: var(--gold-deep);
      font-weight: 700;
    }

    .nav-links a.is-active::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      padding: 0;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #ffffff;
      color: var(--surface-navy);
      box-shadow: none;
      transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      border-color: rgba(253, 140, 0, 0.28);
      color: var(--gold-deep);
      background: #fffaf2;
    }

    .nav-toggle-box {
      display: grid;
      gap: 0.26rem;
    }

    .nav-toggle-bar {
      display: block;
      width: 1.05rem;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-nav {
      border-top: 1px solid var(--line);
      background: rgba(255, 253, 248, 0.98);
      backdrop-filter: blur(12px);
    }

    .mobile-nav-inner {
      width: var(--container);
      margin: 0 auto;
      padding: 0.6rem 0 1rem;
      display: grid;
      gap: 0.75rem;
    }

    .mobile-nav-links {
      display: grid;
    }

    .mobile-nav-links a {
      padding: 0.88rem 0;
      color: var(--text);
      font-weight: 600;
      border-bottom: 1px solid rgba(33, 63, 97, 0.08);
      transition: color 180ms ease;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a:focus-visible {
      color: var(--gold-deep);
    }

    .mobile-nav-cta {
      justify-self: start;
      min-height: 2.85rem;
      padding-inline: 1rem;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 1.2rem;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00);
      box-shadow: 0 14px 30px rgba(253, 140, 0, 0.22);
      transition: transform 180ms ease, box-shadow 180ms ease;
      font-weight: 800;
      font-size: 0.95rem;
      white-space: nowrap;
      border: none;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible,
    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(253, 140, 0, 0.24);
    }

    main section {
      padding: var(--section-space) 0;
    }

    .section-inner {
      width: var(--container);
      margin: 0 auto;
    }

    .hero {
      padding: calc(var(--hero-space) * 0.74) 0 calc(var(--section-space) - 1rem);
      position: relative;
      overflow: clip;
      background: linear-gradient(180deg, #fffdfa 0%, #fff9f0 56%, rgba(255, 255, 255, 0) 100%);
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(4px);
    }

    .hero::before {
      top: 1rem;
      left: -4rem;
      width: 14rem;
      height: 14rem;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.12) 0%, transparent 68%);
    }

    .hero::after {
      right: -5rem;
      top: 2rem;
      width: 18rem;
      height: 18rem;
      background: radial-gradient(circle, rgba(33, 63, 97, 0.08) 0%, transparent 72%);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: clamp(2.25rem, 5vw, 4rem);
      align-items: center;
    }

    .hero-copy {
      max-width: 31.25rem;
      position: relative;
      z-index: 2;
    }

    .hero-entry {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 820ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.hero-mounted .hero-entry {
      opacity: 1;
      transform: translateY(0);
    }

    .hero.hero-banner {
      padding: 0;
      margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
      background: #f3efe7;
      overflow: hidden;
    }

    .hero.hero-banner::before,
    .hero.hero-banner::after {
      display: none;
    }

    .hero.hero-story-section {
      padding-top: clamp(2.5rem, 5vw, 4rem);
      background: linear-gradient(180deg, rgba(255, 253, 250, 0) 0%, #fffdfa 14%, #fff9f0 100%);
    }

    .hero-banner-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 100%;
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      overscroll-behavior-x: contain;
      scroll-behavior: smooth;
      cursor: grab;
      touch-action: pan-y;
      user-select: none;
      -ms-overflow-style: none;
      scrollbar-width: none;
      background: #f3efe7;
    }

    .hero-banner-track.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
      scroll-snap-type: none;
    }

    .hero-banner-track::-webkit-scrollbar {
      display: none;
    }

    .hero-banner-slide {
      position: relative;
      min-width: 100%;
      min-height: 0;
      padding: 0;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      background: #f3efe7;
    }

    .hero-banner-slide::after {
      display: none;
    }

    .hero-banner-slide img {
      display: block;
      width: 100%;
      height: auto;
      max-width: none;
      max-height: none;
      object-fit: initial;
      pointer-events: none;
      user-select: none;
    }

    .hero-banner-nav {
      position: absolute;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      top: 50%;
      transform: translateY(-50%);
      width: clamp(2.8rem, 5vw, 3.5rem);
      height: clamp(2.8rem, 5vw, 3.5rem);
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(9, 25, 46, 0.46);
      color: #fffaf2;
      backdrop-filter: blur(10px);
      box-shadow: 0 12px 24px rgba(9, 25, 46, 0.18);
      transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .hero-banner-nav:hover,
    .hero-banner-nav:focus-visible {
      background: rgba(9, 25, 46, 0.64);
      border-color: rgba(255, 255, 255, 0.38);
      transform: translateY(-50%) scale(1.03);
    }

    .hero-banner-nav span {
      font-size: 2rem;
      line-height: 1;
      transform: translateY(-0.05rem);
    }

    .hero-banner-nav-prev {
      left: clamp(0.75rem, 2.5vw, 1.5rem);
    }

    .hero-banner-nav-next {
      right: clamp(0.75rem, 2.5vw, 1.5rem);
    }

    .hero-copy h1 {
      margin-top: 0;
      max-width: 7.5ch;
      font-size: clamp(3.05rem, 7vw, 5.6rem);
      line-height: 0.92;
      /* letter-spacing: -0.075em; */
      font-weight: 700;
    }

    .hero-rotator {
      --hero-rotator-height: clamp(2.2rem, 4.2vw, 2.75rem);
      margin-top: 1.2rem;
      height: var(--hero-rotator-height);
      overflow: hidden;
      position: relative;
      width: 100%;
      max-width: 30rem;
    }

    .hero-rotator-track {
      display: grid;
      grid-auto-rows: var(--hero-rotator-height);
      will-change: transform;
      animation: heroWords 9s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
    }

    .hero-rotator-word {
      display: flex;
      align-items: center;
      min-height: var(--hero-rotator-height);
      font-weight: 800;
      font-size: clamp(1.12rem, 2.5vw, 1.9rem);
      letter-spacing: -0.05em;
      line-height: 1;
      white-space: nowrap;
      background: linear-gradient(135deg, #ff9f1c 0%, #fd8c00 45%, #cc7a00 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    @keyframes heroWords {
      0%, 20% { transform: translateY(0); }
      25%, 45% { transform: translateY(calc(-1 * var(--hero-rotator-height))); }
      50%, 70% { transform: translateY(calc(-2 * var(--hero-rotator-height))); }
      75%, 100% { transform: translateY(calc(-3 * var(--hero-rotator-height))); }
    }

    .hero-copy .subtext {
      margin-top: 1.45rem;
      max-width: 28rem;
      font-size: 1.14rem;
      line-height: 1.45;
      color: var(--text);
      font-weight: 700;
    }

    .hero-copy .description {
      margin-top: 0.95rem;
      max-width: 30rem;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-soft);
    }

    .hero-actions {
      margin-top: 1.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      max-width: 31rem;
    }

    .hero-actions .button {
      width: 100%;
      min-height: 3.9rem;
      justify-content: center;
      min-width: 0;
      padding-inline: 1.3rem;
      text-align: center;
      line-height: 1.2;
      box-shadow: 0 16px 40px rgba(33, 63, 97, 0.08);
    }

    .hero-actions-main {
      margin-top: 1.9rem;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      max-width: 38rem;
    }

    .hero-actions-main .button {
      width: auto !important;
      min-width: 0;
      min-height: 3.45rem;
      padding: 0.82rem 1.2rem;
      font-size: 0.98rem;
      line-height: 1.15;
      white-space: nowrap;
      text-wrap: nowrap;
      text-align: center;
      flex: 0 0 auto;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      min-height: 3.45rem;
      padding: 0.95rem 1.35rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .button.primary {
      color: #fff;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00 58%, #d88804 100%);
      box-shadow: 0 18px 36px rgba(253, 140, 0, 0.26);
    }

    .button.secondary {
      color: var(--surface-navy);
      background: rgba(255, 255, 255, 0.76);
      border-color: rgba(33, 63, 97, 0.14);
      box-shadow: 0 12px 30px rgba(33, 63, 97, 0.07);
      backdrop-filter: blur(10px);
    }

    .hero-actions .button:hover,
    .hero-actions .button:focus-visible,
    .hero-actions-main .button:hover,
    .hero-actions-main .button:focus-visible {
      transform: translateY(-3px) scale(1.03);
    }

    .hero-actions .button.primary:hover,
    .hero-actions .button.primary:focus-visible,
    .hero-actions-main .button.primary:hover,
    .hero-actions-main .button.primary:focus-visible {
      box-shadow: 0 22px 48px rgba(253, 140, 0, 0.34);
    }

    .hero-actions .button.secondary:hover,
    .hero-actions .button.secondary:focus-visible,
    .hero-actions-main .button.secondary:hover,
    .hero-actions-main .button.secondary:focus-visible {
      background: var(--surface-navy);
      color: #fff;
      border-color: var(--surface-navy);
      box-shadow: 0 22px 44px rgba(33, 63, 97, 0.18);
    }

    .hero-trust {
      margin-top: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-soft);
      font-size: 1.93rem;
      font-weight: 600;
    }

    .hero-trust::before {
      content: "";
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00);
      box-shadow: 0 0 0 5px rgba(253, 140, 0, 0.1);
      flex: 0 0 auto;
    }

    .hero-stage {
      position: relative;
      min-height: 34rem;
      display: grid;
      place-items: center;
      isolation: isolate;
      --hero-tilt-x: 0;
      --hero-tilt-y: 0;
      --hero-shift-x: 0px;
      --hero-shift-y: 0px;
    }

    .hero-stage::before,
    .hero-stage::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transition: transform 240ms ease;
    }

    .hero-stage::before {
      width: 19rem;
      height: 19rem;
      top: 1rem;
      right: 0.6rem;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.26) 0%, transparent 70%);
      filter: blur(6px);
      transform: translate(var(--hero-shift-x), var(--hero-shift-y));
    }

    .hero-stage::after {
      width: 15rem;
      height: 15rem;
      left: 0.4rem;
      bottom: 1.6rem;
      background: radial-gradient(circle, rgba(33, 63, 97, 0.15) 0%, transparent 72%);
      filter: blur(8px);
      transform: translate(calc(var(--hero-shift-x) * -0.55), calc(var(--hero-shift-y) * -0.55));
    }

    .hero-stage-shell {
      position: relative;
      z-index: 1;
      width: min(100%, 35rem);
      min-height: 32rem;
      border-radius: 34px;
      padding: 1.35rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 34px 90px rgba(33, 63, 97, 0.14);
      backdrop-filter: blur(18px);
      overflow: hidden;
      transform: perspective(1400px) rotateX(calc(var(--hero-tilt-y) * -4deg)) rotateY(calc(var(--hero-tilt-x) * 6deg));
      transition: transform 240ms ease, box-shadow 240ms ease;
    }

    .hero-stage-shell::before {
      content: "";
      position: absolute;
      inset: 1rem;
      border-radius: 30px;
      background:
        radial-gradient(circle at top right, rgba(253, 140, 0, 0.08), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(248, 247, 243, 0.2));
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .hero-stage-shell::after {
      content: "";
      position: absolute;
      inset: 17% 15% 17%;
      border-radius: 30px;
      background: radial-gradient(circle at center, rgba(253, 140, 0, 0.18), transparent 62%);
      filter: blur(12px);
      pointer-events: none;
    }

    .hero-stage-main {
      position: absolute;
      inset: 18% 14% 14%;
      display: grid;
      align-content: end;
      gap: 0.95rem;
      padding: 1.75rem;
      border-radius: 30px;
      background: linear-gradient(160deg, rgba(33, 63, 97, 0.94), rgba(43, 76, 113, 0.88));
      color: #fff;
      overflow: hidden;
      box-shadow: 0 28px 64px rgba(33, 63, 97, 0.26);
    }

    .hero-stage-main::before {
      content: "";
      position: absolute;
      width: 12rem;
      height: 12rem;
      right: -2rem;
      top: -2rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.3), transparent 70%);
    }

    .hero-stage-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 26px 26px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
    }

    .hero-stage-kicker {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 250, 242, 0.74);
    }

    .hero-stage-kicker::before {
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00);
      box-shadow: 0 0 0 5px rgba(253, 140, 0, 0.12);
    }

    .hero-stage-main strong {
      position: relative;
      z-index: 1;
      max-width: 10ch;
      font-size: clamp(1.9rem, 3.2vw, 2.5rem);
      font-weight: 800;
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .hero-stage-main p {
      position: relative;
      z-index: 1;
      margin: 0;
      max-width: 19rem;
      color: rgba(255, 250, 242, 0.82);
      font-size: 0.96rem;
    }

    .hero-stage-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 0.2rem;
    }

    .hero-stage-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 2rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      color: rgba(255, 250, 242, 0.86);
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stage-float {
      position: absolute;
      z-index: 2;
      width: min(45%, 13rem);
    }

    .hero-stage-float.one {
      top: 5%;
      left: 1%;
      animation: heroFloatOne 7s ease-in-out infinite;
    }

    .hero-stage-float.two {
      top: 8%;
      right: 0.5%;
      animation: heroFloatTwo 8s ease-in-out infinite;
    }

    .hero-stage-float.three {
      bottom: 4%;
      left: 3%;
      animation: heroFloatThree 7.4s ease-in-out infinite;
    }

    .hero-stage-card {
      display: grid;
      gap: 0.35rem;
      padding: 1rem;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.74);
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 22px 44px rgba(33, 63, 97, 0.12);
      backdrop-filter: blur(14px);
      opacity: 0;
      transform: rotate(var(--hero-card-rotate, 0deg));
      transition: opacity 780ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    body.hero-mounted .hero-stage-card {
      opacity: 1;
    }

    .hero-stage-float.one { --hero-card-rotate: -7deg; }
    .hero-stage-float.two { --hero-card-rotate: 7deg; }
    .hero-stage-float.three { --hero-card-rotate: -5deg; }

    .hero-stage-card::before {
      content: "";
      width: 0.7rem;
      height: 0.7rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00);
      box-shadow: 0 0 0 6px rgba(253, 140, 0, 0.12);
      margin-bottom: 0.35rem;
    }

    .hero-stage-card strong {
      color: var(--surface-navy);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .hero-stage-card span {
      color: var(--text-soft);
      font-size: 0.86rem;
      line-height: 1.4;
    }

    .hero-stage-card:hover {
      transform: translateY(-8px) rotate(var(--hero-card-rotate, 0deg));
      box-shadow: 0 28px 54px rgba(33, 63, 97, 0.18);
      border-color: rgba(253, 140, 0, 0.22);
    }

    @keyframes heroFloatOne {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes heroFloatTwo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(14px); }
    }

    @keyframes heroFloatThree {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      font-family: "Figtree", sans-serif;
      line-height: 1.15;
      letter-spacing: -0.04em;
    }

    h1 {
      margin-top: 1.25rem;
      font-size: clamp(2.8rem, 7vw, 4.7rem);
      max-width: 14ch;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.15rem);
      max-width: 26ch;
    }

    .section-head {
      display: grid;
      gap: 1rem;
      margin-bottom: 2.4rem;
    }

    .section-head p,
    .hero-copy p,
    .authority-body p {
      margin: 0;
      color: var(--text-soft);
      font-size: 1rem;
    }

    .copy-stack {
      display: grid;
      gap: 1rem;
    }

    .copy-stack p,
    .card-copy,
    .section-note,
    .closing-line {
      margin: 0;
      color: var(--text-soft);
    }

    .card-copy {
      margin-top: 0.9rem;
    }

    .closing-line {
      margin-top: 1.4rem;
      font-weight: 700;
      color: var(--text);
    }

    .hero-panel,
    .card,
    .cta-panel,
    .lead-panel {
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: none;
    }

    .hero-panel {
      padding: 1.35rem;
      border-radius: 24px;
      position: relative;
      overflow: hidden;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: auto -2rem -2rem auto;
      width: 9rem;
      height: 9rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.12), transparent 68%);
    }

    .hero-panel h3 {
      margin-top: 0;
      font-size: 1.5rem;
    }

    .hero-panel p {
      margin: 0.8rem 0 1.1rem;
      color: var(--text-soft);
    }

    .snapshot-section {
      padding-top: 0;
    }

    .snapshot-panel {
      padding: clamp(1.5rem, 4vw, 2.35rem);
    }

    .snapshot-header {
      display: grid;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .snapshot-header p {
      margin: 0;
      color: var(--text-soft);
      max-width: 48rem;
    }

    .snapshot-list {
      margin-top: 1.25rem;
    }

    .metric-grid,
    .audience-grid,
    .result-grid,
    .testimonial-grid,
    .solution-grid,
    .deliverable-grid {
      display: grid;
      gap: 1rem;
    }

    .metric {
      padding: 1rem;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .metric strong {
      display: block;
      font-size: 1.5rem;
      font-family: "Poppins", sans-serif;
      color: var(--surface-navy);
    }

    .metric span {
      color: var(--text-soft);
      font-size: 0.94rem;
    }

    .panel-list,
    .bullet-list,
    .check-list {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 0.8rem;
    }

    .panel-list li,
    .bullet-list li,
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: var(--text-soft);
    }

    .panel-list li::before,
    .bullet-list li::before,
    .check-list li::before {
      content: "";
      width: 0.9rem;
      height: 0.9rem;
      flex: 0 0 0.9rem;
      margin-top: 0.35rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00);
      box-shadow: 0 0 0 5px rgba(253, 140, 0, 0.12);
    }

    .two-column {
      display: grid;
      gap: 1.5rem;
    }

    .why-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .why-section::before,
    .why-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .why-section::before {
      width: 22rem;
      height: 22rem;
      left: -8rem;
      top: 3rem;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.1), transparent 70%);
    }

    .why-section::after {
      width: 18rem;
      height: 18rem;
      right: -6rem;
      bottom: -4rem;
      background: radial-gradient(circle, rgba(33, 63, 97, 0.08), transparent 70%);
    }

    .why-layout {
      position: relative;
      z-index: 1;
      align-items: center;
    }

    .why-copy {
      gap: 1.15rem;
    }

    .why-copy h2 {
      max-width: 11ch;
      font-size: clamp(2.3rem, 4.6vw, 3.55rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
    }

    .why-copy .copy-stack {
      gap: 1.05rem;
      max-width: 31.25rem;
    }

    .why-copy .copy-stack p {
      max-width: 31.25rem;
      line-height: 1.82;
    }

    .why-highlight {
      color: var(--gold-deep);
      font-size: 1.08rem;
      font-weight: 800;
    }

    .card {
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 38px rgba(33, 63, 97, 0.08);
      border-color: rgba(253, 140, 0, 0.22);
    }

    .problem-card {
      position: relative;
      overflow: hidden;
    }

    .problem-card::before {
      content: "";
      position: absolute;
      inset: auto -3rem -3rem auto;
      width: 11rem;
      height: 11rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.08), transparent 68%);
    }

    .why-card {
      position: relative;
      overflow: hidden;
      padding: clamp(1.45rem, 3vw, 2rem);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.6);
      box-shadow: 0 24px 52px rgba(33, 63, 97, 0.12), inset 0 0 0 1px rgba(253, 140, 0, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .why-card::before,
    .why-card::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .why-card::before {
      width: 12rem;
      height: 12rem;
      left: -3.5rem;
      top: -3.5rem;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.16), transparent 68%);
    }

    .why-card::after {
      width: 11rem;
      height: 11rem;
      right: -4rem;
      bottom: -4rem;
      background: radial-gradient(circle, rgba(33, 63, 97, 0.12), transparent 70%);
    }

    .why-card-label {
      position: relative;
      z-index: 1;
      margin: 0 0 1rem;
      color: var(--gold-deep);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .issue-list {
      position: relative;
      z-index: 1;
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 0.85rem;
    }

    .issue-item {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      padding: 0.95rem 1rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(253, 140, 0, 0.14);
      box-shadow: 0 12px 28px rgba(33, 63, 97, 0.06);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
    }

    .issue-item:hover,
    .issue-item:focus-within {
      transform: translateY(-4px);
      border-color: rgba(253, 140, 0, 0.3);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 18px 34px rgba(33, 63, 97, 0.1);
    }

    .issue-dot {
      width: 0.78rem;
      height: 0.78rem;
      flex: 0 0 0.78rem;
      margin-top: 0.38rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9f1c, #fd8c00);
      box-shadow: 0 0 0 6px rgba(253, 140, 0, 0.12), 0 0 18px rgba(253, 140, 0, 0.25);
    }

    .issue-copy {
      color: var(--text);
      font-size: 1rem;
      line-height: 1.55;
      font-weight: 600;
    }

    .solution-card {
      position: relative;
      overflow: hidden;
      background: #ffffff;
    }

    .solution-number {
      width: 2.6rem;
      height: 2.6rem;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(253, 140, 0, 0.12);
      color: var(--surface-navy);
      font-family: "Figtree", sans-serif;
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .solution-card h3 {
      font-size: 1.45rem;
    }

    .card-subtitle {
      margin-top: 0.35rem;
      color: var(--gold-deep);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .solution-card ul {
      margin-top: 1rem;
    }

    .solution-media {
      margin: -1.5rem -1.5rem 1.25rem;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background: rgba(248, 247, 243, 0.9);
    }

    .solution-media img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    .audience-grid {
      gap: 1.25rem;
      align-items: stretch;
    }

    .audience-card {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      height: 100%;
      padding: 1.5rem 1.3rem;
      border-radius: 20px;
      text-align: center;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
      border: 1px solid rgba(253, 140, 0, 0.14);
      box-shadow: 0 14px 28px rgba(33, 63, 97, 0.08), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0.9rem;
      transform: translateY(0);
      transition: all 0.3s ease;
      will-change: transform;
    }

    .audience-card::before,
    .audience-card::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }

    .audience-card::before {
      inset: 0;
      background: linear-gradient(180deg, rgba(253, 140, 0, 0.06), transparent 34%);
    }

    .audience-card::after {
      top: -4rem;
      right: -4rem;
      width: 9rem;
      height: 9rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.13), transparent 72%);
    }

    .audience-card > * {
      position: relative;
      z-index: 1;
    }

    .audience-card:hover,
    .audience-card:focus-within {
      transform: translateY(-6px);
      background: #ffffff;
      border-color: rgba(253, 140, 0, 0.26);
      box-shadow: 0 22px 38px rgba(33, 63, 97, 0.13), 0 0 0 1px rgba(253, 140, 0, 0.08);
    }

    .audience-icon {
      width: 3.25rem;
      height: 3.25rem;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(135deg, #ff9f1c 0%, #fd8c00 58%, #d88804 100%);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 10px 18px rgba(253, 140, 0, 0.2), 0 0 0 4px rgba(253, 140, 0, 0.06);
      transition: all 0.3s ease;
    }

    .audience-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .audience-card:hover .audience-icon,
    .audience-card:focus-within .audience-icon {
      transform: scale(1.06);
      box-shadow: 0 14px 22px rgba(253, 140, 0, 0.24), 0 0 0 4px rgba(253, 140, 0, 0.07);
    }

    .audience-card h3 {
      font-size: 1.08rem;
      line-height: 1.3;
    }

    .audience-card p {
      margin: 0;
      max-width: 15rem;
      color: var(--text-soft);
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .deliverable-grid {
      gap: 1.25rem;
      align-items: stretch;
    }

    .deliverable-grid .card {
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.95rem;
      padding: 1.6rem;
      transition: all 0.25s ease;
    }

    .experience-card {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
      border: 1px solid rgba(33, 63, 97, 0.08);
      box-shadow: 0 18px 34px rgba(33, 63, 97, 0.09);
    }

    .experience-card::before {
      content: "";
      position: absolute;
      top: -4rem;
      right: -4rem;
      width: 9rem;
      height: 9rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 140, 0, 0.1), transparent 72%);
      pointer-events: none;
      z-index: 0;
    }

    .experience-card > * {
      position: relative;
      z-index: 1;
    }

    .experience-card:hover,
    .experience-card:focus-within {
      transform: translateY(-6px);
      border-color: rgba(253, 140, 0, 0.18);
      box-shadow: 0 26px 44px rgba(33, 63, 97, 0.14), 0 0 0 1px rgba(253, 140, 0, 0.06);
    }

    .experience-card h3 {
      font-size: 1.25rem;
    }

    .experience-card .card-copy {
      margin-top: 0;
    }

    .experience-list {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 0.85rem;
    }

    .experience-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      padding: 0.9rem 0.95rem;
      border-radius: 16px;
      background: rgba(248, 247, 243, 0.8);
      border: 1px solid rgba(253, 140, 0, 0.1);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transition: all 0.25s ease;
    }

    .experience-list li:hover {
      transform: translateX(5px);
      background: linear-gradient(180deg, #ffffff, rgba(255, 247, 236, 0.92));
      border-color: rgba(253, 140, 0, 0.18);
      box-shadow: 0 12px 24px rgba(33, 63, 97, 0.08);
    }

    .experience-point-icon {
      width: 2.15rem;
      height: 2.15rem;
      flex: 0 0 2.15rem;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, #ff9f1c 0%, #fd8c00 58%, #d88804 100%);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 10px 18px rgba(253, 140, 0, 0.18), 0 0 0 4px rgba(253, 140, 0, 0.05);
      transition: all 0.25s ease;
    }

    .experience-point-icon svg {
      width: 1rem;
      height: 1rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .experience-point-copy {
      color: var(--text);
      font-size: 0.98rem;
      line-height: 1.55;
      font-weight: 600;
    }

    .delivery-panel {
      background: linear-gradient(145deg, #ffc16a 0%, #ffab34 44%, #fd9511 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 16px 30px rgba(253, 140, 0, 0.16);
    }

    .delivery-panel::before,
    .delivery-panel::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .delivery-panel::before {
      inset: auto -4rem -5rem auto;
      width: 12rem;
      height: 12rem;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 64%);
    }

    .delivery-panel::after {
      top: -3.5rem;
      left: -3.5rem;
      width: 10rem;
      height: 10rem;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    }

    .delivery-panel:hover,
    .delivery-panel:focus-within {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 22px 38px rgba(253, 140, 0, 0.2);
    }

    .delivery-panel h3,
    .delivery-panel p,
    .delivery-panel .option-pills {
      position: relative;
      z-index: 1;
    }

    .delivery-panel p {
      color: rgba(255, 250, 242, 0.92);
    }

    .option-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: auto;
      padding-top: 0.35rem;
    }

    .option-pills span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.65rem;
      padding: 0.68rem 0.95rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.22);
      font-weight: 700;
      backdrop-filter: blur(8px);
      transition: all 0.25s ease;
    }

    .option-pills span:hover,
    .option-pills span:focus-visible {
      transform: translateY(-2px) scale(1.03);
      background: rgba(255, 255, 255, 0.28);
      border-color: rgba(255, 255, 255, 0.34);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.12);
    }

    .result-grid {
      max-width: 56rem;
      margin: 0 auto;
      display: grid;
      gap: 1rem;
    }

    .result-card {
      padding: 1.35rem 1.45rem;
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid rgba(33, 63, 97, 0.1);
      box-shadow: 0 8px 20px rgba(33, 63, 97, 0.04);
      transition: all 0.25s ease;
    }

    .result-card:hover,
    .result-card:focus-within {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(33, 63, 97, 0.06);
    }

    .result-kicker {
      display: block;
      margin-bottom: 0.85rem;
      font-size: 0.8rem;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
    }

    .result-line {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.8rem;
      flex-wrap: wrap;
      font-family: "Figtree", sans-serif;
      line-height: 1.2;
    }

    .result-before,
    .result-after {
      font-size: clamp(1.18rem, 2vw, 1.45rem);
      line-height: 1.2;
    }

    .result-before {
      color: rgba(91, 90, 87, 0.58);
      font-weight: 600;
    }

    .result-after {
      color: var(--surface-navy);
      font-weight: 800;
    }

    .result-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-deep);
          font-size: 1.5rem;
    font-weight: 500;
      letter-spacing: 0.02em;
    }

    .results-summary {
      max-width: 56rem;
      margin: 1.55rem auto 0;
      display: grid;
      gap: 0.6rem;
      text-align: center;
    }

    .results-summary p {
      margin: 0;
      color: var(--text-soft);
    }

    .results-summary .closing-line {
      color: var(--surface-navy);
      font-size: 1.02rem;
    }

    .results-section .section-head {
      max-width: 48rem;
      margin-inline: auto;
      justify-items: center;
      text-align: center;
    }

    .results-section .section-head .copy-stack {
      justify-items: center;
    }

    .authority-shell {
      display: grid;
      gap: 2rem;
      align-items: start;
    }

    .authority-body {
      max-width: 36rem;
    }

    .authority-intro {
      display: flex;
      align-items: center;
      margin-bottom: 1.3rem;
    }

    .authority-role {
      display: block;
      margin: 0 0 0.35rem;
      color: var(--gold-deep);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .authority-body h2 {
      max-width: 12ch;
    }

    .authority-copy {
      max-width: 34rem;
      gap: 0.95rem;
    }

    .authority-copy p {
      max-width: 34rem;
      line-height: 1.75;
    }

    .authority-message {
      margin-top: 1.25rem;
      max-width: 31rem;
      color: var(--surface-navy);
      font-weight: 700;
      line-height: 1.65;
    }

    .authority-side {
      padding-left: 1.35rem;
      border-left: 1px solid rgba(33, 63, 97, 0.12);
    }

    .authority-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 1rem;
    }

    .authority-list li {
      position: relative;
      padding-left: 1rem;
      color: var(--text);
      font-weight: 600;
      line-height: 1.7;
    }

    .authority-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72rem;
      width: 0.42rem;
      height: 0.42rem;
      border-radius: 50%;
      background: var(--gold-deep);
      transform: translateY(-50%);
    }

    .testimonials-section .section-head {
      max-width: 40rem;
      margin-inline: auto;
      justify-items: center;
      text-align: center;
    }

    .testimonial-grid {
      gap: 1.25rem;
      align-items: stretch;
    }

    .testimonial-card {
      height: 100%;
      padding: 1.7rem;
      border-radius: 18px;
      background: #ffffff;
      border: 1px solid rgba(33, 63, 97, 0.1);
      box-shadow: 0 8px 20px rgba(33, 63, 97, 0.04);
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .testimonial-card:hover,
    .testimonial-card:focus-within {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(33, 63, 97, 0.06);
      border-color: rgba(33, 63, 97, 0.14);
    }

    .testimonial-card.featured {
      background: #fffdf9;
      border-color: rgba(253, 140, 0, 0.16);
    }

    .testimonial-quote-mark {
      width: 2rem;
      height: 2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(253, 140, 0, 0.16);
      color: var(--gold-deep);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1;
    }

    .testimonial-card blockquote {
      margin: 0;
      font-size: 1.06rem;
      line-height: 1.65;
      color: var(--text);
      font-weight: 600;
    }

    .testimonial-identity {
      margin-top: auto;
      padding-top: 0.95rem;
      border-top: 1px solid rgba(33, 63, 97, 0.08);
    }

    .testimonial-name {
      display: block;
      color: var(--surface-navy);
      font-size: 0.96rem;
      font-weight: 700;
    }

    .testimonial-role {
      display: block;
      margin-top: 0.25rem;
      color: var(--text-soft);
      font-size: 0.9rem;
    }

    .cta-section {
      padding-top: 0;
    }

    .section-simple {
      max-width: 44rem;
      margin: 0 auto;
      text-align: center;
    }

    .section-simple h2 {
      max-width: 18ch;
      margin-inline: auto;
    }

    .section-simple .copy-stack {
      justify-items: center;
      gap: 0.2rem;
    }

    .section-simple p {
      margin: 0.95rem 0 0;
      color: var(--text-soft);
      max-width: 38rem;
    }

    .cta-final {
      max-width: 1080px;
      margin: 0 auto;
      padding: clamp(2rem, 4vw, 4rem);
      border-radius: 16px;
      border: 1px solid rgba(33, 63, 97, 0.08);
      background: #fff;
      text-align: left;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: clamp(1.75rem, 4vw, 3.25rem);
      align-items: stretch;
    }

    .cta-left {
      max-width: 34rem;
      display: grid;
      align-content: center;
    }

    .cta-left h2 {
      max-width: 13ch;
    }

    .cta-left p {
      margin: 0.85rem 0 0;
      color: var(--text-soft);
      max-width: 34rem;
    }

    .cta-right {
      width: 100%;
      display: flex;
      align-items: stretch;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
    }

    .cta-buttons .button {
      width: auto;
      min-height: 44px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      flex: 0 0 auto;
      font-size: 0.94rem;
      line-height: 1.1;
    }

    .cta-right img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: clamp(18rem, 34vw, 24rem);
      border-radius: 16px;
      object-fit: cover;
      object-position: center;
      border: 1px solid rgba(33, 63, 97, 0.08);
    }

    .cta-email {
      margin-top: 1rem;
      color: var(--surface-navy);
      font-weight: 700;
    }

    .cta-email a {
      color: inherit;
      text-decoration: none;
    }

    .lead-panel {
      padding: clamp(1.5rem, 4vw, 2.5rem);
      border-radius: 22px;
    }

    .lead-panel h3 {
      font-size: clamp(1.65rem, 3vw, 2.2rem);
    }

    .lead-panel p {
      margin: 0.85rem 0 0;
      color: var(--text-soft);
      max-width: 42rem;
    }

    .guide-title {
      margin-top: 1rem;
      font-family: "Poppins", sans-serif;
      font-size: clamp(1.2rem, 2.2vw, 1.5rem);
      line-height: 1.35;
      color: var(--surface-navy);
    }

    .lead-form {
      margin-top: 1.4rem;
      display: grid;
      gap: 0.8rem;
    }

    .lead-form label {
      font-size: 0.93rem;
      font-weight: 700;
      color: var(--text-soft);
    }

    .lead-form-row {
      display: grid;
      gap: 0.8rem;
    }

    .lead-form input {
      width: 100%;
      min-height: 3.6rem;
      padding: 0.95rem 1rem;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: #ffffff;
      color: var(--text);
      box-shadow: none;
    }

    .lead-form input:focus-visible {
      outline: 2px solid rgba(253, 140, 0, 0.14);
      border-color: rgba(253, 140, 0, 0.36);
    }

    .form-note,
    .form-status {
      font-size: 0.92rem;
      color: var(--text-soft);
    }

    .form-status {
      min-height: 1.4rem;
      font-weight: 700;
    }

    .form-status.error {
      color: #b33d33;
    }

    .form-status.success {
      color: #1b5b38;
    }

    .site-footer {
      padding: 2rem 0 2.8rem;
      color: var(--text-soft);
    }

    .footer-inner {
      width: var(--container);
      margin: 0 auto;
      padding-top: 1.2rem;
      border-top: 1px solid var(--line);
      text-align: center;
      font-size: 0.95rem;
    }

    .footer-inner span {
      display: block;
    }

    .footer-inner span + span {
      margin-top: 0.45rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 650ms ease, transform 650ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 100ms;
    }

    .reveal-delay-2 {
      transition-delay: 180ms;
    }

    .reveal-delay-3 {
      transition-delay: 260ms;
    }

    .reveal-delay-4 {
      transition-delay: 340ms;
    }

    .reveal-delay-5 {
      transition-delay: 420ms;
    }

    @media (min-width: 640px) {
      .hero-actions {
        max-width: 36rem;
        flex-direction: row;
        flex-wrap: wrap;
      }

      .hero-actions .button {
        width: auto;
        flex: 0 0 auto;
        min-height: 3.75rem;
        padding-inline: 1.35rem;
      }

      .metric-grid,
      .audience-grid,
      .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lead-form-row {
        grid-template-columns: minmax(0, 1fr) auto;
      }

      .lead-form .button {
        min-width: 12rem;
      }

      .snapshot-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }

      .two-column,
      .authority-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      }

      .solution-grid,
      .deliverable-grid,
      .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .audience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .snapshot-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-stage {
        min-height: 34rem;
      }
    }

    @media (min-width: 992px) {
      .hero-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
      }
    }

    @media (min-width: 1024px) {
      .metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 767px) {
      .nav {
        padding: 0.9rem 0;
      }

      .nav-cta {
        display: none;
      }

      .result-line {
        gap: 0.6rem;
      }

      .hero-banner-nav {
        width: 2.65rem;
        height: 2.65rem;
      }

      .hero-copy {
        max-width: none;
      }

      .hero-stage {
        display: none;
        min-height: 0;
      }

      .hero-stage-shell {
        width: min(100%, 26rem);
        min-height: 25rem;
      }

      .hero-stage-main {
        inset: 18% 11% 13%;
        padding: 1.25rem;
      }

      .hero-stage-float {
        width: min(46%, 10.5rem);
      }

      .hero-stage-card {
        padding: 0.85rem;
      }

      .hero-stage-float.three {
        bottom: 2%;
      }

      .why-copy h2 {
        max-width: 12ch;
      }

      .cta-final {
        padding: 40px 24px;
      }

      .cta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .cta-left,
      .cta-right {
        max-width: none;
        width: 100%;
      }

      .cta-right {
        order: -1;
      }

      .cta-buttons {
        flex-direction: column;
        width: 100%;
      }

      .cta-buttons .button {
        width: 100%;
      }

      .authority-side {
        padding-left: 0;
        padding-top: 1rem;
        border-left: 0;
        border-top: 1px solid rgba(33, 63, 97, 0.12);
      }
    }

    @media (max-width: 768px) {
      .hero-actions-main {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 100%;
      }

      .hero-actions-main .button {
        width: 100% !important;
        flex: 1 1 auto;
        white-space: normal;
        text-wrap: balance;
      }
    }

    @media (max-width: 639px) {
      .hero-banner-nav {
        width: 2.4rem;
        height: 2.4rem;
      }

      .hero-banner-nav span {
        font-size: 1.7rem;
      }

      .hero-rotator {
        --hero-rotator-height: 2rem;
      }

      .hero-rotator-word {
        font-size: clamp(1rem, 5.3vw, 1.28rem);
      }

      .hero-copy h1 {
        max-width: 8.5ch;
        font-size: clamp(2.8rem, 12vw, 4rem);
      }

      .hero-stage-main strong {
        font-size: 1.55rem;
      }

      .hero-stage-main p {
        max-width: 15rem;
        font-size: 0.9rem;
      }

      .hero-stage-meta {
        gap: 0.45rem;
      }

      .hero-stage-meta span {
        padding-inline: 0.65rem;
      }

      .hero-stage-float.two {
        top: 6%;
        right: 1%;
      }

      .hero-stage-float.three {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
