/* =========================================================
   Aimour AI App — main stylesheet
   ========================================================= */

:root {
    --bg: #08050f;
    --bg-2: #0e0820;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.10);
    --text: #f5f1ff;
    --muted: #b9b0d4;
    --pink: #ff4d8d;
    --pink-2: #ff7eb6;
    --violet: #7a3cff;
    --violet-2: #a98bff;
    --cyan: #4de5ff;
    --grad: linear-gradient(135deg, #ff4d8d 0%, #c14bff 50%, #7a3cff 100%);
    --grad-soft: linear-gradient(135deg, rgba(255,77,141,.18), rgba(122,60,255,.18));
    --shadow-glow: 0 30px 80px -20px rgba(122, 60, 255, .55);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1240px;
    --header-h: 76px;
    --font-display: 'Sora', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: radial-gradient(1200px 800px at 20% -10%, rgba(122,60,255,.35), transparent 60%),
                radial-gradient(900px 700px at 100% 10%, rgba(255,77,141,.25), transparent 60%),
                var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .85; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--pink); color: #fff; }

/* Aurora background orbs */
.aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.aurora .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; mix-blend-mode: screen; animation: float 16s ease-in-out infinite; }
.aurora .orb-1 { width: 520px; height: 520px; background: #ff4d8d; left: -120px; top: -120px; }
.aurora .orb-2 { width: 600px; height: 600px; background: #7a3cff; right: -160px; top: 30%; animation-delay: -4s; }
.aurora .orb-3 { width: 480px; height: 480px; background: #4de5ff; left: 40%; bottom: -200px; animation-delay: -8s; opacity: .35; }
@keyframes float {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(40px,-30px,0) scale(1.1); }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.narrow { max-width: 880px; }

/* ===== Header ===== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: rgba(8, 5, 15, 0.55);
    border-bottom: 1px solid transparent;
    transition: background .25s, border-color .25s;
}
.site-header.is-scrolled { background: rgba(8, 5, 15, 0.82); border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 6px 18px rgba(255,77,141,.45)); }
.brand-dot { color: var(--pink); }
.brand-sub { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-nav { margin-left: 24px; flex: 1; }
.site-nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--muted); font-weight: 500; font-size: 15px; }
.site-nav a:hover { color: var(--text); }
.header-cta { display: flex; gap: 10px; align-items: center; }

.burger { display: none; background: none; border: 0; padding: 8px; gap: 5px; flex-direction: column; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
    .site-nav { position: fixed; inset: var(--header-h) 0 auto 0; background: rgba(8,5,15,.95); backdrop-filter: blur(20px); padding: 18px 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease; margin: 0; }
    .site-nav.is-open { max-height: 70vh; border-bottom: 1px solid var(--border); }
    .site-nav ul { flex-direction: column; gap: 18px; }
    .burger { display: inline-flex; }
    .header-cta .btn-ghost { display: none; }
}

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; line-height: 1; border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; white-space: nowrap; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(255,77,141,.7), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(255,77,141,.85); opacity: 1; }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-xl { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ===== Typography ===== */
.display { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 76px); line-height: 1.04; letter-spacing: -.02em; margin: 0 0 18px; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 620px; margin: 0 0 28px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dim { color: var(--muted); font-weight: 600; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }

h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -.015em; margin: 0 0 16px; }
.sec-head { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.sec-head p { color: var(--muted); font-size: 17px; }
.eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--grad-soft); color: var(--violet-2); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.06); }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2bff9a; box-shadow: 0 0 12px #2bff9a; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Section base ===== */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.dark-band { background: linear-gradient(180deg, rgba(122,60,255,.06), transparent), rgba(255,255,255,.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(90px, 12vw, 160px) 0 clamp(60px, 8vw, 120px); overflow: hidden; }
.hero-sm { padding: 120px 0 60px; }
.hero-bg { position: absolute; inset: 0; background-image: var(--hero-bg); background-size: cover; background-position: center; opacity: .35; filter: saturate(120%); z-index: 0; mask-image: linear-gradient(180deg, black 30%, transparent 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-bullets { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; margin: 22px 0 0; padding: 0; color: var(--muted); font-size: 14px; }
.hero-bullets li::before { content: '•'; color: var(--pink); margin-right: 8px; }
.hero-visual { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-glow); transform-style: preserve-3d; transition: transform .3s ease; }
.hero-visual img { width: 100%; height: 640px; object-fit: cover; }
.phone-glow { position: absolute; inset: -40px; background: radial-gradient(closest-side, rgba(255,77,141,.6), transparent 70%); filter: blur(60px); z-index: -1; }
.float-bubble { position: absolute; padding: 12px 16px; border-radius: 18px 18px 18px 4px; background: rgba(8,5,15,.7); backdrop-filter: blur(12px); border: 1px solid var(--border); font-size: 14px; max-width: 240px; animation: bobble 5s ease-in-out infinite; }
.float-bubble.b1 { top: 18%; left: -20px; }
.float-bubble.b2 { bottom: 14%; right: -20px; border-radius: 18px 18px 4px 18px; animation-delay: -2s; background: linear-gradient(135deg, rgba(255,77,141,.6), rgba(122,60,255,.6)); border: 0; }
@keyframes bobble { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-8px) } }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } .hero-visual img { height: 520px; } }

