/* ============================================================
   RANKERA — LANDING v2 (Stripe-clinical)
   Aesthetic: white base + soft blue-tint sections, deep navy ink,
   vibrant blue-violet accent. Single grotesque (General Sans) at
   multiple weights. Subtle gradient mesh in hero only.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700,1&f[]=switzer@400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== Tokens scoped to landing-v2 ===== */
.landing-v2 {
    --bg:           #ffffff;
    --bg-soft:      #f6f9fc;
    --bg-tint:      #f8fafc;
    --bg-deep:      #0a1733;
    --ink:          #0a2540;
    --ink-soft:     #425466;
    --ink-muted:    #697386;
    --ink-faint:    #a3acb9;
    --rule:         #e6ebf1;
    --rule-soft:    #eef2f7;

    --accent:       #f97316;
    --accent-deep:  #c2410c;
    --accent-bright:#fb923c;
    --accent-soft:  rgba(249,115,22,0.08);
    --accent-line:  rgba(249,115,22,0.18);
    --accent-glow:  rgba(249,115,22,0.22);

    /* Mesh palette for hero */
    --mesh-1: #fed7aa;   /* peach */
    --mesh-2: #fdba74;   /* orange light */
    --mesh-3: #fbcfe8;   /* pink */
    --mesh-4: #fef3c7;   /* cream */

    /* Platform tints */
    --reddit:   #ff4500;
    --quora:    #b92b27;
    --facebook: #1877f2;

    --display: 'General Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --body:    'General Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;

    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-feature-settings: 'ss01';
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Disable global noise grain on landing-v2 — clean white surface */
.landing-v2.grain::before { display: none; }

/* ===== NAV (clinical white nav) ===== */
.landing-v2 .navbar {
    background: rgba(255,255,255,0.82) !important;
    border-bottom: 1px solid var(--rule) !important;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.landing-v2 .logo-text {
    color: var(--ink) !important;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.025em;
    font-size: 1.25rem;
}
.landing-v2 .nav-link {
    color: var(--ink-soft) !important;
    font-family: var(--body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: -0.005em;
}
.landing-v2 .nav-link:hover { color: var(--ink) !important; }
.landing-v2 .logo-mark {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
}

/* ===== Buttons (override globally for landing only) ===== */
.landing-v2 .btn-primary {
    background: var(--accent);
    color: #fff !important;
    border: 1px solid var(--accent);
    box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 20px rgba(249,115,22,0.28);
    font-family: var(--body);
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: 8px;
    padding: 0.75rem 1.4rem;
}
.landing-v2 .btn-primary:hover {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 26px rgba(249,115,22,0.36);
}
.landing-v2 .btn-outline {
    background: transparent;
    color: var(--ink) !important;
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 0.75rem 1.4rem;
    font-weight: 500;
}
.landing-v2 .btn-outline:hover {
    background: var(--bg-soft);
    border-color: var(--ink-faint);
    color: var(--ink) !important;
}
.landing-v2 .btn-lg {
    padding: 0.95rem 1.7rem;
    font-size: 0.98rem;
    border-radius: 10px;
}

/* ===== Section primitives ===== */
.landing-v2 .container {
    max-width: 1180px;
    padding: 0 2rem;
}

.section-rule {
    height: 1px;
    background: var(--rule);
    width: 100%;
}

.eyebrow {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.eyebrow::before {
    content: '';
    width: 16px; height: 2px;
    background: var(--accent);
    display: inline-block;
    border-radius: 1px;
}

.muted { color: var(--ink-muted); }
.soft  { color: var(--ink-soft); }

/* ===== HERO ===== */
.v2-hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}
/* Soft gradient mesh — Stripe-style ambient color */
.v2-hero::before {
    content: '';
    position: absolute;
    inset: -10% -20% auto -20%;
    height: 720px;
    background:
        radial-gradient(circle at 18% 25%, var(--mesh-1) 0%, transparent 32%),
        radial-gradient(circle at 78% 18%, var(--mesh-2) 0%, transparent 30%),
        radial-gradient(circle at 65% 75%, var(--mesh-3) 0%, transparent 28%),
        radial-gradient(circle at 30% 80%, var(--mesh-4) 0%, transparent 22%);
    filter: blur(60px) saturate(120%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.v2-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
    z-index: 0;
}

.v2-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.v2-hero-eyebrow { margin-bottom: 1.75rem; }

.v2-hero h1 {
    font-family: var(--display);
    font-size: clamp(2.65rem, 5.4vw, 4.4rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 1.6rem;
}
.v2-hero h1 em {
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
    background: linear-gradient(120deg, var(--accent) 0%, #ff8533 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.v2-hero-sub {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.v2-hero-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.v2-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
    font-size: 0.85rem;
    color: var(--ink-muted);
    font-weight: 500;
}
.v2-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.v2-hero-meta-item::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}

/* ===== AI Overview mockup card ===== */
.aiov {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 1px 2px rgba(10,37,64,0.04),
        0 24px 56px -16px rgba(10,37,64,0.18);
    overflow: hidden;
    position: relative;
}
.aiov-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--rule-soft);
    background: var(--bg-soft);
}
.aiov-search-icon {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--ink-muted);
    position: relative;
    flex-shrink: 0;
}
.aiov-search-icon::after {
    content: '';
    position: absolute;
    width: 7px; height: 1.5px;
    background: var(--ink-muted);
    bottom: -3px; right: -4px;
    transform: rotate(45deg);
    transform-origin: left;
}
.aiov-query {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--ink-soft);
    flex: 1;
}
.aiov-close {
    color: var(--ink-faint);
    font-size: 0.9rem;
}

.aiov-body { padding: 1.4rem 1.4rem 1.5rem; }

.aiov-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    margin-bottom: 1rem;
}
.aiov-tag-spark { font-size: 0.85rem; line-height: 1; color: var(--accent); }

