/* ============================================================
   WHITE CLOUD SCHOOL — Parent Assessment
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-primary:    #021a0f;
  --bg-secondary:  #031f12;
  --bg-tertiary:   #042518;
  --bg-card:       rgba(5,46,22,0.55);
  --bg-card-dark:  rgba(2,20,10,0.8);
  --emerald-dark:  #059669;
  --emerald-bright:#10b981;
  --emerald-light: #34d399;
  --emerald-pale:  #d1fae5;
  --gold-light:    #d4af37;
  --red-soft:      #f87171;
  --text-primary:  #f0fdf4;
  --text-secondary:#a7f3d0;
  --text-muted:    #6ee7b7;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --radius-sm:     .5rem;
  --radius-md:     1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --shadow-card:   0 20px 60px rgba(0,0,0,.4);
}

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

/* ── Noise overlay ──────────────────────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
.gradient-text {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-hero {
  background: linear-gradient(135deg, #a7f3d0 0%, var(--emerald-light) 50%, var(--emerald-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--emerald-light);
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.2);
  border-radius: 2rem; padding: .3rem .8rem; display: inline-block;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.container--md { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  border-radius: 3rem; padding: .85rem 2rem; cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-bright));
  color: #021a0f; box-shadow: 0 8px 30px rgba(16,185,129,.35);
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity:0; transition: opacity .2s;
}
.btn-primary:hover::before { opacity:1; }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(16,185,129,.5); }
.btn-secondary {
  background: transparent; color: var(--emerald-light);
  border: 1.5px solid rgba(52,211,153,.4);
}
.btn-secondary:hover { border-color: var(--emerald-light); background: rgba(52,211,153,.05); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Cards ──────────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card); border: 1px solid rgba(52,211,153,.12);
  border-radius: var(--radius-lg); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}
.glass-card-dark {
  background: var(--bg-card-dark); border: 1px solid rgba(52,211,153,.12);
  border-radius: var(--radius-lg); backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(52,211,153,.25), transparent); margin: 1.5rem 0; }

/* ── Form Elements ──────────────────────────────────────────── */
.form-label {
  display: block; font-size: .9rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: .6rem; line-height: 1.5;
}
.form-input {
  width: 100%; padding: .8rem 1rem;
  background: rgba(5,46,22,.5); border: 1.5px solid rgba(52,211,153,.2);
  border-radius: var(--radius-sm); color: var(--text-primary);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus  { border-color: var(--emerald-light); box-shadow: 0 0 0 3px rgba(52,211,153,.12); }
.form-input option { background: #031f12; }
select.form-input  { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.5rem;
}

/* Radio options */
.radio-group, .check-group { display: flex; flex-direction: column; gap: .5rem; }
.radio-option, .check-option {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .7rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(52,211,153,.12); cursor: pointer;
  transition: border-color .15s, background .15s; user-select: none;
}
.radio-option:hover, .check-option:hover {
  border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.04);
}
.radio-option input, .check-option input { position: absolute; opacity: 0; pointer-events: none; }
.radio-option.selected, .check-option.selected {
  border-color: rgba(52,211,153,.45); background: rgba(52,211,153,.08);
}
.radio-icon {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; margin-top: .15rem;
  border: 2px solid rgba(52,211,153,.35); position: relative; transition: border-color .15s;
}
.radio-option.selected .radio-icon { border-color: var(--emerald-light); }
.radio-icon::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--emerald-light); opacity: 0; transition: opacity .15s;
}
.radio-option.selected .radio-icon::after { opacity: 1; }
.check-icon {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: .25rem; margin-top: .15rem;
  border: 2px solid rgba(52,211,153,.35); position: relative; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.check-option.selected .check-icon {
  border-color: var(--emerald-light); background: var(--emerald-light);
}
.check-icon svg { opacity: 0; transition: opacity .15s; }
.check-option.selected .check-icon svg { opacity: 1; }
.option-text { font-size: .9rem; color: var(--text-secondary); line-height: 1.5; }
.radio-option.selected .option-text, .check-option.selected .option-text { color: var(--text-primary); }

/* Scale (1–5) */
.scale-wrapper { margin-top: .25rem; }
.scale-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-muted); margin-bottom: .5rem; }
.scale-options { display: flex; gap: .5rem; }
.scale-opt {
  flex: 1; cursor: pointer;
}
.scale-opt input { position: absolute; opacity: 0; pointer-events: none; }
.scale-dot {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  border: 2px solid rgba(52,211,153,.25); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 600; color: var(--text-muted);
  transition: all .15s; cursor: pointer;
}
.scale-opt:hover .scale-dot   { border-color: rgba(52,211,153,.5); color: var(--emerald-light); }
.scale-opt.selected .scale-dot {
  border-color: var(--emerald-light); background: var(--emerald-light);
  color: #021a0f; box-shadow: 0 0 12px rgba(52,211,153,.4);
}

