/* ─── Canela Fonts ───────────────────────────────────────────────────── */
@font-face {
    font-family: 'Canela';
    src: url('/fonts/Canela-Medium-Web.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Canela';
    src: url('/fonts/Canela-RegularItalic-Web.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ─── Design Tokens ─────────────────────────────────────────────────── */
:root {
    --navy:        #1E3A5F;
    --navy-deep:   #0F1E33;
    --navy-mid:    #2A4D7A;
    --gold:        #C9A227;
    --gold-light:  #E8C050;
    --cream:       #F9F6EF;
    --white:       #FFFFFF;
    --muted:       #6B7A90;
    --border:      rgba(30,58,95,0.10);
    --glass-bg:    rgba(255,255,255,0.07);
    --glass-border:rgba(255,255,255,0.15);
    --canela:      'Canela', Georgia, 'Times New Roman', serif;
    --sans:        'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --shadow-sm:   0 1px 3px rgba(15,30,51,0.08), 0 1px 2px rgba(15,30,51,0.04);
    --shadow-md:   0 4px 16px rgba(15,30,51,0.12), 0 2px 6px rgba(15,30,51,0.06);
    --shadow-lg:   0 20px 60px rgba(15,30,51,0.18), 0 8px 20px rgba(15,30,51,0.10);
}

/* ─── Base Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
}

/* ─── Google Font Import ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ════════════════════════════════════════════════════════════════════ */
/*  NAV                                                                  */
/* ════════════════════════════════════════════════════════════════════ */
.vit-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.vit-nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

/* Logo */
.vit-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
    line-height: 1;
}
.vit-logo-vit {
    font-family: var(--canela);
    font-weight: 400;
    font-style: italic;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: -0.01em;
}
.vit-logo-hropic {
    font-family: var(--canela);
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: 0.02em;
}

/* Nav links */
.vit-nav-center {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.vit-nav-center a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--navy);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
    transition: background 0.15s, color 0.15s;
    opacity: 0.75;
}

.vit-nav-center a:hover {
    background: rgba(30,58,95,0.06);
    opacity: 1;
}

.vit-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vit-nav-sign {
    font-size: 0.875rem;
    color: var(--navy);
    opacity: 0.7;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    transition: opacity 0.15s;
}
.vit-nav-sign:hover { opacity: 1; }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--sans);
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 1px 2px rgba(15,30,51,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover {
    background: var(--navy-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(201,162,39,0.3);
}
.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(201,162,39,0.4);
    transform: translateY(-1px);
    color: var(--navy-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(30,58,95,0.04);
    border-color: rgba(30,58,95,0.2);
}

.btn-lg {
    padding: 0.9375rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
    color: var(--navy);
}

/* ════════════════════════════════════════════════════════════════════ */
/*  HERO                                                                 */
/* ════════════════════════════════════════════════════════════════════ */
.vit-hero {
    min-height: 100vh;
    background: var(--navy-deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 3rem;
}

/* Atmospheric background */
.vit-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,162,39,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(42,77,122,0.5) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(201,162,39,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle grid */
.vit-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.vit-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vit-hero-left { max-width: 580px; }

.vit-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.vit-hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}

.vit-hero h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards 0.35s;
}

.vit-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.vit-hero-tagline {
    font-family: var(--canela);
    font-weight: 400;
    font-style: italic;
    font-size: 1.375rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.vit-hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    max-width: 460px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease forwards 0.6s;
}

.vit-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease forwards 0.75s;
}

.vit-hero-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    margin-top: 1.25rem;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 1s;
}