.aiov-text {
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 0.85rem;
}
.aiov-text mark {
    background: linear-gradient(180deg, transparent 60%, rgba(249,115,22,0.18) 60%);
    color: var(--ink);
    font-weight: 600;
    padding: 0 0.1em;
}
.aiov-text em {
    font-style: italic;
    color: var(--ink);
}

.aiov-citations {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rule-soft);
}
.aiov-cit-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
}
.aiov-cit {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--ink-soft);
}
.aiov-cit-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.aiov-cit-dot.r { background: var(--reddit); }
.aiov-cit-dot.q { background: var(--quora); }
.aiov-cit-dot.f { background: var(--facebook); }
.aiov-cit-path {
    font-family: var(--mono);
    font-size: 0.78rem;
}
.aiov-cit-meta {
    margin-left: auto;
    font-size: 0.74rem;
    color: var(--ink-faint);
}

/* Decorative micro-cards behind AIOv */
.aiov-stack { position: relative; }
.aiov-stack::before,
.aiov-stack::after {
    content: '';
    position: absolute;
    border-radius: 12px;
    border: 1px solid var(--rule);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    z-index: 0;
}
.aiov-stack::before {
    inset: -16px -22px auto auto;
    width: 130px; height: 56px;
    transform: rotate(2.5deg);
}
.aiov-stack::after {
    inset: auto auto -14px -16px;
    width: 100px; height: 46px;
    transform: rotate(-3.5deg);
}
.aiov { position: relative; z-index: 1; }

/* ===== Trusted by ===== */
.trusted-section {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
}
.trusted-label {
    text-align: center;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.trusted-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 3.25rem;
}
.trusted-item {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink-faint);
    transition: color 0.2s, opacity 0.2s;
    cursor: default;
    user-select: none;
}
.trusted-item:hover {
    color: var(--ink-soft);
}
@media (max-width: 600px) {
    .trusted-grid { gap: 1.25rem 2rem; }
    .trusted-item { font-size: 0.95rem; }
}

