  :root {
    --bg: #0b0b0c;
    --bg-2: #131315;
    --bg-3: #1a1a1d;
    --line: rgba(245, 242, 238, 0.09);
    --line-strong: rgba(245, 242, 238, 0.16);
    --text: #f4f2ee;
    --text-dim: #a3a09a;
    --text-faint: #6f6c66;
    --gold: #ffaa10;
    --gold-bright: #ffcf79;
    --gold-deep: #ffb200;
    --gold-dim: #b36b00;
    --silver: #b9bcc2;
    --radius-s: 10px;
    --radius-m: 16px;
    --radius-l: 26px;
    --ease: cubic-bezier(.16, .84, .44, 1);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  html,
  body {
    overflow-x: hidden;
  }

  ::selection {
    background: var(--gold);
    color: #0b0b0c;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  button {
    font-family: inherit;
    cursor: pointer;
  }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  section {
    position: relative;
  }

  /* Focus visibility */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ============ AMBIENT EMBER FIELD ============ */
  .ember-field {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
  }

  .ember {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 207, 121, 0.9), rgba(255, 170, 16, 0.25) 55%, transparent 75%);
    opacity: 0;
    animation-name: emberRise;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    filter: blur(0.3px);
  }

  @keyframes emberRise {
    0% {
      transform: translate(0, 0) scale(0.6);
      opacity: 0;
    }

    8% {
      opacity: 0.75;
    }

    50% {
      transform: translate(var(--drift, 20px), -52vh) scale(1);
    }

    92% {
      opacity: 0.35;
    }

    100% {
      transform: translate(calc(var(--drift, 20px) * 1.6), -102vh) scale(0.5);
      opacity: 0;
    }
  }

  /* ============ GLOW BORDER UTILITY ============ */
  .glow-border {
    position: relative;
    z-index: 0;
  }

  .glow-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    z-index: -1;
    background: linear-gradient(140deg, rgba(255, 170, 16, 0.55), rgba(255, 170, 16, 0) 35%, rgba(255, 170, 16, 0) 65%, rgba(255, 170, 16, 0.35));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s var(--ease);
  }

  .glow-border::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: inherit;
    z-index: -2;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 170, 16, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    filter: blur(6px);
  }

  .glow-border:hover::before,
  .glow-border.glow-active::before {
    opacity: 1;
  }

  .glow-border:hover::after,
  .glow-border.glow-active::after {
    opacity: 1;
  }

  .glow-breathe::before,
  .glow-breathe::after {
    animation: glowBreathe 4.5s ease-in-out infinite;
  }

  @keyframes glowBreathe {

    0%,
    100% {
      opacity: 0.55;
    }

    50% {
      opacity: 1;
    }
  }

  /* ============ SECTION AMBIENT ORBS ============ */
  .section-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(255, 170, 16, 0.14), transparent 70%);
    filter: blur(30px);
  }

  /* ============ NAV ============ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 22px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
    border-bottom: 1px solid transparent;
  }

  .nav.scrolled {
    padding: 14px 0;
    background: rgba(11, 11, 12, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--line);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
  }

  .nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14.5px;
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
    transition: color .25s var(--ease);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    transition: width .3s var(--ease);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text);
  }

  .nav-links a.active::after {
    width: 100%;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 600;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  }

  .btn-gold {
    background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 45%, var(--gold-bright) 100%);
    color: #231a08;
  }

  .btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -8px rgba(255, 170, 16, 0.55);
  }

  .btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
  }

  .btn-ghost:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
  }

  .btn-block {
    width: 100%;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    width: 32px;
    height: 22px;
    position: relative;
  }

  .menu-btn span,
  .menu-btn::before,
  .menu-btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--text);
    transition: all .3s var(--ease);
  }

  .menu-btn span {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-btn::before {
    top: 0;
  }

  .menu-btn::after {
    bottom: 0;
  }

  .menu-btn.open::before {
    top: 50%;
    transform: rotate(45deg);
  }

  .menu-btn.open::after {
    bottom: 50%;
    transform: rotate(-45deg);
  }

  .menu-btn.open span {
    opacity: 0;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: #0b0b0c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    clip-path: circle(0px at calc(100% - 40px) 40px);
    transition: clip-path .6s var(--ease);
    pointer-events: none;
  }

  .mobile-menu.open {
    clip-path: circle(150% at calc(100% - 40px) 40px);
    pointer-events: auto;
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-menu a {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 0;
    display: block;
  }

  .mobile-menu .btn {
    margin-top: 28px;
    align-self: stretch;
    text-align: center;
  }

  /* ============ HERO ============ */
  .hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 90px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-media video,
  .hero-fallback-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-fallback-image {
    background:
      radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 170, 16, 0.18), transparent 60%),
      radial-gradient(ellipse 70% 50% at 80% 80%, rgba(80, 70, 50, 0.25), transparent 60%),
      #0e0e10;
  }

  #heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(11, 11, 12, 0.25) 0%, rgba(11, 11, 12, 0.15) 35%, rgba(11, 11, 12, 0.9) 100%),
      linear-gradient(90deg, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.05) 55%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--gold-bright);
    margin-bottom: 22px;
    opacity: 0;
  }

  .hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-bright);
  }

  .hero h1 {
    font-size: clamp(40px, 6.4vw, 92px);
    color: var(--text);
    max-width: 16ch;
  }

  .hero h1 .line {
    display: block;
    overflow: hidden;
  }

  .hero h1 .line span {
    display: block;
    transform: translateY(115%);
  }

  .hero-sub {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 46ch;
    opacity: 0;
  }

  .hero-cta {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
  }

  .hero-scroll {
    position: absolute;
    right: 32px;
    bottom: 36px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-faint);
    font-size: 12px;
    letter-spacing: .06em;
  }

  .hero-scroll .line-v {
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--gold-bright), transparent);
  }

  /* ============ SECTION HEADS ============ */
  .kicker {
    font-size: 13.5px;
    color: var(--gold-bright);
    margin-bottom: 16px;
    display: block;
  }

  .section-head {
    max-width: 640px;
    margin-bottom: 64px;
  }

  .section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--text);
  }

  .section-head p {
    margin-top: 18px;
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.65;
  }

  /* ============ SHOWCASE ============ */
  .showcase {
    padding: 150px 0 130px;
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .showcase-copy h2 {
    font-size: clamp(30px, 4vw, 46px);
  }

  .showcase-copy p {
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.7;
    max-width: 44ch;
  }

  .phone-stage {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .phone {
    width: 250px;
    height: 520px;
    border-radius: 38px;
    background: linear-gradient(160deg, #1c1c1f, #0d0d0e);
    border: 1px solid var(--line-strong);
    position: relative;
    box-shadow: 0 60px 80px -30px rgba(0, 0, 0, 0.7);
    overflow: hidden;
  }

  .phone-screen {
    position: absolute;
    inset: 8px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(200deg, #17171a, #0c0c0d);
  }

  .phone-screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .phone-card {
    position: absolute;
    margin: 14px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
  }

  .phone-card-top {
    top: 36px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .avatar-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(160deg, #4a4238, #2a251e);
    flex-shrink: 0;
  }

  .phone-name {
    font-size: 13px;
    font-weight: 600;
  }

  .phone-sub {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
  }

  .phone-photo {
    position: absolute;
    top: 98px;
    left: 14px;
    right: 14px;
    bottom: 120px;
    border-radius: 20px;
    background: linear-gradient(150deg, #2a2620, #141311);
  }

  .phone-bottom-bar {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    gap: 10px;
  }

  .pill {
    flex: 1;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--text-dim);
  }

  .float-card {
    position: absolute;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 22, 24, 0.85);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
    font-size: 12.5px;
  }

  .float-verify {
    top: 8%;
    left: -6%;
  }

  .float-verify .badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--gold-bright), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #231a08;
    font-weight: 700;
    font-size: 13px;
  }

  .float-like {
    bottom: 18%;
    right: -8%;
  }

  .float-like .badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .float-notif {
    top: 44%;
    right: -12%;
  }

  .glow-ambient {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 170, 16, 0.16), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
  }

  /* ============ PINNED HOW IT WORKS ============ */
  .pin-section {
    position: relative;
  }

  .pin-inner {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .pin-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .pin-steps {
    position: relative;
    height: 280px;
  }

  .pin-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(24px);
  }

  .pin-step .step-no {
    font-size: 14px;
    color: var(--gold-bright);
    letter-spacing: .08em;
    margin-bottom: 18px;
    display: block;
  }

  .pin-step h3 {
    font-size: clamp(28px, 3.4vw, 42px);
    color: var(--text);
    margin-bottom: 18px;
  }

  .pin-step p {
    color: var(--text-dim);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 42ch;
  }

  .pin-progress {
    display: flex;
    gap: 8px;
    margin-top: 40px;
  }

  .pin-progress i {
    width: 34px;
    height: 2px;
    background: var(--line-strong);
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }

  .pin-progress i em {
    position: absolute;
    inset: 0;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    display: block;
  }

  .pin-visual {
    position: relative;
    height: 560px;
  }

  .pin-phone {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 270px;
    height: 540px;
  }

  /* ============ BENEFITS ============ */
  .benefits {
    padding: 150px 0;
    border-top: 1px solid var(--line);
  }

  .benefits-list {
    display: flex;
    flex-direction: column;
  }

  .benefit-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    gap: 36px;
    align-items: center;
    padding: 38px 0;
    border-top: 1px solid var(--line);
  }

  .benefit-row:last-child {
    border-bottom: 1px solid var(--line);
  }

  .benefit-num {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    color: var(--text-faint);
  }

  .benefit-row h3 {
    font-size: 26px;
    color: var(--text);
    font-weight: 500;
  }

  .benefit-row p {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 48ch;
  }

  /* ============ FEATURES ============ */
  .features {
    padding: 150px 0;
  }

  .feat-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 26px;
    align-items: center;
  }

  .feat-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .feat-card {
    padding: 22px;
    border-radius: var(--radius-m);
    border: 1px solid var(--line);
    background: var(--bg-2);
    transition: border-color .3s var(--ease), transform .3s var(--ease);
    opacity: 0.45;
  }

  .feat-card.active {
    border-color: rgba(255, 170, 16, 0.4);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(255, 170, 16, 0.12), 0 18px 40px -20px rgba(255, 170, 16, 0.35);
  }

  .feat-card h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter';
    margin-bottom: 8px;
  }

  .feat-card p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.55;
  }

  .feat-center {
    display: flex;
    justify-content: center;
  }

  /* ============ SAFETY ============ */
  .safety {
    padding: 150px 0;
    border-top: 1px solid var(--line);
    position: relative;
  }

  .safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .safety-copy h2 {
    font-size: clamp(30px, 4vw, 46px);
  }

  .safety-copy p {
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.7;
    max-width: 44ch;
  }

  .safety-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .safety-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 12px;
  }

  .safety-point span {
    font-size: 15px;
    color: var(--text-dim);
  }

  .id-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 22px;
    padding: 30px;
    background: linear-gradient(165deg, #171719, #0d0d0e);
    border: 1px solid var(--line-strong);
    position: relative;
    box-shadow: 0 0 0 1px rgba(255, 170, 16, 0.05), 0 30px 60px -24px rgba(0, 0, 0, 0.6);
  }

  .id-card img {
    width: 100%;
    border-radius: 14px;
    display: block;
    margin-bottom: 20px;
  }

  .id-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 170, 16, 0.35), transparent 40%, transparent 70%, rgba(255, 170, 16, 0.15));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .id-card-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }

  .id-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(150deg, #3c342a, #1a1712);
  }

  .id-scan-line {
    position: absolute;
    left: 22px;
    right: 22px;
    height: 2px;
    top: 110px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0;
  }

  .id-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    margin-top: 18px;
    background: rgba(255, 170, 16, 0.1);
    border: 1px solid rgba(255, 170, 16, 0.3);
    color: var(--gold-bright);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.9);
  }

  .id-line {
    height: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
  }

  .id-line.w60 {
    width: 60%;
  }

  .id-line.w40 {
    width: 40%;
  }

  /* ============ PRICING ============ */
  .pricing {
    padding: 150px 0;
    border-top: 1px solid var(--line);
  }

  .price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  .price-card {
    border-radius: var(--radius-l);
    padding: 44px 38px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
  }

  .price-card.gold {
    background: linear-gradient(165deg, #1c1912, #131110);
    border: 1px solid rgba(255, 170, 16, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 170, 16, 0.08), 0 40px 80px -30px rgba(255, 170, 16, 0.18);
  }

  .price-tag {
    position: absolute;
    top: 32px;
    right: 38px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 170, 16, 0.14);
    color: var(--gold-bright);
    font-weight: 600;
  }

  .price-card h3 {
    font-size: 26px;
    color: var(--text-dim);
  }

  .price-card.gold h3 {
    color: var(--gold-bright);
  }

  .price-amount {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    margin: 18px 0 6px;
  }

  .price-card.gold .price-amount {
    color: var(--gold-bright);
  }

  .price-note {
    color: var(--text-dim);
    font-size: 14.5px;
    margin-bottom: 30px;
    min-height: 42px;
  }

  .price-included {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }

  .price-included-title {
    font-size: 13px;
    color: var(--text-faint);
    letter-spacing: .04em;
    margin-bottom: 18px;
  }

  .price-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 14.5px;
    color: var(--text-dim);
  }

  .price-feat.no {
    color: var(--text-faint);
    text-decoration: line-through;
  }

  .price-feat .ic {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
  }

  .price-feat .ic.yes {
    background: rgba(255, 170, 16, 0.15);
    color: var(--gold-bright);
  }

  .price-feat .ic.no {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-faint);
  }

  /* ============ WAITLIST ============ */
  .waitlist {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
  }

  .waitlist-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .waitlist h2 {
    font-size: clamp(32px, 4.6vw, 54px);
  }

  .waitlist p {
    margin-top: 18px;
    color: var(--text-dim);
    font-size: 17px;
  }

  .waitlist-form {
    margin-top: 40px;
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .waitlist-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 100px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
  }

  .waitlist-form input::placeholder {
    color: var(--text-faint);
  }

  .waitlist-form input:focus {
    outline: none;
    border-color: var(--gold-bright);
  }

  .waitlist-status {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
  }

  .waitlist-status.ok {
    color: #8fd19e;
  }

  .waitlist-status.err {
    color: #e08a7d;
  }

  @media (max-width:560px) {
    .waitlist-form {
      flex-direction: column;
    }
  }

  /* ============ APP DOWNLOAD ============ */
  .download {
    padding: 130px 0;
    border-top: 1px solid var(--line);
  }

  .download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .download-copy h2 {
    font-size: clamp(28px, 3.6vw, 42px);
  }

  .download-copy p {
    margin-top: 18px;
    color: var(--text-dim);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 42ch;
  }

  .store-badges {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: 14px;
    border: 1px solid var(--line-strong);
    background: var(--bg-2);
    position: relative;
    opacity: 0.85;
  }

  .store-badge .store-label {
    font-size: 9px;
    color: var(--text-faint);
    letter-spacing: .05em;
  }

  .store-badge .store-name {
    font-size: 14.5px;
    font-weight: 600;
  }

  .soon-chip {
    position: absolute;
    top: -10px;
    right: 12px;
    font-size: 9.5px;
    background: var(--gold-bright);
    color: #231a08;
    padding: 3px 9px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: .03em;
  }

  .download-phone {
    display: flex;
    justify-content: center;
  }

  /* ============ ABOUT ============ */
  .about {
    padding: 130px 0;
    border-top: 1px solid var(--line);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }

  .about h2 {
    font-size: clamp(30px, 4vw, 44px);
    max-width: 9ch;
  }

  .about-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 56ch;
  }

  .about-copy p strong {
    color: var(--text);
    font-weight: 500;
  }

  /* ============ FAQ ============ */
  .faq {
    padding: 130px 0;
    border-top: 1px solid var(--line);
  }

  .faq-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid var(--line);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    padding: 26px 0;
    font-size: 18px;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .faq-q .plus {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .faq-q .plus::before,
  .faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--gold-bright);
    transition: transform .3s var(--ease);
  }

  .faq-q .plus::before {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .faq-q .plus::after {
    height: 100%;
    width: 1.5px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .faq-item.open .plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }

  .faq-a p {
    padding-bottom: 26px;
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 60ch;
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    padding: 170px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    isolation: isolate;
  }

  .final-cta-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .final-cta-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.5) 0%, rgba(11, 11, 12, 0.68) 55%, rgba(11, 11, 12, 0.92) 100%);
  }

  .final-cta h2 {
    font-size: clamp(34px, 5.4vw, 64px);
    max-width: 16ch;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .final-cta .btn {
    margin-top: 36px;
    position: relative;
    z-index: 2;
  }

  .final-cta .final-glow,
  .final-cta .section-orb {
    z-index: 1;
  }

  .final-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 170, 16, 0.14), transparent 65%);
    pointer-events: none;
  }

  /* ============ FOOTER ============ */
  footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line);
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }

  .footer-links {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    list-style: none;
  }

  .footer-links a {
    font-size: 14px;
    color: var(--text-dim);
  }

  .footer-links a:hover {
    color: var(--text);
  }

  .footer-social {
    display: flex;
    gap: 16px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-dim);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 13px;
    color: var(--text-faint);
  }

  .footer-legal {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  .footer-legal a {
    font-size: 13px;
    color: var(--text-faint);
  }

  .footer-legal a:hover {
    color: var(--text-dim);
  }

  /* ============ WELCOME BOT ============ */
  .welcome-bot {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 150;
    display: flex;
    align-items: flex-end;
    gap: 12px;
  }

  .bot-bubble {
    background: var(--bg-3);
    border: 1px solid var(--line-strong);
    padding: 12px 16px;
    border-radius: 16px 16px 4px 16px;
    font-size: 13.5px;
    max-width: 200px;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transform-origin: bottom right;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  }

  .bot-avatar img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }

  .bot-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(155deg, var(--gold-bright), var(--gold-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px -8px rgba(255, 170, 16, 0.5);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width:980px) {

    .nav-links,
    .nav-cta .btn-ghost {
      display: none;
    }

    .menu-btn {
      display: block;
    }

    .showcase-grid,
    .pin-grid,
    .safety-grid,
    .download-grid,
    .about-grid {
      grid-template-columns: 1fr;
    }

    .pin-inner {
      height: auto;
      padding: 80px 0;
    }

    .pin-visual {
      height: 440px;
      order: -1;
      margin-bottom: 10px;
    }

    .pin-steps {
      height: auto;
      position: relative;
    }

    .pin-step {
      position: relative;
      opacity: 1;
      transform: none;
      display: none;
    }

    .pin-step.mobile-active {
      display: block;
    }

    .feat-layout {
      grid-template-columns: 1fr;
    }

    .feat-col {
      flex-direction: row;
      overflow-x: auto;
      padding-bottom: 10px;
    }

    .feat-card {
      min-width: 220px;
      opacity: 1;
    }

    .price-grid {
      grid-template-columns: 1fr;
    }

    .benefit-row {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }

  @media (max-width:640px) {
    .wrap {
      padding: 0 22px;
    }

    .hero {
      padding-bottom: 60px;
    }

    .hero-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .waitlist-box .waitlist-form {
      flex-direction: column;
    }

    .footer-top {
      flex-direction: column;
    }
  }