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

    :root {
      --color-bg: #06111f;
      --color-bg-soft: #0b1a31;
      --color-surface: rgba(11, 23, 44, 0.72);
      --color-surface-elevated: rgba(15, 29, 54, 0.88);
      --color-border: rgba(174, 207, 255, 0.12);
      --color-border-strong: rgba(174, 207, 255, 0.22);
      --color-text: #eff5ff;
      --color-text-secondary: rgba(239, 245, 255, 0.74);
      --color-text-tertiary: rgba(239, 245, 255, 0.46);
      --color-accent: #52a7ff;
      --color-accent-soft: rgba(82, 167, 255, 0.18);
      --color-moss: #9ec7ff;
      --color-moss-soft: rgba(158, 199, 255, 0.14);
      --color-shadow: rgba(1, 6, 15, 0.38);

      --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-serif: 'Instrument Serif', Georgia, serif;

      --container-max: 1200px;
      --container-narrow: 760px;
      --card-width: min(calc(100% - 72px), var(--container-max));
      --stage-width: var(--card-width);
      --overlay-card-width: min(calc(100% - 120px), 980px);
      --section-padding: clamp(52px, 5.5vw, 80px);
      --section-padding-tight: clamp(36px, 4vw, 56px);
      --section-padding-loose: clamp(64px, 7vw, 96px);
      --content-padding: clamp(22px, 5vw, 80px);
      --radius-lg: 32px;
      --radius-md: 24px;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background: var(--color-bg);
    }

    body {
      font-family: var(--font-sans);
      color: var(--color-text);
      line-height: 1.72;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 50% -8%, rgba(82, 167, 255, 0.18), transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(101, 175, 255, 0.1), transparent 24%),
        radial-gradient(circle at 16% 72%, rgba(49, 120, 218, 0.08), transparent 28%),
        linear-gradient(180deg, #0a1628 0%, #07111f 26%, #06111f 62%, #050d18 100%);
    }

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

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

    .container {
      width: min(100%, var(--container-max));
      margin: 0 auto;
      padding: 0 var(--content-padding);
      position: relative;
      z-index: 1;
    }

    .section-header {
      text-align: center;
      max-width: 920px;
      margin: 0 auto clamp(36px, 4.5vw, 56px);
    }

    .section-eyebrow {
      display: inline-block;
      margin-bottom: 20px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--color-moss);
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 5.8vw, 5.4rem);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: -0.025em;
    }

    .section-desc {
      max-width: 700px;
      margin: 22px auto 0;
      color: var(--color-text-secondary);
      font-size: 1.02rem;
    }

    .has-texture {
      position: relative;
    }

    .texture-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.07;
    }

    .texture-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

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

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 var(--content-padding);
      background: linear-gradient(180deg, rgba(5, 11, 22, 0.84) 0%, rgba(5, 11, 22, 0.42) 68%, rgba(5, 11, 22, 0) 100%);
      transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
    }

    .nav.scrolled {
      background: rgba(8, 15, 28, 0.9);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--color-border-strong);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    }

    .nav-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.58rem;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .nav-links,
    .footer-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a,
    .footer-links a {
      font-size: 0.9rem;
      color: var(--color-text-secondary);
      transition: color 0.25s ease;
      white-space: nowrap;
    }

    .nav-links a:hover,
    .footer-links a:hover {
      color: var(--color-text);
    }

    .nav-cta,
    .mobile-cta {
      color: var(--color-accent);
      font-weight: 700;
    }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 0;
      width: 24px;
      height: 18px;
      position: relative;
      cursor: pointer;
    }

    .nav-toggle span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      background: var(--color-text);
      transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
    }

    .nav-toggle span:first-child { top: 3px; }
    .nav-toggle span:last-child { bottom: 3px; }

    .nav-toggle.active span:first-child {
      top: 8px;
      transform: rotate(45deg);
    }

    .nav-toggle.active span:last-child {
      bottom: 8px;
      transform: rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 10px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out), opacity 0.25s ease;
    }

    .mobile-menu.open {
      max-height: 420px;
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu a {
      color: var(--color-text-secondary);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 60px;
      padding: 0 32px;
      border-radius: 999px;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 700;
      transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 243, 247, 0.94) 100%);
      color: #0b2a22;
      border-color: rgba(255, 255, 255, 0.7);
      box-shadow: 0 16px 38px rgba(3, 8, 17, 0.18), inset 0 -2px 0 rgba(8, 18, 34, 0.12);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.03);
      border-color: var(--color-border);
      color: var(--color-text);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 136px 0 86px;
    }

    .hero-bg,
    .reframe-bg,
    .founder-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img,
    .reframe-bg img,
    .founder-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-bg img {
      opacity: 0.54;
      transform: scale(1.06);
      animation: heroFloat 20s ease-in-out infinite alternate;
    }

    @keyframes heroFloat {
      from { transform: scale(1.04) translateY(0); }
      to { transform: scale(1.1) translateY(-18px); }
    }

    .hero-overlay,
    .reframe-overlay,
    .founder-overlay {
      position: absolute;
      inset: 0;
    }

    .hero-overlay {
      background:
        linear-gradient(180deg, rgba(3, 8, 17, 0.3) 0%, rgba(4, 9, 18, 0.48) 34%, rgba(5, 10, 18, 0.86) 100%),
        radial-gradient(circle at center, rgba(82, 167, 255, 0.11), transparent 42%);
    }

    .hero-content {
      max-width: 1020px;
      text-align: center;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      padding-bottom: 22px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 0;
      margin-bottom: 34px;
      border: 0;
      background: transparent;
      color: #225de6;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
    }

    .hero-eyebrow::before {
      content: "✦";
      color: #225de6;
      font-size: 1rem;
      line-height: 1;
      transform: translateY(-1px);
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(3.35rem, 6.1vw, 6.35rem);
      line-height: 0.9;
      font-weight: 500;
      letter-spacing: -0.035em;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: italic;
      color: var(--color-accent);
      font-weight: 600;
    }

    .hero-subtitle {
      max-width: 690px;
      margin: 0 auto 28px;
      color: var(--color-text-secondary);
      font-size: clamp(1.02rem, 1.5vw, 1.14rem);
    }

    .hero-meta {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-pill {
      padding: 8px 0;
      border-radius: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      position: relative;
      padding-left: 18px;
      border-radius: 999px;
      color: rgba(237, 244, 255, 0.72);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-pill::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(82, 167, 255, 0.92);
      transform: translateY(-50%);
      box-shadow: 0 0 18px rgba(82, 167, 255, 0.3);
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 42px;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.8;
    }

    .scroll-line {
      width: 1px;
      height: 54px;
      background: linear-gradient(to bottom, var(--color-accent), transparent);
      animation: scrollPulse 2.4s ease-in-out infinite;
    }

    .hero-depth-layer {
      position: relative;
      z-index: 0;
      width: var(--card-width);
      height: auto;
      margin: clamp(-148px, -11vw, -110px) auto clamp(-238px, -17vw, -188px);
      pointer-events: none;
      transform-origin: center center;
      will-change: transform;
    }

    .hero-depth-media {
      position: relative;
      overflow: visible;
      border-radius: 0;
      box-shadow: none;
    }

    .hero-depth-media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center top;
      opacity: 0.92;
      transform: none;
      filter: saturate(0.94) brightness(0.88);
    }

    .hero-depth-overlay {
      display: none;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
    }

    .quote-section {
      position: relative;
      z-index: 1;
      padding: clamp(90px, 9vw, 132px) 0 clamp(84px, 9vw, 122px);
      overflow: hidden;
      background: linear-gradient(180deg, #08111c 0%, #07111c 100%);
    }

    .big-quote {
      max-width: 450px;
      margin: 0 auto;
      padding: 0;
      text-align: center;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .big-quote p {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 3.5vw, 3.15rem);
      line-height: 1.12;
      margin-bottom: 22px;
      letter-spacing: -0.015em;
    }

    .big-quote cite {
      display: inline-block;
      padding-top: 16px;
      color: var(--color-text-tertiary);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-style: normal;
      position: relative;
    }

    .big-quote cite::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 56px;
      height: 1px;
      transform: translateX(-50%);
      background: rgba(82, 167, 255, 0.42);
    }

    .problem,
    .hope,
    .proof,
    .faq,
    .pricing,
    .final-cta {
      padding: var(--section-padding) 0;
    }

    .problem {
      padding-top: clamp(58px, 6vw, 88px);
    }


    .problem-scenario,
    .pricing-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: clamp(44px, 6vw, 92px);
      align-items: center;
    }

    .hope-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
      gap: clamp(52px, 7vw, 108px);
      align-items: start;
    }

    .problem-image,
    .hope-image,
    .phase-image,
    .proof-card-image {
      overflow: hidden;
      border-radius: var(--radius-md);
      box-shadow: 0 34px 84px var(--color-shadow);
      position: relative;
    }

    .problem-image {
      aspect-ratio: 1 / 1;
    }

    .problem-image img,
    .hope-image img,
    .phase-image img,
    .proof-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s var(--ease-out);
    }

    .proof-card-image img {
      object-position: center top;
      filter: saturate(0.9) sepia(0.12) brightness(0.9) contrast(0.96);
    }

    .proof-card-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(16, 32, 58, 0.12) 0%, rgba(7, 12, 22, 0.3) 100%);
      pointer-events: none;
    }

    .problem-image:hover img,
    .hope-image:hover img,
    .phase-image:hover img,
    .proof-card:hover .proof-card-image img {
      transform: scale(1.03);
    }

    .problem-copy {
      max-width: 560px;
    }

    .problem-lead {
      font-size: 1.3rem;
      line-height: 1.48;
      color: var(--color-text);
      margin-bottom: 22px;
    }

    .problem-copy p {
      color: var(--color-text-secondary);
      margin-bottom: 18px;
    }

    .problem-question {
      font-family: var(--font-serif);
      font-size: 1.9rem;
      color: var(--color-accent);
      margin-top: 30px;
    }

    .problem-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: clamp(32px, 4vw, 48px);
    }

    .stat {
      padding: 34px 28px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(13, 27, 50, 0.76), rgba(10, 21, 39, 0.56));
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 24px 56px rgba(1, 6, 15, 0.22);
    }

    .stat-kicker {
      display: block;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-moss);
      margin-bottom: 10px;
    }

    .stat-title {
      display: block;
      font-family: var(--font-serif);
      font-size: 2rem;
      line-height: 1.02;
      margin-bottom: 14px;
    }

    .stat-label {
      display: block;
      color: var(--color-text-secondary);
      font-size: 0.95rem;
    }

    .reframe {
      position: relative;
      min-height: 76vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: var(--section-padding-loose) 0;
    }

    .reframe-bg img {
      opacity: 0.72;
      object-position: center 30%;
    }

    .reframe-overlay {
      background: linear-gradient(180deg, rgba(6, 12, 23, 0.28) 0%, rgba(6, 12, 23, 0.18) 50%, rgba(6, 12, 23, 0.32) 100%);
    }

    .reframe-content {
      max-width: var(--overlay-card-width);
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .reframe-glass {
      padding: clamp(40px, 5vw, 64px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 36px;
      background: rgba(8, 16, 32, 0.52);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 24px 64px rgba(1, 6, 15, 0.28);
    }

    .reframe-content h2,
    .founder-content h2,
    .final-content h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.9rem, 5vw, 4.8rem);
      line-height: 0.95;
      font-weight: 500;
      margin-bottom: 28px;
    }

    .reframe-body {
      max-width: 700px;
      margin: 0 auto 22px;
      color: var(--color-text-secondary);
      font-size: 1.04rem;
    }

    .reframe-highlight {
      max-width: 780px;
      margin: 0 auto 22px;
      font-size: 1.14rem;
      line-height: 1.72;
      color: var(--color-text);
    }

    .reframe-turn {
      font-family: var(--font-serif);
      font-size: 1.7rem;
      color: var(--color-accent);
    }

    .hope-image {
      aspect-ratio: 0.92 / 1;
      align-self: center;
      max-width: 760px;
      justify-self: end;
    }

    .hope {
      padding-top: var(--section-padding-loose);
    }

    .hope-copy p {
      color: var(--color-text-secondary);
      margin-bottom: 16px;
      font-size: 1rem;
    }

    .hope-copy .section-title {
      max-width: 600px;
      font-size: clamp(2.85rem, 4.5vw, 4.2rem);
      line-height: 0.96;
      margin-bottom: 22px;
    }

    .hope-copy > p:not(.section-eyebrow) {
      max-width: 540px;
    }

    .protocol {
      padding: clamp(92px, 10vw, 150px) 0 var(--section-padding-loose);
      background:
        linear-gradient(180deg, rgba(8, 14, 26, 0.96) 0%, rgba(11, 23, 42, 0.98) 38%, rgba(8, 14, 26, 0.96) 100%);
      transform-origin: center center;
      will-change: transform;
    }

    .reframe-content {
      transform-origin: center center;
      will-change: transform;
    }

    .phases {
      display: grid;
      gap: 0;
    }

    .phase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(34px, 5vw, 72px);
      align-items: center;
      padding: 40px 0;
      border-bottom: 1px solid rgba(174, 207, 255, 0.09);
    }

    .phase:first-child {
      border-top: 1px solid rgba(174, 207, 255, 0.09);
      padding-top: 40px;
    }

    .phase:nth-child(even) {
      direction: rtl;
    }

    .phase:nth-child(even) > * {
      direction: ltr;
    }

    .phase-image {
      aspect-ratio: 16 / 10;
    }

    .phase-number {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 5vw, 4.4rem);
      color: rgba(174, 207, 255, 0.18);
      line-height: 1;
      margin-bottom: 12px;
    }

    .phase-name {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 3vw, 2.95rem);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .phase-deliverable {
      margin-bottom: 14px;
      color: var(--color-moss);
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .phase-desc {
      color: var(--color-text-secondary);
      font-size: 1rem;
      max-width: 540px;
      line-height: 1.78;
    }

    .founder {
      position: relative;
      min-height: 74vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: var(--section-padding-loose) 0;
    }

    .founder-bg img {
      opacity: 0.88;
    }

    .founder-overlay {
      background: linear-gradient(180deg, rgba(7, 11, 18, 0.22) 0%, rgba(7, 11, 18, 0.06) 42%, rgba(7, 11, 18, 0.38) 100%);
    }

    .founder-content {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 46px 42px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(11, 23, 42, 0.72), rgba(8, 18, 34, 0.56));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 30px 76px rgba(1, 6, 15, 0.26);
    }

    .founder-bio,
    .founder-belief {
      color: var(--color-text-secondary);
      font-size: 1.04rem;
    }

    .founder-bio {
      margin-bottom: 20px;
    }

    .founder-belief {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      color: var(--color-accent);
      line-height: 1.28;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      transform-origin: center center;
      will-change: transform;
    }

    .faq {
      padding-top: var(--section-padding-tight);
      padding-bottom: var(--section-padding-tight);
    }

    .faq-list {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }

    .faq-item {
      padding: 30px 32px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(12, 25, 46, 0.78), rgba(9, 19, 37, 0.58));
      box-shadow: 0 24px 56px rgba(1, 6, 15, 0.22);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .faq-item h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.45rem, 2vw, 1.8rem);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .faq-item p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.72;
      max-width: 760px;
    }

    .proof-card {
      background: linear-gradient(180deg, rgba(12, 25, 46, 0.8), rgba(9, 19, 37, 0.6));
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 28px 64px rgba(1, 6, 15, 0.24);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .proof-card:hover {
      transform: translateY(-4px);
      border-color: var(--color-border-strong);
      box-shadow: 0 34px 76px rgba(1, 6, 15, 0.28);
    }

    .proof-card-image {
      aspect-ratio: 4 / 3;
    }

    .proof-card-body {
      padding: 30px 30px 34px;
    }

    .proof-tag {
      display: inline-flex;
      align-items: center;
      margin-bottom: 18px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--color-moss-soft);
      border: 1px solid rgba(127, 194, 255, 0.22);
      color: var(--color-moss);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .proof-story {
      color: var(--color-text-secondary);
      margin-bottom: 18px;
    }

    .proof-result {
      color: var(--color-text);
      font-weight: 700;
    }

    .pricing {
      background: rgba(255, 255, 255, 0.015);
      padding-top: var(--section-padding-loose);
    }

    .pricing-card,
    .fit-card {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(12, 25, 46, 0.82), rgba(9, 19, 37, 0.64));
      box-shadow: 0 28px 64px var(--color-shadow);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .pricing-grid {
      padding: clamp(34px, 5vw, 56px);
      grid-template-columns: 1.05fr 0.95fr;
      align-items: stretch;
    }

    .pricing-label {
      display: block;
      margin-bottom: 20px;
      color: var(--color-text-tertiary);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .pricing-breakdown {
      display: grid;
      gap: 10px;
    }

    .pricing-breakdown span {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(174, 207, 255, 0.07);
      color: var(--color-text-secondary);
      font-size: 0.96rem;
      line-height: 1.4;
    }

    .pricing-check {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(82, 167, 255, 0.15);
      border: 1px solid rgba(82, 167, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--color-accent);
    }

    .pricing-summary {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(174, 207, 255, 0.08);
      color: var(--color-text-tertiary);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .pricing-actual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px 0 24px 40px;
      border-left: 1px solid rgba(174, 207, 255, 0.1);
      gap: 4px;
    }

    .pricing-amount {
      font-family: var(--font-serif);
      font-size: clamp(3.4rem, 6vw, 5rem);
      color: var(--color-accent);
      line-height: 1;
      margin-bottom: 8px;
    }

    .pricing-scarcity {
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-moss);
      margin-bottom: 12px;
    }

    .pricing-note {
      max-width: 300px;
      margin: 0 auto 28px;
      color: var(--color-text-secondary);
      font-size: 0.93rem;
      line-height: 1.55;
    }

    .fit-card {
      max-width: var(--card-width);
      margin: 24px auto 0;
      padding: 0;
      text-align: center;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .fit-card h3 {
      max-width: 820px;
      margin: 0 auto 10px;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-moss);
    }

    .fit-card p {
      max-width: 760px;
      margin: 0 auto;
      color: var(--color-text-tertiary);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .final-cta {
      position: relative;
      min-height: 58vh;
      display: flex;
      align-items: flex-start;
      padding-top: var(--section-padding-loose);
      padding-bottom: var(--section-padding-tight);
    }

    .final-content {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
      padding: clamp(40px, 5vw, 58px);
      border: 1px solid var(--color-border);
      border-radius: 36px;
      background: linear-gradient(180deg, rgba(11, 23, 42, 0.62), rgba(8, 18, 34, 0.42));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 30px 76px rgba(1, 6, 15, 0.22);
    }

    .final-eyebrow {
      display: inline-block;
      margin-bottom: 24px;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--color-moss);
    }

    .final-question {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 2.4vw, 2.1rem);
      color: var(--color-text-secondary);
      line-height: 1.3;
      margin-bottom: 36px;
    }

    .final-pillars {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .final-pillars span {
      padding: 8px 18px;
      border-radius: 999px;
      border: 1px solid rgba(174, 207, 255, 0.2);
      background: rgba(82, 167, 255, 0.08);
      color: var(--color-moss);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .final-subtext,
    .final-note,
    .footer-tagline,
    .footer-bottom p {
      color: var(--color-text-secondary);
    }

    .final-note {
      font-size: 0.82rem;
      margin-top: 20px;
      color: var(--color-text-tertiary);
      letter-spacing: 0.03em;
    }

    .bottom-image {
      position: relative;
      overflow: hidden;
    }

    .bottom-image img {
      width: 100%;
      max-height: 68vh;
      object-fit: cover;
    }

    .bottom-image-fade {
      display: none;
    }

    .dot-connector {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 32px 0 40px;
      position: relative;
      z-index: 2;
    }

    .dot-connector__dot {
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      opacity: 0;
      transform: scale(0.3);
      box-shadow: 0 0 8px rgba(180, 215, 255, 0.5);
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .dot-connector__dot:nth-child(2),
    .dot-connector__dot:nth-child(4),
    .dot-connector__dot:nth-child(6) {
      width: 3px;
      height: 3px;
      opacity: 0;
      background: rgba(255, 255, 255, 0.45);
      box-shadow: none;
    }

    .footer {
      padding: 58px 0 36px;
      border-top: 1px solid var(--color-border);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 52px;
      margin-bottom: 32px;
    }

    .footer-brand {
      max-width: 280px;
      flex: 0 0 280px;
    }

    .footer-tagline {
      max-width: 220px;
    }

    .footer-logo {
      font-family: var(--font-serif);
      font-size: 1.38rem;
      font-weight: 600;
    }

    .footer-bottom {
      padding-top: 22px;
      border-top: 1px solid var(--color-border);
      text-align: center;
    }

    .site-backdrop {
      position: fixed;
      inset: 0;
      z-index: -4;
      pointer-events: none;
      overflow: hidden;
    }

    .site-backdrop-base,
    .site-backdrop-noise,
    .site-backdrop-dots {
      position: absolute;
      inset: 0;
    }

    .site-backdrop-base {
      background:
        radial-gradient(circle at 20% 12%, rgba(82, 167, 255, 0.16), transparent 24%),
        radial-gradient(circle at 78% 22%, rgba(110, 185, 255, 0.12), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(41, 95, 185, 0.16), transparent 36%),
        linear-gradient(180deg, #0a1a32 0%, #08162b 28%, #07111f 62%, #06101d 100%);
    }

    .site-backdrop-noise {
      opacity: 0.22;
      mix-blend-mode: screen;
      background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
    }

    .site-backdrop-dots {
      opacity: 0.82;
      background-image:
        radial-gradient(circle at 8% 16%, rgba(181, 219, 255, 0.95) 0 1.3px, transparent 1.8px),
        radial-gradient(circle at 18% 72%, rgba(181, 219, 255, 0.65) 0 1px, transparent 1.7px),
        radial-gradient(circle at 29% 33%, rgba(181, 219, 255, 0.8) 0 1px, transparent 1.8px),
        radial-gradient(circle at 41% 18%, rgba(181, 219, 255, 0.72) 0 1px, transparent 1.8px),
        radial-gradient(circle at 53% 67%, rgba(181, 219, 255, 0.86) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 66% 24%, rgba(181, 219, 255, 0.72) 0 1px, transparent 1.8px),
        radial-gradient(circle at 72% 78%, rgba(181, 219, 255, 0.86) 0 1px, transparent 1.8px),
        radial-gradient(circle at 84% 42%, rgba(181, 219, 255, 0.82) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 92% 14%, rgba(181, 219, 255, 0.68) 0 1px, transparent 1.8px);
      will-change: transform;
      animation: driftDots 26s ease-in-out infinite alternate;
    }

    .site-backdrop-dots::before,
    .site-backdrop-dots::after {
      content: "";
      position: absolute;
      inset: 0;
      background-repeat: no-repeat;
      will-change: transform;
    }

    .site-backdrop-dots::before {
      opacity: 0.6;
      background-image:
        radial-gradient(circle at 12% 42%, rgba(181, 219, 255, 0.9) 0 1.1px, transparent 1.7px),
        radial-gradient(circle at 34% 76%, rgba(181, 219, 255, 0.72) 0 1px, transparent 1.7px),
        radial-gradient(circle at 58% 29%, rgba(181, 219, 255, 0.78) 0 1.1px, transparent 1.8px),
        radial-gradient(circle at 82% 64%, rgba(181, 219, 255, 0.82) 0 1px, transparent 1.7px);
      animation: driftDotsReverse 31s ease-in-out infinite alternate;
    }

    .site-backdrop-dots::after {
      opacity: 0.42;
      background-image:
        radial-gradient(circle at 24% 22%, rgba(181, 219, 255, 0.8) 0 1px, transparent 1.7px),
        radial-gradient(circle at 48% 86%, rgba(181, 219, 255, 0.8) 0 1px, transparent 1.7px),
        radial-gradient(circle at 72% 12%, rgba(181, 219, 255, 0.8) 0 1.1px, transparent 1.7px),
        radial-gradient(circle at 90% 54%, rgba(181, 219, 255, 0.72) 0 1px, transparent 1.7px);
      animation: driftDotsSoft 22s ease-in-out infinite alternate;
    }

    @keyframes driftDots {
      from { transform: translate3d(0, 0, 0) scale(1); }
      to { transform: translate3d(-24px, 28px, 0) scale(1.035); }
    }

    @keyframes driftDotsReverse {
      from { transform: translate3d(0, 0, 0) scale(1); }
      to { transform: translate3d(20px, -18px, 0) scale(1.02); }
    }

    @keyframes driftDotsSoft {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-10px, 12px, 0); }
    }

    .nav {
      padding-top: 18px;
      background: none;
    }

    .nav.scrolled {
      background: none;
      border-bottom: 0;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .nav-inner {
      width: min(calc(100% - 20px), 1720px);
      min-height: 74px;
      padding: 0 12px 0 12px;
      border-radius: 26px;
      background: transparent;
      border: 1px solid transparent;
      box-shadow: none;
      transition: width 0.38s ease, min-height 0.38s ease, padding 0.38s ease, background 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease, border-radius 0.38s ease;
    }

    .nav.scrolled .nav-inner,
    .nav.nav-open .nav-inner {
      min-height: 68px;
      padding: 0 18px 0 22px;
      border-radius: 24px;
      background: rgba(248, 251, 255, 0.94);
      border-color: rgba(13, 30, 57, 0.08);
      box-shadow: 0 12px 34px rgba(5, 16, 34, 0.12);
    }

    .nav-logo,
    .nav-links a,
    .footer-links a {
      color: rgba(244, 249, 255, 0.96);
      transition: color 0.32s ease;
    }

    .nav.scrolled .nav-logo,
    .nav.scrolled .nav-links a,
    .nav.nav-open .nav-logo {
      color: #112846;
    }

    .nav-cta,
    .mobile-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 16px;
      background: rgba(248, 251, 255, 0.14);
      color: #f5f9ff;
      font-weight: 700;
      box-shadow: none;
      border: 1px solid rgba(248, 251, 255, 0.12);
      transition: background 0.32s ease, color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .nav.scrolled .nav-cta {
      background: linear-gradient(135deg, #225de6 0%, #163f9f 100%);
      color: #f5f9ff;
      border-color: transparent;
      box-shadow: 0 10px 22px rgba(22, 63, 159, 0.22);
    }

    .mobile-menu.open {
      background: rgba(13, 24, 42, 0.96);
      border: 1px solid rgba(160, 196, 255, 0.14);
      box-shadow: 0 20px 44px rgba(2, 8, 19, 0.32);
    }

    .mobile-menu a {
      color: #eff5ff;
    }

    .nav.nav-open .nav-toggle span,
    .nav.scrolled .nav-toggle span {
      background: #112846;
    }

    .layer-card {
      position: relative;
      width: var(--stage-width);
      margin: 28px auto 0;
      border-radius: 40px;
      overflow: hidden;
      border: 1px solid transparent;
    }

    .layer-card--white {
      background: linear-gradient(180deg, rgba(248, 251, 255, 0.985), rgba(240, 246, 255, 0.965));
      border-color: rgba(18, 39, 70, 0.1);
      box-shadow: 0 22px 60px rgba(6, 18, 37, 0.1);
    }

    .layer-card--white::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      pointer-events: none;
      background-image:
        repeating-linear-gradient(0deg, rgba(15, 42, 78, 0.03) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(15, 42, 78, 0.02) 0 1px, transparent 1px 4px);
    }

    .layer-card--blue {
      background: linear-gradient(180deg, rgba(8, 34, 67, 0.9), rgba(5, 24, 50, 0.9));
      border-color: rgba(156, 204, 255, 0.34);
      box-shadow:
        inset 0 0 0 1px rgba(185, 222, 255, 0.1),
        0 30px 80px rgba(2, 8, 19, 0.24);
    }

    .layer-card--blue::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      box-shadow:
        0 0 0 1px rgba(166, 213, 255, 0.08),
        0 0 42px rgba(82, 167, 255, 0.14);
    }

    .layer-card--white .section-eyebrow,
    .layer-card--white .hero-eyebrow,
    .layer-card--white .stat-kicker,
    .layer-card--white .phase-deliverable,
    .layer-card--white .proof-tag {
      color: #225de6;
    }

    .layer-card--white .hero-title,
    .layer-card--white .section-title,
    .layer-card--white .stat-title,
    .layer-card--white .phase-name,
    .layer-card--white .problem-question {
      color: #102746;
    }

    .layer-card--white .hero-subtitle,
    .layer-card--white .section-desc,
    .layer-card--white .problem-copy p,
    .layer-card--white .stat-label,
    .layer-card--white .phase-desc,
    .layer-card--white .proof-story,
    .layer-card--white .proof-result,
    .layer-card--white .pricing-summary,
    .layer-card--white .pricing-note,
    .layer-card--white .pricing-breakdown span {
      color: rgba(16, 39, 70, 0.74);
    }

    .hero {
      width: var(--stage-width);
      min-height: calc(100vh - 34px);
      margin: 0 auto;
      padding: 136px 0 72px;
      background: transparent;
      border: 0;
      box-shadow: none;
      overflow: visible;
    }

    .hero-bg,
    .hero-overlay {
      display: none;
    }

    .hero .hero-content {
      max-width: var(--overlay-card-width);
      padding-bottom: 0;
    }

    .hero .hero-eyebrow {
      background: transparent;
      color: #225de6;
      text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
    }

    .hero .hero-eyebrow::before {
      color: #225de6;
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
    }

    .hero .hero-title,
    .hero .hero-subtitle {
      color: #f3f7ff;
    }

    .hero .hero-title em {
      color: #225de6;
    }

    .hero .hero-pill {
      color: rgba(235, 244, 255, 0.7);
    }

    .hero .hero-pill::before {
      background: #2d73ff;
      box-shadow: 0 0 18px rgba(45, 115, 255, 0.24);
    }

    .hero .btn-ghost {
      background: rgba(248, 251, 255, 0.06);
      border-color: rgba(173, 210, 255, 0.14);
      color: #f5f9ff;
    }

    .hero .scroll-line {
      background: linear-gradient(to bottom, rgba(34, 93, 230, 0.7), transparent);
    }

    .hero-floating {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -36px;
      height: 250px;
      pointer-events: none;
      z-index: 0;
    }

    .hero-float-card {
      position: absolute;
      width: 280px;
      padding: 20px 20px 18px;
      border-radius: 24px;
      border: 1px solid rgba(169, 208, 255, 0.16);
      background: rgba(244, 249, 255, 0.08);
      box-shadow: 0 24px 60px rgba(3, 11, 23, 0.22);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      color: rgba(245, 249, 255, 0.88);
      opacity: 0.78;
      transform: translateY(var(--float-shift, 0));
    }

    .hero-float-card--left {
      left: 0;
      bottom: 8px;
      --float-shift: 0px;
    }

    .hero-float-card--center {
      left: 50%;
      bottom: 28px;
      transform: translateX(-50%) translateY(var(--float-shift, 0));
      --float-shift: 0px;
    }

    .hero-float-card--right {
      right: 0;
      bottom: 18px;
      --float-shift: 0px;
    }

    .hero-float-kicker {
      display: inline-block;
      margin-bottom: 12px;
      color: #9ec7ff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-float-card h3 {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      line-height: 1.02;
      margin-bottom: 10px;
    }

    .hero-float-card p {
      color: rgba(235, 244, 255, 0.68);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .quote-section,
    .hope,
    .proof,
    .pricing,
    .problem {
      position: relative;
      z-index: 2;
      background: transparent;
      overflow: visible;
    }

    .quote-section {
      padding-top: clamp(52px, 6vw, 72px);
      padding-bottom: clamp(52px, 6vw, 72px);
    }

    .quote-section .container,
    .hope .container,
    .pricing .container,
    .proof .container,
    .faq .container {
      max-width: 1240px;
    }

    .big-quote {
      max-width: var(--overlay-card-width);
      text-align: left;
    }

    .big-quote p {
      color: #f3f7ff;
      font-size: clamp(2.5rem, 4.2vw, 4.35rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .big-quote cite {
      padding-top: 18px;
      color: rgba(243, 247, 255, 0.52);
    }

    .big-quote cite::before {
      left: 0;
      transform: none;
      background: rgba(158, 199, 255, 0.42);
    }

    .problem,
    .protocol,
    .reframe,
    .founder {
      padding-top: clamp(48px, 5vw, 68px);
      padding-bottom: clamp(48px, 5vw, 68px);
    }

    .problem {
      padding-top: 0;
    }

    .protocol .texture-bg {
      opacity: 0.12;
    }

    .protocol .phase-image {
      border: 1px solid rgba(17, 40, 70, 0.08);
      box-shadow: 0 18px 40px rgba(7, 18, 36, 0.08);
    }

    .problem .problem-question,
    .protocol .phase-deliverable {
      color: #225de6;
    }

    .problem {
      margin-top: clamp(-338px, -22vw, -276px);
      background: transparent;
      border: 0;
      box-shadow: none;
      overflow: visible;
    }

    .problem.layer-card--blue {
      border-color: transparent;
      box-shadow: none;
    }

    .problem.layer-card--blue::after {
      display: none;
    }

    .problem-stage {
      position: relative;
      max-width: var(--overlay-card-width);
      margin: clamp(-268px, -17vw, -214px) auto 0;
      padding-top: 0;
      transform-origin: center center;
      will-change: transform;
    }

    .problem-stage.reveal {
      opacity: 1;
      transform: none;
    }

    .problem-image-card {
      display: flex;
      flex-direction: column;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 30px 76px rgba(2, 8, 19, 0.28);
      border: 0;
      background: rgba(7, 15, 30, 0.98);
    }

    .problem-image-wrap {
      position: relative;
      height: clamp(340px, 38vw, 480px);
      flex-shrink: 0;
    }

    .problem-image-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
      filter: saturate(0.88) brightness(0.92);
    }

    .problem-image-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 13, 24, 0.04) 0%, rgba(6, 13, 24, 0.32) 70%, rgba(7, 15, 30, 0.82) 100%);
      pointer-events: none;
    }

    .problem-card {
      position: relative;
      z-index: 2;
      max-width: 100%;
      margin: 0;
      padding: clamp(34px, 5vw, 52px);
      border-radius: 0;
      border: none;
      background: rgba(7, 15, 30, 0.98);
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .problem-header {
      max-width: 760px;
      margin: 0 auto 34px;
    }

    .problem-header .section-title,
    .problem-header .section-desc,
    .problem-card .problem-lead,
    .problem-card .problem-copy p,
    .problem-card .problem-question {
      color: #f2f7ff;
    }

    .problem-header .section-title {
      font-size: clamp(2.7rem, 4.8vw, 4.5rem);
      line-height: 0.96;
    }

    .problem-header .section-desc {
      opacity: 0.74;
    }

    .problem-card .problem-copy {
      max-width: 760px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .problem-card .problem-copy p {
      opacity: 0.78;
    }

    .problem-card .problem-question {
      color: #9ec7ff;
      font-size: clamp(2rem, 3vw, 2.7rem);
    }

    .problem-card .problem-stats {
      margin-top: 0;
    }

    .problem-card .stat {
      background: rgba(244, 249, 255, 0.08);
      border-color: rgba(166, 213, 255, 0.14);
      box-shadow: none;
    }

    .problem-card .stat-title,
    .problem-card .stat-kicker {
      color: #9ec7ff;
    }

    .problem-card .stat-label {
      color: rgba(235, 244, 255, 0.72);
    }

    .reframe {
      min-height: auto;
      background: transparent;
    }

    .reframe-bg img {
      opacity: 0.82;
      filter: none;
    }

    .reframe-content {
      max-width: var(--overlay-card-width);
    }

    .reframe-content h2,
    .founder-content h2,
    .final-content h2 {
      color: #f2f7ff;
      font-size: clamp(3.2rem, 5.2vw, 5.4rem);
      line-height: 0.94;
    }

    .founder {
      min-height: auto;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .founder-bg img {
      opacity: 0.92;
      filter: saturate(0.9) brightness(0.88);
    }

    .founder-content {
      max-width: var(--card-width);
      padding: clamp(42px, 5vw, 58px) clamp(28px, 4vw, 52px);
      margin: clamp(-26px, -3vw, -42px) auto 0;
      background: linear-gradient(180deg, rgba(11, 23, 42, 0.72), rgba(8, 18, 34, 0.56));
      border: 1px solid rgba(166, 213, 255, 0.18);
      box-shadow:
        0 28px 70px rgba(2, 8, 19, 0.28),
        0 0 42px rgba(82, 167, 255, 0.12);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-radius: 34px;
      transform-origin: center center;
      will-change: transform;
    }

    .founder::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(8, 16, 32, 0.06) 0%, rgba(8, 16, 32, 0.18) 100%);
    }

    .founder .container {
      z-index: 2;
      position: relative;
      max-width: var(--card-width);
      transform-origin: center center;
      will-change: transform;
    }

    .founder-bg {
      inset: 0;
      left: 0;
      right: 0;
      width: var(--card-width);
      margin: 0 auto;
      border-radius: 40px;
      overflow: hidden;
      border: 0;
      box-shadow: none;
    }

    .founder-overlay {
      background: linear-gradient(180deg, rgba(7, 11, 18, 0.18) 0%, rgba(7, 11, 18, 0.04) 42%, rgba(7, 11, 18, 0.32) 100%);
    }

    .hope {
      padding-top: clamp(52px, 5.5vw, 76px);
      padding-bottom: clamp(52px, 5.5vw, 76px);
    }

    .hope-grid {
      grid-template-columns: 1fr;
      max-width: var(--overlay-card-width);
      margin: 0 auto;
      gap: 34px;
    }

    .hope-image {
      display: none;
    }

    .hope-copy .section-title {
      max-width: 880px;
      color: #f2f7ff;
      font-size: clamp(3rem, 5vw, 5rem);
    }

    .hope-copy > p:not(.section-eyebrow) {
      max-width: 760px;
      font-size: 1.08rem;
      color: rgba(239, 245, 255, 0.78);
    }

    .proof .section-title,
    .proof .section-desc,
    .pricing .section-title,
    .pricing .section-desc,
    .faq .section-title,
    .faq .section-desc,
    .final-question {
      color: #f2f7ff;
    }

    .proof-grid {
      gap: 28px;
    }

    .proof-card {
      background: linear-gradient(180deg, rgba(248, 251, 255, 0.985), rgba(241, 246, 255, 0.965));
      border: 1px solid rgba(18, 39, 70, 0.1);
      box-shadow: 0 22px 52px rgba(6, 18, 37, 0.1);
    }

    .proof-card-body {
      color: #102746;
    }

    .proof-tag {
      background: rgba(34, 93, 230, 0.08);
      border-color: rgba(34, 93, 230, 0.12);
      color: #225de6;
    }

    .proof-story,
    .proof-result {
      color: rgba(16, 39, 70, 0.76);
    }

    .pricing-card {
      transform-origin: center center;
      will-change: transform;
      width: var(--card-width);
      margin: 0 auto;
      background: linear-gradient(180deg, rgba(248, 251, 255, 0.985), rgba(241, 246, 255, 0.965));
      border: 1px solid rgba(18, 39, 70, 0.1);
      box-shadow: 0 22px 52px rgba(6, 18, 37, 0.1);
    }

    .pricing-card .pricing-label,
    .pricing-card .pricing-breakdown span,
    .pricing-card .pricing-summary,
    .pricing-card .pricing-note {
      color: rgba(16, 39, 70, 0.76);
    }

    .pricing-card .pricing-breakdown span {
      background: rgba(18, 39, 70, 0.035);
      border-color: rgba(18, 39, 70, 0.08);
    }

    .pricing-card .pricing-check {
      background: rgba(34, 93, 230, 0.1);
      border-color: rgba(34, 93, 230, 0.25);
      color: #225de6;
    }

    .pricing-card .pricing-scarcity {
      color: #225de6;
    }

    .pricing-card .pricing-summary {
      border-top-color: rgba(18, 39, 70, 0.1);
    }

    .pricing-card .pricing-actual {
      border-left-color: rgba(18, 39, 70, 0.1);
    }

    .pricing-amount {
      color: #225de6;
    }

    .faq-item {
      background: linear-gradient(180deg, rgba(8, 34, 67, 0.84), rgba(5, 24, 50, 0.84));
      border-color: rgba(166, 213, 255, 0.16);
      box-shadow: 0 22px 52px rgba(2, 8, 19, 0.24);
    }

    .faq-item h3 {
      color: #f2f7ff;
    }

    .expanding-section {
      padding-top: clamp(56px, 6vw, 80px);
      padding-bottom: 0;
    }

    .expanding-panel-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      transform-origin: center top;
      will-change: transform;
    }

    .expanding-panel {
      position: relative;
      width: var(--stage-width);
      margin: 0 auto;
      border-radius: 38px 38px 0 0;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(8, 34, 67, 0.94), rgba(6, 24, 48, 0.96));
      border: 1px solid rgba(166, 213, 255, 0.22);
      box-shadow:
        inset 0 0 0 1px rgba(196, 227, 255, 0.06),
        0 40px 90px rgba(2, 8, 19, 0.3);
      transition: width 0.18s linear, border-radius 0.18s linear;
    }

    .expanding-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 100%, rgba(105, 175, 255, 0.2), transparent 24%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 4px);
      opacity: 0.34;
    }

    .expanding-panel.is-expanded {
      width: 100%;
      border-radius: 0;
    }

    .final-cta .container {
      z-index: 2;
    }

    .final-content {
      padding-top: clamp(44px, 5vw, 64px);
      padding-bottom: clamp(36px, 4vw, 52px);
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .bottom-image {
      position: relative;
      overflow: hidden;
      min-height: 44vh;
    }

    .bottom-image img {
      width: 100%;
      max-height: none;
      min-height: 44vh;
      object-fit: cover;
      opacity: 0.72;
    }

    .bottom-image-fade {
      height: 52%;
      background: linear-gradient(180deg, rgba(7, 24, 48, 1) 0%, rgba(7, 24, 48, 0) 100%);
    }

    .footer {
      position: relative;
      z-index: 1;
      background: transparent;
      border-top: 0;
      padding-top: 34px;
    }

    .footer-logo,
    .footer-tagline,
    .footer-bottom p,
    .footer-links a {
      color: rgba(239, 245, 255, 0.78);
    }


    @media (max-width: 980px) {
      .nav {
        padding: 12px 12px 0;
      }

      .nav-inner,
      .nav.scrolled .nav-inner,
      .nav.nav-open .nav-inner {
        width: 100%;
        min-height: 72px;
        padding: 0 18px;
        border-radius: 22px;
      }

      .nav.scrolled .nav-inner,
      .nav.nav-open .nav-inner {
        background: rgba(248, 251, 255, 0.98);
      }

      .nav-logo {
        font-size: clamp(2rem, 4vw, 2.5rem);
        line-height: 0.92;
      }

      .nav-toggle {
        width: 30px;
        height: 22px;
        margin-left: auto;
      }

      .nav-toggle span {
        height: 2px;
      }

      .mobile-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        border-radius: 24px;
      }

      .mobile-menu.open {
        padding: 14px;
      }

      .mobile-menu a {
        display: block;
        padding: 16px 18px;
        border-radius: 16px;
        font-size: 1.25rem;
        line-height: 1.1;
        background: rgba(255, 255, 255, 0.04);
      }

      .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
      }

      .mobile-menu .mobile-cta {
        margin-top: 6px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 243, 247, 0.94) 100%);
        color: #0b2a22;
        border: 1px solid rgba(255, 255, 255, 0.74);
        text-align: center;
      }

      .hero {
        width: calc(100% - 24px);
        min-height: auto;
        padding: 118px 0 52px;
      }

      .hero-depth-layer {
        width: calc(100% - 32px);
        margin: -74px auto -166px;
      }

      .problem {
        margin-top: -214px;
      }

      .problem-stage {
        margin-top: -142px;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        gap: 10px;
        margin-bottom: 26px;
      }

      .hero-subtitle {
        max-width: 38rem;
      }

      .hero-actions {
        gap: 14px;
      }
    }

    @media (max-width: 720px) {
      .nav {
        padding: 10px 10px 0;
      }

      .nav-inner,
      .nav.scrolled .nav-inner,
      .nav.nav-open .nav-inner {
        min-height: 64px;
        padding: 0 16px;
        border-radius: 20px;
      }

      .nav-logo {
        font-size: 1.9rem;
      }

      .mobile-menu {
        top: calc(100% + 10px);
        border-radius: 20px;
      }

      .mobile-menu.open {
        padding: 12px;
      }

      .mobile-menu a {
        padding: 14px 16px;
        font-size: 1.08rem;
      }

      .hero {
        width: calc(100% - 16px);
        padding: 102px 0 44px;
      }

      .hero-depth-layer {
        width: calc(100% - 16px);
        margin: -52px auto -138px;
      }

      .problem {
        margin-top: -176px;
      }

      .problem-stage {
        margin-top: -116px;
      }

      .hero-depth-media {
        border-radius: 0;
      }

      .hero-title {
        font-size: clamp(2.65rem, 11vw, 4rem);
        line-height: 0.94;
      }

      .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
      }

      .hero-meta {
        gap: 8px 14px;
        margin-bottom: 24px;
      }

      .hero-pill {
        font-size: 0.72rem;
        letter-spacing: 0.13em;
        padding-left: 14px;
      }

      .hero-pill::before {
        width: 6px;
        height: 6px;
      }

      .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
        min-height: 56px;
      }

      .reframe-content,
      .founder-content,
      .final-content {
        padding-left: 16px;
        padding-right: 16px;
      }
    }

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

      .nav-toggle,
      .mobile-menu {
        display: flex;
      }

      .problem-scenario,
      .hope-grid,
      .pricing-grid,
      .phase,
      .proof-grid {
        grid-template-columns: 1fr;
      }

      .problem,
      .hope,
      .protocol,
      .founder,
      .faq,
      .pricing,
      .final-cta {
        padding-top: clamp(40px, 5.5vw, 60px);
        padding-bottom: clamp(40px, 5.5vw, 60px);
      }

      .quote-section {
        padding-top: clamp(40px, 5vw, 56px);
        padding-bottom: clamp(40px, 5vw, 56px);
      }

      .phase:nth-child(even) {
        direction: ltr;
      }

      .problem-image,
      .hope-image,
      .phase-image {
        aspect-ratio: 16 / 10;
      }

      .problem-stage {
        padding-top: 0;
      }

      .problem-image-wrap {
        height: 420px;
      }

      .proof-card-image {
        aspect-ratio: 16 / 10;
      }

      .founder-content {
        padding: 36px 26px;
      }

      .hope-image {
        max-width: 100%;
        justify-self: stretch;
      }

      .footer-brand {
        max-width: none;
        flex: 1 1 auto;
      }

      .footer-tagline {
        max-width: none;
      }

      .pricing-actual {
        padding: 32px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(174, 207, 255, 0.1);
      }

      .pricing-card .pricing-actual {
        border-top-color: rgba(18, 39, 70, 0.1);
      }
    }

    @media (max-width: 720px) {
      .hero {
        min-height: auto;
        padding: 112px 0 56px;
      }

      .hero-content {
        padding-bottom: 0;
      }

      .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.25rem);
      }

      .section-header {
        margin-bottom: 48px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: min(100%, 320px);
      }

      .hero-meta {
        gap: 10px 18px;
        margin-bottom: 28px;
      }

      .problem-stats {
        grid-template-columns: 1fr;
      }

      .problem-image-wrap {
        height: 280px;
      }

      .problem-card {
        padding: 26px 18px;
      }

      .problem-header {
        margin-bottom: 26px;
      }

      .phase {
        padding: 34px 0;
      }

      .phase:first-child {
        padding-top: 34px;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }

      .big-quote p {
        font-size: clamp(1.45rem, 7.2vw, 1.95rem);
      }

      .founder-content,
      .faq-item {
        border-radius: 20px;
      }

      .fit-card {
        padding-top: 18px;
      }
    }

    body {
      background: transparent;
      position: relative;
    }

    @media (max-width: 980px) {
      .layer-card {
        width: min(calc(100% - 32px), var(--stage-width));
        border-radius: 30px;
      }

      .nav {
        padding-top: 14px;
      }

      .nav-inner,
      .nav.scrolled .nav-inner {
        width: min(calc(100% - 16px), 1240px);
        border-radius: 20px;
      }

      .quote-section,
      .hope,
      .proof,
      .pricing,
      .faq {
        padding-left: 0;
        padding-right: 0;
      }

      .big-quote {
        text-align: center;
      }

      .big-quote cite::before {
        left: 50%;
        transform: translateX(-50%);
      }

      .expanding-panel {
        width: min(calc(100% - 32px), 1240px);
      }
    }

    @media (max-width: 720px) {
      :root {
        --card-width: min(calc(100% - 40px), var(--container-max));
        --stage-width: var(--card-width);
        --overlay-card-width: min(calc(100% - 40px), 980px);
        --content-padding: 20px;
      }

      html,
      body {
        background-color: var(--color-bg);
      }

      .layer-card {
        width: calc(100% - 18px);
        margin-top: 18px;
        border-radius: 24px;
      }

      .hero {
        width: calc(100% - 18px);
        padding: 110px 0 56px;
      }

      .hero-title {
        font-size: clamp(2.7rem, 11vw, 4.4rem);
        line-height: 0.92;
      }

      .big-quote p,
      .hope-copy .section-title,
      .reframe-content h2,
      .founder-content h2,
      .final-content h2 {
        font-size: clamp(2.2rem, 9.2vw, 3.4rem);
        line-height: 0.98;
      }

      .reframe-content,
      .founder-content,
      .final-content {
        padding-left: 20px;
        padding-right: 20px;
      }

      .problem-stage,
      .reframe-content,
      .founder-content {
        width: calc(100% - 40px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
      }

      .problem .container,
      .reframe .container,
      .founder .container {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
      }

      .founder .container {
        margin-left: auto;
        margin-right: auto;
      }

      .problem-card {
        padding-left: 24px;
        padding-right: 24px;
      }

      .problem-card .problem-copy,
      .problem-header,
      .hope-copy > p:not(.section-eyebrow) {
        max-width: 100%;
      }

      .problem-card .stat {
        padding-left: 24px;
        padding-right: 24px;
      }

      .problem-card .problem-stats {
        margin-left: -24px;
        margin-right: -24px;
      }

      .reframe-glass {
        padding-left: 24px;
        padding-right: 24px;
      }

      .founder-bg {
        width: calc(100% - 40px);
      }

      .founder-content {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero-floating {
        display: none;
      }

      .proof-card,
      .pricing-card,
      .faq-item {
        border-radius: 22px;
      }

      .expanding-panel {
        width: calc(100% - 18px);
        border-radius: 24px 24px 0 0;
      }
    }

    /* ── Architecture Section ── */

    .architecture {
      position: relative;
      z-index: 2;
      padding: var(--section-padding-loose) 0;
    }

    /* World container */
    .arch-world {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    /* Globe — the image with hotspots */
    .arch-globe {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }

    .arch-globe-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 50%;
      filter: saturate(1.05) brightness(1.02);
      box-shadow:
        0 0 60px rgba(82, 167, 255, 0.12),
        0 0 120px rgba(82, 167, 255, 0.06),
        0 40px 80px rgba(1, 4, 12, 0.4);
    }

    /* Hotspot dots */
    .arch-dot {
      position: absolute;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: var(--font-sans);
      z-index: 2;
    }

    /* Pulsing ring */
    .arch-dot-ping {
      position: absolute;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid rgba(82, 167, 255, 0.4);
      animation: dotPing 2.8s ease-out infinite;
      pointer-events: none;
    }

    @keyframes dotPing {
      0% { transform: scale(0.7); opacity: 0.8; }
      70% { transform: scale(1.4); opacity: 0; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    /* Core numbered circle */
    .arch-dot-core {
      position: relative;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(220, 232, 250, 0.88));
      border: 2px solid rgba(255, 255, 255, 0.6);
      box-shadow:
        0 4px 16px rgba(1, 6, 15, 0.3),
        0 0 20px rgba(82, 167, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 800;
      color: #0f2240;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
    }

    .arch-dot:hover .arch-dot-core {
      transform: scale(1.15);
      box-shadow:
        0 6px 24px rgba(1, 6, 15, 0.35),
        0 0 32px rgba(82, 167, 255, 0.35);
      background: linear-gradient(135deg, #fff, #dbe8ff);
    }

    .arch-dot:active .arch-dot-core {
      transform: scale(1.05);
    }

    /* Label below dot */
    .arch-dot-label {
      display: block;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(6, 14, 28, 0.75);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(166, 213, 255, 0.18);
      color: var(--color-text);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .arch-dot:hover .arch-dot-label {
      background: rgba(82, 167, 255, 0.18);
      border-color: rgba(82, 167, 255, 0.35);
    }

    /* Modal overlay */
    .arch-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 500;
      background:
        radial-gradient(circle at 50% 46%, rgba(82, 167, 255, 0.18), transparent 34%),
        rgba(4, 10, 20, 0.64);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .arch-modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    .arch-modal-world-bg {
      position: absolute;
      inset: -12vh -10vw;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.5s ease, transform 1.1s var(--ease-out);
    }

    .arch-modal-overlay.is-open .arch-modal-world-bg {
      opacity: 0.34;
      transform: scale(1.08);
    }

    .arch-modal-world-bg img {
      width: min(1080px, 118vw);
      max-width: none;
      filter: saturate(1.12) brightness(1.08) blur(0.2px);
      transform: translateY(2vh);
    }

    body.arch-modal-active .nav {
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .arch-modal {
      position: relative;
      z-index: 1;
      width: min(100%, 680px);
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      padding: 0 clamp(32px, 4.5vw, 52px) clamp(32px, 4.5vw, 52px);
      border-radius: 32px;
      border: 1px solid rgba(190, 220, 255, 0.24);
      background: linear-gradient(180deg, rgba(11, 26, 50, 0.72), rgba(7, 18, 36, 0.64));
      box-shadow: 0 40px 100px rgba(1, 4, 12, 0.46), 0 0 60px rgba(82, 167, 255, 0.1);
      backdrop-filter: blur(24px) saturate(1.1);
      -webkit-backdrop-filter: blur(24px) saturate(1.1);
      transform: translateY(24px) scale(0.97);
      transition: transform 0.4s var(--ease-out);
    }

    .arch-modal-overlay.is-open .arch-modal {
      transform: translateY(0) scale(1);
    }

    .arch-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(174, 207, 255, 0.14);
      background: rgba(255, 255, 255, 0.05);
      color: var(--color-text-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease;
    }

    .arch-modal-media {
      margin: 0 calc(clamp(32px, 4.5vw, 52px) * -1) clamp(26px, 3vw, 36px);
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 31px 31px 0 0;
      border-bottom: 1px solid rgba(174, 207, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
    }

    .arch-modal-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .arch-modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--color-text);
    }

    .arch-modal-header {
      margin-bottom: clamp(24px, 3vw, 36px);
      padding-bottom: clamp(20px, 2.5vw, 28px);
      border-bottom: 1px solid rgba(174, 207, 255, 0.1);
    }

    .arch-modal-weeks {
      display: inline-block;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-moss);
      margin-bottom: 8px;
    }

    .arch-modal-title {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 500;
      line-height: 0.95;
      color: var(--color-text);
      margin: 0 0 6px;
    }

    .arch-modal-subtitle {
      font-size: 1.05rem;
      color: var(--color-text-secondary);
      margin: 0;
    }

    .arch-modal-components {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .arch-component {
      padding: 24px 26px;
      border-radius: 20px;
      border: 1px solid rgba(190, 220, 255, 0.16);
      background: rgba(9, 22, 44, 0.48);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .arch-component:hover {
      border-color: rgba(82, 167, 255, 0.28);
      background: rgba(82, 167, 255, 0.12);
    }

    .arch-component-name {
      font-family: var(--font-serif);
      font-size: clamp(1.25rem, 2vw, 1.55rem);
      font-weight: 500;
      line-height: 1.15;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .arch-component-desc {
      color: var(--color-text-secondary);
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 720px) {
      .arch-dot-core {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
      }

      .arch-dot-ping {
        width: 46px;
        height: 46px;
      }

      .arch-dot-label {
        font-size: 0.58rem;
        padding: 3px 8px;
        letter-spacing: 0.12em;
      }

      .arch-modal {
        padding: 0 22px 28px;
        border-radius: 24px;
      }

      .arch-modal-overlay.is-open .arch-modal-world-bg {
        opacity: 0.26;
        transform: scale(1.18);
      }

      .arch-modal-world-bg img {
        width: 170vw;
      }

      .arch-modal-media {
        margin: 0 -22px 24px;
        border-radius: 23px 23px 0 0;
      }

      .arch-component {
        padding: 20px 18px;
        border-radius: 16px;
      }
    }
