  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
  }

  :root {
      --void: #04030f;
      --panel: #080618;
      --panel2: #0a081e;
      --rim: #1a1535;
      --rim2: #2d2558;
      --v: #8b5cf6;
      --v2: #c084fc;
      --v3: #38bdf8;
      --v4: #f472b6;
      --white: #f0eeff;
      --muted: #6b5f9e;
      --muted2: #2e265a;
      --ok: #34d399;
      --gold: #fbbf24;
      --gold2: #f59e0b;
      --ease: cubic-bezier(.16, 1, .3, 1);
      --font-display: 'Cinzel Decorative', serif;
      --font-title: 'Cinzel', serif;
      --font-body: 'Cormorant Garamond', serif;
      --font-mono: 'IM Fell English', serif;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--font-body);
      background: var(--void);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
      cursor: none;
  }

  /* NOISE LAYER */
  body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9990;
      opacity: .035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ARCANE RUNE BORDER OVERLAY */
  body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9989;
      border: 1px solid rgba(139, 92, 246, .04);
  }

  /* CURSOR */
  .cur {
      position: fixed;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: screen;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 14px var(--gold);
      transition: opacity .2s;
  }

  .cur-ring {
      position: fixed;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(251, 191, 36, .3);
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s, border-color .25s;
  }

  /* NAV */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 68px;
      background: rgba(4, 3, 15, .88);
      border-bottom: 1px solid rgba(139, 92, 246, .12);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      animation: slideDown .7s var(--ease) both;
  }

  nav::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(251, 191, 36, .3), rgba(139, 92, 246, .4), rgba(251, 191, 36, .3), transparent);
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .05em;
      background: linear-gradient(130deg, var(--gold) 0%, var(--white) 40%, var(--v2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      cursor: none;
  }

  .nav-logo svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
  }

  .nav-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 9px;
      font-family: var(--font-title);
      letter-spacing: .2em;
      color: var(--ok);
      border: 1px solid rgba(52, 211, 153, .18);
      border-radius: 20px;
      padding: 5px 12px;
  }

  .nav-pill-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ok);
      box-shadow: 0 0 8px var(--ok);
      animation: blink 1.8s ease-in-out infinite;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
  }

  .nav-link {
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-family: var(--font-title);
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
      cursor: none;
  }

  .nav-link:hover {
      color: var(--white);
  }

  .nav-cta {
      padding: 9px 22px;
      border-radius: 6px;
      font-size: 11px;
      font-family: var(--font-title);
      font-weight: 700;
      letter-spacing: .1em;
      background: linear-gradient(135deg, var(--v), var(--v2));
      color: #fff;
      text-decoration: none;
      transition: all .25s;
      border: none;
      box-shadow: 0 4px 20px rgba(139, 92, 246, .4);
      cursor: none;
      position: relative;
      overflow: hidden;
  }

  .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(251, 191, 36, .15), transparent);
      opacity: 0;
      transition: opacity .3s;
  }

  .nav-cta:hover::before {
      opacity: 1;
  }

  .nav-cta:hover {
      box-shadow: 0 6px 30px rgba(139, 92, 246, .6);
      transform: translateY(-1px);
  }

  /* DECORATIVE DIVIDERS */
  .rune-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 0 auto;
      opacity: .35;
  }

  .rune-divider::before,
  .rune-divider::after {
      content: '';
      flex: 1;
      max-width: 120px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
  }

  .rune-divider::after {
      background: linear-gradient(90deg, var(--gold), transparent);
  }

  .rune-sym {
      color: var(--gold);
      font-size: 14px;
      font-family: var(--font-display);
  }

  /* HERO */
  .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 110px 24px 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
  }

  /* ARCANE GRID */
  .hero-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
          linear-gradient(rgba(139, 92, 246, .04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(139, 92, 246, .04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
      animation: gridPan 30s linear infinite;
  }

  @keyframes gridPan {
      0% {
          background-position: 0 0
      }

      100% {
          background-position: 80px 80px
      }
  }

  /* RUNIC CIRCLE ORNAMENT */
  .hero-rune-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      border-radius: 50%;
      border: 1px solid rgba(139, 92, 246, .06);
      pointer-events: none;
      animation: slowSpin 60s linear infinite;
  }

  .hero-rune-circle::before {
      content: '';
      position: absolute;
      inset: 40px;
      border-radius: 50%;
      border: 1px solid rgba(251, 191, 36, .05);
      animation: slowSpin 45s linear infinite reverse;
  }

  .hero-rune-circle::after {
      content: '';
      position: absolute;
      inset: 90px;
      border-radius: 50%;
      border: 1px dashed rgba(139, 92, 246, .04);
  }

  @keyframes slowSpin {
      to {
          transform: rotate(360deg)
      }
  }

  .orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(120px);
  }

  .orb-a {
      width: 700px;
      height: 700px;
      background: var(--v);
      opacity: .05;
      top: -250px;
      left: -250px;
      animation: orbDrift 18s ease-in-out infinite;
  }

  .orb-b {
      width: 500px;
      height: 500px;
      background: var(--v2);
      opacity: .045;
      bottom: -200px;
      right: -200px;
      animation: orbDrift 14s ease-in-out infinite;
      animation-delay: -6s;
  }

  .orb-c {
      width: 400px;
      height: 400px;
      background: var(--gold);
      opacity: .025;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: orbDrift 22s ease-in-out infinite;
      animation-delay: -10s;
  }

  @keyframes orbDrift {

      0%,
      100% {
          transform: translate(0, 0) scale(1)
      }

      33% {
          transform: translate(30px, -25px) scale(1.04)
      }

      66% {
          transform: translate(-22px, 28px) scale(.97)
      }
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 20px;
      border-radius: 4px;
      background: rgba(139, 92, 246, .06);
      border: 1px solid rgba(251, 191, 36, .18);
      font-size: 9px;
      font-family: var(--font-title);
      letter-spacing: .18em;
      color: var(--gold);
      margin-bottom: 36px;
      animation: riseUp .7s .1s var(--ease) both;
      position: relative;
  }

  .hero-badge::before,
  .hero-badge::after {
      content: '✦';
      font-size: 8px;
      opacity: .6;
  }

  .hero-h {
      font-family: var(--font-display);
      font-size: clamp(38px, 6vw, 82px);
      font-weight: 900;
      letter-spacing: .02em;
      line-height: 1.12;
      margin-bottom: 24px;
      animation: riseUp .8s .18s var(--ease) both;
  }

  .hero-h .line1 {
      display: block;
      color: var(--white);
      text-shadow: 0 0 80px rgba(139, 92, 246, .3);
  }

  .hero-h .line2 {
      display: block;
      background: linear-gradient(130deg, var(--gold) 0%, var(--v2) 40%, var(--v3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% auto;
      animation: textShift 6s ease-in-out infinite alternate;
      filter: drop-shadow(0 0 30px rgba(251, 191, 36, .2));
  }

  @keyframes textShift {
      0% {
          background-position: 0% 50%
      }

      100% {
          background-position: 100% 50%
      }
  }

  .hero-sub {
      font-family: var(--font-body);
      font-size: clamp(16px, 2vw, 20px);
      font-style: italic;
      color: rgba(176, 163, 230, .7);
      font-weight: 300;
      max-width: 520px;
      margin: 0 auto 48px;
      line-height: 1.8;
      animation: riseUp .8s .26s var(--ease) both;
  }

  .hero-sub b {
      color: rgba(240, 238, 255, .75);
      font-weight: 600;
      font-style: normal;
  }

  .hero-input-wrap {
      position: relative;
      width: 100%;
      max-width: 580px;
      animation: riseUp .8s .34s var(--ease) both;
  }

  .hero-glass {
      display: flex;
      align-items: center;
      background: rgba(8, 6, 24, .92);
      border: 1px solid var(--rim2);
      border-radius: 6px;
      overflow: hidden;
      backdrop-filter: blur(20px);
      transition: border-color .25s, box-shadow .25s;
      position: relative;
  }

  .hero-glass::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(251, 191, 36, .03), transparent 60%);
      pointer-events: none;
  }

  .hero-glass:focus-within {
      border-color: var(--gold2);
      box-shadow: 0 0 0 3px rgba(251, 191, 36, .1), 0 20px 50px rgba(0, 0, 0, .6);
  }

  .hero-input-icon {
      padding: 0 16px;
      color: var(--muted2);
  }

  .hero-input {
      flex: 1;
      padding: 17px 0;
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--white);
      cursor: none;
  }

  .hero-input::placeholder {
      color: var(--muted2);
      font-style: italic;
  }

  .hero-btn {
      margin: 6px;
      padding: 12px 24px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--v), var(--v2));
      color: #fff;
      border: none;
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .12em;
      white-space: nowrap;
      transition: all .25s;
      box-shadow: 0 4px 20px rgba(139, 92, 246, .45);
      cursor: none;
      text-transform: uppercase;
  }

  .hero-btn:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 30px rgba(139, 92, 246, .65);
  }

  .hero-note {
      margin-top: 14px;
      font-size: 11px;
      font-family: var(--font-title);
      letter-spacing: .1em;
      color: var(--muted);
  }

  .hero-note span {
      color: var(--ok);
  }

  /* STATS */
  .hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 70px;
      animation: riseUp .8s .45s var(--ease) both;
      position: relative;
  }

  .hero-stats::before {
      content: '';
      position: absolute;
      inset: -20px -40px;
      border: 1px solid rgba(251, 191, 36, .06);
      border-radius: 8px;
  }

  .stat {
      padding: 0 40px;
      text-align: center;
      position: relative;
  }

  .stat+.stat::before {
      content: '✦';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(251, 191, 36, .2);
      font-size: 12px;
  }

  .stat-num {
      font-family: var(--font-display);
      font-size: clamp(22px, 3.5vw, 38px);
      font-weight: 900;
      letter-spacing: .02em;
      background: linear-gradient(135deg, var(--white), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      text-shadow: none;
  }

  .stat-loading {
      animation: shimmer 1.5s ease-in-out infinite;
  }

  @keyframes shimmer {

      0%,
      100% {
          opacity: .4
      }

      50% {
          opacity: 1
      }
  }

  .stat-label {
      font-size: 9px;
      font-family: var(--font-title);
      color: var(--muted);
      letter-spacing: .18em;
      margin-top: 4px;
      text-transform: uppercase;
  }

  /* SCROLL HINT — right side */
  .scroll-hint {
      position: absolute;
      bottom: 48px;
      right: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 9px;
      font-family: var(--font-title);
      letter-spacing: .2em;
      color: var(--muted2);
      animation: fadeInDelay 1s 1.2s both;
      opacity: 0;
      writing-mode: vertical-rl;
      text-orientation: mixed;
  }

  .scroll-mouse {
      width: 20px;
      height: 32px;
      border: 1.5px solid var(--muted2);
      border-radius: 10px;
      position: relative;
      display: flex;
      justify-content: center;
      writing-mode: horizontal-tb;
  }

  .scroll-mouse::after {
      content: '';
      position: absolute;
      top: 5px;
      width: 3px;
      height: 6px;
      background: var(--muted);
      border-radius: 2px;
      animation: scrollDown 1.8s ease-in-out infinite;
  }

  @keyframes scrollDown {
      0% {
          opacity: 1;
          transform: translateY(0)
      }

      100% {
          opacity: 0;
          transform: translateY(12px)
      }
  }

  /* SECTIONS */
  .section {
      padding: 110px 24px;
      position: relative;
  }

  .section-inner {
      max-width: 1100px;
      margin: 0 auto;
  }

  .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 9px;
      font-family: var(--font-title);
      letter-spacing: .22em;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .6s, transform .6s;
      text-transform: uppercase;
  }

  .section-label::before {
      content: '';
      width: 28px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
  }

  .section-label.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .section-h {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 50px);
      font-weight: 900;
      letter-spacing: .02em;
      line-height: 1.15;
      margin-bottom: 16px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .65s .08s, transform .65s .08s;
  }

  .section-h.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .section-desc {
      font-family: var(--font-body);
      font-size: 17px;
      font-style: italic;
      color: rgba(176, 163, 230, .65);
      font-weight: 300;
      max-width: 480px;
      line-height: 1.85;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .65s .16s, transform .65s .16s;
  }

  .section-desc.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .grad-text {
      background: linear-gradient(130deg, var(--gold), var(--v2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .chip {
      display: inline-flex;
      align-items: center;
      padding: 2px 8px;
      border-radius: 3px;
      background: rgba(139, 92, 246, .12);
      border: 1px solid rgba(139, 92, 246, .25);
      color: var(--v2);
      font-family: var(--font-title);
      font-size: .8em;
      letter-spacing: .05em;
  }

  /* FEATURES */
  .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 64px;
  }

  .feat-card {
      padding: 36px 30px;
      border-radius: 8px;
      background: var(--panel);
      border: 1px solid var(--rim);
      position: relative;
      overflow: hidden;
      transition: all .35s var(--ease);
      opacity: 0;
      transform: translateY(20px);
  }

  .feat-card.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .feat-card:hover {
      border-color: rgba(251, 191, 36, .2);
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(251, 191, 36, .08);
  }

  .feat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 0%, rgba(139, 92, 246, .04), transparent 60%);
      pointer-events: none;
  }

  /* corner ornament */
  .feat-card::after {
      content: '✦';
      position: absolute;
      top: 14px;
      right: 16px;
      font-size: 10px;
      color: rgba(251, 191, 36, .15);
      font-family: var(--font-display);
  }

  .feat-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      position: relative;
  }

  .feat-icon-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 8px;
      background: currentColor;
      opacity: .1;
  }

  .feat-card:nth-child(1) .feat-icon-wrap {
      color: var(--v);
  }

  .feat-card:nth-child(2) .feat-icon-wrap {
      color: var(--v2);
  }

  .feat-card:nth-child(3) .feat-icon-wrap {
      color: var(--v3);
  }

  .feat-card:nth-child(4) .feat-icon-wrap {
      color: var(--ok);
  }

  .feat-card:nth-child(5) .feat-icon-wrap {
      color: var(--v4);
  }

  .feat-card:nth-child(6) .feat-icon-wrap {
      color: var(--gold);
  }

  .feat-icon-svg {
      position: relative;
      z-index: 1;
      width: 22px;
      height: 22px;
  }

  .feat-name {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .06em;
      margin-bottom: 12px;
      text-transform: uppercase;
  }

  .feat-desc {
      font-family: var(--font-body);
      font-size: 15px;
      color: rgba(176, 163, 230, .6);
      line-height: 1.8;
  }

  /* HOW IT WORKS */
  .how-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
  }

  .steps {
      display: flex;
      flex-direction: column;
  }

  .step {
      display: flex;
      gap: 22px;
      padding: 26px 0;
      position: relative;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity .6s, transform .6s;
  }

  .step.vis {
      opacity: 1;
      transform: translateX(0);
  }

  .step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 19px;
      top: 68px;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, rgba(251, 191, 36, .2), transparent);
  }

  .step-num {
      width: 40px;
      height: 40px;
      border-radius: 6px;
      flex-shrink: 0;
      background: var(--panel);
      border: 1px solid rgba(251, 191, 36, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 12px;
      color: var(--gold);
  }

  .step-body h3 {
      font-family: var(--font-title);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 8px;
  }

  .step-body p {
      font-family: var(--font-body);
      font-size: 15px;
      color: rgba(176, 163, 230, .6);
      line-height: 1.8;
  }

  /* MOCK */
  .mock {
      background: var(--panel);
      border: 1px solid var(--rim2);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(251, 191, 36, .04);
      opacity: 0;
      transform: translateY(20px) scale(.98);
      transition: opacity .8s .2s, transform .8s .2s var(--ease);
  }

  .mock.vis {
      opacity: 1;
      transform: translateY(0) scale(1);
  }

  .mock-bar {
      padding: 12px 16px;
      background: rgba(0, 0, 0, .3);
      border-bottom: 1px solid var(--rim);
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .mock-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .mock-dot:nth-child(1) {
      background: #ff5f57;
  }

  .mock-dot:nth-child(2) {
      background: #febc2e;
  }

  .mock-dot:nth-child(3) {
      background: #28c840;
  }

  .mock-url-bar {
      flex: 1;
      margin: 0 14px;
      padding: 5px 12px;
      border-radius: 4px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--rim);
      font-size: 10px;
      font-family: var(--font-title);
      letter-spacing: .06em;
      color: var(--muted);
  }

  .mock-body {
      padding: 28px;
  }

  .mock-label {
      font-size: 8px;
      letter-spacing: .2em;
      font-family: var(--font-title);
      color: var(--muted);
      margin-bottom: 8px;
      text-transform: uppercase;
  }

  .mock-field {
      padding: 12px 14px;
      border-radius: 6px;
      font-size: 12px;
      background: rgba(0, 0, 0, .3);
      border: 1px solid var(--rim2);
      font-family: var(--font-title);
      color: rgba(240, 238, 255, .5);
      margin-bottom: 14px;
      height: 42px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
  }

  .mock-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      height: 40px;
  }

  .mock-prefix {
      padding: 11px 10px;
      border-radius: 6px 0 0 6px;
      font-size: 9px;
      background: rgba(0, 0, 0, .3);
      border: 1px solid var(--rim2);
      border-right: none;
      font-family: var(--font-title);
      letter-spacing: .06em;
      color: var(--muted);
      flex-shrink: 0;
      height: 40px;
      display: flex;
      align-items: center;
  }

  .mock-alias {
      flex: 1;
      padding: 0 12px;
      border-radius: 0 6px 6px 0;
      font-size: 11px;
      background: rgba(0, 0, 0, .3);
      border: 1px solid var(--rim2);
      font-family: var(--font-title);
      color: var(--ok);
      height: 40px;
      display: flex;
      align-items: center;
      overflow: hidden;
      white-space: nowrap;
  }

  .mock-badge {
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 8px;
      font-family: var(--font-title);
      letter-spacing: .1em;
      background: rgba(52, 211, 153, .08);
      color: var(--ok);
      border: 1px solid rgba(52, 211, 153, .2);
      flex-shrink: 0;
      white-space: nowrap;
  }

  .mock-create-btn {
      width: 100%;
      padding: 14px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--v), var(--v2));
      color: #fff;
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .12em;
      border: none;
      text-align: center;
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: transform .15s var(--ease), box-shadow .15s, filter .15s;
      user-select: none;
      text-transform: uppercase;
  }

  .mock-create-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255, 255, 255, .35) 0%, transparent 70%);
      opacity: 0;
      transition: opacity .4s;
      pointer-events: none;
  }

  .mock-create-btn.clicking {
      transform: scale(.96);
      box-shadow: 0 2px 10px rgba(139, 92, 246, .25);
      filter: brightness(1.12);
  }

  .mock-create-btn.clicking::after {
      opacity: 1;
  }

  .mock-result {
      margin-top: 16px;
      padding: 14px;
      border-radius: 6px;
      background: rgba(52, 211, 153, .05);
      border: 1px solid rgba(52, 211, 153, .15);
      display: flex;
      align-items: center;
      gap: 10px;
      height: 44px;
      overflow: hidden;
  }

  .mock-result-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ok);
      box-shadow: 0 0 10px var(--ok);
      animation: pulse 1.5s ease-in-out infinite;
      flex-shrink: 0;
  }

  .mock-result-url {
      font-size: 11px;
      font-family: var(--font-title);
      letter-spacing: .06em;
      color: var(--ok);
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
  }

  @keyframes pulse {

      0%,
      100% {
          box-shadow: 0 0 6px var(--ok)
      }

      50% {
          box-shadow: 0 0 18px var(--ok), 0 0 32px rgba(52, 211, 153, .25)
      }
  }

  /* GUIDE */
  .guide-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 60px;
  }

  .guide-card {
      padding: 34px 32px;
      border-radius: 8px;
      background: var(--panel);
      border: 1px solid var(--rim);
      position: relative;
      overflow: hidden;
      transition: all .3s;
      opacity: 0;
      transform: translateY(16px);
  }

  .guide-card.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .guide-card:hover {
      border-color: rgba(251, 191, 36, .15);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  }

  .guide-card-num {
      font-family: var(--font-display);
      font-size: 54px;
      font-weight: 900;
      letter-spacing: .02em;
      background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(251, 191, 36, .06));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: absolute;
      top: 12px;
      right: 22px;
      line-height: 1;
      pointer-events: none;
  }

  .guide-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 18px;
  }

  .guide-card:nth-child(1) .guide-card-icon {
      background: rgba(139, 92, 246, .1);
      border: 1px solid rgba(139, 92, 246, .2);
  }

  .guide-card:nth-child(2) .guide-card-icon {
      background: rgba(192, 132, 252, .1);
      border: 1px solid rgba(192, 132, 252, .2);
  }

  .guide-card:nth-child(3) .guide-card-icon {
      background: rgba(56, 189, 248, .1);
      border: 1px solid rgba(56, 189, 248, .2);
  }

  .guide-card:nth-child(4) .guide-card-icon {
      background: rgba(52, 211, 153, .1);
      border: 1px solid rgba(52, 211, 153, .2);
  }

  .guide-card:nth-child(5) .guide-card-icon {
      background: rgba(251, 191, 36, .1);
      border: 1px solid rgba(251, 191, 36, .2);
  }

  .guide-card:nth-child(6) .guide-card-icon {
      background: rgba(244, 114, 182, .1);
      border: 1px solid rgba(244, 114, 182, .2);
  }

  .guide-card-title {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 12px;
  }

  .guide-card-desc {
      font-family: var(--font-body);
      font-size: 15px;
      color: rgba(176, 163, 230, .6);
      line-height: 1.8;
  }

  .guide-tip {
      margin-top: 14px;
      padding: 10px 14px;
      border-radius: 4px;
      background: rgba(139, 92, 246, .06);
      border-left: 2px solid var(--gold);
      font-size: 13px;
      font-family: var(--font-body);
      font-style: italic;
      color: rgba(240, 238, 255, .4);
  }

  /* FAQ */
  .faq-list {
      margin-top: 54px;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .faq-item {
      background: var(--panel);
      border: 1px solid var(--rim);
      border-radius: 8px;
      overflow: hidden;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .5s, transform .5s, border-color .25s;
  }

  .faq-item.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .faq-item.open {
      border-color: rgba(251, 191, 36, .2);
  }

  .faq-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 26px;
      cursor: none;
      gap: 16px;
      user-select: none;
  }

  .faq-q {
      font-family: var(--font-title);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .06em;
  }

  .faq-chevron {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: 1px solid var(--rim2);
      background: var(--panel2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .3s;
      color: var(--muted);
      font-size: 13px;
  }

  .faq-item.open .faq-chevron {
      background: rgba(251, 191, 36, .08);
      border-color: rgba(251, 191, 36, .25);
      color: var(--gold);
      transform: rotate(180deg);
  }

  .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s var(--ease);
  }

  .faq-body-inner {
      padding: 0 26px 22px;
      font-family: var(--font-body);
      font-size: 15px;
      color: rgba(176, 163, 230, .6);
      line-height: 1.85;
      border-top: 1px solid var(--rim);
  }

  .faq-body-inner p {
      padding-top: 18px;
  }

  .faq-tag {
      display: inline-block;
      margin-top: 12px;
      padding: 3px 10px;
      border-radius: 3px;
      font-size: 9px;
      font-family: var(--font-title);
      letter-spacing: .15em;
      background: rgba(52, 211, 153, .08);
      color: var(--ok);
      border: 1px solid rgba(52, 211, 153, .2);
      text-transform: uppercase;
  }

  /* RATING */
  .rating-section-wrap {
      padding: 110px 24px;
      background: rgba(8, 6, 24, .5);
  }

  .rating-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
  }

  .rating-card {
      background: var(--panel);
      border: 1px solid var(--rim2);
      border-radius: 12px;
      padding: 56px 50px;
      position: relative;
      overflow: hidden;
      margin-top: 52px;
  }

  .rating-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--v2), var(--v3), transparent);
  }

  .rating-card::after {
      content: '✦ ✦ ✦';
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 8px;
      color: rgba(251, 191, 36, .3);
      letter-spacing: 8px;
      font-family: var(--font-display);
      white-space: nowrap;
  }

  .rating-card-glow {
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 200px;
      background: radial-gradient(ellipse, rgba(251, 191, 36, .06), transparent 70%);
      pointer-events: none;
  }

  .stars-wrap {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 28px;
  }

  .star {
      font-size: 2.8rem;
      cursor: none;
      color: #2d2558;
      transition: color .2s, transform .2s, text-shadow .2s;
      user-select: none;
      position: relative;
  }

  .star.hover {
      color: var(--gold);
      transform: scale(1.18);
      text-shadow: 0 0 24px rgba(251, 191, 36, .5);
  }

  .star.active {
      color: var(--gold);
      text-shadow: 0 0 18px rgba(251, 191, 36, .55);
  }

  .star.rated {
      color: var(--gold);
      text-shadow: 0 0 20px rgba(251, 191, 36, .6);
  }

  .star.pop {
      animation: starPop .35s var(--ease);
  }

  @keyframes starPop {
      0% {
          transform: scale(1)
      }

      50% {
          transform: scale(1.4)
      }

      100% {
          transform: scale(1)
      }
  }

  .rating-display {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      margin-bottom: 22px;
  }

  .rating-metric {
      text-align: center;
  }

  .rating-metric-num {
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 900;
      letter-spacing: .02em;
      background: linear-gradient(135deg, var(--white), var(--muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      transition: all .3s;
  }

  .rating-metric-label {
      font-size: 8px;
      font-family: var(--font-title);
      color: var(--muted);
      letter-spacing: .2em;
      margin-top: 4px;
      text-transform: uppercase;
  }

  .rating-divider {
      width: 1px;
      height: 48px;
      background: rgba(251, 191, 36, .15);
  }

  .rating-bar-wrap {
      margin-bottom: 28px;
  }

  .rating-bar-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 7px;
  }

  .rating-bar-label {
      font-size: 10px;
      font-family: var(--font-title);
      color: var(--muted);
      width: 22px;
      text-align: right;
      flex-shrink: 0;
  }

  .rating-bar-track {
      flex: 1;
      height: 5px;
      background: var(--rim2);
      border-radius: 3px;
      overflow: hidden;
  }

  .rating-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--v), var(--gold));
      border-radius: 3px;
      width: 0%;
      transition: width 1s var(--ease);
  }

  .rating-bar-count {
      font-size: 10px;
      font-family: var(--font-title);
      color: var(--muted2);
      width: 28px;
      flex-shrink: 0;
  }

  .rating-msg {
      font-size: 12px;
      font-family: var(--font-title);
      letter-spacing: .12em;
      color: var(--muted);
      min-height: 20px;
      transition: color .3s;
      text-transform: uppercase;
  }

  .rating-msg.ok {
      color: var(--ok);
  }

  .rating-msg.warn {
      color: var(--gold);
  }

  .rating-action-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
  }

  .rating-undo-btn {
      padding: 9px 22px;
      border-radius: 6px;
      font-size: 10px;
      font-family: var(--font-title);
      letter-spacing: .1em;
      border: 1px solid var(--rim2);
      background: transparent;
      color: var(--muted);
      cursor: none;
      transition: all .2s;
      display: none;
      text-transform: uppercase;
  }

  .rating-undo-btn:hover {
      border-color: var(--v4);
      color: var(--v4);
  }

  .rating-undo-btn.show {
      display: inline-block;
  }

  .rating-change-btn {
      padding: 9px 22px;
      border-radius: 6px;
      font-size: 10px;
      font-family: var(--font-title);
      letter-spacing: .1em;
      border: 1px solid rgba(251, 191, 36, .2);
      background: rgba(251, 191, 36, .07);
      color: var(--gold);
      cursor: none;
      transition: all .2s;
      display: none;
      text-transform: uppercase;
  }

  .rating-change-btn:hover {
      background: rgba(251, 191, 36, .14);
  }

  .rating-change-btn.show {
      display: inline-block;
  }

  /* COMPARE */
  .compare-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 64px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
  }

  .compare-col {
      padding: 34px;
      border-radius: 10px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .6s, transform .6s;
  }

  .compare-col.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .compare-col.other {
      background: var(--panel);
      border: 1px solid var(--rim);
  }

  .compare-col.ours {
      background: linear-gradient(145deg, rgba(139, 92, 246, .07), rgba(251, 191, 36, .03));
      border: 1px solid rgba(251, 191, 36, .18);
      position: relative;
      overflow: hidden;
  }

  .compare-col.ours::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--v), var(--gold), var(--v3));
  }

  .compare-col-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 26px;
  }

  .compare-logo {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 14px;
      letter-spacing: .05em;
  }

  .compare-tag {
      font-size: 8px;
      padding: 3px 9px;
      border-radius: 4px;
      font-family: var(--font-title);
      letter-spacing: .15em;
      text-transform: uppercase;
  }

  .compare-col.ours .compare-tag {
      background: rgba(251, 191, 36, .1);
      color: var(--gold);
      border: 1px solid rgba(251, 191, 36, .2);
  }

  .compare-col.other .compare-tag {
      background: rgba(255, 255, 255, .04);
      color: var(--muted);
      border: 1px solid var(--rim2);
  }

  .compare-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--rim);
      font-family: var(--font-body);
      font-size: 15px;
  }

  .compare-item:last-child {
      border-bottom: none;
  }

  .ci-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
  }

  /* CTA */
  .cta-section {
      padding: 130px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(251, 191, 36, .06), rgba(139, 92, 246, .04), transparent 70%);
      pointer-events: none;
  }

  .cta-h {
      font-family: var(--font-display);
      font-size: clamp(30px, 5vw, 62px);
      font-weight: 900;
      letter-spacing: .02em;
      line-height: 1.1;
      margin-bottom: 22px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s, transform .7s;
  }

  .cta-h.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .cta-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-style: italic;
      color: rgba(176, 163, 230, .6);
      font-weight: 300;
      margin-bottom: 44px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .7s .1s, transform .7s .1s;
  }

  .cta-sub.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .cta-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .7s .2s, transform .7s .2s;
  }

  .cta-btns.vis {
      opacity: 1;
      transform: translateY(0);
  }

  .cta-primary {
      padding: 17px 40px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--v), var(--v2));
      color: #fff;
      text-decoration: none;
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .15em;
      text-transform: uppercase;
      box-shadow: 0 6px 30px rgba(139, 92, 246, .45);
      transition: all .25s;
      cursor: none;
  }

  .cta-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 40px rgba(139, 92, 246, .65);
  }

  .cta-secondary {
      padding: 17px 40px;
      border-radius: 6px;
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--rim2);
      text-decoration: none;
      font-family: var(--font-title);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition: all .25s;
      cursor: none;
  }

  .cta-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  /* FOOTER */
  footer {
      border-top: 1px solid var(--rim);
      padding: 70px 24px 44px;
      position: relative;
      overflow: hidden;
  }

  footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(251, 191, 36, .25), rgba(139, 92, 246, .3), rgba(251, 191, 36, .25), transparent);
  }

  .footer-glow {
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 200px;
      background: radial-gradient(ellipse, rgba(139, 92, 246, .05), transparent 70%);
      pointer-events: none;
  }

  .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
  }

  .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
  }

  .footer-brand .footer-logo-text {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 900;
      letter-spacing: .05em;
      background: linear-gradient(130deg, var(--gold) 0%, var(--white) 40%, var(--v2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 14px;
  }

  .footer-brand p {
      font-family: var(--font-body);
      font-size: 15px;
      font-style: italic;
      color: rgba(176, 163, 230, .5);
      line-height: 1.8;
      max-width: 240px;
  }

  .footer-col h4 {
      font-family: var(--font-title);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
  }

  .footer-col a {
      display: block;
      font-family: var(--font-body);
      font-size: 15px;
      color: rgba(176, 163, 230, .5);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color .2s;
      cursor: none;
  }

  .footer-col a:hover {
      color: var(--white);
  }

  .footer-bottom {
      display: none;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--rim);
      padding-top: 28px;
      font-family: var(--font-title);
      font-size: 10px;
      letter-spacing: .1em;
      color: var(--muted);
      text-align: center;
  }

  .footer-bottom a {
      color: var(--gold);
      text-decoration: none;
  }

  .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      border: 1px solid var(--rim2);
      background: var(--panel);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: all .2s;
      text-decoration: none;
      font-size: 13px;
      cursor: none;
  }

  .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(251, 191, 36, .06);
  }

  /* ANIMATIONS */
  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-20px)
      }

      to {
          opacity: 1;
          transform: translateY(0)
      }
  }

  @keyframes riseUp {
      from {
          opacity: 0;
          transform: translateY(20px)
      }

      to {
          opacity: 1;
          transform: translateY(0)
      }
  }

  @keyframes fadeInDelay {
      from {
          opacity: 0
      }

      to {
          opacity: 1
      }
  }

  @keyframes blink {

      0%,
      100% {
          opacity: 1
      }

      50% {
          opacity: .3
      }
  }

  @keyframes spin {
      to {
          transform: rotate(360deg)
      }
  }

  .rating-loading {
      display: none;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(139, 92, 246, .2);
      border-top-color: var(--v);
      border-radius: 50%;
      animation: spin .6s linear infinite;
      margin: 0 auto 16px;
  }

  .rating-loading.show {
      display: block;
  }

  /* RESPONSIVE */
  @media(max-width:900px) {
      .feat-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .how-wrap {
          grid-template-columns: 1fr;
      }

      .mock {
          display: none;
      }

      .compare-wrap {
          grid-template-columns: 1fr;
      }

      .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px;
      }

      nav {
          padding: 0 20px;
      }

      .nav-links {
          display: none;
      }

      .stat {
          padding: 0 22px;
      }

      .guide-grid {
          grid-template-columns: 1fr;
      }

      .rating-card {
          padding: 36px 24px;
      }

      .scroll-hint {
          right: 24px;
          bottom: 36px;
      }
  }

  @media(max-width:560px) {
      .feat-grid {
          grid-template-columns: 1fr;
      }

      .footer-top {
          grid-template-columns: 1fr;
      }

      .stars-wrap {
          gap: 6px;
      }

      .star {
          font-size: 2.2rem;
      }

      .rating-display {
          gap: 18px;
      }
  }