
/* ─── 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');

/* ─── 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:        #0F1E33;
    --navy-deep:   #0F1E33;
    --navy-mid:    #1A2E4A;
    --gold:        #C9A84C;
    --gold-light:  #E8C97A;
    --cream:       #F9F6EF;
    --white:       #FFFFFF;
    --muted:       #6B7A90;
    --border:      rgba(15,30,51,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;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  NAV — warmer navy to match hero                                      */
/* ════════════════════════════════════════════════════════════════════ */
.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;
    background: #0F2444;
    transition: box-shadow 0.3s;
}

.vit-nav.scrolled {
    background: #0F2444;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

/* Logo */
.vit-logo {
    display: flex;
    align-items: center;
    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: rgba(255,255,255,0.9);
    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: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
    transition: background 0.15s, color 0.15s;
}
.vit-nav-center a:hover {
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.06);
}
.vit-nav-center a.nav-active {
    color: #C9A84C !important;
    opacity: 1;
    background: rgba(201,168,76,0.08);
}

.vit-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.vit-nav-sign {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    transition: color 0.15s;
}
.vit-nav-sign:hover { color: rgba(255,255,255,0.9); }

/* ─── 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,168,76,0.3);
}
.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(201,168,76,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(15,30,51,0.04);
    border-color: rgba(15,30,51,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: #0F2444;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 3rem;
}
.vit-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26,46,74,0.5) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(201,168,76,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.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;
}
.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,168,76,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);
}
.vit-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.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                                                           */
/* ════════════════════════════════════════════════════════════════════ */
.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-left: 2.5px solid rgba(201,168,76,.35);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-left-color 0.2s;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
}
.bento-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 2.5px; right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent,color-mix(in srgb, var(--navy) 2.5%, transparent));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    pointer-events: none;
}
.bento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-left-color: var(--gold);
}
.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: linear-gradient(to bottom, #0F1E33 0%, #090F1C 100%);
    border-color: transparent;
    border-left: 2.5px solid rgba(201,168,76,.5);
    color: var(--white);
}
.bento-card-navy::after {
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.08));
}
.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,168,76,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(4, 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);
    border-left: 2.5px solid rgba(201,168,76,.35);
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-left-color 0.2s;
}
.vit-tier::after {
    content: '';
    position: absolute;
    bottom: 0; left: 2.5px; right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(15,30,51,.025));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    pointer-events: none;
}
.vit-tier:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-left-color: var(--gold); }
.vit-tier.tier-featured {
    background: linear-gradient(to bottom, #0F1E33 0%, #090F1C 100%);
    border-color: transparent;
    border-left: 2.5px solid rgba(201,168,76,.55);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}
.vit-tier.tier-featured::after { background: linear-gradient(to bottom, transparent, rgba(0,0,0,.08)); }
.vit-tier.tier-featured:hover { transform: scale(1.03) translateY(-2px); border-left-color: var(--gold); }
.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,168,76,0.15)
        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='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat center;
    flex-shrink: 0;
}

/* Sovereign tier */
.vit-tier-sovereign { border: 1px dashed rgba(201,168,76,0.3); border-left: 2.5px dashed rgba(201,168,76,.45); opacity: 0.75; }
.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,168,76,0.4);
    color: var(--gold);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  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,168,76,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;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  FINAL CTA                                                            */
/* ════════════════════════════════════════════════════════════════════ */
.vit-final-cta {
    background: var(--navy);
    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,168,76,0.1), transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(26,46,74,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; }

/* ════════════════════════════════════════════════════════════════════ */
/*  DOMAINS                                                              */
/* ════════════════════════════════════════════════════════════════════ */
.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,168,76,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; }

/* ════════════════════════════════════════════════════════════════════ */
/*  TRUST BRIDGE                                                         */
/* ════════════════════════════════════════════════════════════════════ */
.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,168,76,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; }
.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; }
.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; }

/* ════════════════════════════════════════════════════════════════════ */
/*  FOUNDING BANNER v1 (legacy)                                          */
/* ════════════════════════════════════════════════════════════════════ */
.vit-founding-banner {
    background: linear-gradient(135deg, #0F1E33 0%, #1E3A5F 100%);
    border-top: 1px solid rgba(201,168,76,0.3);
    border-bottom: 1px solid rgba(201,168,76,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); }

/* ════════════════════════════════════════════════════════════════════ */
/*  FOUNDING BANNER v2 — used globally                                   */
/* ════════════════════════════════════════════════════════════════════ */
.vit-founding-v2 {
    background: linear-gradient(135deg, #0F2444 0%, #1E3A5F 100%);
    border-top: 1px solid rgba(201,168,76,.28);
    border-bottom: 1px solid rgba(201,168,76,.28);
    padding: 1.125rem 3rem;
    position: relative;
    overflow: hidden;
}
.vit-founding-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 120% at 50% 50%, rgba(201,168,76,.06), transparent 70%);
    pointer-events: none;
}
.vit-founding-v2-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
}
.vit-founding-v2 p {
    font-size: .9375rem;
    color: rgba(255,255,255,.82);
    flex: 1;
    min-width: 0;
}
.vit-founding-v2 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); }

