/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    color: #e8e8e8;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* CSS Variables for n8n-inspired color scheme */
:root {
    --primary-color: #ff6d5a;
    --primary-dark: #ff4d3b;
    --text-primary: #f0f0f0;
    --text-secondary: #9a9a9a;
    --background-primary: #0a0a0a;
    --background-secondary: #111111;
    --border-color: #1e1e1e;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.6);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --electric-blue: #6b8cff;
    --blue-soft: rgba(84, 120, 255, 0.18);
}

/* Navigation */
/* Minimal header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
}

.reel-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.reel-button:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.play-icon { font-size: 0.8rem; }

.nav-logo {
    display: flex;
    flex-direction: column;
}

/* Brand logo top-left */
.brand { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; }
.site-logo { height: 44px; width: auto; display: block; filter: drop-shadow(0 0 10px var(--blue-soft)); }

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

/* Minimal hero */
.hero { min-height: 100vh; display: grid; place-items: center; padding: 0 2rem; }
.hero--minimal { text-align: center; }
.display { font-size: clamp(2rem, 7vw, 6.8rem); font-weight: 800; letter-spacing: -0.01em; line-height: 0.9; color: var(--text-primary); }
.display .line { display: block; white-space: nowrap; }
/* tighten gap between hero lines */
.display .line + .line { margin-top: -0.05em; }
/* About hero tag line */
/* hero-tag removed */