/* Hero right — glass card */
.vit-hero-right {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.vit-glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.vit-card-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.vit-briefing-row {
    display: flex;
    gap: 0.875rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
}
.vit-briefing-row:last-child { border-bottom: none; padding-bottom: 0; }
.vit-briefing-row:first-of-type { padding-top: 0; }

.vit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}
.dot-green  { background: #34d399; box-shadow: 0 0 8px rgba(52,211,153,0.5); }
.dot-amber  { background: #fbbf24; box-shadow: 0 0 8px rgba(251,191,36,0.5); }
.dot-blue   { background: #60a5fa; box-shadow: 0 0 8px rgba(96,165,250,0.5); }
.dot-gold   { background: var(--gold); box-shadow: 0 0 8px rgba(201,162,39,0.5); }

.vit-briefing-content strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.2rem;
}
.vit-briefing-content span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.55;
}

/* ─── Stats bar ─────────────────────────────────────────────────────── */
.vit-stats {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.vit-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid var(--border);
}

.vit-stat {
    padding: 2.25rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}
.vit-stat:last-child { border-right: none; }

.vit-stat-num {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--navy);
    display: block;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.vit-stat-label {
    font-size: 0.8125rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  SECTIONS                                                             */
/* ════════════════════════════════════════════════════════════════════ */
.section {
    padding: 7rem 3rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background: var(--navy-deep);
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold);
}

.section-heading {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.section-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.section-heading-white { color: var(--white); }
.section-heading-navy  { color: var(--navy); }

.section-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 520px;
}
.section-sub-muted  { color: var(--muted); }
.section-sub-white  { color: rgba(255,255,255,0.55); }

/* ════════════════════════════════════════════════════════════════════ */
/*  BENTO GRID — HOW IT WORKS                                           */
/* ════════════════════════════════════════════════════════════════════ */
.vit-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
    margin-top: 4rem;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.bento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Card sizes */
.bento-span-4  { grid-column: span 4; }
.bento-span-6  { grid-column: span 6; }
.bento-span-8  { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }

.bento-card-accent { border-top: 3px solid var(--gold); }
.bento-card-navy {
    background: var(--navy);
    border-color: transparent;
    color: var(--white);
}

.bento-num {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.bento-card-navy h3 { color: var(--white); }

.bento-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
}

.bento-card-navy p { color: rgba(255,255,255,0.55); }

.bento-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,162,39,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bento-card-navy .bento-icon {
    background: rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════════════════════════════════ */
/*  PRICING TIERS                                                        */
/* ════════════════════════════════════════════════════════════════════ */
.vit-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: end;
}

.vit-tier {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    background: var(--white);
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.vit-tier:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.vit-tier.tier-featured {
    background: var(--navy);
    border-color: transparent;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.vit-tier.tier-featured:hover {
    transform: scale(1.03) translateY(-2px);
}

.vit-tier-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.vit-tier-name {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.tier-featured .vit-tier-name { color: rgba(255,255,255,0.5); }

.vit-tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.375rem;
}

.vit-tier-dollar {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--navy);
    margin-top: 0.5rem;
}

.tier-featured .vit-tier-dollar { color: rgba(255,255,255,0.7); }

.vit-tier-amount {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 3.5rem;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
}

.tier-featured .vit-tier-amount { color: var(--white); }

.vit-tier-period {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.tier-featured .vit-tier-period { color: rgba(255,255,255,0.45); }

.vit-tier-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.tier-featured .vit-tier-title { color: var(--white); }

.vit-tier-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.tier-featured .vit-tier-desc {
    color: rgba(255,255,255,0.5);
    border-bottom-color: rgba(255,255,255,0.1);
}

.vit-tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.vit-tier-features li {
    font-size: 0.875rem;
    color: var(--muted);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.tier-featured .vit-tier-features li { color: rgba(255,255,255,0.6); }

.vit-tier-features li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(201,162,39,0.15);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23C9A227' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  FREE TRIAL CTA STRIP                                                 */
/* ════════════════════════════════════════════════════════════════════ */
.vit-trial-strip {
    background: var(--gold);
    padding: 1.25rem 3rem;
    text-align: center;
}

.vit-trial-strip p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-deep);
}

.vit-trial-strip strong { font-weight: 700; }

/* ════════════════════════════════════════════════════════════════════ */
/*  PROMISE STRIP                                                        */
/* ════════════════════════════════════════════════════════════════════ */
.vit-promise {
    background: var(--navy-deep);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vit-promise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,39,0.08), transparent 70%);
}

.vit-promise blockquote {
    position: relative;
    font-family: var(--canela);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    letter-spacing: 0.01em;
}

.vit-promise blockquote strong { color: var(--gold); font-style: normal; }

.vit-promise-sub {
    position: relative;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  DOMAINS SECTION                                                      */
/* ════════════════════════════════════════════════════════════════════ */
.vit-domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

.vit-domain-card {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    cursor: default;
}

.vit-domain-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(201,162,39,0.3);
}

.vit-domain-icon {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
    display: block;
}

.vit-domain-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.vit-domain-card p {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  PARTNERSHIP                                                          */
/* ════════════════════════════════════════════════════════════════════ */
.vit-partner-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 4rem;
}

.vit-partner-logo {
    width: 72px;
    height: 72px;
    background: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vit-partner-logo span {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--gold);
}

.vit-partner-card h3 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.vit-partner-card p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  FINAL CTA                                                            */
/* ════════════════════════════════════════════════════════════════════ */
.vit-final-cta {
    background: var(--navy-deep);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vit-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 60%, rgba(201,162,39,0.1), transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(42,77,122,0.6), transparent 50%);
}

.vit-final-cta-inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.vit-final-cta h2 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.vit-final-cta h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.vit-final-cta p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.vit-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vit-cta-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    margin-top: 1.25rem;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  FOOTER                                                               */
/* ════════════════════════════════════════════════════════════════════ */
.vit-footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem;
}

.vit-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 4rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vit-footer-logo-vit {
    font-family: var(--canela);
    font-weight: 400;
    font-style: italic;
    font-size: 1.75rem;
    color: var(--gold);
}
.vit-footer-logo-hropic {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

.vit-footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.625rem;
    font-style: italic;
    font-family: var(--canela);
}

.vit-footer-col h5 {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.vit-footer-col ul { list-style: none; }
.vit-footer-col ul li { margin-bottom: 0.625rem; }
.vit-footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.15s;
}
.vit-footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.vit-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vit-footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.25);
}

