/* ORBIT-1 DESIGN SYSTEM — Black & White, Geist Typography */
@font-face {
    font-family: 'Geist Sans';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/geist:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/geist-mono:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --border: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-muted: #737373;
    --text-muted-strong: #a3a3a3;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --font-headline: 'Geist Sans', system-ui, sans-serif;
    --font-label: 'Geist Mono', ui-monospace, monospace;
    --font-body: 'Geist Mono', ui-monospace, monospace;
    --container: 1200px;
    --nav-height: 72px;
    --gap-sm: 16px;    /* small internal gaps: label→title, icon→text, etc. */
    --gap-md: 24px;    /* medium gaps: between card elements, form groups */
    --gap-lg: 40px;    /* large gaps: between cards in a grid, list items */
    --section-pad: 96px; /* top/bottom padding on every section */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scrollbar-gutter: stable; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-muted); line-height: 1.2; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* NAVIGATION — Label & Nav style: Geist Mono, uppercase, 12px */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000; transition: all 0.3s ease; }
.nav.scrolled { background: rgba(0,0,0,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.nav-inner .nav-logo { justify-self: start; }
.nav-inner .nav-links { justify-self: center; }
.nav-inner .nav-cta,
.nav-inner .nav-toggle { grid-column: 3; justify-self: end; }
.nav-logo { display: flex; align-items: center; z-index: 10; }
.nav-logo-text { font-family: var(--font-label); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.0175rem; line-height: 1; }
@media (min-width: 769px) { .nav-logo-text { font-size: 1.75rem; } }
.nav-links { display: flex; gap: 36px; }
.nav-link { font-family: var(--font-label); font-size: 12px; font-weight: 400; color: var(--text-muted); transition: color 0.2s; letter-spacing: -0.0175rem; text-transform: uppercase; }
.nav-link:hover { color: var(--text-primary); }
.nav-link.active { color: var(--text-primary); }
.nav-cta { font-family: var(--font-label); font-size: 12px; font-weight: 500; padding: 10px 22px; border-radius: 8px; background: var(--text-primary); color: var(--bg); transition: all 0.3s; letter-spacing: -0.015rem; text-transform: uppercase; }
.nav-cta:hover { background: var(--text-muted-strong); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 10; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* GLASS CARDS & BUTTONS */
.glass-card { background: var(--glass-bg); border: 1px solid var(--border); border-radius: 16px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.3s ease; }
.glass-card:hover { border-color: var(--border-hover); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-label); font-size: 12px; font-weight: 500; padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.3s ease; letter-spacing: -0.015rem; text-decoration: none; text-transform: uppercase; }
.btn-primary { background: var(--text-primary); color: var(--bg); }
.btn-primary:hover { background: var(--text-muted-strong); transform: translateY(-2px); }
.btn-glass { background: var(--glass-bg); border: 1px solid var(--border); color: var(--text-primary); backdrop-filter: blur(12px); }
.btn-glass:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.06); }
.btn-lg { padding: 16px 36px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* TYPOGRAPHY */
.section-tag { display: inline-block; font-family: var(--font-label); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.0175rem; color: var(--text-muted); margin-bottom: var(--gap-sm); }
.section-title { font-family: var(--font-headline); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--text-primary); line-height: 1; margin-bottom: var(--gap-md); letter-spacing: -0.18rem; }
@media (max-width: 768px) { .section-title { letter-spacing: -0.16rem; } }
.section-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); max-width: 600px; line-height: 1.2; }
@media (min-width: 769px) { .section-desc { font-size: 16px; line-height: 1.2; } }
.section-header { text-align: center; margin-bottom: var(--gap-lg); }
.section-header + * { margin-top: 0; }
.section-header .section-title { margin-bottom: var(--gap-sm); }
.section-header .section-desc { margin: 0 auto; }
.dot-accent { color: var(--text-primary); }
.gradient-text { background: linear-gradient(135deg, #fff 0%, #a3a3a3 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Section spacing: consistent padding on every content section */
.about-mission, .about-values, .showcase, .stats-bar, .features, .how-it-works, .cta-section, .contact-section,
.templates-section, .pricing-section, .about-tech, .about-timeline, .legal-content {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
}
.footer {
    padding-top: var(--section-pad);
    padding-bottom: 40px;
    border-top: 1px solid var(--border);
}

/* HERO — Headline: Geist Sans 40/60/72px, tight tracking, line-height 100%; Body: Geist Mono */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-height) + 80px) 24px 96px; gap: 60px; background: var(--bg); }
.hero .hero-glow-left,
.hero .hero-glow-right,
.hero .hero-glow-top { position: absolute; pointer-events: none; }
.hero-home { background-color: var(--bg); }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-label); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.0175rem; color: var(--text-muted); padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border); background: var(--glass-bg); margin-bottom: var(--gap-md); }
.badge-dot { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero-title { font-family: var(--font-headline); font-size: 40px; font-weight: 400; color: var(--text-primary); line-height: 1; margin-bottom: var(--gap-md); letter-spacing: -0.16rem; }
@media (min-width: 769px) { .hero-title { font-size: 60px; letter-spacing: -0.18rem; } }
@media (min-width: 1200px) { .hero-title { font-size: 72px; } }
.hero-subtitle { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.2; margin-bottom: var(--gap-lg); max-width: 500px; }
@media (min-width: 769px) { .hero-subtitle { font-size: 16px; } }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.platform-badges { display: flex; gap: 10px; }
.platform-badge { font-family: var(--font-label); font-size: 12px; padding: 8px 14px; border-radius: 8px; background: var(--glass-bg); border: 1px solid var(--border); color: var(--text-muted); text-transform: uppercase; letter-spacing: -0.015rem; }

/* HERO DEVICE MOCKUP */
.hero-visual { position: relative; z-index: 1; flex-shrink: 0; }
.hero-device { position: relative; }
.device-frame { width: 280px; height: 560px; background: var(--surface); border-radius: 36px; border: 1px solid var(--border); overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.device-screen { height: 100%; padding: 12px 16px; display: flex; flex-direction: column; background: var(--surface); }
.device-status-bar { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 500; color: var(--text-primary); padding: 4px 8px 12px; font-family: var(--font-label); }
.status-icons { display: flex; align-items: center; gap: 6px; font-size: 10px; }
.signal-bars { display: flex; align-items: flex-end; gap: 1px; }
.signal-bars span { width: 3px; background: var(--text-primary); border-radius: 1px; }
.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 6px; }
.signal-bars span:nth-child(3) { height: 8px; }
.signal-bars span:nth-child(4) { height: 10px; }
.device-app { flex: 1; display: flex; flex-direction: column; }
.app-header { display: flex; align-items: center; gap: 8px; padding: 8px 0 16px; font-family: var(--font-label); font-size: 12px; font-weight: 500; color: var(--text-primary); text-transform: uppercase; }
.app-logo-small { color: var(--text-muted); font-size: 1rem; }
.transcript-preview { flex: 1; padding: 12px 0; }
.transcript-line { font-family: var(--font-body); font-size: 12px; line-height: 1.2; margin-bottom: 8px; }
.transcript-line.final { color: var(--text-primary); }
.transcript-line.interim { color: var(--text-muted); }
.transcript-cursor { display: inline-block; width: 2px; height: 14px; background: var(--text-primary); animation: blink 1s step-end infinite; vertical-align: middle; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.record-btn-preview { width: 64px; height: 64px; margin: 16px auto; position: relative; display: flex; align-items: center; justify-content: center; }
.record-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--text-muted); animation: record-pulse 2s ease-in-out infinite; }
@keyframes record-pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 0.2; } }
.record-core { width: 40px; height: 40px; border-radius: 50%; background: var(--text-primary); }
.waveform-preview { display: flex; align-items: center; justify-content: center; gap: 3px; height: 30px; padding: 8px 0; }
.waveform-preview span { width: 3px; background: var(--text-muted); border-radius: 2px; animation: wave 1.2s ease-in-out infinite; }
.waveform-preview span:nth-child(odd) { animation-delay: 0s; }
.waveform-preview span:nth-child(even) { animation-delay: 0.3s; }
.waveform-preview span:nth-child(3n) { animation-delay: 0.6s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

/* STATS BAR */
.stats-bar { position: relative; z-index: 1; }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 40px; padding: var(--gap-lg) 60px; background: var(--glass-bg); border: 1px solid var(--border); border-radius: 20px; backdrop-filter: blur(12px); flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { font-family: var(--font-headline); font-size: 2rem; font-weight: 400; color: var(--text-primary); }
.stat-unit { font-size: 1rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.stat-label { font-family: var(--font-label); font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: -0.015rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* FEATURES SECTION */
.features { position: relative; z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { padding: var(--gap-lg); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--border); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--gap-md); }
.icon-orange, .icon-blue { background: var(--glass-bg); color: var(--text-primary); border: 1px solid var(--border); }
.feature-card h3 { font-family: var(--font-headline); font-size: 1.2rem; font-weight: 400; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.feature-card p { font-family: var(--font-body); font-size: 14px; line-height: 1.2; color: var(--text-muted); }
@media (min-width: 769px) { .feature-card p { font-size: 16px; } }

/* PRODUCT SHOWCASE */
.showcase { position: relative; z-index: 1; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.showcase-content .section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.showcase-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.2; margin-bottom: var(--gap-md); }
@media (min-width: 769px) { .showcase-desc { font-size: 16px; } }
.showcase-features { list-style: none; margin-bottom: var(--gap-lg); }
.showcase-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.2; }
@media (min-width: 769px) { .showcase-features li { font-size: 16px; } }
.check-icon { color: var(--text-primary); font-size: 0.8rem; }
.showcase-cards { display: flex; flex-direction: column; gap: var(--gap-md); }
.template-card { display: flex; align-items: center; gap: 16px; padding: 18px 22px; transition: all 0.3s; }
.template-card:hover { border-color: var(--border-hover); transform: translateX(4px); }
.template-icon { font-size: 1.3rem; flex-shrink: 0; color: var(--text-muted); }
.template-number { font-family: var(--font-label); font-weight: 600; color: var(--text-primary); min-width: 1.5em; text-align: center; }
.template-info h4 { font-family: var(--font-label); font-size: 12px; font-weight: 500; color: var(--text-primary); text-transform: uppercase; letter-spacing: -0.015rem; }
.template-info p { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); }

/* HOW IT WORKS */
.how-it-works { position: relative; z-index: 1; }
.steps-grid { display: flex; align-items: stretch; gap: var(--gap-md); justify-content: center; }
.step-card { flex: 1; max-width: 320px; background: var(--glass-bg); border: 1px solid var(--border); border-radius: 16px; padding: var(--gap-lg) 28px; backdrop-filter: blur(12px); display: flex; flex-direction: column; }
.step-number { font-family: var(--font-label); font-size: 3rem; font-weight: 400; color: var(--text-primary); line-height: 1; margin-bottom: var(--gap-md); letter-spacing: -0.015rem; }
.step-content h3 { font-family: var(--font-headline); font-size: 1.3rem; font-weight: 400; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.step-content p { font-family: var(--font-body); font-size: 14px; line-height: 1.2; color: var(--text-muted); margin-bottom: var(--gap-md); }
@media (min-width: 769px) { .step-content p { font-size: 16px; } }
.step-visual { margin-top: auto; padding: var(--gap-md); background: var(--surface); border-radius: 10px; border: 1px solid var(--border); }
.step-waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 40px; }
.step-waveform span { width: 4px; height: 100%; background: var(--text-muted); border-radius: 2px; animation: wave 1.5s ease-in-out infinite; }
.step-waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.step-waveform span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.step-waveform span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.step-waveform span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.step-waveform span:nth-child(5) { height: 80%; animation-delay: 0.4s; }
.step-waveform span:nth-child(6) { height: 40%; animation-delay: 0.5s; }
.step-waveform span:nth-child(7) { height: 70%; animation-delay: 0.6s; }
.step-waveform span:nth-child(8) { height: 35%; animation-delay: 0.7s; }
.step-text-appear span { font-family: var(--font-body); font-size: 14px; color: var(--text-primary); overflow: hidden; display: inline-block; animation: typing 3s steps(20) infinite; white-space: nowrap; border-right: 2px solid var(--text-primary); max-width: 100%; }
@keyframes typing { 0% { width: 0; } 50%, 100% { width: 100%; } }
.step-structured { display: flex; flex-direction: column; gap: 6px; }
.struct-item { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); padding: 6px 10px; background: var(--glass-bg); border-radius: 6px; border-left: 2px solid var(--text-muted); }
.step-connector { display: flex; align-items: center; flex-shrink: 0; color: var(--text-muted); }