/* ===== Pull-quote / shift moment ===== */
.shift-section {
    padding: 7rem 0;
    border-top: 1px solid var(--rule);
}
.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}
.shift-side .eyebrow { margin-bottom: 0.75rem; }
.shift-quote {
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.shift-quote em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
.shift-byline {
    margin-top: 1.75rem;
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 600px;
}

/* ===== Why these three platforms ===== */
.why-section {
    padding: 6rem 0 7rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.why-head {
    max-width: 760px;
    margin-bottom: 3.5rem;
}
.why-head h2 {
    font-family: var(--display);
    font-size: clamp(1.95rem, 3.2vw, 2.75rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0.85rem 0 1.2rem;
}
.why-head h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.why-head p { font-size: 1.05rem; color: var(--ink-soft); max-width: 640px; line-height: 1.6; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.why-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.why-card:hover {
    border-color: var(--accent-line);
    box-shadow: 0 18px 40px -16px rgba(10,37,64,0.12);
    transform: translateY(-2px);
}
.why-card-num {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.25rem 0.55rem;
    background: var(--accent-soft);
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.why-card h3 {
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 0.625rem;
    color: var(--ink);
}
.why-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.why-card .why-source {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--ink-muted);
    margin-top: 1rem;
    display: block;
    padding-top: 0.85rem;
    border-top: 1px solid var(--rule-soft);
}

/* ===== Platform sections ===== */
.platform-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--rule);
}
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.platform-grid.flip .platform-copy { order: 2; }
.platform-copy { max-width: 540px; }
.platform-copy .eyebrow { margin-bottom: 1rem; }
.platform-copy h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}
.platform-copy h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.platform-copy p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 1.4rem;
}
.platform-copy strong { color: var(--ink); font-weight: 600; }

.platform-spec {
    border-top: 1px solid var(--rule);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}
.platform-spec dt {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-bottom: 0.35rem;
    font-weight: 500;
}
.platform-spec dd {
    font-family: var(--body);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1rem;
}
.platform-spec dd em {
    font-style: normal;
    color: var(--accent);
    font-weight: 600;
}

.platform-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 1px 2px rgba(10,37,64,0.04),
        0 24px 56px -20px rgba(10,37,64,0.16);
    overflow: hidden;
}
.platform-visual img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top left;
    display: block;
}

/* Platform-tinted eyebrow accent */
.platform-section.reddit-section .eyebrow { color: var(--reddit); }
.platform-section.reddit-section .eyebrow::before { background: var(--reddit); }
.platform-section.quora-section .eyebrow { color: var(--quora); }
.platform-section.quora-section .eyebrow::before { background: var(--quora); }
.platform-section.facebook-section .eyebrow { color: var(--facebook); }
.platform-section.facebook-section .eyebrow::before { background: var(--facebook); }

/* ===== SVG mockup cards (Quora & Facebook) ===== */
.mock {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    font-family: var(--body);
}
.mock-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--rule-soft);
    background: var(--bg-soft);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rule); }
.mock-bar-label {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    font-weight: 500;
}
.mock-body {
    padding: 1.25rem 1.4rem;
    display: flex; flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}
.mock-row {
    display: grid;
    grid-template-columns: 36px 1fr 80px;
    gap: 0.85rem;
    align-items: center;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--rule-soft);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s;
}
.mock-row:hover { border-color: var(--rule); }
.mock-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}
.mock-avatar.q { background: var(--quora); }
.mock-avatar.f { background: var(--facebook); }
.mock-text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.mock-title {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mock-meta {
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}
.mock-pill {
    justify-self: end;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--bg-soft);
    color: var(--ink-soft);
    border: 1px solid var(--rule);
}
.mock-pill.live {
    background: rgba(34,197,94,0.1);
    color: #15803d;
    border-color: rgba(34,197,94,0.18);
}

