/* ===================================================================
   ACHIEVINGNOW AI — BRAND: CYAN + BLACK + WHITE ONLY
   =================================================================== */

:root {
    --cyan: #00E5FF;
    --cyan-bright: #22F0FF;
    --cyan-dim: #00A8BD;
    --cyan-glow: rgba(0, 229, 255, 0.35);
    --black: #000000;
    --black-soft: #0A0A0A;
    --black-card: #0D0D0D;
    --gray-line: #1A1A1A;
    --gray-text: #888888;
    --white: #FFFFFF;
    --white-dim: #CCCCCC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

.accent { color: var(--cyan); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.center { text-align: center; }

/* ===================== NAVIGATION ===================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-line);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
}

.logo-mark {
    color: var(--cyan);
    font-size: 20px;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-dim);
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
    background: var(--cyan);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.nav-cta:hover {
    background: var(--cyan-bright);
    box-shadow: 0 0 30px var(--cyan-glow);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 24px;
    cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white-dim);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-line);
    flex-wrap: wrap;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.stat-number .unit {
    font-size: 24px;
    color: var(--white-dim);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--cyan);
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--cyan);
    color: var(--black);
    box-shadow: 0 0 30px var(--cyan-glow);
}
.btn-primary:hover {
    background: var(--cyan-bright);
    box-shadow: 0 0 50px var(--cyan-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-line);
}
.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
}
.btn-outline:hover {
    background: var(--cyan);
    color: var(--black);
    box-shadow: 0 0 30px var(--cyan-glow);
}

/* ===================== QUOTE BAR ===================== */
.quote-bar {
    padding: 40px 32px;
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
    text-align: center;
}

.quote-bar blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.4;
}

.quote-bar cite {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cyan);
    font-style: normal;
    font-weight: 500;
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 120px 32px;
}

.section-dark {
    background: var(--black-soft);
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
}

.section-header {
    max-width: 900px;
    margin-bottom: 80px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.section-title.small {
    font-size: clamp(32px, 4vw, 48px);
}

.section-lead {
    font-size: 18px;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 720px;
}

.section-header.center .section-lead { margin: 0 auto; }

.section-footer {
    margin-top: 60px;
}

/* ===================== CATEGORIES GRID ===================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.category-card {
    padding: 40px 24px;
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.category-card:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-4px);
}

.cat-icon {
    color: var(--cyan);
    font-size: 24px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.cat-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
}

/* ===================== SPLIT SECTION ===================== */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    border: 1px solid var(--gray-line);
    box-shadow: 0 0 60px var(--cyan-glow);
}

.split-content p {
    color: var(--white-dim);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-content strong {
    color: var(--cyan);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--gray-line);
    font-size: 15px;
    color: var(--white);
}

.feature-list li:before {
    content: "▸";
    color: var(--cyan);
    position: absolute;
    left: 0;
    font-weight: 700;
    text-shadow: 0 0 8px var(--cyan-glow);
}

/* ===================== AUDIENCE GRID ===================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.audience-card {
    padding: 48px 32px;
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.audience-card:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.03);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.1);
}

.audience-number {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--cyan);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 600;
}

.audience-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.audience-card p {
    color: var(--white-dim);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.audience-link {
    color: var(--cyan);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.2s;
    display: inline-block;
}

.audience-card:hover .audience-link {
    transform: translateX(6px);
}

/* ===================== LANES GRID ===================== */
.lanes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.lane-card {
    padding: 48px 32px;
    background: var(--black-card);
    border: 1px solid var(--gray-line);
    text-align: center;
    position: relative;
}

.lane-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan-glow);
    animation: pulse-dot 2s infinite;
}

.lane-dot-2 { animation-delay: 0.5s; }
.lane-dot-3 { animation-delay: 1s; opacity: 0.6; }

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.lane-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.lane-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.lane-time {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.lane-card p {
    color: var(--white-dim);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================== PRICING ===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    padding: 40px 28px;
    background: var(--black);
    border: 1px solid var(--gray-line);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.price-featured {
    border-color: var(--cyan);
    background: linear-gradient(180deg, rgba(0,229,255,0.05) 0%, var(--black) 100%);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--black);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.price-tier {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--cyan);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.price-value .per {
    font-size: 16px;
    color: var(--gray-text);
    font-weight: 400;
}

.price-cap {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-line);
}

.price-card ul {
    list-style: none;
}

.price-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--white-dim);
    position: relative;
    padding-left: 20px;
}

.price-card li:before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

/* ===================== BIG QUOTE ===================== */
.quote-section {
    padding: 120px 32px;
    background: var(--black);
}

.big-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -1px;
    max-width: 1000px;
    margin: 0 auto 32px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.big-quote::before, .big-quote::after {
    content: '"';
    color: var(--cyan);
    font-size: 80px;
    position: absolute;
    line-height: 0;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.big-quote::before { top: 30px; left: -10px; }
.big-quote::after { bottom: 0; right: -10px; }

.quote-section cite {
    color: var(--cyan);
    letter-spacing: 3px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    position: relative;
    padding: 140px 32px;
    overflow: hidden;
}

.cta-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--white-dim);
    margin-bottom: 48px;
}

/* ===================== WAITLIST FORM ===================== */
.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-row-secondary {
    margin-bottom: 16px;
}