/* CTA SECTION */
.cta-section { position: relative; z-index: 1; }
.cta-card { text-align: center; padding: var(--gap-lg) 40px; position: relative; overflow: hidden; }
.cta-glow { display: none; }
.cta-card h2 { font-family: var(--font-headline); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-primary); margin-bottom: var(--gap-md); letter-spacing: -0.18rem; line-height: 1; }
.cta-card p { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); margin-bottom: var(--gap-lg); max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.2; }
@media (min-width: 769px) { .cta-card p { font-size: 16px; } }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* FOOTER */
.footer { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: var(--gap-lg); }
.footer-logo-text { font-family: var(--font-label); font-size: 1.25rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.0175rem; line-height: 1; display: block; margin-bottom: var(--gap-md); }
.footer-brand p { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); max-width: 280px; line-height: 1.2; }
.footer-links h4 { font-family: var(--font-label); font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: var(--gap-md); text-transform: uppercase; letter-spacing: -0.0175rem; }
.footer-links a { display: block; font-family: var(--font-body); font-size: 14px; color: var(--text-muted); padding: 6px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--gap-lg); border-top: 1px solid var(--border); font-family: var(--font-body); font-size: 12px; color: var(--text-muted); }
.footer-tagline { font-style: italic; }

/* ECHO PAGE */
.echo-hero .hero-title { font-size: clamp(3rem, 6vw, 5rem); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--gap-md); }
.feature-row-content h3 { font-family: var(--font-headline); font-size: 1.5rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.feature-row-content p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-bottom: var(--gap-md); }
.feature-specs { display: flex; gap: 10px; flex-wrap: wrap; }
.spec { font-family: var(--font-label); font-size: 12px; padding: 6px 14px; border-radius: 100px; background: var(--glass-bg); border: 1px solid var(--border); color: var(--text-muted); letter-spacing: -0.015rem; text-transform: uppercase; }
.transcript-demo { padding: 0; overflow: hidden; }
.demo-header { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot.red { background: var(--text-muted); }
.demo-dot.yellow { background: var(--text-muted-strong); }
.demo-dot.green { background: var(--text-primary); }
.demo-title { font-family: var(--font-label); font-size: 12px; color: var(--text-muted); margin-left: 8px; text-transform: uppercase; }
.demo-body { padding: 20px 18px; }
.demo-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: var(--gap-md); }
.final-text { color: var(--text-primary); }
.interim-text { color: var(--text-muted); }
.blink-cursor { color: var(--text-primary); animation: blink 1s step-end infinite; }
.demo-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-top: 1px solid var(--border); font-size: 0.75rem; }
.rec-indicator { color: var(--text-primary); font-weight: 600; animation: pulse-dot 1.5s ease-in-out infinite; }
.demo-time { color: var(--text-muted); font-family: var(--font-label); }
.template-detail-card { padding: var(--gap-lg); }
.tdc-header { display: flex; align-items: center; gap: 10px; margin-bottom: var(--gap-md); }
.tdc-icon { font-size: 1.2rem; }
.tdc-name { font-family: var(--font-headline); font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.tdc-section { margin-bottom: var(--gap-md); }
.tdc-label { display: block; font-family: var(--font-label); font-size: 12px; text-transform: uppercase; letter-spacing: -0.0175rem; color: var(--text-muted); margin-bottom: 6px; }
.tdc-value { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.tdc-list { display: flex; flex-direction: column; gap: 4px; }
.tdc-list span { font-size: 0.85rem; color: var(--text-muted); padding: 4px 0; }
.offline-demo { padding: var(--gap-lg); }
.offline-status { display: flex; align-items: center; gap: 12px; margin-bottom: var(--gap-md); color: var(--text-primary); font-family: var(--font-label); font-size: 12px; font-weight: 500; text-transform: uppercase; }
.sync-queue { display: flex; flex-direction: column; gap: var(--gap-md); }
.sync-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--surface); border-radius: 10px; border: 1px solid var(--border); }
.sync-name { font-size: 0.9rem; color: var(--text-primary); }
.sync-badge { font-size: 12px; font-family: var(--font-label); padding: 4px 12px; border-radius: 100px; font-weight: 500; text-transform: uppercase; }
.sync-badge.pending { background: var(--glass-bg); color: var(--text-muted); border: 1px solid var(--border); }
.sync-badge.synced { background: var(--glass-bg); color: var(--text-primary); border: 1px solid var(--border); }