/* ===== How it works ===== */
.how-section { padding: 7rem 0; }
.how-head { max-width: 760px; margin-bottom: 4rem; }
.how-head h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: 0.85rem;
}
.how-head h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.how-step {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 2rem 1.85rem 2.15rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.how-step:hover {
    transform: translateY(-2px);
    border-color: var(--accent-line);
    box-shadow: 0 16px 36px -16px rgba(10,37,64,0.12);
}
.how-step-num {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.28rem 0.6rem;
    background: var(--accent-soft);
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}
.how-step h3 {
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.how-step p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== Pricing ===== */
.pricing-section {
    padding: 6rem 0 7rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.pricing-head h2 {
    font-family: var(--display);
    font-size: clamp(2.15rem, 3.8vw, 3.1rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0.85rem 0 0.85rem;
}
.pricing-head h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.pricing-head p { font-size: 1.05rem; color: var(--ink-soft); }
.pricing-head .eyebrow { justify-content: center; }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1080px;
    margin: 0 auto 1.75rem;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.85rem;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    user-select: none;
}
.pricing-card:hover {
    border-color: var(--ink-faint);
    box-shadow: 0 18px 36px -18px rgba(10,37,64,0.14);
}
.pricing-card.selected {
    border-color: var(--accent);
    box-shadow:
        0 0 0 1px var(--accent),
        0 24px 50px -20px rgba(249,115,22,0.32);
    transform: translateY(-2px);
}
.pricing-card-head {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.2rem;
}
.pricing-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
}
.pricing-icon.r { background: var(--reddit); }
.pricing-icon.q { background: var(--quora); }
.pricing-icon.f { background: var(--facebook); }
.pricing-card-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.pricing-toggle {
    margin-left: auto;
    width: 36px; height: 22px;
    border-radius: 999px;
    background: var(--rule);
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}
.pricing-toggle::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(10,37,64,0.18);
    transition: transform 0.2s;
}
.pricing-card.selected .pricing-toggle { background: var(--accent); }
.pricing-card.selected .pricing-toggle::after { transform: translateX(14px); }

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-family: var(--display);
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.pricing-amount .currency { font-size: 1.2rem; color: var(--ink-muted); font-weight: 500; }
.pricing-amount .price {
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 600;
}
.pricing-amount .period {
    font-family: var(--body);
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-left: 0.15rem;
    font-weight: 500;
}

.pricing-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 1.2rem;
}
.pricing-feats {
    border-top: 1px solid var(--rule-soft);
    padding-top: 1rem;
    list-style: none;
}
.pricing-feats li {
    display: flex; align-items: flex-start; gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
    padding: 0.32rem 0;
}
.pricing-feats li::before {
    content: '';
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f97316' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,8 7,12 13,4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-summary {
    max-width: 1080px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.5rem 1.85rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 1px 3px rgba(10,37,64,0.04);
}
.pricing-summary-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.pricing-summary-detail {
    font-family: var(--body);
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.pricing-summary-amount {
    font-family: var(--display);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
    font-weight: 600;
}
.pricing-summary-amount .period {
    font-family: var(--body);
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-left: 0.25rem;
    font-weight: 500;
}
.pricing-empty {
    color: var(--ink-faint);
    font-style: normal;
    font-weight: 400;
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* ===== What you get (feature grid) ===== */
.feats-section { padding: 7rem 0; }
.feats-head { max-width: 720px; margin-bottom: 3.5rem; }
.feats-head h2 {
    font-family: var(--display);
    font-size: clamp(1.95rem, 3.2vw, 2.65rem);
    font-weight: 600;
    margin-top: 0.85rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.feats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.feat {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat:hover {
    transform: translateY(-2px);
    border-color: var(--accent-line);
    box-shadow: 0 18px 36px -16px rgba(10,37,64,0.10);
}
.feat-icon {
    width: 28px; height: 28px;
    margin-bottom: 1.1rem;
    color: var(--accent);
    padding: 0.4rem;
    background: var(--accent-soft);
    border-radius: 8px;
    box-sizing: content-box;
}
.feat h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.feat p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.t-section {
    padding: 7rem 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.t-head { max-width: 720px; margin-bottom: 3.5rem; }
.t-head h2 {
    font-family: var(--display);
    font-size: clamp(1.95rem, 3.2vw, 2.65rem);
    font-weight: 600;
    margin-top: 0.85rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
}
.t-head h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.t-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.85rem;
    display: flex; flex-direction: column;
    gap: 1.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -16px rgba(10,37,64,0.10);
}
.t-stars { color: var(--accent); letter-spacing: 0.1em; font-size: 0.9rem; }
.t-quote {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-style: normal;
}
.t-author {
    display: flex; align-items: center; gap: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--rule-soft);
}
.t-avatar {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    font-size: 0.95rem;
}
.t-author-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); letter-spacing: -0.005em; }
.t-author-role { font-size: 0.8rem; color: var(--ink-muted); }

/* ===== FAQ ===== */
.faq-section { padding: 7rem 0; }
.faq-head { max-width: 720px; margin-bottom: 2.5rem; }
.faq-head h2 {
    font-family: var(--display);
    font-size: clamp(1.95rem, 3.2vw, 2.65rem);
    font-weight: 600;
    margin-top: 0.85rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
}
.faq-grid {
    border-top: 1px solid var(--rule);
}
.faq-item {
    border-bottom: 1px solid var(--rule);
    padding: 1.4rem 0;
    cursor: pointer;
    user-select: none;
    transition: padding 0.15s;
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.015em;
    transition: color 0.15s;
}
.faq-q::after {
    content: '';
    width: 14px; height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23697386' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='7' y1='1' x2='7' y2='13'/%3E%3Cline x1='1' y1='7' x2='13' y2='7'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform 0.2s, opacity 0.2s;
}
.faq-item.open .faq-q::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23f97316' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='1' y1='7' x2='13' y2='7'/%3E%3C/svg%3E");
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding-top: 1rem;
}
.faq-a-inner {
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 740px;
}
.faq-a-inner em { font-style: italic; color: var(--ink); }
.faq-item:hover .faq-q { color: var(--accent); }

