/* ============================================================
   Charenix Studio — SF/SV AI startup aesthetic v2
   References: anthropic, cursor, linear, mistral, modal, together
   Dark base, vibrant accent, big bold sans-serif
   ============================================================ */

:root {
  /* Base */
  --bg:           #0A0A0F;        /* near-black, slight purple */
  --bg-alt:       #111118;        /* card surface */
  --bg-light:     #18181F;        /* hover surface */
  --line:         #23232B;        /* subtle divider */
  --line-bright:  #32323D;        /* visible divider */

  /* Text */
  --text:         #FAFAFA;        /* primary */
  --text-dim:     #A0A0AB;        /* secondary */
  --text-muted:   #6B6B76;        /* tertiary, captions */

  /* Accents */
  --accent:       #7C5CFF;        /* electric violet (primary CTA) */
  --accent-h:     #9279FF;        /* hover */
  --accent-soft:  rgba(124, 92, 255, 0.12);
  --orange:       #FF7A45;        /* warm accent for highlights */
  --green:        #5CFFB0;        /* metric positive */
  --cyan:         #5CE1FF;        /* link */
  --pink:         #FF5C9E;

  /* Type */
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Sizing */
  --container:    1240px;
  --gutter:       max(5vw, 24px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}

/* Background grid pattern (very subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

main, section, nav, footer { position: relative; z-index: 1; }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: 120px 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; color: var(--text); font-family: var(--font-sans); }
h1 { font-size: clamp(48px, 7vw, 88px); letter-spacing: -0.04em; line-height: 1; font-weight: 600; }
h2 { font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.03em; margin-bottom: 24px; }
h3 { font-size: clamp(22px, 2vw, 28px); margin-bottom: 12px; }
h4 { font-size: 18px; margin-bottom: 8px; font-weight: 500; }
p  { font-size: 17px; color: var(--text-dim); line-height: 1.6; }
p.lead { font-size: 21px; color: var(--text-dim); line-height: 1.5; max-width: 640px; }
p + p { margin-top: 16px; }
a  { color: var(--cyan); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.7; }
strong { color: var(--text); font-weight: 500; }
small { font-size: 13px; color: var(--text-muted); }
.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px; padding: 6px 14px;
  background: var(--accent-soft); border: 1px solid rgba(124, 92, 255, 0.3); border-radius: 100px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(10, 10, 15, 0.72); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { font-size: 18px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; display: flex; align-items: center; gap: 6px; }
.nav-brand span { color: var(--accent); }
.nav-brand:hover { opacity: 1; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-cta {
  background: var(--text) !important; color: var(--bg) !important;
  padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 500;
  transition: transform 0.1s, background 0.15s;
}
.nav-cta:hover { background: var(--text) !important; transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; border: 1px solid transparent; border-radius: 10px;
  transition: transform 0.1s, background 0.15s, border-color 0.15s;
  text-decoration: none !important;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.4), 0 12px 32px -8px rgba(124, 92, 255, 0.5); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); opacity: 1; }
.btn-secondary { background: var(--bg-alt); color: var(--text); border-color: var(--line-bright); }
.btn-secondary:hover { background: var(--bg-light); border-color: var(--text-muted); opacity: 1; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-bright); }
.btn-ghost:hover { border-color: var(--text); opacity: 1; }
.btn .arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- HERO ---- */
.hero { position: relative; padding: 120px 0 80px; overflow: hidden; }
.hero-orb {
  position: absolute; pointer-events: none;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35) 0%, rgba(124, 92, 255, 0) 60%);
  top: -200px; right: -200px; z-index: 0;
  filter: blur(40px);
}
.hero-orb-2 {
  position: absolute; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 158, 0.18) 0%, rgba(255, 92, 158, 0) 60%);
  bottom: -300px; left: -100px; z-index: 0;
  filter: blur(60px);
}
.hero-content { position: relative; z-index: 1; max-width: 880px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .gradient {
  background: linear-gradient(120deg, var(--accent) 0%, var(--pink) 50%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero p.lead { font-size: clamp(18px, 2vw, 22px); margin-bottom: 40px; max-width: 600px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }

/* Split hero with side visual */
.hero-split { padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-width: 720px; height: auto; border-radius: 16px; box-shadow: 0 24px 80px -20px rgba(124, 92, 255, 0.5), 0 0 0 1px var(--line-bright); }
.hero-visual-glow { position: absolute; inset: -10%; background: radial-gradient(circle, rgba(124, 92, 255, 0.25) 0%, transparent 60%); pointer-events: none; z-index: -1; filter: blur(40px); }
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 600px; }
}

/* Visual break / inserted product screenshots */
.visual-break { padding: 60px 0; }
.visual-break-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.visual-break-grid.reverse { direction: rtl; }
.visual-break-grid.reverse > * { direction: ltr; }
.visual-break img { width: 100%; border-radius: 16px; border: 1px solid var(--line-bright); box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5); }
.visual-break .v-tag { font-family: var(--font-mono); font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.visual-break h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; }
.visual-break p { font-size: 17px; color: var(--text-dim); }
@media (max-width: 900px) {
  .visual-break-grid, .visual-break-grid.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}