.waitlist-form input,
.waitlist-form select {
    padding: 18px 20px;
    background: var(--black);
    border: 1px solid var(--gray-line);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    border-radius: 2px;
    width: 100%;
    transition: border-color 0.2s;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-glow);
}

.waitlist-form input::placeholder {
    color: var(--gray-text);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-text);
    letter-spacing: 0.5px;
    margin-top: 16px;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--gray-line);
    padding: 80px 32px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--white-dim);
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-address {
    color: var(--gray-text) !important;
    font-size: 12px !important;
    letter-spacing: 1px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--white-dim);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray-text);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal a {
    color: var(--gray-text);
    margin-left: 8px;
}
.footer-legal a:hover { color: var(--cyan); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-cta { padding: 8px 16px; font-size: 11px; }

    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 32px; }
    .stat-number { font-size: 36px; }

    .section { padding: 80px 24px; }
    .section-header { margin-bottom: 60px; }

    .split-container { grid-template-columns: 1fr; gap: 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }

    .form-row { grid-template-columns: 1fr; }

    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .hero-cta-group .btn { width: auto; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-title { font-size: 42px; }
    .quote-section { padding: 80px 24px; }
    .cta-section { padding: 80px 24px; }
}

/* ===================================================================
   ADDITIONAL PAGE-SPECIFIC STYLES
   =================================================================== */

/* Page hero (shorter than homepage hero) */
.page-hero {
    position: relative;
    min-height: 60vh;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-hero.short { min-height: 40vh; }
.page-hero .hero-image {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    filter: contrast(1.1) brightness(0.6);
}
.hero-overlay-solid {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, #000 0%, #050505 100%);
}

/* Steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}
.step-card {
    padding: 32px 28px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    background: rgba(0, 229, 255, 0.02);
    transition: all 0.3s;
}
.step-card:hover {
    border-color: rgba(0, 229, 255, 0.5);
    background: rgba(0, 229, 255, 0.05);
}
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}
.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Threshold table */
.threshold-table {
    margin-top: 48px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.threshold-header, .threshold-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 24px;
    gap: 16px;
}
.threshold-header {
    background: rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
}
.threshold-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
}
.threshold-row:last-child { border-bottom: none; }

/* Categories large */
.categories-grid.large {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.categories-grid.large .category-card {
    padding: 32px 24px;
    text-align: left;
}
.categories-grid.large .category-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Addons grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 48px;
}
.addon {
    padding: 20px 24px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.addon:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* Sponsor models */
.sponsor-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.sponsor-card {
    padding: 40px 32px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
}
.sponsor-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}
.sponsor-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}
.sponsor-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}
.sponsor-pricing {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 229, 255, 0.15);
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.65);
}

/* Reasons grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.reason {
    padding: 28px 24px;
    border-left: 2px solid var(--cyan);
    background: rgba(0, 229, 255, 0.03);
}
.reason-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 16px;
}
.reason h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}
.reason p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Fit grid */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.fit-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.4);
}
.fit-card h4 {
    color: var(--cyan);
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
}
.fit-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* Problems grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.problem {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.problem h3 {
    color: var(--cyan);
    font-size: 20px;
    margin-bottom: 16px;
}
.problem p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Outcomes grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.outcome-card {
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.outcome-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}
.outcome-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Usecase grid */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.usecase {
    padding: 24px;
    border-top: 2px solid var(--cyan);
    background: rgba(0, 0, 0, 0.4);
}
.usecase h4 {
    color: var(--cyan);
    font-size: 17px;
    margin-bottom: 8px;
}
.usecase p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Special grid */
.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.special-card {
    padding: 28px 24px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
}
.special-card h4 {
    color: var(--cyan);
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}
.special-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* About portrait layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 768px) {
    .about-split { grid-template-columns: 1fr; gap: 32px; }
}
.about-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.about-role {
    color: var(--cyan);
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.about-story p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}
.contact-direct {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 229, 255, 0.15);
}

/* Company facts */
.company-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.fact {
    padding: 24px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    text-align: center;
}
.fact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}
.fact-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--cyan);
}

/* Beliefs list */
.beliefs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.belief {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}
.belief-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--cyan);
    min-width: 60px;
}
.belief h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}
.belief p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Hiring grid */
.hiring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.hiring-card {
    padding: 28px 24px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
}
.hiring-card h4 {
    color: var(--cyan);
    font-size: 17px;
    margin-bottom: 12px;
}
.hiring-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}
.contact-card {
    padding: 36px 28px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: block;
}
.contact-card:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-4px);
}
.contact-icon {
    font-size: 28px;
    color: var(--cyan);
    margin-bottom: 20px;
}
.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}
.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.contact-email {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--cyan);
    font-weight: 500;
}
.contact-address-block {
    padding: 48px 0;
    border-top: 1px solid rgba(0, 229, 255, 0.15);
}
.contact-address {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}
.contact-address strong { color: var(--cyan); }

/* Nav active state */
.nav-links li a.active {
    color: var(--cyan);
    border-bottom: 1px solid var(--cyan);
}

/* Utility */
.link {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}
.link:hover { border-bottom-color: var(--cyan); }
.muted { color: rgba(255, 255, 255, 0.55); font-size: 14px; }
.muted a { color: rgba(0, 229, 255, 0.8); }
.center { text-align: center; }
.section-footer { margin-top: 48px; }
.section-footer.center { text-align: center; }
.price-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    font-style: italic;
}