/* ===== Final CTA ===== */
.final-cta {
    padding: 7rem 0 8rem;
    background: var(--bg-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: -50% -10% auto auto;
    width: 80vw; height: 60vw;
    max-width: 900px; max-height: 700px;
    background:
        radial-gradient(circle at 30% 30%, rgba(253,186,116,0.45), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(249,115,22,0.45), transparent 55%);
    pointer-events: none;
    filter: blur(40px);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 760px; }
.final-cta .eyebrow { color: rgba(254,215,170,0.95); }
.final-cta .eyebrow::before { background: rgba(254,215,170,0.95); }
.final-cta h2 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 1rem 0 1.5rem;
    color: #fff;
}
.final-cta h2 em {
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(120deg, #fed7aa, #fef3c7, #fdba74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.final-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.6;
}
.final-cta .btn-primary {
    background: #fff;
    color: var(--bg-deep) !important;
    border-color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.final-cta .btn-primary:hover {
    background: #f8fafc;
    color: var(--bg-deep) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,0.24);
}
.final-cta .btn-outline {
    color: #fff !important;
    border-color: rgba(255,255,255,0.25);
}
.final-cta .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    border-color: rgba(255,255,255,0.5);
}

/* ===== Footer override (dark surface, white logo) ===== */
.landing-v2 .site-footer,
.landing-v2 footer {
    background: var(--bg-deep);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 2rem;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.landing-v2 .site-footer .logo-text {
    color: #ffffff !important;
    font-weight: 600;
}
.landing-v2 .site-footer .logo-mark {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #ffffff;
}
.landing-v2 .site-footer .footer-brand .navbar-brand {
    text-decoration: none;
}
.landing-v2 .site-footer .footer-tagline {
    color: rgba(255,255,255,0.55);
    margin-top: 0.85rem;
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 320px;
}
.landing-v2 .site-footer .footer-col-title {
    color: #ffffff;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: -0.005em;
    margin-bottom: 0.85rem;
}
.landing-v2 .site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-v2 .site-footer .footer-links li {
    margin-bottom: 0.45rem;
}
.landing-v2 .site-footer .footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.18s;
}
.landing-v2 .site-footer .footer-links a:hover {
    color: #ffffff;
}
.landing-v2 .site-footer .footer-bottom {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
}
.landing-v2 .site-footer .footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.18s;
}
.landing-v2 .site-footer .footer-bottom a:hover {
    color: var(--accent-bright);
}
@media (max-width: 600px) {
    .landing-v2 .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.30s; }