/* Custom SVG icons for use cases (replace emoji) */
.uc-icon-svg { width: 44px; height: 44px; margin-bottom: 16px; padding: 10px; border: 1px solid var(--line-bright); border-radius: 10px; background: rgba(124, 92, 255, 0.06); }
.uc-icon-svg svg { width: 100%; height: 100%; display: block; }

.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.hero-metric { background: var(--bg-alt); padding: 28px 24px; }
.hero-metric .num { font-size: 36px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.hero-metric .num .unit { font-size: 16px; font-weight: 400; color: var(--text-dim); margin-left: 4px; }
.hero-metric .num.green { color: var(--green); }
.hero-metric .num.accent { color: var(--accent); }
.hero-metric .num.orange { color: var(--orange); }
.hero-metric .lbl { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 720px) {
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Section eyebrow ---- */
.section-tag {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.section-tag .num { color: var(--accent); }
.section-head { margin-bottom: 64px; max-width: 700px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p.lead { color: var(--text-dim); }

/* ---- Use-case grid (Built for X) ---- */
.use-cases { padding: 100px 0; }
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.uc-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px; transition: border-color 0.15s, transform 0.1s, background 0.15s;
  cursor: pointer; position: relative; overflow: hidden;
}
.uc-card:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--bg-light); }
.uc-icon { font-size: 26px; margin-bottom: 18px; display: inline-block; }
.uc-card h3 { font-size: 18px; margin-bottom: 8px; }
.uc-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 12px; }
.uc-card .price { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }
.ask-me {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--accent); padding: 6px 12px;
  border: 1px solid var(--accent); border-radius: 100px;
  text-decoration: none !important; transition: background 0.15s, transform 0.1s;
}
.ask-me:hover { background: var(--accent-soft); opacity: 1; transform: translateX(2px); }
.uc-card .ask-me, .prod .ask-me { margin-top: 4px; }
td .ask-me { padding: 4px 10px; font-size: 11px; }
@media (max-width: 1024px) { .uc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .uc-grid { grid-template-columns: 1fr; } }

/* ---- Products row ---- */
.products { padding: 100px 0; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.15s, transform 0.1s, background 0.15s;
  cursor: pointer; min-height: 280px;
  text-decoration: none !important;
}
.prod:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--bg-light); opacity: 1; }
.prod-status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 100px; align-self: flex-start; }
.prod-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.prod-status.live { color: var(--green); background: rgba(92, 255, 176, 0.08); border: 1px solid rgba(92, 255, 176, 0.3); }
.prod-status.beta { color: var(--orange); background: rgba(255, 122, 69, 0.08); border: 1px solid rgba(255, 122, 69, 0.3); }
.prod-status.soon { color: var(--text-muted); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-bright); }
.prod-name { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; margin-top: 6px; }
.prod-tag { font-size: 13px; color: var(--text-muted); }
.prod-desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; flex: 1; }
.prod-price { font-family: var(--font-mono); font-size: 12px; color: var(--text); }
.prod-arrow { font-size: 13px; color: var(--accent); margin-top: auto; display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .prod-grid { grid-template-columns: 1fr; } }

/* ---- Comparison table ---- */
.compare { padding: 100px 0; }
.compare-table { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 18px 24px; border-bottom: 1px solid var(--line); align-items: center; }
.compare-row:last-child { border-bottom: 0; }
.compare-row.head { background: rgba(255,255,255,0.02); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 14px 24px; }
.compare-row.head .col-us { color: var(--accent); }
.compare-row .feature { font-size: 14px; font-weight: 500; color: var(--text); }
.compare-row .cell { font-size: 13px; color: var(--text-dim); }
.compare-row .yes { color: var(--green); font-weight: 500; }
.compare-row .no  { color: var(--text-muted); }
.compare-row .partial { color: var(--orange); }

/* ---- Quote / testimonial ---- */
.quote-section { padding: 100px 0; }
.quote-box { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 20px; padding: 56px 48px; max-width: 880px; margin: 0 auto; }
.quote-mark { font-size: 64px; line-height: 0.5; color: var(--accent); font-family: serif; margin-bottom: 16px; display: block; }
.quote-text { font-size: 24px; line-height: 1.5; color: var(--text); font-weight: 400; margin-bottom: 28px; letter-spacing: -0.01em; }
.quote-attr { font-size: 14px; color: var(--text-dim); }
.quote-attr strong { color: var(--text); display: block; margin-bottom: 4px; }