/* Matrix table */
.matrix-wrap { overflow-x: auto; margin-top: .5rem; }
.matrix-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.matrix-table th {
  padding: .6rem .8rem; text-align: center; font-weight: 600;
  color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 1px solid rgba(52,211,153,.12);
}
.matrix-table th:first-child { text-align: left; }
.matrix-table td { padding: .55rem .8rem; border-bottom: 1px solid rgba(52,211,153,.06); text-align: center; color: var(--text-secondary); }
.matrix-table td:first-child { text-align: left; }
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-radio { width: 18px; height: 18px; accent-color: var(--emerald-bright); cursor: pointer; }
.matrix-table tr:hover td { background: rgba(52,211,153,.03); }

/* ── Progress bar ───────────────────────────────────────────── */
.progress-wrap { margin-bottom: 1.5rem; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.progress-step  { color: var(--text-muted); }
.progress-pct   { color: var(--emerald-light); }
.progress-track { height: 4px; background: rgba(52,211,153,.1); border-radius: 2px; overflow: hidden; }
.progress-fill  { height: 100%; background: linear-gradient(90deg, var(--emerald-dark), var(--emerald-light)); border-radius: 2px; transition: width .4s cubic-bezier(.4,0,.2,1); }
.progress-dots  { display: flex; gap: .25rem; margin-top: .4rem; }
.progress-dot   { flex: 1; height: 2px; border-radius: 1px; background: rgba(52,211,153,.12); transition: background .3s; }
.progress-dot.active { background: var(--emerald-bright); }

/* ── Form steps ─────────────────────────────────────────────── */
.form-step { display: none; animation: fadeIn .3s ease; }
.form-step.active { display: block; }
.step-title { font-size: 1.6rem; font-weight: 700; margin-bottom: .25rem; color: var(--text-primary); }
.step-subtitle { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-field { margin-bottom: 1.5rem; }
.form-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(52,211,153,.1); }
.scholarship-note {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  background: rgba(212,175,55,.06); border: 1px solid rgba(212,175,55,.18);
  font-size: .85rem; color: var(--gold-light); font-style: italic; line-height: 1.6;
}
.details-note {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  background: rgba(52,211,153,.05); border: 1px solid rgba(52,211,153,.12);
  font-size: .85rem; color: var(--text-secondary); line-height: 1.6;
}

/* ── Hero section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(6,94,63,.5) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative; overflow: hidden;
}
.hero-blob-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(5,150,105,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  top: 40%; right: -100px;
  background: radial-gradient(circle, rgba(52,211,153,.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite; pointer-events: none;
}
.hero-blob-3 {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  bottom: 10%; left: -80px;
  background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.hero-sub1 { font-size: 1.2rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-sub2 { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-cta { margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; font-size: .85rem; color: var(--text-muted); }
.trust-item { display: flex; align-items: center; gap: .4rem; }
.trust-item svg { color: var(--emerald-light); flex-shrink: 0; }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-hint svg { color: var(--text-muted); }

/* ── Sections ───────────────────────────────────────────────── */
section { position: relative; }
.section-problem  { padding: 6rem 1.5rem; background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%); }
.section-solution { padding: 6rem 1.5rem; background: linear-gradient(180deg, var(--bg-tertiary) 0%, #053020 100%); }
.section-about    { padding: 6rem 1.5rem; background: linear-gradient(180deg, #053020 0%, var(--bg-tertiary) 100%); }
.section-cta-mid  { padding: 5rem 1.5rem; background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%); }
.section-form     { padding: 6rem 1.5rem; background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.section-trust    { padding: 5rem 1.5rem; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.section-final    { padding: 7rem 1.5rem; background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
footer            { padding: 3rem 1.5rem; background: var(--bg-primary); border-top: 1px solid rgba(52,211,153,.08); text-align: center; }

.section-head      { text-align: center; margin-bottom: 3.5rem; }
.section-head h2   { font-size: clamp(2rem, 4vw, 3rem); margin-top: .75rem; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Problem section */
.problem-grid { display: grid; gap: 3rem; align-items: center; }
@media(min-width:768px){ .problem-grid { grid-template-columns: 1fr 1fr; } }
.problem-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.problem-item { display: flex; gap: .75rem; align-items: flex-start; }
.problem-dot {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; margin-top: .2rem;
  background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3);
  display: flex; align-items: center; justify-content: center;
}
.problem-dot::after { content:''; width:7px; height:7px; border-radius:50%; background:#ef4444; }
.problem-stat {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid rgba(52,211,153,.15);
  backdrop-filter: blur(12px);
}
.problem-img-wrap { position: relative; }
.problem-img-wrap img { border-radius: var(--radius-lg); width:100%; aspect-ratio:4/5; object-fit:cover; filter: saturate(.8) brightness(.85); box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--emerald-light); }
.stat-text { font-size: .75rem; color: var(--text-muted); line-height: 1.5; }

/* Solution section */
.solution-cards { display: grid; gap: 1.5rem; margin: 2.5rem 0; }
@media(min-width:640px){ .solution-cards { grid-template-columns: 1fr 1fr; } }
.solution-card { padding: 1.5rem; border-radius: var(--radius-md); }
.solution-card.old { background: var(--bg-card); border: 1px solid rgba(52,211,153,.1); }
.solution-card.new { background: rgba(5,150,105,.15); border: 1px solid rgba(52,211,153,.3); }
.card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.old .card-tag { color: rgba(239,68,68,.7); }
.new .card-tag { color: var(--emerald-light); }
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.pill { padding: .4rem 1rem; border-radius: 2rem; font-size: .82rem; font-weight: 500; background: rgba(52,211,153,.08); border: 1px solid rgba(52,211,153,.18); color: var(--emerald-pale); }

/* About section */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media(min-width:768px){ .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); width:100%; aspect-ratio:3/4; object-fit:cover; filter: saturate(.9); box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.about-badge {
  position: absolute; top: -1rem; right: -1rem; padding: 1rem 1.25rem;
  background: var(--bg-card); border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-md); backdrop-filter: blur(12px);
}
.about-badge-num  { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold-light); }
.about-badge-text { font-size: .72rem; color: var(--text-muted); line-height: 1.4; }
.about-features   { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.about-feature    { display: flex; gap: 1rem; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-light); margin-top: .5rem; flex-shrink: 0; }
.feature-title    { font-size: .9rem; font-weight: 600; color: var(--text-primary); margin-bottom: .2rem; }
.feature-desc     { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* CTA mid section */
.cta-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2.5rem; max-width: 380px; margin-left: auto; margin-right: auto; text-align: left; }
.cta-item { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--text-secondary); }
.cta-check { flex-shrink: 0; }

/* Trust section */
.trust-cards { display: grid; gap: 1.5rem; }
@media(min-width:640px){ .trust-cards { grid-template-columns: repeat(3,1fr); } }
.trust-card { padding: 1.5rem; }
.trust-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.trust-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

/* Final CTA */
.final-cta { text-align: center; }
.final-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-bright));
  border: 1px solid rgba(52,211,153,.3); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(52,211,153,.25);
}
.final-cta h2 { font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 1.25rem; }
.final-cta p  { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2.5rem; }