/* TEMPLATES SECTION */
.templates-section { position: relative; z-index: 1; }
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.template-showcase-card { padding: var(--gap-lg); }
.tsc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: var(--gap-md); }
.template-showcase-card h3 { font-family: var(--font-headline); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.template-showcase-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); margin-bottom: var(--gap-md); }
.tsc-output { display: flex; flex-wrap: wrap; gap: 6px; }
.tsc-output span { font-family: var(--font-label); font-size: 12px; padding: 4px 10px; border-radius: 6px; background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); letter-spacing: -0.015rem; }
.custom-card { border-style: dashed; border-color: var(--border); }

/* PRICING */
.pricing-section { position: relative; z-index: 1; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { padding: var(--gap-lg) 32px; position: relative; }
.pricing-card.featured { border-color: var(--border-hover); box-shadow: 0 0 40px rgba(255,255,255,0.03); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--font-label); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.0175rem; padding: 6px 16px; border-radius: 100px; background: var(--text-primary); color: var(--bg); }
.pricing-tier { font-family: var(--font-headline); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.pricing-price { font-family: var(--font-headline); font-size: 3rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--gap-md); }
.pricing-features { list-style: none; margin-bottom: var(--gap-lg); }
.pricing-features li { padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); font-family: var(--font-body); line-height: 1.2; }
.pricing-features li:last-child { border-bottom: none; }

