:root {
    --bg: #080b14;
    --bg-soft: #101524;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.13);
    --text: #f7f8ff;
    --muted: #aab3c5;
    --muted-strong: #d6dcEA;
    --line: rgba(255, 255, 255, 0.14);
    --brand: #7c5cff;
    --brand-2: #00d4ff;
    --brand-3: #32f29a;
    --warning: #ffca5c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --max: 1160px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    font-family:
      Inter,
      ui-sans-serif,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at top left, rgba(124, 92, 255, 0.32), transparent 34rem),
      radial-gradient(circle at top right, rgba(0, 212, 255, 0.22), transparent 32rem),
      radial-gradient(circle at 50% 30%, rgba(50, 242, 154, 0.11), transparent 28rem),
      var(--bg);
  }
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  p,
  h1,
  h2,
  h3 {
    margin-top: 0;
  }
  
  .site-shell {
    position: relative;
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
  }
  
  .navbar {
    position: sticky;
    top: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(8, 11, 20, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  }
  
  .brand,
  .nav-links,
  .nav-actions,
  .hero-actions,
  .trust-row,
  .cta-actions,
  .footer div {
    display: flex;
    align-items: center;
  }
  
  .brand {
    gap: 10px;
    padding-left: 6px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  
  .brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    background:
      linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.35);
  }
  
  .nav-links {
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
  }
  
  .nav-links a,
  .footer a {
    transition: color 160ms ease;
  }
  
  .nav-links a:hover,
  .footer a:hover {
    color: var(--text);
  }
  
  .nav-actions,
  .hero-actions,
  .cta-actions {
    gap: 10px;
  }
  
  .btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
    transition:
      transform 160ms ease,
      border-color 160ms ease,
      background 160ms ease,
      box-shadow 160ms ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn:focus-visible,
  a:focus-visible {
    outline: 3px solid rgba(0, 212, 255, 0.45);
    outline-offset: 4px;
  }
  
  .btn-primary {
    background:
      linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    box-shadow: 0 16px 42px rgba(124, 92, 255, 0.34);
  }
  
  .btn-primary:hover {
    box-shadow: 0 20px 54px rgba(0, 212, 255, 0.28);
  }
  
  .btn-ghost {
    border-color: var(--line);
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.04);
  }
  
  .btn-glass {
    border-color: var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.09);
  }
  
  .btn-dark {
    border-color: rgba(8, 11, 20, 0.16);
    color: #080b14;
    background: white;
  }
  
  .btn-large {
    min-height: 54px;
    padding: 0 24px;
  }
  
  .section-pad {
    padding: 92px 0;
  }
  
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 56px;
    align-items: center;
    min-height: calc(100vh - 96px);
  }
  
  .eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 12px;
    color: #bfeaff;
    background: rgba(0, 212, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  
  .hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 7.2vw, 6.75rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
  }
  
  .hero h1 span {
    display: block;
    background:
      linear-gradient(135deg, #ffffff 10%, #89e8ff 45%, #a996ff 78%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-text {
    max-width: 660px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(1.04rem, 2vw, 1.25rem);
    line-height: 1.75;
  }
  
  .trust-row {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }
  
  .trust-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .hero-panel {
    position: relative;
  }
  
  .hero-panel::before,
  .hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.8;
  }
  
  .hero-panel::before {
    top: -26px;
    right: 12%;
    width: 92px;
    height: 92px;
    background: rgba(0, 212, 255, 0.32);
  }
  
  .hero-panel::after {
    bottom: 10%;
    left: -18px;
    width: 74px;
    height: 74px;
    background: rgba(124, 92, 255, 0.42);
  }
  
  .mock-window {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }
  
  .mock-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .mock-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
  }
  
  .score-card,
  .question-card,
  .mini-card,
  .feature-card,
  .step,
  .cta-section,
  .stats-band {
    border: 1px solid var(--line);
    background: var(--panel);
    backdrop-filter: blur(18px);
  }
  
  .score-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 26px;
    padding: 24px;
  }
  
  .score-card p,
  .mini-card span,
  .question-meta span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
  }
  
  .score-card strong {
    display: block;
    font-size: clamp(3.3rem, 7vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
  }
  
  .score-ring {
    display: grid;
    width: 118px;
    height: 118px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background:
      radial-gradient(circle at center, rgba(8, 11, 20, 0.98) 55%, transparent 56%),
      conic-gradient(var(--brand-3) 0 78%, rgba(255, 255, 255, 0.12) 78% 100%);
  }
  
  .score-ring span {
    font-weight: 950;
    color: var(--brand-3);
  }
  
  .mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 14px 0;
  }
  
  .mini-card {
    border-radius: 20px;
    padding: 18px;
  }
  
  .mini-card strong {
    font-size: 1.8rem;
    letter-spacing: -0.06em;
  }
  
  .mini-card.strong {
    background: rgba(50, 242, 154, 0.12);
  }
  
  .mini-card.warning {
    background: rgba(255, 202, 92, 0.12);
  }
  
  .question-card {
    border-radius: 24px;
    padding: 20px;
  }
  
  .question-meta {
    margin-bottom: 18px;
  }
  
  .question-meta strong {
    display: block;
    font-size: 1.35rem;
    letter-spacing: -0.035em;
  }
  
  .bars {
    display: grid;
    gap: 10px;
  }
  
  .bars span {
    display: block;
    width: var(--w);
    height: 12px;
    border-radius: 999px;
    background:
      linear-gradient(90deg, var(--brand), var(--brand-2));
  }
  
  .stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
  }
  
  .stat {
    padding: 34px;
    background: rgba(255, 255, 255, 0.045);
  }
  
  .stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.07em;
  }
  
  .stat span {
    color: var(--muted);
    font-weight: 750;
  }
  
  .section-heading {
    max-width: 720px;
    margin-bottom: 34px;
  }
  
  .section-heading h2,
  .method-copy h2,
  .cta-section h2 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
  }
  
  .section-heading p,
  .method-copy p,
  .cta-section p,
  .feature-card p,
  .step p {
    color: var(--muted);
    line-height: 1.7;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .feature-card {
    min-height: 290px;
    border-radius: var(--radius-lg);
    padding: 24px;
    transition:
      transform 180ms ease,
      background 180ms ease,
      border-color 180ms ease;
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.34);
    background: var(--panel-strong);
  }
  
  .icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 54px;
    place-items: center;
    border-radius: 16px;
    background: rgba(124, 92, 255, 0.16);
    color: #cfc6ff;
    font-weight: 950;
  }
  
  .feature-card h3,
  .step h3 {
    margin-bottom: 10px;
    font-size: 1.26rem;
    letter-spacing: -0.035em;
  }
  
  .method-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
    align-items: start;
  }
  
  .method-copy {
    position: sticky;
    top: 118px;
  }
  
  .steps {
    display: grid;
    gap: 14px;
  }
  
  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    border-radius: var(--radius-lg);
    padding: 22px;
  }
  
  .step span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 15px;
    color: #080b14;
    background:
      linear-gradient(135deg, var(--brand-3), var(--brand-2));
    font-weight: 950;
  }
  
  .step p,
  .feature-card p {
    margin-bottom: 0;
  }
  
  .cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 34px 0 64px;
    border-radius: var(--radius-xl);
    padding: clamp(28px, 5vw, 54px);
    background:
      linear-gradient(135deg, rgba(124, 92, 255, 0.28), rgba(0, 212, 255, 0.16)),
      rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }
  
  .cta-section > div:first-child {
    max-width: 660px;
  }
  
  .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 44px;
    color: var(--muted);
  }
  
  .footer p {
    margin-bottom: 0;
  }
  
  .footer div {
    gap: 18px;
  }
  
  @media (max-width: 980px) {
    .navbar {
      align-items: stretch;
      border-radius: 28px;
      flex-wrap: wrap;
    }
  
    .nav-links {
      order: 3;
      width: 100%;
      justify-content: center;
      padding-bottom: 4px;
    }
  
    .hero,
    .method-section {
      grid-template-columns: 1fr;
    }
  
    .hero {
      min-height: auto;
      padding-top: 72px;
    }
  
    .method-copy {
      position: static;
    }
  
    .feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cta-section {
      align-items: flex-start;
      flex-direction: column;
    }
  }
  
  @media (max-width: 680px) {
    .site-shell {
      width: min(100% - 22px, var(--max));
    }
  
    .navbar {
      top: 10px;
    }
  
    .brand {
      width: 100%;
      justify-content: center;
      padding-left: 0;
    }
  
    .nav-links {
      display: none;
    }
  
    .nav-actions,
    .hero-actions,
    .cta-actions {
      width: 100%;
      flex-direction: column;
    }
  
    .btn {
      width: 100%;
    }
  
    .section-pad {
      padding: 64px 0;
    }
  
    .hero h1 {
      font-size: clamp(3rem, 17vw, 4.5rem);
    }
  
    .hero-panel {
      min-width: 0;
    }
  
    .score-card {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .mini-grid,
    .stats-band,
    .feature-grid {
      grid-template-columns: 1fr;
    }
  
    .icon-box {
      margin-bottom: 34px;
    }
  
    .footer {
      align-items: flex-start;
      flex-direction: column;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      transition-duration: 0.001ms !important;
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
    }
  }

  /*
  Auth Pages
*/

.auth-body {
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .auth-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
    gap: 28px;
    width: min(100% - 32px, 1180px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 32px 0;
  }
  
  .auth-brand-panel,
  .auth-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  
  .auth-brand-panel {
    display: flex;
    min-height: calc(100vh - 64px);
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(26px, 4vw, 44px);
    background:
      radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.34), transparent 24rem),
      radial-gradient(circle at 80% 10%, rgba(0, 212, 255, 0.2), transparent 22rem),
      rgba(255, 255, 255, 0.06);
  }
  
  .auth-brand-panel::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(50, 242, 154, 0.16), transparent 68%);
    pointer-events: none;
  }
  
  .auth-brand {
    position: relative;
    z-index: 1;
    width: fit-content;
  }
  
  .auth-brand-copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
  }
  
  .auth-brand-copy h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 6.4vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
  }
  
  .auth-brand-copy p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
  }
  
  .auth-mini-stack {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .auth-mini-stack div {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
  }
  
  .auth-mini-stack strong {
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  
  .auth-mini-stack span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
  }
  
  .auth-card {
    align-self: center;
    padding: clamp(24px, 4vw, 40px);
  }
  
  .auth-card-header {
    margin-bottom: 28px;
  }
  
  .auth-card-header h2 {
    margin-bottom: 10px;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
  }
  
  .auth-card-header p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.65;
  }
  
  .auth-form {
    display: grid;
    gap: 18px;
  }
  
  .form-group {
    display: grid;
    gap: 8px;
  }
  
  .form-group label {
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 850;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 16px;
    color: var(--text);
    background: rgba(8, 11, 20, 0.48);
    font: inherit;
    outline: none;
    transition:
      border-color 160ms ease,
      background 160ms ease,
      box-shadow 160ms ease;
  }
  
  .form-group textarea {
    min-height: 120px;
    padding-top: 14px;
    resize: vertical;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(0, 212, 255, 0.58);
    background: rgba(8, 11, 20, 0.72);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(170, 179, 197, 0.74);
  }
  
  .form-help {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
  }
  
  .form-help ul {
    margin: 8px 0 0;
    padding-left: 18px;
  }
  
  .form-alert,
  .field-errors {
    border: 1px solid rgba(255, 202, 92, 0.32);
    border-radius: 16px;
    padding: 12px 14px;
    color: #ffe0a0;
    background: rgba(255, 202, 92, 0.09);
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  .form-alert ul,
  .field-errors ul {
    margin: 0;
    padding-left: 18px;
  }
  
  .auth-submit {
    width: 100%;
    margin-top: 4px;
    border: 0;
    cursor: pointer;
    font: inherit;
  }
  
  .auth-switch {
    margin: 6px 0 0;
    color: var(--muted);
    text-align: center;
  }
  
  .auth-switch a {
    color: #bfeaff;
    font-weight: 900;
  }
  
  .auth-switch a:hover {
    color: var(--text);
  }
  
  @media (max-width: 980px) {
    .auth-page {
      grid-template-columns: 1fr;
    }
  
    .auth-brand-panel {
      min-height: auto;
      gap: 72px;
    }
  
    .auth-mini-stack {
      grid-template-columns: 1fr;
    }
  
    .auth-card {
      align-self: auto;
    }
  }
  
  @media (max-width: 620px) {
    .auth-page {
      width: min(100% - 22px, 1180px);
      padding: 16px 0;
    }
  
    .auth-brand-panel,
    .auth-card {
      border-radius: 26px;
    }
  
    .auth-brand-panel {
      padding: 24px;
    }
  
    .auth-brand-copy h1 {
      font-size: clamp(2.7rem, 15vw, 4rem);
    }
  }