/* Footer */
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--emerald-light); margin-bottom: .3rem; }
.footer-tagline { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer-copy    { font-size: .72rem; color: rgba(110,231,183,.35); }

/* ── Thank-you page ──────────────────────────────────────────── */
.thankyou-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(5,150,105,.15) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.thankyou-card { width: 100%; max-width: 640px; }
.check-circle {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-bright));
  border: 1px solid rgba(52,211,153,.3); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(52,211,153,.2);
}
.score-box { background: rgba(6,78,59,.3); border: 1px solid rgba(52,211,153,.15); border-radius: var(--radius-md); padding: 1.5rem; margin: 2rem 0; }
.score-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.score-label-badge { display: inline-block; padding: .35rem 1rem; border-radius: 2rem; font-size: .85rem; font-weight: 700; }
.score-bar-row { margin-bottom: 1rem; }
.score-bar-meta { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.score-bar-track { height: 8px; background: rgba(52,211,153,.1); border-radius: 4px; overflow: hidden; }
.score-bar-fill  { height: 100%; border-radius: 4px; transition: width 1.2s cubic-bezier(.4,0,.2,1); width: 0; }
.ty-points { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; text-align: left; }
.ty-point  { display: flex; gap: .75rem; padding: .75rem 1rem; border-radius: var(--radius-sm); background: rgba(52,211,153,.05); }
.ty-point-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-bright); margin-top: .5rem; flex-shrink: 0; }
.ty-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Admin ───────────────────────────────────────────────────── */
.admin-page { min-height: 100vh; background: var(--bg-primary); padding: 2rem 1.5rem; }
.admin-header { max-width: 1200px; margin: 0 auto 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.admin-table-wrap { max-width: 1200px; margin: 0 auto; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.admin-table th { padding: .6rem .8rem; background: rgba(5,46,22,.8); color: var(--emerald-light); font-weight: 600; text-align: left; border-bottom: 1px solid rgba(52,211,153,.2); white-space: nowrap; }
.admin-table td { padding: .55rem .8rem; border-bottom: 1px solid rgba(52,211,153,.06); color: var(--text-secondary); vertical-align: top; }
.admin-table tr:hover td { background: rgba(52,211,153,.03); }
.admin-stats { max-width: 1200px; margin: 0 auto 2rem; display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 1rem; }
.stat-card { padding: 1.25rem; background: var(--bg-card); border: 1px solid rgba(52,211,153,.12); border-radius: var(--radius-md); }
.stat-card .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--emerald-light); }
.stat-card .lbl { font-size: .78rem; color: var(--text-muted); }
.score-badge {
  display: inline-block; padding: .2rem .6rem; border-radius: 2rem; font-size: .75rem; font-weight: 700;
}
.score-high   { background: rgba(52,211,153,.15); color: var(--emerald-light); }
.score-medium { background: rgba(212,175,55,.15); color: var(--gold-light); }
.score-low    { background: rgba(248,113,113,.12); color: var(--red-soft); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeIn   { from { opacity:0; }              to { opacity:1; } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes float    { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-18px); } }
@keyframes bounce   { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(8px); } }
@keyframes scaleIn  { from { transform:scale(.92); opacity:0; } to { transform:scale(1); opacity:1; } }
.animate-fade-up    { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:640px){
  .form-nav { flex-direction: column-reverse; gap: .75rem; }
  .form-nav .btn { width: 100%; justify-content: center; }
  .problem-stat { bottom: -1rem; left: 0; }
  .about-badge  { top: -.5rem; right: 0; }
  .hero-trust   { flex-direction: column; gap: .75rem; }
  .scale-options{ gap: .25rem; }
}