/* Poster typography additions */
:root { --accent-cyan: #42e8ff; --accent-green: #27ff9a; }
.hero { position: relative; }
.hero .display { font-family: 'Montserrat', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; text-transform: uppercase; letter-spacing: 0.02em; max-width: none; width: 100%; margin: 0 auto; padding-left: 0; padding-right: 0; text-align: center; overflow: visible; }
.line-primary { font-weight: 800; filter: drop-shadow(0 4px 20px rgba(0,0,0,.35)); }
.line-accent-red { 
    background: linear-gradient(180deg, #ffe0dc 0%, #ff3b2e 100%);
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    text-shadow: 0 0 22px rgba(255, 80, 60, 0.55);
    font-size: 1.08em;
}

.line-accent-green {
    background: linear-gradient(180deg, #e2fff8 0%, #7affc8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 22px rgba(39, 255, 154, 0.45);
    font-size: 1.28em;
}
.line-secondary { font-weight: 600; }
.line-with .with { opacity: 0.9; font-weight: 600; font-size: 0.6em; letter-spacing: 0.06em; }
.line-with .n8n { color: var(--accent-cyan); font-weight: 700; letter-spacing: 0.04em; }

/* Gradient text and soft glow */
.hero .display .line { background: linear-gradient(180deg, #ffffff 0%, #bfe4ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; padding: 0 .3em; overflow: visible; }
.line-secondary .with { background: none; color: var(--text-primary); }
.line-secondary .n8n { background: linear-gradient(180deg, #e2fff8 0%, #7affc8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 18px rgba(39,255,154,0.35); }

/* Background: dark to deep blue with faint curved lines */
.hero-bg { position: absolute; inset: 0; background: radial-gradient(1200px 400px at 15% 35%, rgba(84,120,255,0.50), transparent 60%), radial-gradient(900px 360px at 65% 22%, rgba(84,120,255,0.35), transparent 60%), radial-gradient(1100px 360px at 50% 95%, rgba(84,120,255,0.28), transparent 60%), linear-gradient(180deg, #0a0f1a 0%, #05080f 100%); filter: saturate(120%); z-index: -1; }
.hero-bg::before, .hero-bg::after { content: ''; position: absolute; inset: 0; background: none; pointer-events: none; }
/* faint curved abstract lines */
.hero-bg::before { background-image: radial-gradient(1000px 300px at 10% 20%, rgba(66,232,255,0.05), transparent 60%), radial-gradient(900px 260px at 80% 70%, rgba(39,255,154,0.04), transparent 60%); filter: blur(8px); }
.hero-bg::after { mask-image: repeating-radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px); -webkit-mask-image: repeating-radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px); background: linear-gradient(90deg, rgba(66,232,255,0.06), rgba(122,255,200,0.06)); opacity: .18; transform: skewY(-8deg); }

/* Minimal drop shadow for depth around text container */
.hero .display { text-shadow: 0 2px 16px rgba(0,0,0,.35); }

/* Balance spacing */
.hero--minimal { text-align: center; }
.hero .display .line { letter-spacing: 0.02em; }

/* Roc Grotesk fallback usage */
.jv-heading { font-family: "roc-grotesk-variable", system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif; }
.jv-font-bold { font-variation-settings: 'wdth' 140, 'wght' 500; }

.social { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 2rem; }
.social-link { color: var(--text-secondary); text-decoration: none; transition: var(--transition); }
.social-link:hover { color: var(--text-primary); }

/* Play overlay */
/* Intro line animations */
.hero-animated .line { opacity: 0; transform: translateY(120%); animation: lineIn .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-animated .line:nth-child(2) { animation-delay: .08s; }
.hero-animated .line:nth-child(3) { animation-delay: .16s; }

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero background motion (placeholder gradient) */
.hero-bg { position: absolute; inset: 0; background: radial-gradient(1200px 400px at 15% 35%, rgba(84,120,255,0.50), transparent 60%), radial-gradient(900px 360px at 65% 22%, rgba(84,120,255,0.35), transparent 60%), linear-gradient(#0b0b0b, #0a0a0a); filter: saturate(120%); z-index: -1; }

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.workflow-preview {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.node-connection {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--background-primary);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    animation: nodeFloat 3s ease-in-out infinite;
}

.node:nth-child(2) {
    animation-delay: -1s;
}

.node:nth-child(4) {
    animation-delay: -2s;
}

.node-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.node span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.connection-line {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
}

.connection-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    position: relative;
    border-radius: 1px;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--primary-color);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About page refinements */
.team { margin-top: 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.team-card { background: var(--background-secondary); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.25rem; box-shadow: var(--shadow-light); display: flex; flex-direction: column; }
.team-name { font-weight: 700; color: var(--text-primary); font-size: 1.35rem; }
.team-role { color: var(--text-secondary); margin-bottom: .5rem; }
.team-bio { color: var(--text-secondary); line-height: 1.7; }
.team-actions { margin-top: auto; padding-top: 1rem; }
.team-actions .btn-secondary { 
  background: linear-gradient(180deg, rgba(84,120,255,0.18) 0%, rgba(122,255,200,0.16) 100%);
  border: 1.5px solid var(--border-color);
  color: var(--text-primary);
}
.team-actions .btn-secondary:hover {
  border-color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(84,120,255,0.18);
}

.how { padding-top: 4rem; padding-bottom: 5rem; }
.how .section-header { margin-bottom: 2rem; }
.about-content { grid-template-columns: 1.4fr .9fr; gap: 2rem; }
.about-description { margin-bottom: 1.5rem; }
.about-stats { position: sticky; top: 88px; align-self: start; }
.stat-item + .stat-item { margin-top: 1rem; }

@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; }
  .about-stats { position: static; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Selected Workflows */
.selected { padding: 6rem 2rem 3rem; }
.selected-header { max-width: 1200px; margin: 0 auto 2rem; color: var(--text-secondary); }

/* Stacked workflow sections */
.about { position: relative; padding: 5rem 2rem 3rem; }
.about-inner { max-width: 980px; margin: 0 auto; text-align: center; position: relative; background: var(--background-secondary); border: 1px solid var(--border-color); border-radius: 16px; padding: 4rem 3.5rem; overflow: hidden; box-shadow: 0 0 44px var(--blue-soft); transform: translateY(16px); opacity: 0; transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s ease; }
.about .about-inner.is-visible { transform: translateY(0); opacity: 1; }
.about-glow { position: absolute; inset: -10%; background: radial-gradient(800px 300px at 18% 30%, var(--blue-soft), transparent 60%), radial-gradient(700px 280px at 80% 70%, var(--blue-soft), transparent 60%); filter: blur(14px); z-index: 0; }
.about-title { font-size: clamp(2.2rem, 6vw, 3.4rem); color: var(--text-primary); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.about-text { color: var(--text-secondary); font-size: 1.15rem; max-width: 68ch; margin: 0 auto 1.6rem; position: relative; z-index: 1; line-height: 1.85; }
.about-points { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; position: relative; z-index: 1; }
.about-pill { border: 1px solid var(--border-color); color: var(--text-secondary); padding: .4rem .8rem; border-radius: 999px; font-size: .9rem; background: rgba(255,255,255,0.02); }

.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.workflow-stack { height: auto; scroll-snap-type: y mandatory; }
.workflow-section { position: relative; min-height: 100vh; display: grid; place-items: center; padding: 4rem 1rem; scroll-snap-align: start; }
.workflow-inner { width: min(980px, 92vw); background: var(--background-secondary); border: 1px solid var(--border-color); border-radius: 16px; padding: 3rem; box-shadow: var(--shadow-medium), 0 0 44px var(--blue-soft); transform: translateY(24px) scale(.98); opacity: 0; transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s ease; }
.workflow-section.is-visible .workflow-inner { transform: translateY(0) scale(1); opacity: 1; }
.wf-title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--text-primary); margin: .5rem 0 1rem; }
.wf-desc { color: var(--text-secondary); max-width: 70ch; }
.wf-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.wf-badges span { border: 1px solid var(--border-color); color: var(--text-secondary); padding: .35rem .7rem; border-radius: 999px; font-size: .85rem; }
.wf-tag { position: absolute; top: -12px; left: 24px; background: var(--background-primary); color: var(--text-secondary); border: 1px solid var(--border-color); border-radius: 999px; padding: .2rem .6rem; font-size: .75rem; letter-spacing: .08em; }

/* Media blocks */
.wf-media { margin-top: 1.5rem; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; background: #0b0b0b; }
.wf-media img { display: block; width: 100%; height: auto; cursor: zoom-in; transition: transform .3s ease; }
.wf-media img:hover { transform: scale(1.01); }
.wf-media--two { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; border-radius: 12px; overflow: hidden; }
.wf-media--two img { width: 100%; height: auto; object-fit: cover; }

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.skills h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.skill-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.skill-icon {
    font-size: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    background: var(--background-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-primary);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-light);
    color: var(--primary-color);
}

.contact-icon {
    font-size: 1.5rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 109, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Reel modal */
.reel-modal { position: fixed; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,0.75); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.reel-modal.show { opacity: 1; pointer-events: auto; }
.reel-content { width: min(960px, 92vw); aspect-ratio: 16/9; background: #000; border: 1px solid var(--border-color); border-radius: 12px; box-shadow: var(--shadow-heavy); overflow: hidden; position: relative; }
.reel-close { position: absolute; top: 1.2rem; right: 1.2rem; background: transparent; border: 1px solid var(--border-color); color: var(--text-primary); border-radius: 999px; width: 36px; height: 36px; cursor: pointer; }

video#heroVideo { width: 100%; height: 100%; object-fit: cover; }

/* Workflow CTA */
.wf-cta { margin-top: 1.25rem; }
.wf-cta .btn-primary { display: inline-block; padding: .8rem 1.4rem; border-radius: 999px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
.wf-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); background: var(--primary-dark); }

.btn-secondary { display: inline-block; padding: .7rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 600; border: 1px solid var(--border-color); color: var(--text-primary); background: transparent; margin: 0 .25rem; }
.btn-secondary:hover { border-color: var(--text-primary); }

.call-actions { display: flex; gap: .5rem; justify-content: center; margin-bottom: .75rem; }
.call-email { margin-top: .25rem; display: flex; justify-content: center; }
.call-email .btn-primary { padding: .85rem 1.6rem; }

/* Icon styling */
.icon { font-size: 1.15rem; line-height: 1; color: var(--electric-blue); margin-right: .45rem; display: inline-block; filter: drop-shadow(0 0 10px var(--blue-soft)); }
.btn-secondary .icon { font-size: 1.2rem; }
.btn-primary .icon { font-size: 1.2rem; }

/* Call modal aesthetics */
.call-bg { position: absolute; inset: -10%; background: radial-gradient(600px 220px at 25% 30%, var(--blue-soft), transparent 60%), radial-gradient(640px 260px at 75% 70%, var(--blue-soft), transparent 60%); filter: blur(12px); pointer-events: none; }
.call-pills { display: flex; gap: .5rem; justify-content: center; margin: .5rem 0 1rem; }
.pill { border: 1px solid var(--border-color); color: var(--text-secondary); padding: .3rem .7rem; border-radius: 999px; font-size: .8rem; background: rgba(255,255,255,0.02); }
.call-note { color: var(--text-secondary); font-size: .85rem; margin-top: .75rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes miniNodeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .display { font-size: clamp(2.5rem, 16vw, 6rem); }
    .hero .display { transform: none; }
    .social { gap: 1.25rem; }
    .selected { padding: 4rem 1rem; }
    .about { padding: 3rem 1rem 1rem; }
}

/* Floating CTA */
.floating-cta { position: fixed; right: 20px; bottom: 20px; z-index: 1200; background: var(--primary-color); color: #fff; border: none; border-radius: 999px; padding: .9rem 1.2rem; font-weight: 700; cursor: pointer; box-shadow: var(--shadow-medium); transition: var(--transition); }
.floating-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* About poster typography */
.about-title.about-poster { 
    line-height: 1.15; 
    letter-spacing: 0.01em; 
    font-weight: 800; 
    background: linear-gradient(180deg, #ffffff 0%, #cfe8ff 100%); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
}
.about-title .about-em { 
    font-weight: 900; 
    background: linear-gradient(180deg, #e7f3ff 0%, #9fd4ff 100%); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
}

.about-body { margin: 1rem auto 1.25rem; max-width: 70ch; }
.about-body p { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: rgba(255,255,255,0.8); 
    margin: 0 0 0.9rem 0; 
    font-weight: 400; 
}
.text-accent { 
    background: linear-gradient(180deg, #e2fff8 0%, #7affc8 100%); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    font-weight: 700; 
}

.about-actions { display: none; }
.btn-ghost { 
    display: inline-block; 
    padding: .7rem 1.2rem; 
    border-radius: 999px; 
    text-decoration: none; 
    font-weight: 600; 
    border: 1px solid var(--border-color); 
    color: var(--text-primary); 
    background: transparent; 
    transition: var(--transition); 
}
.btn-ghost:hover { border-color: var(--text-primary); transform: translateY(-2px); box-shadow: var(--shadow-light); }

/* Align ghost outline visually using shadow */
.btn-ghost { box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.05); }

/* Ensure icon alignment */
.btn-ghost .icon { margin-right: .5rem; transform: translateY(1px); }

/* Tighten About actions spacing */
.about-actions .btn-primary { background: var(--primary-color); }
.about-actions .btn-primary:hover { background: var(--primary-dark); }

/* About background tune */
.about-inner { background: linear-gradient(180deg, #0a0f1a 0%, #05080f 100%); }

/* Ensure final hero-bg gradient wins */
.hero-bg { position: absolute; inset: 0; background: radial-gradient(1200px 400px at 15% 35%, rgba(84,120,255,0.50), transparent 60%), radial-gradient(900px 360px at 65% 22%, rgba(84,120,255,0.35), transparent 60%), linear-gradient(180deg, #0a0f1a 0%, #05080f 100%); filter: saturate(120%); z-index: -1; }

/* CTA Section */
.cta-section { padding: 3rem 2rem 6rem; position: relative; }
.cta-inner { width: min(980px, 92vw); margin: 0 auto; text-align: center; background: var(--background-secondary); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-medium), 0 0 44px var(--blue-soft); }
.cta-title { font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: .6rem; background: linear-gradient(180deg, #ffffff 0%, #cfe8ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-sub { color: var(--text-secondary); margin-bottom: 1rem; }
.cta-actions { display: flex; gap: .75rem; justify-content: center; }

/* Button normalization */
.btn-primary,
.btn-secondary,
.btn-ghost { height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 14px; font-weight: 700; line-height: 1; }

.btn-ghost { border: 1.5px solid var(--border-color); color: var(--text-primary); background: rgba(255,255,255,0.02); box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.05); }
.btn-ghost:hover { border-color: var(--text-primary); box-shadow: var(--shadow-light); transform: translateY(-2px); }

/* Ensure icon alignment */
.btn-ghost .icon { margin-right: .5rem; transform: translateY(1px); }