/* ===== Stats ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; backdrop-filter: blur(8px); }
.stat .num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3vw, 42px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 6px; }
.stat span:last-child { color: var(--muted); font-size: 14px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Cards grid ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(10px); transition: transform .3s, border-color .3s, background .3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .3s; pointer-events: none; }
.card:hover { border-color: rgba(255,77,141,.4); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card-ico { width: 54px; height: 54px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; box-shadow: 0 10px 24px -8px rgba(255,77,141,.6); }
.card-h { font-size: 20px; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; }
.card.mini { padding: 22px; }
.card.mini .card-h { font-size: 17px; }
@media (max-width: 980px) { .cards-grid, .cards-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid, .cards-grid.four { grid-template-columns: 1fr; } }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.model-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.model-card:hover { box-shadow: var(--shadow-glow); }
.model-card img { width: 100%; height: 420px; object-fit: cover; transition: transform .6s ease; }
.model-card:hover img { transform: scale(1.04); }
.model-meta { padding: 20px; }
.model-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.model-top strong { font-family: var(--font-display); font-size: 20px; }
.model-top span { color: var(--muted); font-size: 13px; }
.model-meta .tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--grad-soft); color: var(--violet-2); font-size: 12px; margin: 6px 0 10px; border: 1px solid rgba(255,255,255,.05); }
.model-meta .bio { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .model-card img { height: 360px; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== Split sections ===== */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-grid.reverse > div:first-child { order: 2; }
.split-visual img { border-radius: var(--radius); box-shadow: var(--shadow-glow); }
.split-visual .rounded, .rounded { border-radius: var(--radius); box-shadow: var(--shadow-glow); }
.check-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.check-list li { padding: 10px 0 10px 32px; position: relative; color: var(--muted); border-bottom: 1px dashed var(--border); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 10px; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 40px; } .split-grid.reverse > div:first-child { order: 0; } }

/* ===== Story sections ===== */
.story .prose p { font-size: 18px; line-height: 1.75; color: #d8d0ee; margin: 0 0 18px; }
.story.alt { background: linear-gradient(180deg, rgba(255,77,141,.04), transparent); }

/* ===== Personality chips ===== */
.chips-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto 24px; }
.chip { padding: 10px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-weight: 500; transition: all .2s; cursor: default; }
.chip.on { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 8px 20px -8px rgba(255,77,141,.6); }
.chip:hover { transform: translateY(-2px); }

/* ===== Voice card ===== */
.voice-card { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(10px); max-width: 420px; }
.vc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.vc-top img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.vc-top div { display: flex; flex-direction: column; }
.vc-top span { color: var(--muted); font-size: 13px; }
.wave { display: flex; align-items: center; gap: 4px; height: 50px; margin-bottom: 14px; }
.wave span { flex: 1; background: var(--grad); border-radius: 2px; animation: wave 1.3s ease-in-out infinite; }
.wave span:nth-child(odd){ animation-delay: -.4s; }
.wave span:nth-child(3n){ animation-delay: -.7s; }
@keyframes wave { 0%,100%{ height: 20% } 50%{ height: 100% } }
.voice-card p { color: var(--muted); font-style: italic; margin: 0; }

/* ===== Privacy / Pri grid ===== */
.pri-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pri { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.pri-h { font-size: 20px; margin: 0 0 10px; }
.pri p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .pri-grid { grid-template-columns: 1fr; } }

