/* ─── PAGE WRAPPER ────────────────────────────────────────── */
.page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

/* ─── LANDING PAGE ────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3rem 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 245, 62, 0.1);
  color: var(--accent);
  border: 1px solid rgba(200, 245, 62, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--text);
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.02em;
}

.btn-hero-primary:hover  { opacity: 0.88; }
.btn-hero-primary:active { transform: scale(0.97); }

.btn-hero-ghost {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s;
  letter-spacing: 0.02em;
}

.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.25); }

/* ─── TEST PREVIEW CARDS ──────────────────────────────────── */
.tests-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin: 1rem 0;
}

.preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.preview-card .icon  { font-size: 2rem; margin-bottom: 0.5rem; }
.preview-card h3     { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.preview-card p      { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

.preview-card .sci-tag {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--surface2);
  color: var(--muted);
  font-size: 0.62rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ─── SECTION HEADINGS ────────────────────────────────────── */
.page-section {
  margin-top: 2.5rem;
}

.page-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-section p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.page-section p strong { color: var(--text); }

/* ─── STAT HIGHLIGHTS ────────────────────────────────────── */
.stat-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stat-hl {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.stat-hl .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-hl .lbl {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* ─── TEAM / ABOUT ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.875rem;
  margin-top: 1rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 auto 0.625rem;
}

.team-card h3     { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.team-card .role  { font-size: 0.7rem; color: var(--accent); margin: 0.2rem 0; }
.team-card p      { font-size: 0.72rem; color: var(--muted); line-height: 1.5; margin-top: 0.3rem; }

/* ─── CONTACT FORM ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.625rem 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(200, 245, 62, 0.4);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field select option { background: var(--surface2); }

.contact-submit {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s;
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

.contact-submit:hover { opacity: 0.9; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-info-item h4  { font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.contact-info-item p   { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }
.contact-info-item a   { color: var(--accent); text-decoration: none; }

/* ─── FORM FEEDBACK ───────────────────────────────────────── */
.form-msg {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-msg.success { display: block; background: rgba(92,245,200,0.1); color: var(--accent3); }
.form-msg.error   { display: block; background: rgba(255,92,92,0.1); color: var(--accent2); }

/* ─── WELCOME ANIMATION ──────────────────────────────────── */
.splash-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeOut 0.8s ease-in-out 2.2s forwards;
}

.splash-content {
  text-align: center;
  animation: revealUp 1s ease-out forwards;
}

.splash-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.splash-motto {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes revealUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  0% { opacity: 1; pointer-events: all; }
  100% { opacity: 0; pointer-events: none; }
}

.verdict-card {
  background: var(--surface2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.verdict-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  opacity: 0.8;
}

.verdict-card h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.verdict-sub {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

.scientific-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.fake-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.85rem;
  border-radius: 14px;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fake-stat:hover { 
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200,245,62,0.1);
}

.fs-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; margin-bottom: 0.3rem; font-weight: 600; }
.fs-val { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--accent3); font-weight: 600; }
.fs-val.bad { color: var(--accent2); }

.roast-box {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text);
  text-align: center;
  padding: 1rem;
  background: var(--surface2);
  border-radius: 12px;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.results-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1rem;
}

/* ─── SHARE CARD DESIGN ──────────────────────────────────── */
.share-modal-inner {
  max-width: 440px !important;
  padding: 1rem !important;
}

.share-card-design {
  width: 100%;
  background: #0a0a0f;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 2px solid #c8f53e;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.sc-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.sc-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #c8f53e; }
.sc-badge-tag { background: #c8f53e; color: #0a0a0f; padding: 0.35rem 0.9rem; border-radius: 100px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; }

.sc-main { margin: 0.25rem 0; }
.sc-score-wrap { display: flex; align-items: baseline; justify-content: center; line-height: 1; }
.sc-score-num { font-family: 'DM Mono', monospace; font-size: 5.8rem; font-weight: 700; color: white; }
.sc-score-unit { font-size: 2.2rem; color: #c8f53e; font-weight: 700; margin-left: 2px; }
.sc-label { font-size: 0.8rem; letter-spacing: 0.4em; opacity: 0.5; margin-top: -5px; font-weight: 600; }

.sc-body { display: flex; flex-direction: column; gap: 1.25rem; }
.sc-verdict { font-size: 1.4rem; font-weight: 700; color: #c8f53e; }

.sc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.sc-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem;
  border-radius: 10px;
  text-align: left;
}

.scs-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 0.2rem; font-weight: 600; }
.scs-val { font-family: 'DM Mono', monospace; font-size: 0.8rem; color: white; font-weight: 600; }
.scs-val.bad { color: #ff5c5c; }

.sc-quote { 
  font-style: italic; 
  font-size: 1rem; 
  color: white; 
  opacity: 0.8; 
  padding: 0.75rem;
  background: rgba(200,245,62,0.1);
  border-radius: 10px;
}

.sc-footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; margin-top: 0.5rem; }
.sc-url { font-family: 'DM Mono', monospace; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; color: #c8f53e; }
.sc-tagline { font-size: 0.65rem; opacity: 0.4; text-transform: uppercase; letter-spacing: 0.15em; }

/* Responsive */
@media (max-width: 560px) {
  .tests-preview    { grid-template-columns: 1fr; }
  .stat-highlights  { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .hero-title       { font-size: 3rem; }
}
