      :root {
        --pc-sky-1: #ff8a00;
        --pc-sky-2: #ffc44d;
        --pc-green: #ff3b30;
        --pc-orange: #ff6a00;
        --pc-text: #4a1f00;
        --pc-panel: rgba(255, 255, 255, 0.9);
        --nav-h: 5rem;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "Manrope", sans-serif;
        color: var(--pc-text);
        background: linear-gradient(180deg, var(--pc-sky-1) 0%, var(--pc-sky-2) 46%, #ffe7b3 100%);
      }

      h1, h2, h3, .brand-heading {
        font-family: "Sora", sans-serif;
        letter-spacing: -0.02em;
      }

      .site-shell {
        position: relative;
        overflow: hidden;
      }

      .site-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
          radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.9) 0 3px, transparent 4px),
          radial-gradient(circle at 24% 21%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px),
          radial-gradient(circle at 44% 10%, rgba(255, 255, 255, 0.85) 0 3px, transparent 4px),
          radial-gradient(circle at 66% 17%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
          radial-gradient(circle at 82% 13%, rgba(255, 255, 255, 0.9) 0 3px, transparent 4px);
        opacity: 0.45;
      }

      .bg-orb {
        position: absolute;
        border-radius: 999px;
        filter: blur(0.4px);
        pointer-events: none;
        z-index: 1;
      }

      .bg-orb-a {
        width: 420px;
        height: 420px;
        top: 380px;
        left: -210px;
        background: radial-gradient(circle, rgba(242, 93, 37, 0.22) 0%, rgba(242, 93, 37, 0) 68%);
      }

      .bg-orb-b {
        width: 520px;
        height: 520px;
        top: 1260px;
        right: -280px;
        background: radial-gradient(circle, rgba(255, 59, 48, 0.2) 0%, rgba(255, 59, 48, 0) 70%);
      }

      .bg-orb-c {
        width: 360px;
        height: 360px;
        top: 2180px;
        left: 38%;
        background: radial-gradient(circle, rgba(255, 170, 40, 0.28) 0%, rgba(255, 170, 40, 0) 70%);
      }

      .dot-grid {
        position: absolute;
        width: 170px;
        height: 170px;
        background-image: radial-gradient(rgba(200, 70, 10, 0.26) 1.6px, transparent 1.6px);
        background-size: 13px 13px;
        pointer-events: none;
        z-index: 2;
        opacity: 0.42;
      }

      .dot-grid-a {
        top: 760px;
        right: 5%;
      }

      .dot-grid-b {
        top: 1740px;
        left: 3%;
      }

      .shape-pill {
        position: absolute;
        border-radius: 999px;
        pointer-events: none;
        z-index: 2;
        opacity: 0.58;
        filter: blur(0.2px);
      }

      .shape-pill-a {
        width: 230px;
        height: 70px;
        top: 620px;
        right: 3%;
        background: linear-gradient(90deg, rgba(242, 93, 37, 0.35), rgba(242, 93, 37, 0.08));
        transform: rotate(-14deg);
      }

      .shape-pill-b {
        width: 250px;
        height: 74px;
        top: 1440px;
        left: 2%;
        background: linear-gradient(90deg, rgba(255, 59, 48, 0.3), rgba(255, 59, 48, 0.1));
        transform: rotate(12deg);
      }

      .shape-pill-c {
        width: 200px;
        height: 62px;
        top: 2280px;
        right: 5%;
        background: linear-gradient(90deg, rgba(255, 59, 48, 0.28), rgba(242, 93, 37, 0.14));
        transform: rotate(-10deg);
      }

      .glass-nav {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 60;
        background:
          linear-gradient(130deg, rgba(95, 32, 2, 0.76) 0%, rgba(145, 55, 4, 0.7) 42%, rgba(210, 64, 16, 0.66) 100%);
        border-bottom: 0;
        box-shadow: 0 8px 24px rgba(83, 28, 4, 0.24);
        backdrop-filter: saturate(140%) blur(10px);
        -webkit-backdrop-filter: saturate(140%) blur(10px);
      }

      .glass-nav::after {
        content: none;
      }

      .nav-shell {
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(255, 232, 198, 0.2), rgba(255, 182, 108, 0.12));
        border: 1px solid rgba(255, 242, 219, 0.34);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 20px rgba(83, 28, 4, 0.2);
      }

      .nav-link {
        position: relative;
        text-shadow: 0 1px 8px rgba(74, 18, 0, 0.35);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.78);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease;
      }

      .nav-link:hover::after {
        transform: scaleX(1);
      }

      .surface {
        background: var(--pc-panel);
        border: 1px solid rgba(170, 67, 10, 0.16);
        border-radius: 18px;
        box-shadow: 0 12px 28px rgba(120, 42, 7, 0.12);
      }

      .scroll-reveal {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scale(0.985);
        transition: opacity .7s ease, transform .7s ease;
      }

      .scroll-reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
      }

      .hero-section {
        margin-top: 0;
        padding-top: 0;
      }

      .hero-stage {
        position: relative;
        border-radius: 0;
        overflow: hidden;
        --mx: 50%;
        --my: 45%;
        --tilt-x: 0px;
        --tilt-y: 0px;
        --pulse-x: 35%;
        --pulse-y: 30%;
        --pulse-x2: 72%;
        --pulse-y2: 65%;
        background: linear-gradient(130deg, #5f2002 0%, #a33a05 36%, #d94a12 68%, #ff8a00 100%);
        min-height: calc(100svh - var(--nav-h));
        border: 0;
        box-shadow: none;
        animation: heroAmbient 15s ease-in-out infinite alternate;
      }

      .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 36%;
        opacity: 0.9;
        filter: saturate(1.15) contrast(1.06) brightness(0.72);
        pointer-events: none;
        transform: scale(1.06);
      }

      .hero-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(86, 28, 2, 0.54) 0%, rgba(86, 28, 2, 0.2) 18%, rgba(18, 7, 2, 0.42) 52%, rgba(18, 7, 2, 0.62) 100%),
          linear-gradient(110deg, rgba(24, 8, 2, 0.74) 0%, rgba(27, 9, 3, 0.46) 44%, rgba(31, 10, 3, 0.34) 100%);
        z-index: 1;
      }

      .hero-stage::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(circle 520px at 20% 24%, rgba(242, 93, 37, 0.34) 0%, rgba(242, 93, 37, 0) 72%),
          radial-gradient(circle 470px at 78% 28%, rgba(255, 59, 48, 0.3) 0%, rgba(255, 59, 48, 0) 72%),
          radial-gradient(circle 330px at var(--mx) var(--my), rgba(130, 214, 250, 0.2) 0%, rgba(130, 214, 250, 0) 70%),
          radial-gradient(circle 300px at var(--pulse-x) var(--pulse-y), rgba(255, 216, 80, 0.26) 0%, rgba(255, 216, 80, 0) 74%),
          radial-gradient(circle 320px at var(--pulse-x2) var(--pulse-y2), rgba(98, 230, 255, 0.2) 0%, rgba(98, 230, 255, 0) 74%);
        mix-blend-mode: soft-light;
        opacity: 0.92;
        animation: heroGlowShift 14s ease-in-out infinite alternate;
        z-index: 2;
      }

      .hero-playful {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 2;
        transform: translate3d(var(--tilt-x), var(--tilt-y), 0);
        transition: transform .22s ease-out;
      }

      .hero-playful .dot-grid {
        width: 120px;
        height: 120px;
        opacity: 0.28;
        background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.4px, transparent 1.4px);
        animation: floatSoft 7s ease-in-out infinite, dotDrift 10s linear infinite;
      }

      .hero-playful .dot-grid.hero-dot-a {
        top: 15%;
        right: 7%;
      }

      .hero-playful .dot-grid.hero-dot-b {
        bottom: 12%;
        left: 42%;
        animation-delay: 1.6s;
      }

      .hero-playful .shape-pill {
        opacity: 0.35;
        animation: floatSoft 8s ease-in-out infinite;
      }

      .hero-playful .shape-pill.hero-pill-a {
        width: 130px;
        height: 42px;
        top: 22%;
        right: 22%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
      }

      .hero-playful .shape-pill.hero-pill-b {
        width: 150px;
        height: 46px;
        bottom: 18%;
        right: 9%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
        animation-delay: 1.2s;
      }

      .hero-content {
        position: relative;
        z-index: 6;
        min-height: calc(100svh - var(--nav-h));
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: clamp(4.75rem, 9vh, 6.5rem);
        padding-bottom: clamp(2.25rem, 7vh, 4.25rem);
      }

      .hero-main {
        display: grid;
        gap: 1.5rem;
        align-items: center;
      }

      .hero-copy {
        max-width: 760px;
      }

      .hero-copy h1 {
        text-wrap: balance;
      }

      .hero-copy p {
        text-wrap: pretty;
      }

      .hero-cta-row .btn-clean {
        min-width: 172px;
        justify-content: center;
      }

      .btn-outline-light {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.4);
      }

      .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .hero-facts {
        max-width: 540px;
      }

      .hero-fact-card {
        display: grid;
        gap: 0.2rem;
        padding: 0.85rem 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        background: rgba(2, 14, 24, 0.33);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }

      .hero-fact-label {
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(220, 244, 255, 0.88);
      }

      .hero-fact-value {
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
      }

      .hero-scroll-cue {
        position: absolute;
        left: 50%;
        bottom: clamp(1rem, 3.5vh, 2.2rem);
        transform: translateX(-50%);
        z-index: 7;
        width: 110px;
        display: grid;
        justify-items: center;
        gap: 0.35rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: center;
        pointer-events: auto;
        cursor: pointer;
      }

      .hero-scroll-cue::before {
        content: "";
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.92));
        border-radius: 999px;
        animation: cueBounce 1.9s ease-in-out infinite;
      }

      .hero-scroll-cue::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid rgba(255, 255, 255, 0.94);
        border-bottom: 2px solid rgba(255, 255, 255, 0.94);
        transform: rotate(45deg);
        margin-top: -4px;
      }

      .hero-stage .section-tag {
        animation: fadeSlideIn .9s ease .05s both;
      }

      .hero-stage h1 {
        animation: fadeSlideIn .95s ease .15s both;
      }

      .hero-stage p {
        animation: fadeSlideIn .95s ease .28s both;
      }

      .hero-stage .btn-clean {
        animation: fadeSlideIn .95s ease .4s both;
      }

      @keyframes heroGlowShift {
        0% {
          transform: translate3d(0, 0, 0) scale(1);
          opacity: 0.8;
        }
        100% {
          transform: translate3d(-2%, 1.5%, 0) scale(1.04);
          opacity: 0.95;
        }
      }

      @keyframes floatSoft {
        0% {
          transform: translate3d(0, 0, 0) rotate(0deg);
        }
        50% {
          transform: translate3d(0, -8px, 0) rotate(1deg);
        }
        100% {
          transform: translate3d(0, 0, 0) rotate(0deg);
        }
      }

      @keyframes dotDrift {
        0% {
          background-position: 0 0;
        }
        100% {
          background-position: 26px 16px;
        }
      }

      @keyframes heroAmbient {
        0% {
          background-position: 0% 50%;
          filter: saturate(1);
        }
        100% {
          background-position: 100% 50%;
          filter: saturate(1.08);
        }
      }

      @keyframes fadeSlideIn {
        from {
          opacity: 0;
          transform: translate3d(0, 14px, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes cueBounce {
        0%,
        100% {
          transform: rotate(-45deg) translate3d(0, 0, 0);
          opacity: 0.8;
        }
        50% {
          transform: rotate(-45deg) translate3d(0, 4px, 0);
          opacity: 1;
        }
      }

      .section-tag {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 0.38rem 0.8rem;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
      }

      .btn-primary {
        background: var(--pc-orange);
        color: #fff;
      }

      .btn-secondary {
        background: var(--pc-green);
        color: #fff;
      }

      .btn-clean {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 12px;
        padding: 0.75rem 1.25rem;
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        box-shadow: 0 8px 18px rgba(120, 42, 7, 0.16);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .btn-clean::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
          radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
          linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 45%);
        opacity: 0.75;
      }

      .btn-clean::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -35%;
        width: 42%;
        height: 320%;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
        transform: rotate(20deg);
        transition: left .35s ease;
      }

      .btn-clean:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(120, 42, 7, 0.22);
      }

      .btn-clean:hover::after {
        left: 115%;
      }

      .card-title {
        font-size: clamp(1.35rem, 2vw, 1.75rem);
        line-height: 1.2;
      }

      .faq-card {
        position: relative;
        overflow: hidden;
      }

      .faq-card::after {
        content: "?";
        position: absolute;
        right: 16px;
        top: 10px;
        font-family: "Sora", sans-serif;
        font-size: 64px;
        font-weight: 800;
        line-height: 1;
        color: rgba(176, 62, 8, 0.12);
        pointer-events: none;
      }

      .corn-line {
        height: 8px;
        background: linear-gradient(90deg, #ff3b30, #ff7a00, #ffc63a, #ff7a00, #ff3b30);
        opacity: 0.55;
      }

      @media (max-width: 1023px) {
        :root {
          --nav-h: 4.5rem;
        }

        .hero-stage {
          border-radius: 0;
          min-height: calc(100svh - var(--nav-h));
        }

        .hero-stage::before {
          background: linear-gradient(
            110deg,
            rgba(44, 15, 2, 0.78) 0%,
            rgba(44, 15, 2, 0.56) 46%,
            rgba(44, 15, 2, 0.48) 100%
          );
        }

        .hero-stage::after {
          opacity: 0.72;
        }

        .hero-video {
          opacity: 0.82;
          object-position: center 36%;
        }

        .hero-main {
          grid-template-columns: 1fr;
          gap: 1rem;
        }

        .bg-orb,
        .dot-grid,
        .shape-pill {
          opacity: 0.35;
        }

        .bg-orb-a {
          top: 420px;
        }

        .bg-orb-b {
          top: 1180px;
        }

        .bg-orb-c {
          top: 2060px;
          left: 32%;
        }

        .dot-grid-a {
          top: 700px;
        }

        .dot-grid-b {
          top: 1580px;
        }

        .shape-pill-a {
          top: 590px;
        }

        .shape-pill-b {
          top: 1320px;
        }

        .shape-pill-c {
          top: 2120px;
        }

        .hero-content {
          min-height: calc(100svh - var(--nav-h));
          justify-content: center;
          padding-top: 5.25rem;
          padding-bottom: 2.2rem;
        }
      }

      @media (max-width: 1200px) {
        .hero-scroll-cue {
          display: none;
        }
      }

      @media (max-width: 767px) {
        :root {
          --nav-h: 4rem;
        }

        .bg-orb-a,
        .bg-orb-b,
        .bg-orb-c {
          width: 260px;
          height: 260px;
        }

        .dot-grid {
          width: 120px;
          height: 120px;
        }

        .shape-pill {
          display: none;
        }

        .hero-stage::after,
        .hero-playful .dot-grid,
        .hero-playful .shape-pill {
          animation-duration: 11s;
        }

        .hero-playful .dot-grid.hero-dot-b {
          left: auto;
          right: 10%;
        }

        .hero-copy h1 {
          font-size: clamp(2.2rem, 11vw, 3.3rem);
          line-height: 1.06;
        }

        .hero-copy p {
          font-size: 1rem;
        }

        .hero-facts {
          grid-template-columns: 1fr;
        }

        .hero-scroll-cue {
          bottom: 0.9rem;
          font-size: 0.68rem;
          width: 96px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero-video,
        .hero-stage::after,
        .hero-playful .dot-grid,
        .hero-playful .shape-pill,
        .hero-stage .section-tag,
        .hero-stage h1,
        .hero-stage p,
        .hero-stage .btn-clean {
          animation: none !important;
        }

        .hero-video {
          display: none;
        }
      }