.vit-footer-promise {
    font-size: 0.8125rem;
    color: var(--gold);
    opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  SCROLL ANIMATIONS                                                    */
/* ════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════════════ */
/*  ANIMATIONS                                                           */
/* ════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes pulse-gold {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  RESPONSIVE                                                           */
/* ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .vit-hero-inner { grid-template-columns: 1fr; }
    .vit-hero-right { display: none; }
    .vit-tiers { grid-template-columns: 1fr; }
    .vit-tier.tier-featured { transform: none; }
    .vit-domains-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-span-4 { grid-column: span 6; }
}

@media (max-width: 768px) {
    .vit-nav { padding: 0 1.5rem; }
    .vit-nav-center { display: none; }
    section, .section { padding: 4rem 1.5rem; }
    .vit-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem; }
    .vit-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .vit-domains-grid { grid-template-columns: 1fr; }
    .vit-partner-card { grid-template-columns: 1fr; }
    .vit-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 12; }
    .vit-footer { padding: 2rem 1.5rem; }
    .vit-trial-strip { padding: 1rem 1.5rem; }
    .vit-promise { padding: 3rem 1.5rem; }
    .vit-final-cta { padding: 5rem 1.5rem; }
}

/* ─── Founding Member Banner ────────────────────────────────────────── */
.vit-founding-banner {
    background: linear-gradient(135deg, #0F1E33 0%, #1E3A5F 100%);
    border-top: 1px solid rgba(201,162,39,0.3);
    border-bottom: 1px solid rgba(201,162,39,0.3);
    padding: 1rem 3rem;
}

.vit-founding-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.vit-founding-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    flex-shrink: 0;
}

.vit-founding-banner p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
}

.vit-founding-banner strong { color: var(--gold); }

.btn-founding {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.btn-founding:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    color: var(--navy-deep);
}

/* ─── Sovereign Tier ─────────────────────────────────────────────────  */
.vit-tiers {
    grid-template-columns: repeat(4, 1fr);
}

.vit-tier-sovereign {
    border: 1px dashed rgba(201,162,39,0.3);
    opacity: 0.75;
    position: relative;
}

.vit-tier-sovereign-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(201,162,39,0.4);
    color: var(--gold);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .vit-tiers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vit-tiers { grid-template-columns: 1fr; }
    .vit-founding-banner { padding: 1rem 1.5rem; }
    .vit-founding-inner { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  HOW IT WORKS PAGE                                                    */
/* ════════════════════════════════════════════════════════════════════ */

/* Hero */
.hiw-hero {
    background: var(--navy-deep);
    padding: 9rem 3rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hiw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,162,39,0.1), transparent 60%);
    pointer-events: none;
}

.hiw-hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.hiw-hero-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.hiw-hero-h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hiw-hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

/* Split layout */
.hiw-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hiw-split-left { }

/* Before/after domains */
.hiw-domains-before {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hiw-domain-solo {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--navy);
    font-weight: 500;
}

.hiw-domain-icon { font-size: 1.25rem; }

.hiw-domain-isolated {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.6;
}

.hiw-vs {
    text-align: center;
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--muted);
    margin: 0.75rem 0;
    opacity: 0.5;
}

.hiw-connected {
    position: relative;
    height: 180px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-connected-center {
    text-align: center;
    z-index: 1;
}

.hiw-conn-node {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.hiw-conn-node-tl { top: 20px; left: 24px; }
.hiw-conn-node-tr { top: 20px; right: 24px; }
.hiw-conn-node-bl { bottom: 20px; left: 24px; }
.hiw-conn-node-br { bottom: 20px; right: 24px; }

/* Timeline */
.hiw-timeline {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-week {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.hiw-week:last-child { padding-bottom: 0; }
.hiw-week:last-child .hiw-week-line { display: none; }

.hiw-week-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hiw-week-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(30,58,95,0.1);
}

.hiw-week-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(30,58,95,0.15), rgba(30,58,95,0.05));
    margin: 0.75rem 0;
    min-height: 40px;
}

.hiw-week-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.625rem;
}

.hiw-week-title {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.hiw-week-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 2rem;
}

/* Setup grid */
.hiw-setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hiw-setup-item {
    display: flex;
    gap: 0.875rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.hiw-setup-item:hover { box-shadow: var(--shadow-sm); }

.hiw-setup-icon { font-size: 1.375rem; flex-shrink: 0; margin-top: 2px; }

.hiw-setup-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.hiw-setup-item span {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.hiw-setup-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(30,58,95,0.06);
    color: var(--muted);
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
}

.hiw-badge-required {
    background: rgba(201,162,39,0.12);
    color: var(--gold);
}

.hiw-setup-required { border-color: rgba(201,162,39,0.25); }

/* Learning items */
.hiw-learning-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hiw-learning-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hiw-learning-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.hiw-learning-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.hiw-learning-item span {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Daily check-in preview */
.hiw-checkin-card {
    background: var(--navy-deep);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    max-width: 480px;
}

.hiw-checkin-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.875rem;
}

.hiw-checkin-question {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.hiw-checkin-options {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hiw-checkin-opt {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.15s;
}

.hiw-checkin-opt:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

.hiw-opt-selected {
    background: rgba(201,162,39,0.15);
    border-color: rgba(201,162,39,0.4);
    color: var(--gold);
}

.hiw-checkin-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

/* Reveal card */
.hiw-reveal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 580px;
}

.hiw-reveal-header {
    background: var(--navy);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hiw-reveal-title {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--white);
}

.hiw-reveal-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.25rem;
    letter-spacing: 0.04em;
}

.hiw-reveal-date {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--gold);
}