/* ABOUT PAGE */
.about-hero { text-align: center; min-height: 70vh; }
.about-hero .hero-content { margin: 0 auto; width: 100%; }
.about-hero .hero-subtitle { margin-left: auto; margin-right: auto; }
.about-mission { position: relative; z-index: 1; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 960px; margin: 0 auto; }
.mission-content p { font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); margin-bottom: var(--gap-md); }
.mission-content > *:last-child { margin-bottom: 0; }
.mission-visual { display: flex; flex-direction: column; gap: var(--gap-md); }
.mission-stat-card { padding: var(--gap-lg); display: flex; align-items: center; gap: 20px; }
.mission-stat-card.highlight { border-color: var(--border-hover); }
.mission-stat { display: flex; align-items: baseline; gap: 4px; }
.ms-value { font-family: var(--font-headline); font-size: 2.5rem; font-weight: 700; color: var(--text-primary); }
.ms-unit { font-family: var(--font-headline); font-size: 1.2rem; font-weight: 400; color: var(--text-muted); }
.ms-label { font-size: 0.9rem; color: var(--text-muted); }

/* VALUES */
.about-values { position: relative; z-index: 1; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); max-width: 960px; margin: 0 auto; }
.value-card { padding: var(--gap-lg); }
.value-number { font-family: var(--font-label); font-size: 2rem; font-weight: 400; color: var(--text-primary); margin-bottom: var(--gap-md); letter-spacing: -0.015rem; }
.value-card h3 { font-family: var(--font-headline); font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-sm); }
.value-card p { font-size: 0.95rem; line-height: 1.65; color: var(--text-muted); }