/* ════════════════════════════════════════════════════════════════════ */
/*  TRIAL 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; }

/* ════════════════════════════════════════════════════════════════════ */
/*  FOOTER                                                               */
/* ════════════════════════════════════════════════════════════════════ */
.vit-footer {
    background: #0F1E33;
    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.8125rem; color: rgba(255,255,255,0.28); margin-top: 0.625rem; font-style: normal; font-family: var(--sans); letter-spacing: 0.04em; }
.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; }

/* ════════════════════════════════════════════════════════════════════ */
/*  CARD DECORATIVE SYSTEM                                               */
/*  Gold left border + bottom gradient shading + refined shadow.        */
/*  Used by: Pricing, About, Security, Intelligence, bento cards.       */
/* ════════════════════════════════════════════════════════════════════ */
.card-decorated {
    position: relative;
    border-left: 2.5px solid rgba(201,168,76,.35);
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    box-shadow:
        0 1px 3px rgba(15,30,51,.06),
        0 4px 16px rgba(15,30,51,.07),
        0 0 0 .5px rgba(15,30,51,.06);
    transition: border-left-color .2s, box-shadow .2s, transform .2s;
}
.card-decorated:hover {
    border-left-color: var(--gold);
    box-shadow:
        0 2px 6px rgba(15,30,51,.08),
        0 8px 28px rgba(15,30,51,.1),
        0 0 0 .5px rgba(201,168,76,.2);
    transform: translateY(-2px);
}
.card-decorated::after {
    content: '';
    position: absolute;
    bottom: 0; left: 2.5px; right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(15,30,51,.025));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    pointer-events: none;
}
.card-decorated-dark {
    position: relative;
    border-left: 2.5px solid rgba(201,168,76,.5);
    background: linear-gradient(to bottom, #0F1E33 0%, #090F1C 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 0 0 .5px rgba(201,168,76,.15);
    transition: border-left-color .2s, box-shadow .2s, transform .2s;
}
.card-decorated-dark:hover {
    border-left-color: var(--gold);
    box-shadow: 0 12px 48px rgba(0,0,0,.3), 0 0 0 .5px rgba(201,168,76,.3);
    transform: translateY(-2px);
}
.card-decorated-dark::after {
    content: '';
    position: absolute;
    bottom: 0; left: 2.5px; right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.08));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════ */
/*  LEGAL PAGES — shared by Terms and Privacy                           */
/* ════════════════════════════════════════════════════════════════════ */
.legal-hero {
    background: #0F2444;
    position: relative;
    overflow: hidden;
    padding: 9rem 3rem 5.5rem;
}
.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 40% 50%, rgba(201,168,76,.12) 0%, transparent 58%),
        radial-gradient(ellipse 35% 45% at 5% 10%, rgba(15,36,68,.7) 0%, transparent 50%);
    pointer-events: none;
}
.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.legal-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.legal-h1 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--white);
    margin-bottom: 1rem;
}
.legal-h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.legal-meta { font-size: .8125rem; color: rgba(255,255,255,.3); letter-spacing: .02em; }
.legal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 5rem;
    align-items: start;
}
.legal-toc {
    position: sticky;
    top: calc(72px + 2rem);
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    border: 1px solid var(--border);
    border-left: 2.5px solid rgba(201,168,76,.35);
    border-radius: var(--radius-md);
    padding: 1.375rem;
    box-shadow: 0 2px 8px rgba(15,30,51,.05);
    overflow: hidden;
}
.legal-toc-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .875rem;
}
.legal-toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: .05rem; }
.legal-toc ol li { counter-increment: toc; }
.legal-toc ol a {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    font-size: .8rem;
    color: var(--muted);
    text-decoration: none;
    padding: .3rem .375rem;
    border-radius: 4px;
    transition: color .15s, background .15s;
    line-height: 1.4;
}
.legal-toc ol a::before {
    content: counter(toc) ".";
    font-size: .7rem;
    color: rgba(107,122,144,.4);
    flex-shrink: 0;
    width: 1.25rem;
}
.legal-toc ol a:hover { color: var(--navy); background: rgba(201,168,76,.06); }
.legal-body { padding: 3rem 0 5rem; max-width: 680px; }
.legal-body h2 {
    font-family: var(--canela);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--navy);
    letter-spacing: -.01em;
    margin-top: 3rem;
    margin-bottom: .875rem;
    padding-bottom: .625rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 100px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: .9375rem; font-weight: 600; color: var(--navy); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-body p { font-size: .9375rem; line-height: 1.8; color: var(--muted); margin-bottom: 1rem; }