.hiw-reveal-insight {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    background: rgba(201,162,39,0.04);
}

.hiw-reveal-insight-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.625rem;
}

.hiw-reveal-insight p {
    font-size: 0.875rem;
    color: var(--navy);
    line-height: 1.65;
}

.hiw-reveal-focuses {
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hiw-reveal-focus {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hiw-focus-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.hiw-reveal-focus strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.hiw-reveal-focus span {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.5;
}

.hiw-reveal-footer {
    padding: 0.875rem 2rem;
    background: var(--cream);
    font-size: 0.75rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    font-style: italic;
}

/* Ongoing */
.hiw-ongoing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.hiw-ongoing-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hiw-ongoing-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.hiw-ongoing-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }

.hiw-ongoing-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.hiw-ongoing-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

/* Vision */
.hiw-vision { text-align: center; }

.hiw-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.hiw-vision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hiw-vision-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hiw-vision-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}

.hiw-vision-timeframe {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.hiw-vision-card h4 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.hiw-vision-card p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hiw-split { grid-template-columns: 1fr; }
    .hiw-ongoing-grid { grid-template-columns: 1fr 1fr; }
    .hiw-vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hiw-hero { padding: 7rem 1.5rem 5rem; }
    .hiw-week { grid-template-columns: 1fr; }
    .hiw-week-marker { flex-direction: row; gap: 1rem; }
    .hiw-week-line { display: none; }
    .hiw-setup-grid { grid-template-columns: 1fr; }
    .hiw-ongoing-grid { grid-template-columns: 1fr; }
    .hiw-checkin-options { gap: 0.5rem; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  PRICING PAGE                                                         */
/* ════════════════════════════════════════════════════════════════════ */

/* Hero */
.pricing-hero {
    padding: 9rem 3rem 5rem;
    text-align: center;
    background: var(--white);
}

.pricing-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.pricing-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.pricing-h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.pricing-sub {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* Toggle */
.pricing-toggle {
    display: inline-flex;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 4px;
    gap: 2px;
}

.toggle-opt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: none;
    background: transparent;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.2s;
}

.toggle-active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.toggle-save {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(201,162,39,0.15);
    color: var(--gold);
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--white);
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pricing-featured {
    background: var(--navy);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.pricing-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 64px rgba(15,30,51,0.25);
}

.pricing-sovereign {
    border: 1.5px dashed rgba(201,162,39,0.25);
    opacity: 0.8;
}

.pc-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.3rem 0.875rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}

.pc-sovereign-coming {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(201,162,39,0.3);
    color: var(--gold);
    padding: 0.3rem 0.875rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}

.pc-name {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.pc-price-wrap { margin-bottom: 0.25rem; }

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
    line-height: 1;
}

.pc-currency {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--navy);
    margin-top: 0.5rem;
}

.pc-amount {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 3.25rem;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.pc-period {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.pc-annual-total {
    font-size: 0.8125rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pc-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.pc-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pc-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pc-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.pc-features-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.875rem;
}

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pc-features li {
    font-size: 0.8125rem;
    color: var(--muted);
    padding-left: 1.375rem;
    position: relative;
    line-height: 1.45;
}

.pc-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--check-color, var(--gold));
    font-size: 0.75rem;
    font-weight: 700;
    top: 1px;
}

/* Comparison table */
.pricing-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 2.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-table th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.pricing-table th:first-child { text-align: left; padding-left: 1.5rem; }

.pricing-table th span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--muted);
    margin-top: 0.2rem;
}

.pt-featured-col {
    background: rgba(30,58,95,0.04) !important;
    border-left: 2px solid var(--navy) !important;
    border-right: 2px solid var(--navy) !important;
}

.pt-feature-col { width: 35%; }

.pricing-table td {
    padding: 0.875rem 1rem;
    text-align: center;
    color: var(--muted);
    border-bottom: 1px solid rgba(30,58,95,0.05);
    vertical-align: middle;
}

.pricing-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    color: var(--navy);
    font-weight: 400;
}

.pt-section-row td {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.625rem 1.5rem;
    text-align: left !important;
}

.pt-check { color: var(--gold); font-weight: 700; font-size: 0.9375rem; }
.pt-dash { color: rgba(30,58,95,0.2); }

