/* ========================================
   1099 Pilot - Website Styles
   ======================================== */

:root {
    --bg: #0b0e13;
    --bg-alt: #0f1319;
    --bg-card: #161b24;
    --text: #eef0f5;
    --text-secondary: #8b95a5;
    --text-tertiary: #5a6373;
    --border: #1e2533;
    --accent: #3ec9a0;
    --accent-light: #132e26;
    --accent-dark: #2ba87e;
    --gradient-start: #3ec9a0;
    --gradient-end: #5ac8fa;
    --red: #ff453a;
    --green: #30d158;
    --orange: #ff9f0a;
    --blue: #0a84ff;
    --purple: #bf5af2;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.5);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.6);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --nav-height: 72px;
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,159,107,.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44,159,107,.45);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    padding: 12px 26px;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 16px; }

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 100;
    transition: all .3s ease;
}
.nav.scrolled {
    background: rgba(11,14,19,.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
}
.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600 !important;
    transition: all .2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
}
.mobile-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 14px 24px !important;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* ---- Hero ---- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-gradient {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(62,201,160,.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .25;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions { margin-bottom: 24px; }
.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: var(--text-secondary);
}
.hero-stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; }

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-mockup { position: relative; }
.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--bg-card);
    border-radius: 40px;
    box-shadow: var(--shadow-xl), inset 0 0 0 2px var(--border);
    overflow: hidden;
    position: relative;
}
.phone-screen {
    height: 100%;
    padding: 16px;
    background: var(--bg-alt);
    display: flex;
    flex-direction: column;
}
.mock-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: .7rem;
    font-weight: 600;
    padding: 8px 8px 12px;
    color: var(--text-secondary);
}
.mock-app { flex: 1; }
.mock-greeting {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.mock-sub-greeting {
    font-size: .65rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.mock-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}
.mock-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.mock-quarter {
    font-size: .7rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.mock-badge {
    font-size: .6rem;
    font-weight: 600;
    background: var(--green);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
}
.mock-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.02em;
}
.mock-label {
    font-size: .65rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.mock-progress {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 6px;
    overflow: hidden;
}
.mock-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--gradient-end));
    border-radius: 3px;
    transition: width 1.5s ease;
}
.mock-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: .55rem;
    color: var(--text-tertiary);
}
.mock-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.mock-stat {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
}
.mock-stat-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.mock-stat-icon.green { background: rgba(52,199,89,.15); color: var(--green); }
.mock-stat-icon.red { background: rgba(255,59,48,.15); color: var(--red); }
.mock-stat-value { font-size: .85rem; font-weight: 700; }
.mock-stat-label { font-size: .55rem; color: var(--text-secondary); }

/* Floating elements */
.hero-float {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}
.hero-float-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
    background: rgba(255,215,0,.15);
    padding: 12px;
    border-radius: 14px;
}
.hero-float-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
    background: rgba(52,199,89,.15);
    padding: 12px;
    border-radius: 14px;
}
.hero-float-3 {
    top: 30%;
    left: -5%;
    animation-delay: 4s;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    background: var(--accent-light);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 80px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero-sub { margin: 0 auto 28px; }
    .hero-visual { margin-top: 40px; }
    .hero-float { display: none; }
    .phone-frame { width: 240px; height: 500px; }
}

/* ---- Trust ---- */
.trust {
    padding: 48px 0;
    text-align: center;
}
.trust-label {
    font-size: .8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-logos span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-tertiary);
    opacity: .5;
}

/* ---- Problem / Solution ---- */
.problem {
    padding: 80px 0;
    background: var(--bg-alt);
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.problem-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.problem-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.problem-card li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: .95rem;
}
.problem-bad { background: rgba(255,59,48,.03); }
.problem-bad li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}
.problem-good {
    background: rgba(52,199,89,.03);
    border-color: rgba(52,199,89,.2);
}
.problem-good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
@media (max-width: 768px) {
    .problem-grid { grid-template-columns: 1fr; }
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 16px;
    margin-bottom: 16px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .section-header h2 { font-size: 1.8rem; }
}

/* ---- Features ---- */
.features {
    padding: 100px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all .3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-highlight {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(44,159,107,.05), rgba(90,200,250,.05));
    border-color: rgba(44,159,107,.15);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ---- How It Works ---- */
.how {
    padding: 100px 0;
    background: var(--bg-alt);
}
.steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}
.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.step-content p {
    color: var(--text-secondary);
    font-size: .95rem;
}
.step-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    margin: 8px 0 8px 23px;
}

/* ---- Built For ---- */
.built-for {
    padding: 100px 0;
}
.built-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.built-for-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    text-align: center;
    transition: all .3s ease;
}
.built-for-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.built-for-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.built-for-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.built-for-card p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .built-for-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .built-for-grid { grid-template-columns: 1fr; }
}

/* ---- Pricing ---- */
.pricing {
    padding: 100px 0;
    background: var(--bg-alt);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.price-card {
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    text-align: center;
}
.price-card-popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.price-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--accent-dark));
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.price-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.price-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 4px;
}
.price-amount span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.price-period {
    font-size: .85rem;
    color: var(--text-tertiary);
    margin-bottom: 28px;
}
.price-features {
    text-align: left;
    margin-bottom: 28px;
}
.price-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: .9rem;
}
.price-features li.included { color: var(--text); }
.price-features li.included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.price-features li.excluded {
    color: var(--text-tertiary);
    text-decoration: line-through;
    opacity: .6;
}
.price-features li.excluded::before {
    content: '—';
    position: absolute;
    left: 0;
}
.price-card .btn { width: 100%; justify-content: center; }
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq {
    padding: 100px 0;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-tertiary);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .2s;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.7;
}

/* ---- CTA ---- */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a2118 0%, #0f1b15 50%, #0a1a20 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(44,159,107,.15), transparent 60%);
    pointer-events: none;
}
.cta-content { position: relative; }
.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.cta p {
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn-primary {
    background: #fff;
    color: var(--accent-dark);
    box-shadow: 0 4px 20px rgba(255,255,255,.2);
}
.cta .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255,255,255,.3);
}
.cta-note {
    font-size: .8rem;
    color: rgba(255,255,255,.3) !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .cta h2 { font-size: 2rem; }
}

/* ---- Footer ---- */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: .9rem;
}
.footer-col h4 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: .9rem;
    padding: 4px 0;
    transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
}
.footer-bottom p {
    font-size: .8rem;
    color: var(--text-tertiary);
}
.footer-disclaimer {
    max-width: 480px;
    text-align: right;
    font-size: .75rem !important;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
    .footer-disclaimer { text-align: left; }
}

/* ---- Page styles (privacy, terms, support) ---- */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    text-align: center;
}
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.page-content {
    padding: 60px 0 100px;
    max-width: 720px;
    margin: 0 auto;
}
.page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 36px 0 12px;
}
.page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 8px;
}
.page-content p, .page-content li {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.page-content ul {
    padding-left: 24px;
    list-style: disc;
}
.page-content a {
    color: var(--accent);
    text-decoration: underline;
}

/* Support form */
.support-form {
    max-width: 520px;
    margin: 40px auto 0;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    color: var(--text);
    font-family: var(--font);
    font-size: .95rem;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all .6s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