/* ===== Compare table ===== */
.compare-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare th { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 14px; }
.compare th.us, .compare td.us { background: linear-gradient(135deg, rgba(255,77,141,.12), rgba(122,60,255,.12)); color: #fff; }
.compare tbody tr:last-child td { border-bottom: 0; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price { padding: 36px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; position: relative; }
.price.popular { background: linear-gradient(180deg, rgba(255,77,141,.12), rgba(122,60,255,.08)); border-color: rgba(255,77,141,.5); transform: scale(1.04); box-shadow: var(--shadow-glow); }
.badge-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 14px; background: var(--grad); color: #fff; border-radius: 999px; font-size: 12px; font-weight: 700; }
.price-h { font-family: var(--font-display); font-size: 22px; margin: 0 0 6px; }
.price-tag { margin: 6px 0 18px; }
.price-tag span { font-family: var(--font-display); font-size: 44px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-tag small { color: var(--muted); font-size: 14px; margin-left: 4px; }
.price ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price ul li { padding: 8px 0; color: var(--muted); border-bottom: 1px dashed var(--border); }
.price ul li::before { content: '✓ '; color: var(--pink); font-weight: 700; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .price.popular { transform: none; } }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { margin: 0; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.review blockquote { margin: 0 0 14px; font-size: 17px; line-height: 1.55; color: #ece6ff; }
.review figcaption { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; color: var(--text); border: 0; padding: 20px 22px; font-size: 17px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q span { font-size: 24px; color: var(--pink); transition: transform .3s; }
.faq-item.is-open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 22px 22px; color: var(--muted); margin: 0; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; padding-bottom: clamp(120px, 14vw, 180px); }
.final-cta-inner { max-width: 800px; margin: 0 auto; padding: 60px 40px; border-radius: 32px; background: linear-gradient(135deg, rgba(255,77,141,.16), rgba(122,60,255,.16)); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); position: relative; overflow: hidden; }
.final-cta-inner::before { content: ''; position: absolute; inset: -40%; background: conic-gradient(from 0deg, #ff4d8d, #7a3cff, #4de5ff, #ff4d8d); filter: blur(60px); opacity: .25; animation: spin 16s linear infinite; }
.final-cta-inner > * { position: relative; }
@keyframes spin { to { transform: rotate(360deg); } }
.final-cta .display { font-size: clamp(34px, 5vw, 56px); }

/* ===== Footer ===== */
.site-footer { padding: 80px 0 30px; border-top: 1px solid var(--border); background: rgba(0,0,0,.4); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.foot-brand p { color: var(--muted); max-width: 320px; margin-top: 14px; }
.foot-title { font-family: var(--font-display); font-weight: 700; color: var(--text); margin: 0 0 14px; font-size: 15px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: var(--muted); font-size: 14px; }
.site-footer ul a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== About — Timeline ===== */
.timeline-section { background: linear-gradient(180deg, transparent, rgba(122,60,255,.05), transparent); }
.timeline { list-style: none; padding: 0; margin: 0; position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, transparent, var(--pink), var(--violet), transparent); }
.timeline li { display: grid; grid-template-columns: 100px 1fr; gap: 30px; margin-bottom: 32px; position: relative; }
.timeline li::before { content: ''; position: absolute; left: 74px; top: 24px; width: 14px; height: 14px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 5px rgba(122,60,255,.2), 0 0 18px rgba(255,77,141,.6); }
.t-year { font-family: var(--font-display); font-weight: 800; font-size: 22px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-top: 18px; }
.t-card { padding: 22px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.t-card p { color: var(--muted); margin: 6px 0 0; }
@media (max-width: 700px) {
    .timeline::before { left: 14px; }
    .timeline li { grid-template-columns: 60px 1fr; gap: 14px; }
    .timeline li::before { left: 8px; top: 12px; }
    .t-year { font-size: 16px; padding-top: 12px; }
}

/* ===== Contact form ===== */
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { padding: 18px 0; border-bottom: 1px dashed var(--border); display: grid; grid-template-columns: 130px 1fr; gap: 14px; align-items: baseline; }
.contact-list strong { font-family: var(--font-display); }
.contact-list a { color: var(--pink-2); }
.contact-list span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; grid-column: 2; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; backdrop-filter: blur(10px); }
.contact-form h2 { margin: 0 0 18px; font-size: 24px; }
.contact-form label { display: block; margin-bottom: 14px; font-size: 14px; color: var(--muted); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; margin-top: 6px; background: rgba(0,0,0,.3); color: var(--text); border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 15px; transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 0; border-color: var(--pink); }
.contact-form button { margin-top: 6px; }

/* ===== Legal (privacy/terms) ===== */
.legal h2 { font-size: 20px; margin: 28px 0 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal p { color: #d8d0ee; }
.page-hero { padding-top: 120px; }
.prose a { color: var(--pink-2); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Page hero shared ===== */
.page-hero .display { font-size: clamp(36px, 5vw, 56px); }