.legal-body ul { list-style: none; margin: .5rem 0 1rem; display: flex; flex-direction: column; gap: .375rem; }
.legal-body ul li { font-size: .9375rem; color: var(--muted); line-height: 1.65; padding-left: 1.25rem; position: relative; }
.legal-body ul li::before { content: '–'; position: absolute; left: 0; color: rgba(201,168,76,.7); font-weight: 600; }
.legal-body ul li strong { color: var(--navy); font-weight: 600; }
.legal-body a { color: var(--gold); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-promise-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(201,168,76,.07) 0%, rgba(201,168,76,.03) 100%);
    border: 1px solid rgba(201,168,76,.2);
    border-left: 2.5px solid rgba(201,168,76,.55);
    border-radius: var(--radius-md);
    padding: 1.375rem;
    margin-bottom: 2.5rem;
}
.lpb-icon { font-size: 1.375rem; flex-shrink: 0; margin-top: .1rem; }
.legal-promise-block strong { display: block; font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; }
.legal-promise-block p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }
.legal-callout {
    background: rgba(15,30,51,.04);
    border: 1px solid rgba(15,30,51,.1);
    border-left: 2.5px solid var(--navy);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.375rem;
    margin: 1.25rem 0;
}
.legal-callout strong { display: block; font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.legal-callout p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0; }
.legal-contact {
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    border: 1px solid var(--border);
    border-left: 2.5px solid rgba(201,168,76,.35);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.375rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.legal-contact div { font-size: .9rem; color: var(--muted); }
.legal-contact strong { color: var(--navy); font-weight: 600; }
.legal-review-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: .8125rem;
    color: rgba(107,122,144,.55);
    font-style: italic;
    line-height: 1.65;
}
.legal-review-note strong { color: var(--muted); font-style: normal; font-weight: 600; }

/* ════════════════════════════════════════════════════════════════════ */
/*  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; }

/* ════════════════════════════════════════════════════════════════════ */
/*  KEYFRAMES                                                            */
/* ════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ════════════════════════════════════════════════════════════════════ */
/*  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: rgba(255,255,255,0.75);
    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: #0F2444;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    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 rgba(255,255,255,0.06); }
.vit-mobile-menu ul a { display: block; padding: 0.875rem 0; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none; }
.vit-mobile-menu-cta { display: flex; flex-direction: column; gap: 0.625rem; }

/* ════════════════════════════════════════════════════════════════════ */
/*  RESPONSIVE                                                           */
/* ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .vit-tiers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .vit-hero-inner { grid-template-columns: 1fr; }
    .vit-hero-right { display: none; }
    .vit-domains-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-span-4 { grid-column: span 6; }
    .trust-bridge-inner { grid-template-columns: 1fr; gap: 3rem; }
    .legal-inner { grid-template-columns: 1fr; gap: 0; }
    .legal-toc { position: relative; top: 0; margin-bottom: 2rem; }
    .legal-toc ol { flex-direction: row; flex-wrap: wrap; gap: .25rem; }
    .legal-toc ol a { padding: .2rem .5rem; font-size: .75rem; }
}

@media (max-width: 768px) {
    .vit-nav { padding: 0 1.5rem; }
    .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; }
    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-tiers { grid-template-columns: 1fr; }
    .vit-tier.tier-featured { transform: none; }
    .vit-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .vit-footer { padding: 2rem 1.5rem; }
    .vit-promise { padding: 3rem 1.5rem; }
    .vit-final-cta { padding: 5rem 1.5rem; }
    .trust-bridge { padding: 4rem 1.5rem; }
    .vit-founding-banner { padding: 1rem 1.5rem; }
    .vit-founding-inner { flex-direction: column; text-align: center; }
    .vit-founding-v2 { padding: 1rem 1.5rem; }
    .vit-founding-v2-inner { flex-direction: column; text-align: center; }
    .bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 12; }
    .legal-hero { padding: 7rem 1.5rem 4rem; }
    .legal-inner { padding: 0 1.5rem; }
    .legal-body { padding: 2rem 0 3rem; }
}

@media (max-width: 480px) {
    .tba-row { flex-direction: column; }
}
