    :root {
      --ink: #071c16;
      --ink-soft: #14362c;
      --paper: #fbfaf4;
      --paper-warm: #f2ead8;
      --cream: #fffdf6;
      --line: rgba(7, 28, 22, 0.13);
      --line-dark: rgba(255, 255, 255, 0.14);
      --muted: #68756f;
      --green: #1f6b4a;
      --green-deep: #0b2a21;
      --lime: #d8ff3f;
      --amber: #f4bd55;
      --amber-soft: #ffe2a6;
      --white: #ffffff;
      --shadow: 0 30px 100px rgba(7, 28, 22, 0.16);
      --shadow-dark: 0 34px 120px rgba(0, 0, 0, 0.36);
      --display: "Fraunces", Georgia, serif;
      --body: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      letter-spacing: 0;
      overflow-x: hidden;
      transition: background 700ms var(--ease), color 700ms var(--ease);
    }

    body[data-theme="night"] {
      background: #050b08;
      color: var(--white);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button {
      font: inherit;
    }

    .progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lime), var(--amber));
      box-shadow: 0 0 24px rgba(244, 189, 85, 0.46);
    }

    .nav {
      position: fixed;
      top: 20px;
      left: 50%;
      z-index: 90;
      width: min(1180px, calc(100% - 32px));
      min-height: 66px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 9px 10px 9px 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: rgba(7, 28, 22, 0.72);
      color: var(--white);
      backdrop-filter: blur(22px);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      object-fit: contain;
      flex: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .nav-links a {
      transition: color 240ms var(--ease);
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .theme-toggle {
      position: relative;
      width: 138px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.68);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 4px;
      cursor: pointer;
    }

    .theme-toggle span {
      position: relative;
      z-index: 2;
      text-align: center;
      font-size: 0.75rem;
      font-weight: 800;
      transition: color 300ms var(--ease);
    }

    .theme-toggle::before {
      content: "";
      position: absolute;
      top: 4px;
      left: 4px;
      z-index: 1;
      width: calc(50% - 4px);
      height: 34px;
      border-radius: 999px;
      background: var(--lime);
      box-shadow: 0 10px 24px rgba(216, 255, 63, 0.2);
      transition: transform 450ms var(--ease), background 450ms var(--ease), box-shadow 450ms var(--ease);
    }

    body[data-theme="night"] .theme-toggle::before {
      transform: translateX(65px);
      background: var(--amber-soft);
      box-shadow: 0 0 32px rgba(244, 189, 85, 0.48);
    }

    body[data-theme="day"] .theme-day,
    body[data-theme="night"] .theme-night {
      color: var(--ink);
    }

    .button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 0 18px;
      font-size: 0.86rem;
      font-weight: 800;
      white-space: nowrap;
      cursor: pointer;
      transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      background: var(--lime);
      color: var(--ink);
      box-shadow: 0 16px 34px rgba(216, 255, 63, 0.22);
    }

    .button-dark {
      background: var(--ink);
      color: var(--white);
      box-shadow: 0 18px 38px rgba(7, 28, 22, 0.22);
    }

    .button-glass {
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      backdrop-filter: blur(16px);
    }

    /* The Home hero switches to a light background in day mode (unlike the
       always-dark .cta-panel this button is also used on elsewhere), so the
       default white-on-white-glass styling becomes unreadable there. */
    body[data-theme="day"] .hero .button-glass {
      border-color: rgba(7, 28, 22, 0.18);
      background: rgba(7, 28, 22, 0.06);
      color: var(--ink);
    }

    /* Same fix for the Contact page's support button, which sits on the
       light .trust-panel card in day mode rather than a dark hero image -
       night mode uses the default white-on-glass .button-glass styling. */
    body[data-theme="day"] .trust-glass-button {
      border-color: rgba(7, 28, 22, 0.18);
      background: rgba(7, 28, 22, 0.06);
      color: var(--ink);
    }

    .arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.68);
      color: var(--ink);
      line-height: 1;
    }

    .hero {
      position: relative;
      min-height: 1040px;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
      isolation: isolate;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 112%;
      object-fit: cover;
      object-position: center right;
      transform: translateY(var(--hero-shift, 0px)) scale(1.03);
      transition: opacity 900ms var(--ease), filter 900ms var(--ease);
    }

    .hero-day {
      opacity: 1;
      filter: brightness(1.05) saturate(1.02);
    }

    .hero-night {
      opacity: 0;
      filter: brightness(0.74) saturate(1.08) contrast(1.06);
    }

    body[data-theme="night"] .hero-day {
      opacity: 0;
    }

    body[data-theme="night"] .hero-night {
      opacity: 1;
    }

    .hero-image::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0;
      background:
        linear-gradient(90deg, rgba(255, 210, 112, 0.34), transparent 42%),
        linear-gradient(180deg, transparent 20%, rgba(255, 186, 74, 0.16) 55%, transparent 100%);
      mix-blend-mode: screen;
      filter: blur(10px);
      transition: opacity 900ms var(--ease);
    }

    body[data-theme="night"] .hero-image::before {
      opacity: 1;
      animation: windowPulse 4.8s var(--ease) infinite;
    }

    .hero-image::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 3;
      background:
        linear-gradient(90deg, rgba(7, 28, 22, 0.94), rgba(7, 28, 22, 0.72) 38%, rgba(7, 28, 22, 0.18) 72%),
        linear-gradient(180deg, rgba(7, 28, 22, 0.52), transparent 42%, rgba(7, 28, 22, 0.95));
      transition: background 900ms var(--ease);
    }

    body[data-theme="day"] .hero-image::after {
      background:
        linear-gradient(90deg, rgba(255, 253, 246, 0.94), rgba(255, 253, 246, 0.72) 38%, rgba(255, 253, 246, 0.12) 72%),
        linear-gradient(180deg, rgba(255, 253, 246, 0.36), transparent 40%, rgba(255, 253, 246, 0.95));
    }

    body[data-theme="day"] .hero {
      color: var(--ink);
      background: var(--paper);
    }

    #energyCanvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0.52;
      mix-blend-mode: screen;
    }

    body[data-theme="day"] #energyCanvas {
      opacity: 0.16;
      mix-blend-mode: multiply;
    }

    .hero-inner {
      position: relative;
      z-index: 5;
      width: min(1180px, calc(100% - 40px));
      min-height: 900px;
      margin: 0 auto;
      padding: 164px 0 80px;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.62fr);
      gap: 46px;
      align-items: center;
    }

    .eyebrow {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.82);
      padding: 0 15px;
      font-size: 0.82rem;
      font-weight: 800;
      backdrop-filter: blur(16px);
    }

    body[data-theme="day"] .eyebrow {
      border-color: rgba(7, 28, 22, 0.14);
      background: rgba(255, 255, 255, 0.58);
      color: rgba(7, 28, 22, 0.7);
    }

    .spark {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 0 rgba(216, 255, 63, 0.64);
      animation: sparkPulse 1.9s infinite;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
      letter-spacing: 0;
    }

    h1 {
      max-width: 820px;
      margin-top: 24px;
      font-family: var(--display);
      font-size: 6.6rem;
      /* 0.98 not 0.9: leaves headroom for ascenders/descenders across
         multi-line headings so lines never visually collide, including
         when a fallback serif (Georgia) renders instead of Fraunces. */
      line-height: 0.98;
      font-weight: 520;
    }

    h1 span {
      color: var(--lime);
    }

    body[data-theme="day"] h1 span {
      color: var(--green);
    }

    .hero-copy {
      max-width: 630px;
      margin-top: 26px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1.08rem;
      line-height: 1.8;
      font-weight: 500;
    }

    body[data-theme="day"] .hero-copy {
      color: rgba(7, 28, 22, 0.68);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .proof-item {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.82rem;
      font-weight: 800;
    }

    body[data-theme="day"] .proof-item {
      color: rgba(7, 28, 22, 0.64);
    }

    .proof-item::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
    }

    .lead-console {
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 34px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 230, 0.76));
      color: var(--ink);
      box-shadow: var(--shadow-dark);
      overflow: hidden;
      backdrop-filter: blur(26px);
      transform: rotateY(-6deg) rotateX(3deg);
      animation: consoleFloat 7s var(--ease) infinite;
    }

    body[data-theme="night"] .lead-console {
      border-color: rgba(255, 226, 166, 0.22);
      background:
        linear-gradient(180deg, rgba(15, 42, 33, 0.92), rgba(7, 20, 15, 0.82));
      color: var(--white);
      box-shadow: 0 34px 130px rgba(0, 0, 0, 0.46), 0 0 80px rgba(244, 189, 85, 0.1);
    }

    .console-top {
      min-height: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      border-bottom: 1px solid rgba(7, 28, 22, 0.1);
      padding: 0 22px;
      color: var(--muted);
      font-size: 0.75rem;
      font-weight: 800;
    }

    body[data-theme="night"] .console-top {
      border-color: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.58);
    }

    .dots {
      display: flex;
      gap: 7px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #c7d2cb;
    }

    .console-body {
      padding: 24px;
    }

    .lead-label {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .lead-label span {
      display: block;
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    body[data-theme="night"] .lead-label span {
      color: rgba(255, 255, 255, 0.55);
    }

    .lead-label strong {
      display: block;
      margin-top: 7px;
      font-family: var(--display);
      font-size: 2.25rem;
      line-height: 0.98;
      font-weight: 520;
    }

    .score-ring {
      width: 82px;
      height: 82px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        conic-gradient(var(--lime) 0 86%, rgba(7, 28, 22, 0.1) 86% 100%);
      color: var(--ink);
      font-weight: 900;
      box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.78);
    }

    .lead-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin-bottom: 20px;
    }

    .fact {
      min-height: 84px;
      border: 1px solid rgba(7, 28, 22, 0.1);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.58);
      padding: 14px;
    }

    body[data-theme="night"] .fact {
      border-color: rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
    }

    .fact span {
      display: block;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .fact strong {
      display: block;
      margin-top: 10px;
      font-size: 1.05rem;
      font-weight: 900;
    }

    .ai-note {
      border: 1px solid rgba(7, 28, 22, 0.11);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.54);
      padding: 18px;
      margin-bottom: 18px;
    }

    body[data-theme="night"] .ai-note {
      border-color: rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
    }

    .ai-note strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 900;
    }

    .ai-note p {
      margin-top: 9px;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.6;
      font-weight: 600;
    }

    body[data-theme="night"] .ai-note p {
      color: rgba(255, 255, 255, 0.64);
    }

    .stage-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 7px;
      margin-bottom: 18px;
    }

    .stage {
      height: 7px;
      border-radius: 999px;
      background: rgba(7, 28, 22, 0.11);
      overflow: hidden;
    }

    .stage.active::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, var(--lime), var(--amber));
      animation: stageFill 1.1s var(--ease) both;
    }

    .next-action {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      border-radius: 22px;
      background: var(--ink);
      color: var(--white);
      padding: 16px;
    }

    body[data-theme="night"] .next-action {
      background: var(--amber-soft);
      color: var(--ink);
    }

    .next-action span {
      display: block;
      color: rgba(255, 255, 255, 0.58);
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    body[data-theme="night"] .next-action span {
      color: rgba(7, 28, 22, 0.58);
    }

    .next-action strong {
      display: block;
      margin-top: 5px;
      font-size: 0.94rem;
      font-weight: 900;
    }

    .daynight-scroll {
      position: relative;
      min-height: 230vh;
      margin: -58px 0 110px;
    }

    .savings-scene {
      position: sticky;
      top: 0;
      width: 100%;
      min-height: 100vh;
      margin: 0 auto;
      border-radius: 0;
      overflow: hidden;
      background: var(--ink);
      box-shadow: var(--shadow-dark);
      isolation: isolate;
    }

    .savings-scene img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: opacity 900ms var(--ease), filter 900ms var(--ease), transform 900ms var(--ease);
    }

    .savings-day {
      opacity: calc(1 - var(--night-opacity, 0));
      filter: brightness(1.08) saturate(1.02);
    }

    .savings-night {
      opacity: var(--night-opacity, 0);
      filter: brightness(0.72) saturate(1.1) contrast(1.08);
    }

    body[data-theme="night"] .savings-day {
      opacity: 0;
    }

    body[data-theme="night"] .savings-night {
      opacity: 1;
    }

    .savings-scene::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(3, 8, 6, var(--scene-top, 0.42)), rgba(3, 8, 6, 0.08) 38%, rgba(3, 8, 6, var(--scene-bottom, 0.74))),
        radial-gradient(circle at 50% 54%, transparent 0 28%, rgba(3, 8, 6, var(--scene-vignette, 0.28)) 78%);
      transition: background 900ms var(--ease);
    }

    .savings-scene::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: var(--window-glow, 0);
      background:
        radial-gradient(ellipse at 64% 52%, rgba(255, 220, 145, 0.34), transparent 19%),
        radial-gradient(ellipse at 49% 58%, rgba(255, 198, 104, 0.22), transparent 17%),
        radial-gradient(ellipse at 76% 69%, rgba(255, 188, 92, 0.18), transparent 16%);
      mix-blend-mode: screen;
      filter: blur(18px);
      transition: opacity 900ms var(--ease);
    }

    body[data-theme="night"] .savings-scene::after {
      opacity: 1;
      animation: windowPulse 4.8s var(--ease) infinite;
    }

    .savings-content {
      position: relative;
      z-index: 3;
      min-height: 100vh;
      display: grid;
      grid-template-rows: 1fr auto;
      justify-items: center;
      align-items: center;
      padding: 66px 28px 44px;
      text-align: center;
      color: var(--white);
      transform: translateY(var(--content-y, 12px));
      transition: transform 180ms linear;
    }

    body[data-theme="day"] .savings-content {
      color: var(--white);
    }

    .savings-title {
      max-width: 850px;
      font-family: var(--display);
      font-size: 6.4rem;
      line-height: 0.98;
      font-weight: 520;
    }

    .savings-title span {
      display: block;
      color: rgba(255, 255, 255, 0.52);
    }

    body[data-theme="day"] .savings-title span {
      color: rgba(255, 255, 255, 0.52);
    }

    .energy-switcher {
      display: grid;
      gap: 16px;
      justify-items: center;
    }

    .energy-tabs {
      width: min(410px, calc(100vw - 72px));
      min-height: 86px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
      padding: 6px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(20px);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
    }

    body[data-theme="day"] .energy-tabs {
      border-color: rgba(7, 28, 22, 0.13);
      background: rgba(255, 255, 255, 0.6);
      box-shadow: 0 28px 80px rgba(7, 28, 22, 0.12);
    }

    .energy-tab {
      border: 0;
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.74);
      cursor: pointer;
      display: grid;
      align-content: center;
      gap: 5px;
      font-size: 0.96rem;
      font-weight: 900;
      transition: background 420ms var(--ease), color 420ms var(--ease), box-shadow 420ms var(--ease);
    }

    .energy-tab small {
      color: currentColor;
      opacity: 0.58;
      font-size: 0.68rem;
      font-weight: 800;
    }

    body[data-theme="day"] .energy-tab {
      color: rgba(7, 28, 22, 0.64);
      background: rgba(255, 255, 255, 0.24);
    }

    body[data-theme="day"] .energy-tab[data-theme-target="day"],
    body[data-theme="night"] .energy-tab[data-theme-target="night"] {
      background: rgba(255, 255, 235, 0.92);
      color: var(--ink);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 12px 32px rgba(255, 214, 132, 0.26);
    }

    body[data-theme="day"] .energy-tab[data-theme-target="day"] {
      background: var(--lime);
      box-shadow: 0 12px 32px rgba(216, 255, 63, 0.26);
    }

    .savings-note {
      /* Always light text: this section's background is a photograph with a
         partial dark scrim, never a solid light surface, so dark text here
         was low-contrast against brighter parts of the image regardless of
         theme. Add a text-shadow as a second line of defense against very
         bright image regions. */
      max-width: 570px;
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 2px 18px rgba(3, 8, 6, 0.55);
      font-size: 0.88rem;
      line-height: 1.72;
      font-weight: 650;
    }

    .section {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 110px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.46fr);
      gap: 48px;
      align-items: end;
      margin-bottom: 34px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .kicker::before {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
    }

    body[data-theme="night"] .kicker {
      color: var(--lime);
    }

    .section h2 {
      margin-top: 16px;
      font-family: var(--display);
      font-size: 4.6rem;
      line-height: 0.96;
      font-weight: 520;
    }

    .section-copy {
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.78;
      font-weight: 560;
    }

    body[data-theme="night"] .section-copy {
      color: rgba(255, 255, 255, 0.66);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .problem {
      min-height: 310px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.64);
      padding: 28px;
      box-shadow: 0 18px 60px rgba(7, 28, 22, 0.08);
    }

    body[data-theme="night"] .problem {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
    }

    .problem-number {
      display: block;
      margin-bottom: 58px;
      font-family: var(--display);
      color: var(--green);
      font-size: 3.1rem;
      line-height: 0.98;
      font-weight: 520;
    }

    body[data-theme="night"] .problem-number {
      color: var(--lime);
    }

    .problem h3 {
      font-family: var(--display);
      font-size: 2.2rem;
      line-height: 1;
      font-weight: 520;
    }

    .problem p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.72;
      font-weight: 560;
    }

    body[data-theme="night"] .problem p {
      color: rgba(255, 255, 255, 0.64);
    }

    .product-story {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
      gap: 22px;
      align-items: stretch;
    }

    .feature-split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 1120px) {
      .feature-split {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    .story-panel {
      border-radius: 36px;
      overflow: hidden;
      position: relative;
      min-height: 720px;
      background: var(--ink);
      box-shadow: var(--shadow);
    }

    .story-panel img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.04);
      transition: opacity 900ms var(--ease);
    }

    .story-panel .night-img {
      opacity: 0;
    }

    body[data-theme="night"] .story-panel .day-img {
      opacity: 0;
    }

    body[data-theme="night"] .story-panel .night-img {
      opacity: 1;
    }

    .story-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(7, 28, 22, 0.88));
    }

    .story-caption {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 32px;
      z-index: 2;
      color: var(--white);
    }

    .story-caption span {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      border-radius: 999px;
      background: var(--lime);
      color: var(--ink);
      padding: 0 13px;
      font-size: 0.76rem;
      font-weight: 900;
    }

    .story-caption strong {
      display: block;
      max-width: 560px;
      margin-top: 18px;
      font-family: var(--display);
      font-size: 3.6rem;
      line-height: 0.96;
      font-weight: 520;
    }

    .crm-screen {
      border: 1px solid var(--line);
      border-radius: 36px;
      background: var(--cream);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    body[data-theme="night"] .crm-screen {
      border-color: var(--line-dark);
      background: #0b1712;
      box-shadow: var(--shadow-dark);
    }

    .crm-top {
      min-height: 64px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 900;
    }

    body[data-theme="night"] .crm-top {
      border-color: var(--line-dark);
      color: rgba(255, 255, 255, 0.6);
    }

    .crm-body {
      padding: 24px;
      display: grid;
      gap: 14px;
    }

    .lead-header {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: start;
      border-bottom: 1px solid var(--line);
      padding-bottom: 24px;
      margin-bottom: 8px;
    }

    body[data-theme="night"] .lead-header {
      border-color: var(--line-dark);
    }

    .lead-header h3 {
      font-family: var(--display);
      font-size: 3.2rem;
      line-height: 0.96;
      font-weight: 520;
    }

    .lead-header p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.6;
      font-weight: 600;
    }

    body[data-theme="night"] .lead-header p {
      color: rgba(255, 255, 255, 0.64);
    }

    .status-pill {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      background: #ebff9f;
      color: var(--ink);
      padding: 0 13px;
      font-size: 0.76rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .status-pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    .crm-row {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 14px;
    }

    .crm-block {
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.62);
    }

    body[data-theme="night"] .crm-block {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.05);
    }

    .crm-block span {
      display: block;
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    body[data-theme="night"] .crm-block span {
      color: rgba(255, 255, 255, 0.54);
    }

    .crm-block strong {
      display: block;
      margin-top: 8px;
      font-size: 1.1rem;
      line-height: 1.35;
      font-weight: 900;
    }

    .timeline {
      display: grid;
      gap: 10px;
      margin-top: 8px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 14px;
      background: rgba(255, 255, 255, 0.56);
    }

    body[data-theme="night"] .timeline-item {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.05);
    }

    .timeline-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 6px rgba(216, 255, 63, 0.12);
    }

    .timeline-item strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 900;
    }

    .timeline-item span {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    body[data-theme="night"] .timeline-item span {
      color: rgba(255, 255, 255, 0.54);
    }

    .workflow {
      background: var(--ink);
      color: var(--white);
      overflow: hidden;
    }

    .workflow-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 118px 0;
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
      gap: 64px;
      align-items: start;
    }

    .workflow h2 {
      margin-top: 16px;
      font-family: var(--display);
      font-size: 4.7rem;
      line-height: 0.96;
      font-weight: 520;
    }

    .workflow p {
      margin-top: 20px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 1rem;
      line-height: 1.78;
      font-weight: 560;
    }

    .workflow-steps {
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line-dark);
    }

    .workflow-step {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 28px;
      border-bottom: 1px solid var(--line-dark);
      padding: 34px 0;
    }

    .workflow-step span {
      font-family: var(--display);
      color: var(--lime);
      font-size: 2.5rem;
      line-height: 0.9;
      font-weight: 520;
    }

    .workflow-step h3 {
      font-family: var(--display);
      font-size: 2.2rem;
      line-height: 1;
      font-weight: 520;
    }

    .workflow-step p {
      margin-top: 12px;
      font-size: 0.94rem;
    }

    .trust {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .trust-panel {
      border: 1px solid var(--line);
      border-radius: 36px;
      background: var(--cream);
      padding: 38px;
      box-shadow: var(--shadow);
    }

    body[data-theme="night"] .trust-panel {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: none;
    }

    .trust-panel h3 {
      font-family: var(--display);
      font-size: 3.5rem;
      line-height: 0.96;
      font-weight: 520;
    }

    .trust-panel p {
      margin-top: 20px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.78;
      font-weight: 560;
    }

    body[data-theme="night"] .trust-panel p {
      color: rgba(255, 255, 255, 0.64);
    }

    .trust-list {
      display: grid;
      gap: 10px;
      margin-top: 28px;
    }

    .trust-item {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid var(--line);
      color: var(--ink);
      font-size: 0.9rem;
      font-weight: 800;
    }

    body[data-theme="night"] .trust-item {
      border-color: var(--line-dark);
      color: var(--white);
    }

    .trust-item span {
      color: var(--green);
    }

    body[data-theme="night"] .trust-item span {
      color: var(--lime);
    }

    .cta {
      width: min(1180px, calc(100% - 40px));
      /* top margin so the panel never sits flush against whatever section
         comes before it (e.g. the dark-band on Pricing) - without this the
         two dark backgrounds visually merge into one another. */
      margin: 70px auto 0;
      padding: 0 0 130px;
    }

    .cta-panel {
      position: relative;
      min-height: 560px;
      border-radius: 44px;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
      box-shadow: var(--shadow-dark);
      isolation: isolate;
    }

    .cta-panel img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.58;
      filter: brightness(0.78) saturate(1.08);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(7, 28, 22, 0.98), rgba(7, 28, 22, 0.62), rgba(7, 28, 22, 0.08));
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      /* Extra top clearance: the floating nav is fixed at 20-86px from the
         viewport top, so when this panel scrolls flush to the top its
         heading must start below that zone or the nav visually clips it. */
      padding: 110px 64px 64px;
    }

    .cta-content h2 {
      margin-top: 16px;
      font-family: var(--display);
      font-size: 5rem;
      line-height: 0.96;
      font-weight: 520;
    }

    .cta-content p {
      margin-top: 22px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 1.04rem;
      line-height: 1.78;
      font-weight: 560;
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 900ms var(--ease), transform 900ms var(--ease);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: 120ms;
    }

    .delay-2 {
      transition-delay: 240ms;
    }

    .delay-3 {
      transition-delay: 360ms;
    }

    @keyframes sparkPulse {
      0% { box-shadow: 0 0 0 0 rgba(216, 255, 63, 0.62); }
      70% { box-shadow: 0 0 0 12px rgba(216, 255, 63, 0); }
      100% { box-shadow: 0 0 0 0 rgba(216, 255, 63, 0); }
    }

    @keyframes windowPulse {
      0%, 100% { opacity: 0.72; }
      50% { opacity: 1; }
    }

    @keyframes consoleFloat {
      0%, 100% { transform: rotateY(-6deg) rotateX(3deg) translateY(0); }
      50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-14px); }
    }

    @keyframes stageFill {
      from { transform: scaleX(0); transform-origin: left; }
      to { transform: scaleX(1); transform-origin: left; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
      }
    }

    @media (max-width: 1120px) {
      .nav-links {
        display: none;
      }

      .hero-inner,
      .section-head,
      .product-story,
      .workflow-inner,
      .trust {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        min-height: auto;
        padding-bottom: 120px;
      }

      .lead-console {
        transform: none;
      }
    }

    @media (max-width: 760px) {
      .nav {
        top: 12px;
        width: calc(100% - 20px);
      }

      .theme-toggle {
        display: none;
      }

      .nav .button {
        min-height: 40px;
        padding: 0 12px;
        font-size: 0.76rem;
      }

      .hero-inner {
        width: calc(100% - 28px);
        padding-top: 126px;
      }

      h1 {
        font-size: 3.55rem;
      }

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

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

      .lead-facts,
      .problem-grid,
      .crm-row {
        grid-template-columns: 1fr;
      }

      .section,
      .workflow-inner,
      .cta {
        width: calc(100% - 28px);
      }

      .cta {
        margin-top: 40px;
      }

      .daynight-scroll {
        min-height: 200vh;
        margin: -40px 0 80px;
      }

      .savings-scene {
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
      }

      .savings-content {
        min-height: 100vh;
      }

      .savings-title,
      .section h2,
      .workflow h2,
      .cta-content h2 {
        font-size: 3.25rem;
      }

      .story-caption strong,
      .trust-panel h3 {
        font-size: 2.75rem;
      }

      .section,
      .workflow-inner {
        padding: 76px 0;
      }

      .story-panel {
        min-height: 520px;
      }

      .workflow-step {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .cta-content {
        padding: 96px 28px 36px;
      }
    }

    /* --- Footer (shared across all pages) --- */

    .site-footer {
      border-top: 1px solid var(--line);
      padding: 48px 0 40px;
    }

    body[data-theme="night"] .site-footer {
      border-color: var(--line-dark);
    }

    .footer-tagline {
      /* Same centered 1180px container as .footer-inner below it, so the
         text (constrained narrower via max-width) lines up flush with the
         logo's left edge instead of floating centered mid-page. */
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto 24px;
    }

    .footer-tagline span {
      display: block;
      max-width: 560px;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
      font-weight: 600;
    }

    body[data-theme="night"] .footer-tagline span {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--ink);
    }

    body[data-theme="night"] .footer-brand {
      color: var(--white);
    }

    .footer-brand .brand-mark {
      width: 26px;
      height: 26px;
    }

    .footer-brand .brand-mark::before {
      width: 18px;
    }

    .footer-brand .brand-mark::after {
      width: 12px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--muted);
    }

    .footer-links a:hover {
      color: var(--ink);
    }

    body[data-theme="night"] .footer-links {
      color: rgba(255, 255, 255, 0.6);
    }

    body[data-theme="night"] .footer-links a:hover {
      color: var(--white);
    }

    .footer-copy {
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 600;
    }

    body[data-theme="night"] .footer-copy {
      color: rgba(255, 255, 255, 0.5);
    }

    @media (max-width: 760px) {
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* --- Interior page header (Features / About / Pricing / Terms) --- */

    .page-hero {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 176px 0 60px;
    }

    .page-hero h1 {
      max-width: 760px;
      margin-top: 16px;
      font-family: var(--display);
      font-size: 4.4rem;
      line-height: 0.98;
      font-weight: 520;
    }

    .page-hero p {
      max-width: 640px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
      font-weight: 600;
    }

    body[data-theme="night"] .page-hero p {
      color: rgba(255, 255, 255, 0.68);
    }

    @media (max-width: 760px) {
      .page-hero {
        padding: 126px 0 40px;
      }

      .page-hero h1 {
        font-size: 2.8rem;
      }
    }

    /* --- Feature grid (Features page) --- */

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .feature-card {
      min-height: 260px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.62);
      padding: 30px;
      box-shadow: 0 18px 60px rgba(7, 28, 22, 0.08);
    }

    body[data-theme="night"] .feature-card {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.06);
    }

    .feature-card span {
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    body[data-theme="night"] .feature-card span {
      color: var(--lime);
    }

    .feature-card h3 {
      margin-top: 18px;
      font-family: var(--display);
      font-size: 1.9rem;
      line-height: 1.05;
      font-weight: 520;
    }

    .feature-card p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.72;
      font-weight: 560;
    }

    body[data-theme="night"] .feature-card p {
      color: rgba(255, 255, 255, 0.64);
    }

    @media (max-width: 1120px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- Pricing tiers (Pricing page) --- */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }

    .pricing-card {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: var(--cream);
      padding: 34px 30px;
      box-shadow: 0 18px 60px rgba(7, 28, 22, 0.08);
    }

    body[data-theme="night"] .pricing-card {
      border-color: var(--line-dark);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: none;
    }

    .pricing-card.featured {
      border-color: var(--green);
      box-shadow: 0 24px 70px rgba(31, 107, 74, 0.18);
    }

    body[data-theme="night"] .pricing-card.featured {
      border-color: var(--lime);
      box-shadow: 0 24px 70px rgba(216, 255, 63, 0.1);
    }

    .pricing-card-tag {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      border-radius: 999px;
      background: var(--green);
      color: var(--white);
      padding: 4px 13px;
      margin-bottom: 16px;
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .pricing-card h3 {
      font-family: var(--display);
      font-size: 2rem;
      line-height: 1.05;
      font-weight: 520;
    }

    .pricing-card .pricing-for {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
      font-weight: 600;
    }

    body[data-theme="night"] .pricing-card .pricing-for {
      color: rgba(255, 255, 255, 0.64);
    }

    .pricing-card-price {
      margin-top: 22px;
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 520;
      color: var(--green);
    }

    body[data-theme="night"] .pricing-card-price {
      color: var(--lime);
    }

    .pricing-features {
      display: grid;
      gap: 10px;
      margin: 24px 0 28px;
      flex: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--ink);
      font-size: 0.9rem;
      line-height: 1.55;
      font-weight: 600;
    }

    body[data-theme="night"] .pricing-features li {
      color: rgba(255, 255, 255, 0.82);
    }

    .pricing-features li::before {
      content: "";
      flex: none;
      width: 7px;
      height: 7px;
      margin-top: 7px;
      border-radius: 50%;
      background: var(--green);
    }

    body[data-theme="night"] .pricing-features li::before {
      background: var(--lime);
    }

    .pricing-card .button {
      width: 100%;
    }

    @media (max-width: 1120px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- Coming soon (Pricing / Terms placeholder pages) --- */

    .coming-soon {
      width: min(760px, calc(100% - 40px));
      margin: 0 auto;
      padding: 100px 0 180px;
      text-align: center;
    }

    .coming-soon .kicker {
      justify-content: center;
    }

    .coming-soon h1 {
      margin-top: 18px;
      font-family: var(--display);
      font-size: 3.4rem;
      line-height: 1;
      font-weight: 520;
    }

    .coming-soon p {
      max-width: 520px;
      margin: 22px auto 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.8;
      font-weight: 600;
    }

    body[data-theme="night"] .coming-soon p {
      color: rgba(255, 255, 255, 0.66);
    }

    .coming-soon .hero-actions {
      justify-content: center;
      margin-top: 34px;
    }

    /* --- Cinematic dark band (reusable full-bleed image section) --- */

    .dark-band {
      position: relative;
      min-height: 66vh;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
      isolation: isolate;
    }

    .dark-band.short {
      min-height: 44vh;
    }

    .dark-band img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 112%;
      object-fit: cover;
      object-position: center;
      transform: translateY(var(--band-shift, 0px)) scale(1.04);
      filter: brightness(0.9) saturate(1.05);
    }

    .dark-band::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(7, 28, 22, 0.86), rgba(7, 28, 22, 0.5) 40%, rgba(7, 28, 22, 0.92)),
        linear-gradient(90deg, rgba(7, 28, 22, 0.7), transparent 55%);
    }

    .dark-band-content {
      position: relative;
      z-index: 2;
      width: min(1180px, calc(100% - 40px));
      height: 100%;
      min-height: inherit;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* padding-top > the fixed nav's 86px clearance zone, since vertical
         centering alone can't guarantee the kicker/heading land below it
         when this section is scrolled flush to the viewport top. */
      padding: 110px 0 60px;
    }

    .dark-band .kicker {
      color: var(--lime);
    }

    .dark-band-content h2 {
      max-width: 780px;
      margin-top: 16px;
      font-family: var(--display);
      font-size: 3.4rem;
      line-height: 1.02;
      font-weight: 520;
    }

    .dark-band-content p {
      max-width: 560px;
      margin-top: 20px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 1.02rem;
      line-height: 1.8;
      font-weight: 600;
    }

    .dark-band-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 34px;
    }

    .dark-band-stats strong {
      display: block;
      font-family: var(--display);
      font-size: 2.6rem;
      line-height: 1;
      color: var(--lime);
      font-weight: 520;
    }

    .dark-band-stats span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.84rem;
      font-weight: 700;
    }

    @media (max-width: 760px) {
      .dark-band {
        min-height: 52vh;
      }

      .dark-band-content h2 {
        font-size: 2.3rem;
      }

      .dark-band-stats {
        gap: 26px;
      }

      .dark-band-stats strong {
        font-size: 2rem;
      }
    }

    /* --- Page hero with cinematic image background (Features / About) --- */

    .page-hero.cinematic {
      position: relative;
      min-height: 62vh;
      width: 100%;
      overflow: hidden;
      color: var(--white);
      isolation: isolate;
      padding: 0;
      display: flex;
      align-items: center;
    }

    .page-hero.cinematic img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 112%;
      object-fit: cover;
      object-position: center;
      transform: translateY(var(--band-shift, 0px)) scale(1.04);
      filter: brightness(0.85) saturate(1.05);
    }

    .page-hero.cinematic::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(7, 28, 22, 0.55), rgba(7, 28, 22, 0.72) 60%, rgba(7, 28, 22, 0.95)),
        linear-gradient(90deg, rgba(7, 28, 22, 0.78), transparent 60%);
    }

    .page-hero.cinematic .page-hero-inner {
      position: relative;
      z-index: 2;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 170px 0 70px;
    }

    .page-hero.cinematic h1 {
      color: var(--white);
    }

    .page-hero.cinematic p {
      color: rgba(255, 255, 255, 0.76);
    }

    @media (max-width: 760px) {
      .page-hero.cinematic {
        min-height: 52vh;
      }

      .page-hero.cinematic .page-hero-inner {
        padding: 126px 0 40px;
      }
    }

    /* --- Cinematic coming-soon variant (Pricing / Terms) --- */

    .coming-soon.cinematic {
      position: relative;
      width: 100%;
      max-width: none;
      min-height: 74vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      overflow: hidden;
      isolation: isolate;
      padding: 140px 20px 80px;
    }

    .coming-soon.cinematic img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 112%;
      object-fit: cover;
      object-position: center;
      transform: translateY(var(--band-shift, 0px)) scale(1.04);
      filter: brightness(0.82) saturate(1.05);
      transition: opacity 900ms var(--ease), filter 900ms var(--ease);
    }

    .coming-soon.cinematic .hero-day {
      filter: brightness(0.82) saturate(1.05);
    }

    .coming-soon.cinematic .hero-night {
      filter: brightness(0.68) saturate(1.1) contrast(1.05);
    }

    .coming-soon.cinematic::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: radial-gradient(circle at 50% 40%, rgba(7, 28, 22, 0.55), rgba(7, 28, 22, 0.9));
    }

    .coming-soon.cinematic .coming-soon-inner {
      position: relative;
      z-index: 2;
      width: min(640px, 100%);
    }

    .coming-soon.cinematic p {
      color: rgba(255, 255, 255, 0.74);
    }

    @media (max-width: 760px) {
      .coming-soon.cinematic {
        min-height: 64vh;
        padding: 116px 20px 60px;
      }
    }