/* FAQ */
.pricing-faq {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    font-family: var(--sans);
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-open .faq-a {
    max-height: 400px;
    padding-bottom: 1.25rem;
}

/* Trust signals */
.pricing-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pt-signal { text-align: center; }

.pt-signal-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.pt-signal strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.pt-signal span {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Final CTA card — light treatment, no heavy navy */
.pricing-cta-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.pricing-cta-right {
    min-width: 280px;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-hero { padding: 7rem 1.5rem 4rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-trust { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .pricing-cta-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .pricing-cta-right { min-width: auto; }
    .pricing-table { min-width: 600px; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  ABOUT PAGE                                                           */
/* ════════════════════════════════════════════════════════════════════ */

.about-hero {
    padding: 9rem 3rem 6rem;
    text-align: center;
    background: var(--cream);
}

.about-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.about-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(3rem, 5.5vw, 4.75rem);
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.about-h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

/* Split layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}

/* Essay */
.about-essay p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.1875rem !important;
    color: var(--navy) !important;
    font-weight: 400;
    line-height: 1.7 !important;
}

.about-pull-quote {
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.75rem;
    margin: 2.5rem 0;
    background: rgba(201,162,39,0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-pull-quote p {
    font-family: var(--canela);
    font-weight: 400;
    font-style: italic;
    font-size: 1.125rem !important;
    color: var(--navy) !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* Sidebar */
.about-founder-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.about-founder-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-founder-name {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.about-founder-location {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.about-founder-bio {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-founder-also {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.about-founder-also a {
    color: var(--gold);
    text-decoration: none;
}

.about-founder-also a:hover { text-decoration: underline; }

/* Values */
.about-values {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-value {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.about-value-icon { font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }

.about-value strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.about-value p {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* Approach grid */
.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.about-approach-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--white);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-approach-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.aac-num {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.875rem;
}

.about-approach-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.about-approach-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Commitments */
.about-commitments {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
}

.about-commit {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.about-commit:first-child { border-top: 1px solid var(--border); }

.about-commit-num {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--navy);
    opacity: 0.15;
    line-height: 1;
    padding-top: 0.25rem;
}

.about-commit strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.about-commit p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Partnership */
.about-partner-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3.5rem;
}

.about-partner-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.apb-logo {
    margin-bottom: 1.25rem;
}

.apb-logo-text {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--navy);
}

.apb-logo-vit {
    font-family: var(--canela);
    font-weight: 400;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
}

.apb-logo-hropic {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1rem;
    color: var(--navy);
}

.about-partner-block p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.7;
}

.about-partner-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
}

.apc-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.apc-center {
    text-align: center;
}

.apc-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.apc-sub {
    font-size: 0.6875rem;
    color: var(--muted);
    margin-top: 0.2rem;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-split { grid-template-columns: 1fr; }
    .about-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .about-approach-grid { grid-template-columns: 1fr; }
    .about-partner-grid { grid-template-columns: 1fr; }
    .about-partner-connector { flex-direction: row; }
    .apc-line { width: 40px; height: 1px; }
}

@media (max-width: 768px) {
    .about-hero { padding: 7rem 1.5rem 5rem; }
    .about-sidebar { grid-template-columns: 1fr; }
    .about-commit { grid-template-columns: 1fr; gap: 0.75rem; }
    .about-commit-num { font-size: 1.5rem; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  SECURITY PAGE                                                        */
/* ════════════════════════════════════════════════════════════════════ */

.sec-hero {
    padding: 9rem 3rem 6rem;
    text-align: center;
    background: var(--white);
}

.sec-hero-inner { max-width: 680px; margin: 0 auto; }

.sec-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.sec-h1 em { font-style: italic; font-weight: 400; color: var(--gold); }

.sec-sub {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.75;
}

/* Practices */
.sec-practices {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sec-practice {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.sec-practice:first-child { border-top: 1px solid var(--border); }

.sec-practice-num {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--navy);
    opacity: 0.15;
    line-height: 1;
    padding-top: 0.25rem;
}

.sec-practice-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.sec-practice-body p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
    max-width: 640px;
}

.sec-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sec-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(30,58,95,0.07);
    color: var(--navy);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
}

/* Rights */
.sec-rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.sec-right {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sec-right:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.sec-right-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }

.sec-right h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.sec-right p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

/* Deletion note */
.sec-deletion-note {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 2.5rem;
    background: rgba(201,162,39,0.06);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.sec-note-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.sec-deletion-note strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.sec-deletion-note p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Aggregate */
.sec-aggregate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sec-agg-block h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.sec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sec-list li {
    font-size: 0.9rem;
    color: var(--muted);
    padding-left: 1.375rem;
    position: relative;
    line-height: 1.5;
}

.sec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    top: 2px;
}

.sec-list-no li::before {
    content: '✗';
    color: rgba(30,58,95,0.25);
}

/* Connection cards */
.sec-connection-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.sec-conn-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sec-conn-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sec-conn-icon { font-size: 1.5rem; margin-bottom: 0.875rem; display: block; }

.sec-conn-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.sec-conn-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

/* Roadmap */
.sec-roadmap {
    margin-top: 3.5rem;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sec-roadmap-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.sec-roadmap-item:first-child { border-top: 1px solid var(--border); }

.sec-rm-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.sec-done .sec-rm-marker {
    background: rgba(201,162,39,0.15);
    color: var(--gold);
    border: 1.5px solid rgba(201,162,39,0.3);
}

.sec-upcoming .sec-rm-marker {
    background: rgba(30,58,95,0.06);
    color: var(--muted);
    border: 1.5px solid var(--border);
}

.sec-roadmap-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.sec-upcoming strong { opacity: 0.6; }

.sec-roadmap-item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Contact */
.sec-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .sec-rights-grid { grid-template-columns: repeat(2, 1fr); }
    .sec-aggregate-grid { grid-template-columns: 1fr; }
    .sec-connection-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sec-hero { padding: 7rem 1.5rem 5rem; }
    .sec-practice { grid-template-columns: 1fr; gap: 0.75rem; }
    .sec-practice-num { font-size: 1.5rem; }
    .sec-rights-grid { grid-template-columns: 1fr; }
    .sec-roadmap-item { grid-template-columns: 1fr; }
    .sec-contact { flex-direction: column; align-items: flex-start; }
}

/* ─── Active nav link ────────────────────────────────────────────────── */
.vit-nav-center a.nav-active {
    color: var(--navy);
    opacity: 1;
    background: rgba(30,58,95,0.06);
}

/* ─── Mobile nav ─────────────────────────────────────────────────────── */
.vit-nav-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.vit-nav-mobile-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
}

.vit-nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vit-nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.vit-nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vit-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
    padding: 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.vit-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.vit-mobile-menu ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.vit-mobile-menu ul li {
    border-bottom: 1px solid var(--border);
}

.vit-mobile-menu ul a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    opacity: 0.8;
}

.vit-mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

@media (max-width: 768px) {
    .vit-nav-center { display: none; }
    .vit-nav-sign { display: none; }
    .vit-nav-right .btn { display: none; }
    .vit-nav-mobile-btn { display: flex; }
    .vit-mobile-menu { display: block; }
}

/* ─── Dark hero nav state ────────────────────────────────────────────── */
/* Applied on pages with dark hero sections — home page */
.vit-nav.vit-nav-hero {
    background: rgba(15, 30, 51, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.vit-nav.vit-nav-hero .vit-logo-hropic {
    color: rgba(255,255,255,0.88);
}

.vit-nav.vit-nav-hero .vit-nav-center a {
    color: rgba(255,255,255,0.65);
    opacity: 1;
}

.vit-nav.vit-nav-hero .vit-nav-center a:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.95);
}

.vit-nav.vit-nav-hero .nav-active {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.95) !important;
}

.vit-nav.vit-nav-hero .vit-nav-sign {
    color: rgba(255,255,255,0.55);
}

.vit-nav.vit-nav-hero .btn-primary {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    box-shadow: 0 1px 0 rgba(255,255,255,0.15), inset 0 0 0 1px rgba(255,255,255,0.15);
}

.vit-nav.vit-nav-hero .btn-primary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-1px);
}

/* Smooth transition between states */
.vit-nav {
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.vit-nav .vit-logo-hropic,
.vit-nav .vit-nav-center a,
.vit-nav .vit-nav-sign,
.vit-nav .btn-primary {
    transition: color 0.3s ease, background 0.2s ease, opacity 0.2s ease;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  START PAGE                                                           */
/* ════════════════════════════════════════════════════════════════════ */

.start-hero {
    min-height: 100vh;
    background: var(--navy-deep);
    padding: 0 3rem;
    position: relative;
    overflow: hidden;
}

.start-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,162,39,0.08), transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(42,77,122,0.5), transparent 50%);
    pointer-events: none;
}

.start-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}

/* Founding badge */
.start-founding-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.25);
    padding: 0.4rem 1rem;
    border-radius: 99px;
}

.start-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2s ease infinite;
}

/* Heading */
.start-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.75rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.start-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* Form */
.start-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.start-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.start-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.start-field label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}

