@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap");

:root {
    --gold: #d4af37;
    --foreground: #f0ede6;
    --background: #000000;
    --muted: #71717a;
    --soft-muted: #52525b;
    --dim: #3f3f46;
    --card: rgba(13, 13, 16, 0.9);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter", "Tajawal", -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
}

.vantage-page {
    min-height: 100vh;
    background: var(--background);
    color: var(--foreground);
}

.vantage-shell {
    padding: 7rem 1.5rem 8rem;
}

.vantage-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    margin-bottom: 4rem;
    padding: 0.25rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(200, 16, 46, 0.15) 100%);
}

.hero-inner {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 2.5rem;
    background: #0a0a0d;
}

.hero-glow,
.promo-glow,
.cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow-gold {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
}

.hero-glow-red {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.06) 0%, transparent 65%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.brand-pair {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.vantage-mark-large {
    width: 5rem;
    height: 5rem;
}

.brand-icon-large {
    width: 4rem;
    height: 4rem;
}

.brand-divider-desktop {
    display: none;
    width: 1px;
    height: 4rem;
    background: rgba(212, 175, 55, 0.2);
}

.partnership-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.partnership-label div {
    width: 3rem;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.partnership-label span,
.eyebrow {
    display: block;
    color: var(--gold);
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
}

.partnership-label span {
    letter-spacing: 0.25em;
}

.eyebrow {
    margin-bottom: 0.75rem;
    letter-spacing: 0.3em;
}

.hero-copy {
    flex: 1;
    text-align: center;
}

.hero-copy h1,
.section-heading h2,
.student-copy h2,
.cta-card h2 {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

.hero-copy h1 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

.hero-copy p {
    max-width: 32rem;
    margin: 0 auto;
    color: var(--muted);
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    line-height: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-family: "Tajawal", sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: opacity 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button-primary {
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: #000000;
}

.button-primary:hover {
    opacity: 0.9;
}

.button-primary:active {
    transform: scale(0.95);
}

.button-secondary {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--foreground);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.section-block {
    margin-bottom: 5rem;
}

.section-heading {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.trust-grid,
.spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.spec-grid {
    gap: 1.25rem;
}

.trust-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 1rem;
    background: var(--card);
}

.icon-box {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    background: rgba(212, 175, 55, 0.08);
}

.spec-card .icon-box {
    margin-bottom: 1rem;
    border-color: rgba(212, 175, 55, 0.18);
}

.icon-box svg,
.benefit-item svg,
.cta-button svg {
    color: var(--gold);
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box svg {
    width: 1.25rem;
    height: 1.25rem;
}

.trust-number {
    color: var(--gold);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.trust-label {
    margin-top: 0.125rem;
    color: var(--muted);
    font-family: "Tajawal", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
}

.spec-card {
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 1rem;
    background: var(--card);
}

.spec-value {
    margin-bottom: 0.25rem;
    color: var(--gold);
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
}

.spec-card h3 {
    margin: 0 0 0.25rem;
    color: var(--foreground);
    font-family: "Tajawal", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.spec-card p {
    margin: 0;
    color: var(--soft-muted);
    font-family: "Tajawal", sans-serif;
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.students-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.student-copy .eyebrow {
    margin-bottom: 1rem;
}

.student-copy h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.student-copy h2 span {
    color: var(--gold);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-item svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-item span {
    color: #a1a1aa;
    font-family: "Tajawal", sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.promo-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    background: var(--card);
}

.promo-glow {
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vantage-mark-small {
    width: 3.5rem;
    height: 3.5rem;
}

.promo-title {
    color: var(--foreground);
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.promo-subtitle {
    margin-top: 0.125rem;
    color: var(--soft-muted);
    font-family: "Tajawal", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
}

.spec-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
    gap: 1rem;
}

.spec-row span {
    color: var(--soft-muted);
    font-family: "Tajawal", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
}

.spec-row strong {
    color: var(--foreground);
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    text-align: left;
}

.risk-note {
    color: var(--dim);
    font-family: "Tajawal", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
    text-align: center;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1.5rem;
    background: var(--card);
    text-align: center;
}

.cta-glow {
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cta-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(212, 175, 55, 0.3);
}

.brand-icon-cta {
    width: 3rem;
    height: 3rem;
}

.cta-card h2 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-card p {
    max-width: 28rem;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-family: "Tajawal", sans-serif;
    font-size: 0.875rem;
    line-height: 1.8;
}

.cta-button {
    gap: 0.5rem;
    padding: 0.875rem 2rem;
}

.cta-button svg {
    width: 1rem;
    height: 1rem;
    color: #000000;
}

.capital-risk {
    margin-top: 1rem;
    color: var(--dim);
    font-family: "Tajawal", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
}

.reveal {
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--delay, 0ms);
}

.reveal-up {
    transform: translateY(20px);
}

.hero-card.reveal-up {
    transform: translateY(30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-scale {
    transform: scale(0.96);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 640px) {
    .trust-grid,
    .spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .hero-inner {
        padding: 4rem;
    }

    .hero-content {
        flex-direction: row;
        gap: 4rem;
    }

    .brand-divider-desktop {
        display: block;
    }

    .partnership-label {
        flex-direction: column;
    }

    .partnership-label div {
        width: 1px;
        height: 3rem;
    }

    .hero-copy {
        text-align: right;
    }

    .hero-copy p {
        margin-right: 0;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: flex-end;
    }

    .students-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .trust-grid,
    .spec-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .button {
        transition: none;
    }
}