/* ---- CTA block ---- */
.cta {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 92, 255, 0.08) 100%);
  border-top: 1px solid var(--line);
}
.cta h2 { max-width: 720px; margin: 0 auto 20px; }
.cta p.lead { margin: 0 auto 36px; color: var(--text-dim); }
.cta .cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-note { margin-top: 24px; font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); }

/* ---- Logo strip (use the publication / repo references as "trust") ---- */
.logo-strip {
  padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.logo-strip .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); text-align: center; margin-bottom: 24px; }
.logo-strip-row { display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; align-items: center; color: var(--text-dim); font-family: var(--font-mono); font-size: 14px; opacity: 0.8; }
.logo-strip-row span { display: inline-flex; align-items: center; gap: 8px; }

/* ---- Code block ---- */
.code-block {
  background: #07070A; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; font-family: var(--font-mono); font-size: 13px; line-height: 1.6;
  color: var(--text-dim); overflow-x: auto;
}
.code-block .key { color: var(--cyan); }
.code-block .str { color: var(--green); }
.code-block .com { color: var(--text-muted); }

/* ---- Open source ---- */
.oss { padding: 100px 0; border-top: 1px solid var(--line); }
.oss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.oss-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; transition: border-color 0.15s; cursor: pointer;
  text-decoration: none !important;
}
.oss-card:hover { border-color: var(--accent); opacity: 1; }
.oss-card .stars { font-family: var(--font-mono); font-size: 12px; color: var(--orange); margin-bottom: 10px; }
.oss-card .name { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.oss-card .desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
@media (max-width: 720px) { .oss-grid { grid-template-columns: 1fr; } }

/* ---- Research small block ---- */
.research-mini { padding: 80px 0; border-top: 1px solid var(--line); }
.research-mini .papers-count { font-size: clamp(80px, 12vw, 160px); font-weight: 600; letter-spacing: -0.05em; line-height: 0.9; background: linear-gradient(120deg, var(--accent), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; }

/* ---- Footer ---- */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 32px; }
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
footer .col h4 { color: var(--text); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-weight: 500; }
footer .col a { color: var(--text-dim); font-size: 14px; display: block; margin-bottom: 12px; }
footer .col a:hover { color: var(--text); }
footer .brand-col p { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 320px; margin-top: 14px; }
footer .brand-col .logo { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
footer .brand-col .logo span { color: var(--accent); }
footer .legal { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 24px; font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer .legal a { color: var(--text-muted); }
@media (max-width: 800px) { footer .container { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ---- Reading pages (services, pricing, legal) ---- */
.page-hero { padding: 80px 0 48px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .hero-orb { width: 600px; height: 600px; top: -100px; right: -100px; }
.page-hero h1 { font-size: clamp(40px, 5.5vw, 64px); margin-bottom: 20px; max-width: 800px; }
.page-hero p.lead { max-width: 720px; }

.prose { max-width: 760px; padding: 64px 0; }
.prose h2 { font-size: 28px; margin-top: 56px; margin-bottom: 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin-top: 32px; margin-bottom: 10px; }
.prose p { font-size: 16px; color: var(--text-dim); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 20px; }
.prose li { font-size: 15px; color: var(--text-dim); margin-bottom: 8px; }
.prose .timestamp { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 48px; }
.prose strong { color: var(--text); }
.prose a { color: var(--cyan); border-bottom: 1px solid rgba(92, 225, 255, 0.3); }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-alt); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
table th { text-align: left; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
table td { padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--text-dim); }
table tr:last-child td { border-bottom: 0; }
table tr:hover td { background: rgba(255,255,255,0.02); color: var(--text); }
table strong { color: var(--text); }

/* ---- Pricing tier ---- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.tier { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; }
.tier.featured { border-color: var(--accent); background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(124, 92, 255, 0.08) 100%); box-shadow: 0 12px 40px -10px rgba(124, 92, 255, 0.3); }
.tier .name { font-size: 18px; font-weight: 500; color: var(--text); }
.tier .price { font-size: 36px; font-weight: 600; color: var(--text); letter-spacing: -0.03em; }
.tier .per { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.tier ul { list-style: none; margin: 16px 0 24px; padding: 0; flex: 1; }
.tier li { font-size: 13px; padding: 8px 0; color: var(--text-dim); border-bottom: 1px solid var(--line); }
.tier li::before { content: "✓ "; color: var(--accent); margin-right: 4px; }
@media (max-width: 1024px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tier-grid { grid-template-columns: 1fr; } }

/* ---- Form ---- */
form { display: grid; gap: 18px; max-width: 560px; }
label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); display: block; margin-bottom: 8px; }
input, textarea, select { width: 100%; padding: 14px 16px; font-family: var(--font-sans); font-size: 14px; border: 1px solid var(--line-bright); background: var(--bg-alt); border-radius: 10px; color: var(--text); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
textarea { min-height: 140px; resize: vertical; font-family: inherit; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