/* Hero load-in stagger (no JS dependency) */
.v2-hero .reveal {
    animation: heroFadeUp 0.85s cubic-bezier(0.16,1,0.3,1) both;
    opacity: 1; transform: none; transition: none;
}
.v2-hero .reveal-delay-1 { animation-delay: 0.06s; }
.v2-hero .reveal-delay-2 { animation-delay: 0.14s; }
.v2-hero .reveal-delay-3 { animation-delay: 0.22s; }
.v2-hero .reveal-delay-4 { animation-delay: 0.30s; }
.v2-hero .aiov-stack {
    animation: heroFadeIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.34s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .v2-hero { padding: 4rem 0 3.5rem; }
    .v2-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .shift-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-grid { grid-template-columns: 1fr; gap: 1rem; }
    .platform-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .platform-grid.flip .platform-copy { order: 0; }
    .how-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-summary { grid-template-columns: 1fr; text-align: left; gap: 1rem; }
    .feats-grid { grid-template-columns: 1fr 1fr; }
    .t-grid { grid-template-columns: 1fr; }
    .platform-spec { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .landing-v2 .container { padding: 0 1.25rem; }
    .v2-hero { padding: 3rem 0 2.5rem; }
    .v2-hero h1 { font-size: clamp(2.1rem, 9.5vw, 2.85rem); }
    .v2-hero-sub { font-size: 1.02rem; }
    .v2-hero-cta { gap: 0.65rem; }
    .v2-hero-cta .btn-lg { width: 100%; }
    .v2-hero-meta { gap: 0.4rem 1rem; font-size: 0.8rem; }

    .aiov-stack::before, .aiov-stack::after { display: none; }
    .aiov-body { padding: 1.1rem 1.1rem 1.2rem; }
    .aiov-search { padding: 0.7rem 0.95rem; }
    .aiov-query { font-size: 0.78rem; }
    .aiov-text { font-size: 0.88rem; }
    .aiov-cit-meta { display: none; }

    .feats-grid { grid-template-columns: 1fr; }
    .platform-section { padding: 4rem 0; }
    .platform-grid { gap: 2rem; }
    .platform-copy h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    .platform-spec { gap: 0.75rem 1.5rem; }
    .platform-visual { aspect-ratio: 1.3 / 1; }

    .shift-section, .why-section, .pricing-section, .t-section, .feats-section, .how-section, .faq-section { padding: 4rem 0; }
    .shift-quote { font-size: clamp(1.7rem, 7vw, 2.6rem); }
    .why-card, .feat, .t-card, .pricing-card, .how-step { padding: 1.5rem 1.35rem; }

    .pricing-summary { padding: 1.25rem 1.35rem; }
    .pricing-summary-amount { font-size: 1.85rem; }
    .pricing-cards { gap: 1rem; }
    .pricing-card { padding: 1.5rem 1.35rem; }

    .final-cta { padding: 5rem 0 5.5rem; }
    .final-cta h2 { font-size: clamp(2rem, 9vw, 3rem); }
    .final-cta .v2-hero-cta .btn-lg { width: 100%; }

    .faq-q { font-size: 0.98rem; gap: 1rem; }
    .faq-a-inner { font-size: 0.92rem; }

    .mock-row { grid-template-columns: 28px 1fr 56px; gap: 0.55rem; padding: 0.55rem 0.6rem; }
    .mock-avatar { width: 26px; height: 26px; font-size: 0.78rem; }
    .mock-title { font-size: 0.78rem; }
    .mock-meta { font-size: 0.62rem; }
    .mock-pill { font-size: 0.6rem; padding: 0.15rem 0.4rem; }
}