.label-opt {
    font-weight: 400;
    opacity: 0.5;
    font-size: 0.75rem;
}

.start-field input,
.start-field select,
.start-field textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--white);
    font-family: var(--sans);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}

.start-field select option {
    background: var(--navy-deep);
    color: var(--white);
}

.start-field input::placeholder,
.start-field textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.start-field input:focus,
.start-field select:focus,
.start-field textarea:focus {
    border-color: rgba(201,162,39,0.5);
    background: rgba(255,255,255,0.1);
}

.start-field textarea { resize: vertical; min-height: 80px; }

.input-error { border-color: rgba(239,68,68,0.6) !important; }

.field-error {
    font-size: 0.8125rem;
    color: #f87171;
}

.start-submit { width: 100%; justify-content: center; }

.start-promise {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

/* Info side */
.start-info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(16px);
}

.start-info-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.start-founding-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.sfp-amount {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}

.sfp-period {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.start-founding-compare {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.start-founding-spots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.start-spots-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2s ease infinite;
    flex-shrink: 0;
}

/* Timeline */
.start-timeline {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.start-timeline-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.25rem;
}

.start-tl-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.start-tl-item:last-child { border-bottom: none; padding-bottom: 0; }
.start-tl-item:first-of-type { padding-top: 0; }

.start-tl-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.start-tl-marker.done {
    background: rgba(201,162,39,0.2);
    color: var(--gold);
    border: 1px solid rgba(201,162,39,0.3);
}

.start-tl-marker.upcoming {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.start-tl-item strong {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.15rem;
}

.start-tl-item span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* Trust */
.start-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.start-trust-item {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ─── Success state ─────────────────────────────────────────────────── */
.start-success {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
}

.start-success-inner {
    max-width: 560px;
    text-align: center;
}

.start-success-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.start-success-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.start-success-sub {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 3rem;
}

.start-success-sub strong { color: var(--navy); }

.start-success-next {
    text-align: left;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.start-next-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.start-next-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.start-next-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.start-next-item span {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
    .start-hero-inner { grid-template-columns: 1fr; }
    .start-info-side { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .start-info-card { margin-bottom: 0; }
    .start-timeline { margin-bottom: 0; }
    .start-trust { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .start-hero { padding: 0 1.5rem; }
    .start-hero-inner { padding: 100px 0 60px; }
    .start-form-row { grid-template-columns: 1fr; }
    .start-info-side { grid-template-columns: 1fr; }
    .start-trust { grid-template-columns: 1fr 1fr; }
    .start-success { padding: 4rem 1.5rem; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  LEGAL PAGES (Privacy + Terms)                                        */
/* ════════════════════════════════════════════════════════════════════ */

.legal-hero {
    padding: 8rem 3rem 4rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.legal-hero-inner { max-width: 760px; }

.legal-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0.75rem 0 1rem;
}

.legal-h1 em { font-style: italic; font-weight: 400; color: var(--gold); }

.legal-meta {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Layout */
.legal-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 5rem;
    align-items: start;
}

/* TOC */
.legal-toc {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.legal-toc-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.legal-toc ol {
    list-style: none;
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-toc ol li::before {
    counter-increment: toc;
    content: counter(toc) ". ";
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
}

.legal-toc a {
    font-size: 0.8125rem;
    color: var(--muted);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s;
}

.legal-toc a:hover { color: var(--navy); }

/* Body */
.legal-body h2 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.625rem;
    color: var(--navy);
    margin: 3rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    letter-spacing: -0.01em;
    scroll-margin-top: 100px;
}

.legal-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

.legal-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.75rem 0 0.625rem;
}

.legal-body p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-body ul {
    margin: 0.75rem 0 1.25rem 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-body ul li {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.65;
}

.legal-body a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-body a:hover { color: var(--gold); }

/* Promise block */
.legal-promise-block {
    display: flex;
    gap: 1.25rem;
    background: rgba(201,162,39,0.06);
    border: 1px solid rgba(201,162,39,0.2);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.lpb-icon { font-size: 1.375rem; flex-shrink: 0; }

.legal-promise-block strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.legal-promise-block p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Callout */
.legal-callout {
    background: rgba(30,58,95,0.04);
    border: 1px solid var(--border);
    border-left: 3px solid var(--navy);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.legal-callout strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.legal-callout p {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.7;
}

/* Contact block */
.legal-contact {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.legal-contact div {
    font-size: 0.9rem;
    color: var(--muted);
}

.legal-contact strong { color: var(--navy); }

/* Review note */
.legal-review-note {
    background: rgba(201,162,39,0.06);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 3rem;
}

.legal-review-note strong { color: var(--navy); }

/* Responsive */
@media (max-width: 900px) {
    .legal-inner { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
}

@media (max-width: 768px) {
    .legal-hero { padding: 6rem 1.5rem 3rem; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  CONTACT PAGE                                                         */
/* ════════════════════════════════════════════════════════════════════ */

.contact-hero {
    padding: 8rem 3rem 5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.contact-hero-inner { max-width: 560px; }

.contact-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0.75rem 0 1rem;
}

.contact-sub {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.75;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}

.contact-form-side .start-field input,
.contact-form-side .start-field select,
.contact-form-side .start-field textarea {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    border-radius: var(--radius-sm);
}

.contact-form-side .start-field input::placeholder,
.contact-form-side .start-field textarea::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.contact-form-side .start-field input:focus,
.contact-form-side .start-field select:focus,
.contact-form-side .start-field textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

.contact-form-side .start-field label {
    color: var(--navy);
    opacity: 0.8;
}

.contact-info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.contact-info-card:last-child { margin-bottom: 0; }

.contact-info-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

.contact-response-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-response-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-response-item:first-child { padding-top: 0; }

.cri-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-response-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.contact-response-item span {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.5;
}

.contact-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-links a {
    font-size: 0.875rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.contact-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-hero { padding: 6rem 1.5rem 3rem; }
}

/* ════════════════════════════════════════════════════════════════════ */
/*  INTELLIGENCE PAGE                                                    */
/* ════════════════════════════════════════════════════════════════════ */

.intel-hero {
    background: var(--navy-deep);
    padding: 9rem 3rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intel-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,162,39,0.09), transparent 60%);
    pointer-events: none;
}

.intel-hero-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.intel-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.intel-h1 em { font-style: italic; font-weight: 400; color: var(--gold); }

.intel-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.intel-subscribe {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto 0.875rem;
}

.intel-subscribe input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9375rem;
    font-family: var(--sans);
    outline: none;
}

.intel-subscribe input::placeholder { color: rgba(255,255,255,0.3); }
.intel-subscribe input:focus { border-color: rgba(201,162,39,0.5); }

.intel-subscribe-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

/* Categories bar */
.intel-cats {
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 72px;
    z-index: 50;
}

.intel-cats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.intel-cats-inner::-webkit-scrollbar { display: none; }

.intel-cat {
    display: inline-block;
    padding: 1rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    letter-spacing: 0.01em;
}

.intel-cat:hover { color: var(--navy); }

.intel-cat-active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

/* Featured placeholder */
.intel-featured-placeholder {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border-top: 3px solid var(--gold);
}

.intel-cat-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.ifp-title {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.875rem;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.ifp-desc {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.ifp-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Featured image area */
.ifp-image {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ifp-image-inner {
    padding: 2rem;
    width: 100%;
}

.ifp-coming {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2rem;
    text-align: center;
}

.ifp-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ifp-tl-bar { }

.ifp-tl-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.ifp-tl-track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 0 0.75rem;
    position: relative;
}

.ifp-tl-fill {
    height: 100%;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
}

.ifp-fill-short {
    width: 60%;
    background: rgba(255,255,255,0.15);
}

.ifp-fill-long {
    width: 95%;
    background: linear-gradient(90deg, rgba(201,162,39,0.3), rgba(201,162,39,0.6));
}

.ifp-tl-age {
    position: absolute;
    right: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--canela);
}

/* Article grid */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.intel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.intel-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.intel-card-cat {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.intel-card-title {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    flex: 1;
}

.intel-card-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.intel-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted);
    flex-wrap: wrap;
}

.intel-card-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(201,162,39,0.1);
    color: var(--gold);
    padding: 0.2rem 0.625rem;
    border-radius: 99px;
    border: 1px solid rgba(201,162,39,0.2);
}

/* Subscribe block */
.intel-subscribe-block {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.intel-sub-left { flex: 1; }

.intel-sub-left h3 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.intel-sub-left p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.intel-sub-form {
    display: flex;
    gap: 0.75rem;
    min-width: 380px;
}

.intel-sub-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9375rem;
    font-family: var(--sans);
    outline: none;
}

.intel-sub-form input::placeholder { color: rgba(255,255,255,0.3); }
.intel-sub-form input:focus { border-color: rgba(201,162,39,0.5); }

/* Responsive */
@media (max-width: 1024px) {
    .intel-featured-placeholder { grid-template-columns: 1fr; }
    .ifp-right { display: none; }
    .intel-grid { grid-template-columns: repeat(2, 1fr); }
    .intel-subscribe-block { flex-direction: column; align-items: flex-start; }
    .intel-sub-form { min-width: auto; width: 100%; }
}

@media (max-width: 768px) {
    .intel-hero { padding: 7rem 1.5rem 5rem; }
    .intel-cats-inner { padding: 0 1.5rem; }
    .intel-subscribe { flex-direction: column; }
    .intel-grid { grid-template-columns: 1fr; }
    .intel-featured-placeholder { padding: 2rem 1.5rem; }
    .intel-subscribe-block { padding: 2rem 1.5rem; }
}

/* ─── Start page trust anchor ───────────────────────────────────────── */
.start-trust-anchor {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid rgba(201,162,39,0.5);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
}

.sta-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.start-trust-anchor p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  TRUST BRIDGE — Homepage                                              */
/* ════════════════════════════════════════════════════════════════════ */

.trust-bridge {
    background: var(--navy-deep);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.trust-bridge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,162,39,0.07), transparent 60%);
    pointer-events: none;
}

.trust-bridge-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.trust-bridge-h2 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.trust-bridge-p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.trust-bridge-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.15s;
}

.trust-bridge-link:hover { opacity: 0.75; }

/* Apps grid */
.trust-bridge-apps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tba-row {
    display: flex;
    gap: 0.75rem;
}

.tba-app {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}

.tba-app:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.tba-app:last-child {
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
    font-weight: 400;
}

/* Powered by */
.tba-powered {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.tba-powered-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.tba-powered-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
    .trust-bridge-inner { grid-template-columns: 1fr; gap: 3rem; }
    .trust-bridge { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
    .tba-row { flex-direction: column; }
}
