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

  .skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 12px 20px;
    background: var(--black);
    color: #fff;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    z-index: 999;
    border-radius: 0 0 8px 0;
  }
  .skip-link:focus { top: 0; }

  :root {
    --coral: #E8442A;
    --coral-light: #FFF0ED;
    --coral-mid: #F47B65;
    --black: #0D0D0D;
    --off-white: #F8F6F2;
    --warm-gray: #6E6B68;
    --mid-gray: #4A4744;
    --border: #E4E0DA;
    --border-dark: #2A2826;
    --dark-bg: #111010;
    --dark-surface: #1A1917;
    --card-bg: #FFFFFF;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --display: 'Syne', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248, 246, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .nav-logo { text-decoration: none; display: flex; align-items: center; }
  .nav-logo img { height: 30px; width: auto; }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 4px;
  }
  .hamburger-line {
    width: 22px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    display: block;
  }
  .hamburger.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 8px 5% 24px;
    flex-direction: column;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: block;
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--coral); }
  .mobile-menu .mobile-signin {
    color: var(--mid-gray);
    margin-top: 4px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
    color: var(--mid-gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover, .nav-links a.active { color: var(--black); }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-ghost {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s;
    padding: 12px 8px;
  }

  .btn-ghost:hover { color: var(--coral); }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #0d0d0d;
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
  }

  .btn-primary-lg {
    font-size: 16px;
    padding: 16px 36px;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btn-secondary:hover {
    border-color: var(--black);
    background: rgba(0,0,0,0.04);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 140px 5% 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-light);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
  }

  .eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--coral);
  }

  .hero-sub {
    font-size: 18px;
    color: var(--mid-gray);
    line-height: 1.65;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 40px;
  }

  .hero-sub strong {
    color: var(--black);
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hero-link {
    font-family: var(--display); font-size: 15px; font-weight: 600;
    color: var(--mid-gray); text-decoration: none;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  }
  .hero-link:hover { color: var(--black); border-color: var(--black); }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .trust-avatars {
    display: flex;
  }

  .trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--off-white);
    background: var(--coral-mid);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    font-family: var(--display);
  }
  .trust-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }

  .trust-avatar:first-child { margin-left: 0; }
  .trust-avatar:nth-child(2) { background: #4A7FA5; }
  .trust-avatar:nth-child(3) { background: #6B9E6B; }
  .trust-avatar:nth-child(4) { background: #9B6B9B; }

  .trust-text {
    font-size: 13px;
    color: var(--warm-gray);
    font-weight: 400;
  }

  .trust-text strong {
    color: var(--black);
    font-weight: 600;
  }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
    display: flex;
    align-self: end;
    margin-bottom: -72px;
    justify-content: center;
    align-items: center;
  }

  .hero-img {
    width: 100%;
    max-width: 780px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
  }

  .phone-frame {
    width: 280px;
    background: var(--black);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
  }

  .phone-screen {
    background: #1A1917;
    border-radius: 34px;
    overflow: hidden;
    aspect-ratio: 9/19;
    display: flex;
    flex-direction: column;
  }

  .phone-header {
    background: #1A1917;
    padding: 20px 18px 12px;
    border-bottom: 1px solid #2A2826;
  }

  .phone-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .phone-logo {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.03em;
  }

  .notch {
    width: 80px;
    height: 22px;
    background: var(--black);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .match-card {
    background: #242220;
    border-radius: 20px;
    margin: 14px 14px 0;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .match-card-img {
    height: 200px;
    background: linear-gradient(160deg, #2E3B2E, #3D4B42);
    position: relative;
    overflow: hidden;
  }

  .match-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(36,34,32,0.9) 100%);
  }

  .match-avatar-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
  }

  .match-info {
    padding: 14px 14px 10px;
  }

  .match-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
  }

  .match-name {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: #F0EDE8;
  }

  .verified-badge {
    width: 18px; height: 18px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
  }

  .match-role {
    font-size: 12px;
    color: #888480;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .compat-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .compat-label {
    font-size: 11px;
    color: #666260;
    font-weight: 500;
  }

  .compat-track {
    flex: 1;
    height: 4px;
    background: #333130;
    border-radius: 2px;
    overflow: hidden;
  }

  .compat-fill {
    height: 100%;
    background: var(--coral);
    border-radius: 2px;
    transition: width 1s ease;
  }

  .compat-pct {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    color: var(--coral);
  }

  .match-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .match-tag {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--display);
    color: #888480;
    background: #2E2C2A;
    border-radius: 100px;
    padding: 3px 10px;
    letter-spacing: 0.03em;
  }

  .swipe-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 8px 14px 14px;
  }

  .swipe-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .swipe-pass { background: #2A2826; color: #888480; }
  .swipe-super { background: rgba(232,68,42,0.15); color: var(--coral); width: 40px; height: 40px; font-size: 14px; }
  .swipe-like { background: var(--coral); color: white; }

  /* SECTIONS */
  section { padding: 64px 5%; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
  }

  .section-header {
    text-align: center;
    margin: 0 auto 48px;
  }

  .section-title em { font-style: italic; color: var(--coral); }

  .section-body {
    font-size: 18px;
    color: var(--mid-gray);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
  }

  /* SOCIAL PROOF BAR */
  .proof-bar {
    background: var(--black);
    padding: 0;
    overflow: hidden;
  }

  .proof-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--border-dark);
  }

  .proof-stat {
    padding: 40px 40px;
    border-right: 1px solid var(--border-dark);
  }

  .proof-stat-num {
    font-family: var(--serif);
    font-size: 44px;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
  }

  .proof-stat-num em { color: var(--coral); font-style: normal; }

  .proof-stat-label {
    font-size: 14px;
    color: #888480;
    font-weight: 400;
    line-height: 1.4;
  }

  /* PROBLEM SECTION */
  .problem-section {
    background: var(--off-white);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .problem-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .problem-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
  }

  .problem-card:hover {
    border-color: var(--coral);
    box-shadow: 0 4px 24px rgba(232,68,42,0.08);
    transform: translateX(4px);
  }

  .problem-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #FFF0ED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .problem-card-title {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }

  .problem-card-desc {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.6;
  }

  /* HOW IT WORKS */
  .how-section {
    background: white;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;

    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .step {
    padding: 48px 36px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
  }

  .step:last-child { border-right: none; }
  .step:hover { background: var(--off-white); }

  .step-num {
    font-family: var(--serif);
    font-size: 64px;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
  }

  .step-icon {
    width: 52px; height: 52px;
    background: var(--coral-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .step-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .step-desc {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.65;
  }

  .step-privacy-note {
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--display);
  }

  /* FEATURES */
  .features-section {
    background: var(--off-white);
  }

  .features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-card.featured {
    background: var(--black);
    border-color: var(--black);
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .feature-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .feature-card.featured .feature-title { color: white; }

  .feature-desc {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.65;
  }

  .feature-card.featured .feature-desc { color: #888480; }

  .feature-metric {
    font-family: var(--serif);
    font-size: 52px;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 8px;
  }

  .feature-metric-label {
    font-size: 14px;
    color: #666260;
    font-weight: 400;
  }

  /* PERSONAS */
  .persona-section {
    background: white;
  }

  .persona-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--off-white);
    border-radius: 100px;
    padding: 6px;
    width: fit-content;
  }

  .persona-tab {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--warm-gray);
    background: none;
    border: none;
    border-radius: 100px;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.01em;
  }

  .persona-tab.active {
    background: var(--black);
    color: white;
  }

  .persona-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .persona-content.active { display: grid; }

  .persona-quote {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--black);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 32px;
  }

  .persona-quote em { color: var(--coral); font-style: normal; }

  .persona-profile {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .persona-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--display);
    color: white;
    background: var(--coral);
    flex-shrink: 0;
  }

  .persona-name {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
  }

  .persona-role {
    font-size: 13px;
    color: var(--warm-gray);
  }

  .persona-visual-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 32px;
  }

  .persona-result-title {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
  }

  .persona-result-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .persona-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
  }

  .result-check {
    width: 24px; height: 24px;
    background: #EBF7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #3C9A3C;
    flex-shrink: 0;
  }

  .result-text {
    font-size: 14px;
    color: var(--mid-gray);
    font-weight: 400;
  }


  .btn-full { width: 100%; justify-content: center; }

  .btn-primary-dark {
    background: var(--coral);
    color: white;
  }

  /* APP CTA BANNER */
  .app-cta-section {
    background: var(--coral);
    overflow: hidden;
    position: relative;
  }

  .app-cta-watermark {
    position: absolute;
    right: 38%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
  }

  .app-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: end;
    min-height: 480px;
    position: relative;
    z-index: 1;
  }

  .app-cta-text {
    padding: 80px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .app-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  .app-cta-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    opacity: 0.7;
  }

  .app-cta-title {
    font-family: var(--serif);
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: white;
    margin: 0;
  }

  .app-cta-title em {
    font-style: italic;
    color: rgba(255,255,255,0.75);
  }

  .app-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    font-weight: 300;
    max-width: 440px;
    margin: 0;
  }

  .app-cta-btn {
    margin-top: 8px;
    background: white;
    color: var(--coral);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
  }

  .app-cta-btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .app-cta-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
  }

  .app-cta-phone {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.22));
    margin-bottom: 0;
    transform: translateY(0);
  }

  @media (max-width: 900px) {
    .app-cta-inner { grid-template-columns: 1fr; min-height: auto; }
    .app-cta-visual { padding: 0 5% 60px; justify-content: center; }
    .app-cta-phone { max-width: 320px; }
    .app-cta-watermark { display: none; }
  }

  /* TRUST/SAFETY */
  .trust-section {
    background: white;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    
  }

  .trust-item {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
  }

  .trust-item:hover {
    border-color: var(--coral);
    box-shadow: 0 4px 24px rgba(232,68,42,0.06);
  }

  .trust-icon-wrap {
    width: 64px; height: 64px;
    background: var(--coral-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
  }

  .trust-item-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .trust-item-desc {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.65;
  }

  /* FAQ */
  .faq-section {
    background: var(--off-white);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    
  }

  .faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
  }

  .faq-item:hover { border-color: var(--coral); }

  .faq-item.open { border-color: var(--coral); }

  .faq-question {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
    user-select: none;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
  }

  .faq-chevron {
    width: 24px; height: 24px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--mid-gray);
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
    padding: 0 24px 22px;
    display: none;
  }

  .faq-item.open .faq-answer { display: block; }

  /* CTA FINAL */
  .cta-final {
    background: var(--black);
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,68,42,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-final-eyebrow {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
  }

  .cta-final h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .cta-final h2 em { color: var(--coral); }

  .cta-final-sub {
    font-size: 18px;
    color: #888480;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.65;
    font-weight: 300;
  }

  .cta-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-white {
    background: white;
    color: var(--black);
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
  }

  .btn-white:hover {
    background: var(--off-white);
    transform: translateY(-1px);
  }

  .btn-outline-white {
    background: transparent;
    color: white;
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
    padding: 15px 36px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
  }

  .btn-outline-white:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
  }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border-dark);
    padding: 60px 5% 40px;
  }
  .footer-top {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark);
    margin-bottom: 32px;
  }
  .footer-brand-name { margin-bottom: 16px; }
  .footer-brand-name img { height: 28px; width: auto; }
  .footer-tagline { font-size: 14px; color: #666260; line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
  .footer-col-title { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888480; margin-bottom: 16px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 14px; color: #666260; text-decoration: none; transition: color 0.2s; font-family: var(--display); }
  .footer-links a:hover { color: white; }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 13px; color: #444240; font-family: var(--display); }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { font-size: 13px; color: #444240; text-decoration: none; font-family: var(--display); transition: color 0.2s; }
  .footer-legal a:hover { color: #888480; }

  /* MARQUEE */
  .marquee-section {
    background: var(--coral);
    padding: 18px 0;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .marquee-item {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
  }

  .marquee-item::after {
    content: '✦';
    opacity: 0.5;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    section { padding: 48px 5%; }
    .section-header { margin-bottom: 32px; }
    .hero { grid-template-columns: 1fr; gap: 12px; padding-top: 100px; min-height: auto; }
    .hero-visual { display: flex; align-self: end; margin-bottom: -72px; }
    .hero-img { max-width: 520px; }
    .problem-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--border); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .feature-card.featured { grid-column: span 2; }
    .proof-bar-inner { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .features-header { grid-template-columns: 1fr; gap: 20px; }
    .persona-content.active { grid-template-columns: 1fr; }
    nav .nav-links { display: none; }
    nav .nav-cta .btn-ghost { display: none; }
    .hamburger { display: flex; }
  }

  @media (max-width: 600px) {
    section { padding: 32px 5%; }
    .section-header { margin-bottom: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .proof-bar-inner { grid-template-columns: 1fr 1fr; border-left: none; }
    .proof-stat { padding: 28px 20px; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }


  /* ── POLISH: Focus, active states, transitions ─────── */
  :focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .btn-primary:active { transform: translateY(1px); background: #000; }
  .btn-secondary:active { transform: translateY(1px); }
  .btn-white:active { transform: translateY(1px); }
  .btn-outline-white:active { transform: translateY(1px); }

  .faq-answer {
    animation: none;
    transition: none;
  }

  .faq-item .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    overflow: hidden;
  }

  .faq-item .faq-answer > span {
    overflow: hidden;
    display: block;
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
    padding-bottom: 0;
    transition: padding-bottom 0.28s ease;
  }

  .faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    display: grid;
  }

  .faq-item.open .faq-answer > span { padding-bottom: 22px; }

  @media (max-width: 900px) {
    .step:last-child { border-bottom: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .fade-up { opacity: 1; transform: none; transition: none; }
    .btn-primary, .btn-secondary, .btn-white, .btn-outline-white { transition: none; }
    .feature-card, .problem-card, .trust-item { transition: none; }
    .faq-item .faq-answer { transition: none; }
    .faq-item .faq-answer > span { transition: none; }
    .faq-chevron { transition: none; }
  }
  /* SCROLL ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }

  /* MODAL */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(13, 13, 13, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal {
    background: white;
    border-radius: 28px;
    padding: 48px 44px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  }

  .modal-backdrop.open .modal {
    transform: translateY(0) scale(1);
  }

  .modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--mid-gray);
    transition: background 0.2s;
  }

  .modal-close:hover { background: var(--border); }

  .modal-eyebrow {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
  }

  .modal h2 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 8px;
  }

  .modal h2 em { font-style: italic; color: var(--coral); }

  .modal-sub {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }

  .form-field label {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--mid-gray);
    text-transform: uppercase;
  }

  .form-field input,
  .form-field select {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--black);
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
  }

  .form-field input::placeholder { color: var(--warm-gray); }

  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4744' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .form-field select.error { border-color: #E53E3E; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }

  .form-field input:focus,
  .form-field select:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 68, 42, 0.1);
  }

  .form-field input.error {
    border-color: #E53E3E;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
  }

  .field-error {
    font-size: 12px;
    color: #E53E3E;
    font-family: var(--display);
    display: none;
  }

  .field-error.visible { display: block; }

  .form-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 24px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
  }

  .form-submit .btn-spinner {
    display: none;
    width: 18px; height: 18px;
    border: 2.5px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }

  .form-submit.loading .btn-label { display: none; }
  .form-submit.loading .btn-spinner { display: block; }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .modal-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--warm-gray);
    margin-top: 14px;
    line-height: 1.5;
  }

  /* SUCCESS STATE */
  .modal-success {
    display: none;
    text-align: center;
    padding: 8px 0;
  }

  .modal-success.visible { display: block; }
  .modal-form.hidden { display: none; }

  .success-icon {
    width: 72px; height: 72px;
    background: var(--coral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .success-title {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .success-title em { font-style: italic; color: var(--coral); }

  .success-body {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 300;
  }

  /* ── REFERRAL BLOCK ─────────────────────────────────────── */
  .referral-block {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px 20px 18px;
    text-align: left;
    margin-top: 4px;
  }
  .referral-heading {
    font-family: var(--display); font-size: 15px; font-weight: 700;
    color: var(--black); margin-bottom: 6px;
  }
  .referral-sub {
    font-size: 13px; color: var(--warm-gray);
    line-height: 1.5; margin-bottom: 14px;
  }
  .referral-link-row {
    display: flex; gap: 8px; margin-bottom: 14px;
  }
  .referral-link-input {
    flex: 1; font-family: var(--sans); font-size: 12px;
    color: var(--mid-gray); background: white;
    border: 1.5px solid var(--border); border-radius: 8px;
    padding: 9px 12px; outline: none; cursor: text;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .referral-copy-btn {
    font-family: var(--display); font-size: 13px; font-weight: 700;
    color: white; background: var(--black); border: none;
    border-radius: 8px; padding: 9px 16px; cursor: pointer;
    white-space: nowrap; transition: background 0.2s;
    flex-shrink: 0;
  }
  .referral-copy-btn:hover { background: #2a2a2a; }
  .referral-copy-btn.copied { background: #2D7D46; }
  .referral-share-row {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .share-btn {
    font-family: var(--display); font-size: 12px; font-weight: 700;
    color: white; text-decoration: none; border-radius: 100px;
    padding: 7px 14px; transition: opacity 0.2s; display: inline-flex;
    align-items: center; gap: 5px;
  }
  .share-btn:hover { opacity: 0.85; }
  .share-whatsapp { background: #25D366; }
  .share-telegram  { background: #2AABEE; }
  .share-facebook  { background: #1877F2; }
  .share-twitter   { background: #000; }
  .share-linkedin  { background: #0A66C2; }

  .success-position {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    border-radius: 100px;
    padding: 10px 20px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--mid-gray);
  }

  .success-position strong { color: var(--coral); }

  /* INLINE CTA FORM */
  .cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  .cta-form-row {
    display: flex;
    width: 100%;
    gap: 0;
    background: white;
    border-radius: 100px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    align-items: center;
  }

  .cta-form-row input {
    flex: 1;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--black);
    background: none;
    border: none;
    outline: none;
    min-width: 0;
  }

  .cta-form-row input::placeholder { color: var(--warm-gray); }

  .cta-form-error {
    font-size: 12px;
    color: #F47B65;
    font-family: var(--display);
    margin-top: 10px;
    display: none;
  }

  .cta-form-error.visible { display: block; }

  .cta-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-success.visible { display: flex; }
  .cta-form.hidden { display: none; }

  .cta-success-icon {
    font-size: 40px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .cta-success-text {
    font-family: var(--serif);
    font-size: 24px;
    color: white;
    letter-spacing: -0.02em;
  }

  .cta-success-text em { color: var(--coral); font-style: italic; }

  .cta-success-sub {
    font-size: 14px;
    color: #888480;
  }

  @media (max-width: 600px) {
    .modal { padding: 36px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-form-row { flex-direction: column; border-radius: 20px; padding: 16px; gap: 12px; }
    .cta-form-row input { width: 100%; }
    .cta-form-row .btn-primary { width: 100%; justify-content: center; border-radius: 12px; }
  }