/* TECH STACK */
.about-tech { position: relative; z-index: 1; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tech-card { padding: var(--gap-lg); }
.tech-card h4 { font-family: var(--font-headline); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-md); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tags span { font-family: var(--font-body); font-size: 12px; padding: 6px 12px; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); }

/* TIMELINE */
.about-timeline { position: relative; z-index: 1; }
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: var(--gap-lg); }
.timeline-marker { position: absolute; left: -33px; top: 24px; width: 12px; height: 12px; border-radius: 50%; background: var(--text-muted); border: 2px solid var(--bg); z-index: 1; }
.timeline-marker.active { background: var(--text-primary); }
.timeline-content { padding: var(--gap-lg); }
.timeline-phase { font-family: var(--font-label); font-size: 12px; text-transform: uppercase; letter-spacing: -0.0175rem; color: var(--text-muted); }
.timeline-content h4 { font-family: var(--font-headline); font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin: var(--gap-sm) 0; }
.timeline-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* CONTACT PAGE */
.contact-hero { text-align: center; min-height: 60vh; }
.contact-hero .hero-content { margin: 0 auto; width: 100%; max-width: 700px; }
.contact-hero .hero-subtitle { margin-left: auto; margin-right: auto; }
.contact-section { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.contact-form-card { padding: var(--gap-lg); }
.contact-form-card h3 { font-family: var(--font-headline); font-size: 1.3rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-lg); }
.form-group { margin-bottom: var(--gap-md); }
.form-group label { display: block; font-family: var(--font-label); font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: -0.015rem; }
.form-input { width: 100%; padding: 14px 18px; font-family: var(--font-body); font-size: 14px; color: var(--text-primary); background: var(--surface); border: 1px solid var(--border); border-radius: 10px; outline: none; transition: all 0.3s; }
.form-input:focus { border-color: var(--border-hover); box-shadow: 0 0 0 3px rgba(255,255,255,0.05); }
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select.form-input option { background: var(--surface); color: var(--text-primary); }
.form-success { display: flex; flex-direction: column; align-items: center; gap: var(--gap-md); text-align: center; padding: var(--gap-lg) 0; }
.success-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--text-primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--bg); }
.form-success p { font-size: 1rem; color: var(--text-muted); }
.contact-info { display: flex; flex-direction: column; gap: var(--gap-md); }
.contact-info-card { padding: var(--gap-lg); text-align: center; }
.ci-icon { font-size: 1.5rem; margin-bottom: 10px; }
.contact-info-card h4 { font-family: var(--font-headline); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-muted); }
.faq-card { padding: var(--gap-lg); }
.faq-card h4 { font-family: var(--font-headline); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--gap-lg); }
.faq-item { margin-bottom: var(--gap-md); padding-bottom: var(--gap-md); border-bottom: 1px solid var(--border); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-item strong { display: block; font-family: var(--font-headline); font-size: 0.9rem; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }
.faq-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* PRIVACY PAGE */
.privacy-hero { text-align: center; min-height: 40vh; }
.privacy-hero .hero-content { margin: 0 auto; }
.legal-content { position: relative; z-index: 1; }
.legal-card { max-width: 800px; margin: 0 auto; padding: var(--gap-lg); }
.legal-body h2 { font-family: var(--font-headline); font-size: 1.3rem; font-weight: 600; color: var(--text-primary); margin: var(--gap-lg) 0 var(--gap-sm); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: var(--gap-md); }
.legal-body a { color: var(--text-primary); text-decoration: underline; }

/* ANIMATIONS */
.animate-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.animate-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-scroll.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .templates-grid, .pricing-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid, .mission-grid, .feature-row { grid-template-columns: 1fr; gap: var(--gap-lg); }
    .feature-row { margin-bottom: var(--gap-lg); }
    .feature-row.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { flex-direction: column; text-align: center; min-height: auto; padding-top: calc(var(--nav-height) + 60px); padding-bottom: 80px; }
    .hero-content { max-width: 100% !important; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: var(--nav-height); right: 0; width: 220px; background: var(--bg); flex-direction: column; align-items: flex-end; justify-content: flex-start; gap: 0; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 12px; padding: 12px 0; width: 100%; text-align: right; border-bottom: 1px solid var(--border); }
    .nav-link:last-child { border-bottom: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .features-grid, .values-grid, .templates-grid, .pricing-grid, .tech-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); }
    .stats-grid { gap: 20px; padding: var(--gap-lg); }
    .stat-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-title { font-size: 40px !important; letter-spacing: -0.16rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .device-frame { width: 240px; height: 480px; }
    :root { --section-pad: 64px; }
    .cta-card { padding: var(--gap-lg) 24px; }
}