/* HIY redesign draft — shared design system for drafts/*.html.
   NOT the live site's stylesheet (that's /style.css with a different
   design language). Local-only until the owner decides to launch this. */

:root {
  --bg: #05070a;
  --card-bg: rgba(15, 19, 30, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(168, 85, 247, 0.45);
  --text: #f8fafc;
  --text-sub: #94a3b8;
  --purple: #a855f7;
  --pink: #ec4899;
  --lime: #84cc16;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --red: #ef4444;
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 1000;
  background: var(--purple); color: #fff; padding: 12px 20px;
  border-radius: 10px; font-weight: 700; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

.parallax-layer {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  opacity: 0.4; transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
}
.orb-1 { top: -10%; left: -5%; width: 600px; height: 600px; background: radial-gradient(circle, var(--purple) 0%, transparent 70%); }
.orb-2 { bottom: 5%; right: -10%; width: 650px; height: 650px; background: radial-gradient(circle, var(--cyan) 0%, transparent 70%); }
.orb-3 { top: 50%; left: 40%; width: 500px; height: 500px; background: radial-gradient(circle, var(--pink) 0%, transparent 70%); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

header { position: sticky; top: 16px; z-index: 100; padding: 0 16px; }
nav {
  max-width: 980px; margin: 0 auto; backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); background: rgba(12, 16, 25, 0.8);
  border: 1px solid var(--card-border); border-radius: 999px; padding: 10px 24px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.logo { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.35rem; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 10px; }
.logo b { color: var(--lime); font-weight: 800; }
.nav-tagline { font-size: 0.85rem; color: var(--text-sub); }
@media (max-width: 640px) { .nav-tagline { display: none; } }

.nav-btn { background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%); color: #05070a; font-weight: 700; padding: 9px 22px; border-radius: 999px; text-decoration: none; font-size: 0.88rem; transition: all 0.2s; }
.nav-btn:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }

.lang-switch { display: flex; gap: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; }
.lang-switch a { padding: 4px 7px; border-radius: 6px; color: var(--text-sub); text-decoration: none; }
.lang-switch a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.lang-switch a.active { color: var(--lime); font-weight: 700; }
@media (max-width: 640px) { .lang-switch { display: none; } }

.nav-hamburger {
  display: none; width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--card-border); background: rgba(255, 255, 255, 0.04);
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 15px; height: 2px; background: var(--text); border-radius: 1px; }
@media (max-width: 640px) { .nav-hamburger { display: flex; } }

.mobile-menu {
  display: none; flex-direction: column; gap: 2px; max-width: 980px; margin: 8px auto 0;
  background: rgba(12, 16, 25, 0.95); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 10px 20px; backdrop-filter: blur(24px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 4px; font-size: 0.9rem; color: var(--text-sub); border-bottom: 1px solid var(--card-border); text-decoration: none; }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .lang-switch { display: flex; padding-top: 8px; }

/* Help chat widget */
.help-fab {
  position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px;
  border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; border: none; font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 22px; cursor: pointer; box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5);
  z-index: 200; transition: transform 0.15s;
}
.help-fab:hover { transform: scale(1.06); }

.help-panel {
  position: fixed; right: 24px; bottom: 92px; width: 340px; max-width: calc(100vw - 48px);
  height: 460px; max-height: calc(100vh - 140px); background: rgba(12, 16, 25, 0.92);
  backdrop-filter: blur(20px); border: 1px solid var(--card-border); border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6); display: none; flex-direction: column;
  overflow: hidden; z-index: 200;
}
.help-panel.open { display: flex; }

.help-head { padding: 16px 18px; border-bottom: 1px solid var(--card-border); display: flex; justify-content: space-between; align-items: center; }
.help-head span { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 15px; }
.help-close { background: none; border: none; color: var(--text-sub); font-size: 20px; cursor: pointer; line-height: 1; padding: 4px; }
.help-close:hover { color: var(--text); }

.help-body { flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.help-msg { max-width: 85%; padding: 10px 13px; border-radius: 12px; font-size: 13.5px; line-height: 1.55; }
.help-msg.bot { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); align-self: flex-start; color: var(--text); }
.help-msg.user { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; align-self: flex-end; font-weight: 500; }

.help-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 18px 12px; }
.help-chip { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); color: var(--text-sub); border-radius: 999px; padding: 7px 12px; font-size: 12px; cursor: pointer; }
.help-chip:hover { color: var(--text); border-color: var(--border-glow); }

.help-inputrow { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--card-border); }
.help-inputrow input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); border-radius: 10px; padding: 10px 12px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; }
.help-inputrow input:focus { outline: none; border-color: var(--purple); }
.help-send { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; border: none; border-radius: 10px; padding: 0 16px; font-weight: 600; cursor: pointer; font-size: 13px; }
.help-send:hover { filter: brightness(1.1); }

@media (max-width: 480px) {
  .help-panel { right: 12px; bottom: 84px; }
  .help-fab { right: 16px; bottom: 16px; }
}

.hero { text-align: center; padding: 110px 0 50px; }
.pill-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); padding: 6px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; color: #e2e8f0; backdrop-filter: blur(8px); }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 6.5vw, 4.8rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(135deg, #c084fc 0%, #f472b6 40%, #38bdf8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-p { font-size: 1.22rem; color: var(--text-sub); max-width: 680px; margin: 0 auto 36px; }
.hero-cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 24px; font-size: 0.82rem; color: var(--text-sub); opacity: 0.7; }

.btn-main { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; font-weight: 700; padding: 15px 36px; border-radius: 999px; text-decoration: none; box-shadow: 0 10px 35px rgba(168, 85, 247, 0.4); transition: all 0.25s; display: inline-block; border: none; cursor: pointer; font-size: 1rem; }
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(236, 72, 153, 0.55); }
.btn-main[disabled] { opacity: 0.6; cursor: default; transform: none; }

.btn-ghost { background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); color: var(--text); font-weight: 700; padding: 15px 32px; border-radius: 999px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--text-sub); }

/* 3-step band */
.steps-band { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 20px 0 80px; padding: 32px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); backdrop-filter: blur(20px); }
.step { flex: 1 1 220px; max-width: 260px; }
.step-num { font-family: 'JetBrains Mono', monospace; color: var(--purple); font-size: 0.8rem; font-weight: 700; }
.step h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; margin: 6px 0 6px; }
.step p { color: var(--text-sub); font-size: 0.88rem; }
.step-arrow { color: var(--text-sub); font-size: 1.4rem; }
@media (max-width: 760px) { .step-arrow { display: none; } }

.section-title { text-align: center; margin: 100px 0 40px; }
.section-title h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.section-title p { color: var(--text-sub); font-size: 1.1rem; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-bottom: 60px; }
.bento-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 34px; backdrop-filter: blur(20px); position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.bento-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.col-8 { grid-column: span 8; } .col-4 { grid-column: span 4; } .col-6 { grid-column: span 6; } .col-12 { grid-column: span 12; }
.card-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; display: inline-block; }
.bento-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.55rem; margin-bottom: 10px; font-weight: 700; }
.bento-card p { color: var(--text-sub); font-size: 0.95rem; line-height: 1.6; }

.tech-box { margin-bottom: 60px; }
.tech-box-inner { background: var(--card-bg); border: 1px dashed var(--card-border); border-radius: var(--radius); padding: 34px; text-align: center; backdrop-filter: blur(20px); }
.tech-box-inner h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; margin-bottom: 8px; }
.tech-box-inner p { color: var(--text-sub); font-size: 0.95rem; margin-bottom: 18px; }

.mock-chat { background: rgba(0, 0, 0, 0.35); border: 1px solid var(--card-border); border-radius: 18px; padding: 16px; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mock-message { background: rgba(255, 255, 255, 0.04); padding: 10px 14px; border-radius: 12px; font-size: 0.85rem; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pill-sec { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; padding: 2px 8px; border-radius: 6px; background: rgba(6, 182, 212, 0.15); color: var(--cyan); white-space: nowrap; }

.interactive-section { background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(6, 182, 212, 0.05)), var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 48px; backdrop-filter: blur(20px); margin: 60px 0; }
.sim-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.sim-stats { display: flex; gap: 16px; }
.stat-box { background: rgba(0, 0, 0, 0.4); padding: 10px 18px; border-radius: 12px; border: 1px solid var(--card-border); }
.stat-label { font-size: 0.7rem; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-val { font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; font-weight: 700; color: var(--cyan); }
.sim-track { display: flex; justify-content: space-between; align-items: center; position: relative; margin: 40px 0; padding: 20px 0; }
.sim-track::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--card-border); z-index: 0; }
.hop-node { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); border: 2px solid var(--card-border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; z-index: 1; transition: all 0.3s; }
.hop-node.active { border-color: var(--purple); background: var(--purple); color: #fff; box-shadow: 0 0 20px rgba(168, 85, 247, 0.6); }
.hop-node.friend { border-color: var(--lime); color: var(--lime); }
.hop-node.friend.active { background: var(--lime); color: #000; box-shadow: 0 0 20px rgba(132, 204, 22, 0.6); }
.sim-controls { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.sim-btn { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--card-border); color: var(--text); padding: 10px 24px; border-radius: 12px; cursor: pointer; font-weight: 600; transition: all 0.2s; }
.sim-btn:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--text-sub); }

/* Chat showcase */
.chat-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 48px; margin: 80px 0; backdrop-filter: blur(20px); }
.chat-showcase h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 10px 0 16px; font-weight: 800; }
.chat-showcase p { color: var(--text-sub); margin-bottom: 20px; }
.checklist { list-style: none; }
.checklist li { color: #e2e8f0; font-size: 0.92rem; margin-bottom: 10px; padding-left: 26px; position: relative; }
.checklist li::before { content: '✓'; color: var(--lime); position: absolute; left: 0; font-weight: 700; }

.phone-mock { background: rgba(0,0,0,0.4); border: 1px solid var(--card-border); border-radius: 22px; padding: 20px; }
.phone-mock-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--card-border); }
.phone-mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--lime), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; }
.phone-mock-name { font-weight: 700; font-size: 0.9rem; }
.phone-mock-status { font-size: 0.75rem; color: var(--lime); }
.phone-mock-bubble { padding: 10px 14px; border-radius: 14px; font-size: 0.88rem; margin-bottom: 10px; max-width: 80%; }
.phone-mock-bubble.them { background: rgba(255,255,255,0.06); }
.phone-mock-bubble.me { background: linear-gradient(135deg, var(--purple), var(--pink)); margin-left: auto; color: #fff; }
.phone-mock-readstatus { text-align: right; font-size: 0.72rem; color: var(--text-sub); }
@media (max-width: 860px) { .chat-showcase { grid-template-columns: 1fr; } }

/* Feed lenses */
.lens-section { text-align: center; margin: 80px 0; }
.lens-chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.lens-chip { background: var(--card-bg); border: 1px solid var(--card-border); padding: 10px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; }
.lens-note { color: var(--text-sub); font-size: 0.9rem; max-width: 560px; margin: 0 auto; }

/* HIY+ band */
.hiyplus-band { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin: 90px 0; }
.hiyplus-copy h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem, 3vw, 2.4rem); margin: 10px 0 14px; font-weight: 800; }
.hiyplus-copy p { color: var(--text-sub); }
.hiyplus-cards { display: flex; flex-direction: column; gap: 16px; }
.hiyplus-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 24px; backdrop-filter: blur(16px); }
.hiyplus-icon { color: var(--amber); font-size: 1.4rem; margin-bottom: 8px; }
.hiyplus-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; margin-bottom: 6px; }
.hiyplus-card p { color: var(--text-sub); font-size: 0.9rem; }
@media (max-width: 860px) { .hiyplus-band { grid-template-columns: 1fr; } }

/* Infrastructure band */
.infra-band { margin: 90px 0; }
.infra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.infra-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 24px; backdrop-filter: blur(16px); }
.infra-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--cyan); font-weight: 700; display: block; margin-bottom: 10px; }
.infra-item p { color: var(--text-sub); font-size: 0.88rem; }
@media (max-width: 900px) { .infra-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .infra-grid { grid-template-columns: 1fr; } }

.tldr-wrap { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 12px; backdrop-filter: blur(20px); overflow-x: auto; margin: 60px 0; }
table { width: 100%; border-collapse: collapse; text-align: left; min-width: 900px; }
th, td { padding: 16px 20px; border-bottom: 1px solid var(--card-border); font-size: 0.9rem; }
th { font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-sub); }
.col-highlight { background: rgba(168, 85, 247, 0.08); font-weight: 700; color: #e9d5ff; }
.badge-bad { color: #f87171; font-weight: 600; }
.badge-good { color: #a3e635; font-weight: 600; }

.roast-matrix { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 40px; margin: 60px 0; backdrop-filter: blur(20px); }
.competitor-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tab-btn { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--card-border); color: var(--text-sub); padding: 10px 20px; border-radius: 999px; cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.tab-btn.active { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; border-color: transparent; box-shadow: 0 0 15px rgba(168, 85, 247, 0.4); }
.roast-content { background: rgba(0, 0, 0, 0.35); border: 1px solid var(--card-border); border-radius: 20px; padding: 30px; }
.roast-panel { display: none; }
.roast-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.roast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width: 768px) { .roast-grid { grid-template-columns: 1fr; } }
.roast-box h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; margin-bottom: 12px; }
.roast-box p { color: var(--text-sub); font-size: 0.95rem; }

/* Manifesto */
.manifesto { text-align: center; max-width: 720px; margin: 100px auto; }
.manifesto h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 18px; }
.manifesto p { color: var(--text-sub); font-size: 1.05rem; margin-bottom: 32px; }

footer { border-top: 1px solid var(--card-border); padding: 50px 0; margin-top: 60px; text-align: center; color: var(--text-sub); font-size: 0.88rem; }
.footer-inner { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-sub); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 900px) {
  .col-8, .col-4, .col-6 { grid-column: span 12; }
  .hero { padding: 80px 0 40px; }
}

/* ---- Shared utility-page shell (legal pages, feedback, register-tester) ---- */
.util-page { max-width: 640px; margin: 0 auto; padding: 100px 0 90px; position: relative; z-index: 1; }
.util-page .top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.util-page h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.util-page .legal-updated { color: var(--text-sub); font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 40px; display: block; }
.util-page h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; margin: 40px 0 14px; font-weight: 700; }
.util-page h2:first-of-type { margin-top: 0; }
.util-page h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; margin: 26px 0 10px; font-weight: 700; }
.util-page p, .util-page li { color: var(--text-sub); font-size: 0.95rem; line-height: 1.7; }
.util-page p { margin-bottom: 15px; }
.util-page ul, .util-page ol { margin: 0 0 15px 22px; }
.util-page li { margin-bottom: 7px; }
.util-page a { color: var(--cyan); }
.util-page strong { color: var(--text); font-weight: 700; }
.util-page .legal-box { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 22px 26px; margin-bottom: 22px; backdrop-filter: blur(16px); }
.util-page .legal-box p:last-child { margin-bottom: 0; }
.util-page .legal-note { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-sub); line-height: 1.6; padding: 14px 18px; border-left: 2px solid var(--card-border); margin: 22px 0; }
.util-page .intro { color: var(--text-sub); margin-bottom: 32px; }

.util-page .field { margin-bottom: 26px; }
.util-page label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-sub); margin-bottom: 10px; }
.util-page label .optional { text-transform: none; letter-spacing: normal; }
.util-page .btn-group { display: flex; flex-wrap: wrap; gap: 10px; }
.util-page .choice-btn { flex: 1 1 auto; padding: 13px 18px; border-radius: 14px; border: 1px solid var(--card-border); background: rgba(255,255,255,0.03); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.util-page .choice-btn:hover { background: rgba(255,255,255,0.07); border-color: var(--text-sub); }
.util-page .choice-btn.active { background: linear-gradient(135deg, var(--purple), var(--pink)); border-color: transparent; color: #fff; }
.util-page input[type="text"], .util-page input[type="email"], .util-page input[type="number"], .util-page textarea {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 14px 16px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; resize: vertical;
}
.util-page input:focus, .util-page textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(168,85,247,0.16); }
.util-page input::placeholder, .util-page textarea::placeholder { color: var(--text-sub); opacity: 0.7; }
.util-page .form-error { color: var(--red); font-size: 0.9rem; margin-bottom: 18px; }
.util-page .form-success { text-align: center; padding: 30px 0; }
.util-page .form-success .icon { width: 52px; height: 52px; border-radius: 50%; background: var(--lime); color: #05070a; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.util-page .form-success h2 { font-size: 1.3rem; margin-bottom: 8px; }
.util-page .form-success p { color: var(--text-sub); }

/* ---- Mascot placements — scattered around the page for flavor ---- */
.mascot {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
  user-select: none;
}

/* Hero: cheering, peeking in from the right edge — visible at every width,
   just pulled in closer on small screens so it never gets lost off-canvas */
.hero { position: relative; }
.mascot-hero {
  width: 200px;
  bottom: -14px;
  right: -30px;
  transform: rotate(-9deg);
  z-index: 2;
}
@media (max-width: 900px) { .mascot-hero { width: 140px; right: -10px; bottom: 0; } }
@media (max-width: 560px) { .mascot-hero { width: 96px; right: -4px; bottom: 6px; } }

/* Steps band: pointing pose, peeking in from the RIGHT edge — paw mirrored
   to point back in toward the steps */
.steps-band { position: relative; overflow: visible; }
.mascot-steps {
  width: 130px;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg) scaleX(-1);
  z-index: 2;
}
@media (max-width: 1000px) { .mascot-steps { width: 96px; right: -20px; } }
@media (max-width: 640px) { .mascot-steps { width: 74px; right: -8px; } }

/* Chat showcase: shocked pose (head/paws only crop — no body), peeking out
   from BEHIND the OUTER showcase card itself, anchored to ITS top-right
   corner — stays put regardless of whether the inner grid is 2 columns
   or stacked to 1 on narrower windows. Straight, no tilt. */
.chat-showcase { position: relative; z-index: 0; }
.mascot-chat {
  width: 130px;
  top: -82px;
  right: 50px;
  z-index: -1;
}
@media (max-width: 860px) { .mascot-chat { width: 104px; top: -66px; right: 24px; } }
@media (max-width: 480px) { .mascot-chat { width: 82px; top: -52px; right: 12px; } }

/* Roast matrix: angry pose, peeking out from BEHIND the card, top edge,
   RIGHT side — judging the competition before you even read the tabs */
.roast-matrix { position: relative; z-index: 0; }
.mascot-roast {
  width: 150px;
  top: -60px;
  right: 50px;
  transform: rotate(-6deg);
  z-index: -1;
}
@media (max-width: 760px) { .mascot-roast { width: 110px; top: -44px; right: 16px; } }

/* TL;DR table: crying pose, peeking in from the bottom-left side — visible
   at every width */
.tldr-wrap { position: relative; }
.mascot-tldr {
  width: 110px;
  left: -34px;
  bottom: -38px;
  transform: rotate(9deg) scaleX(-1);
  z-index: 2;
}
@media (max-width: 900px) { .mascot-tldr { width: 80px; left: -14px; bottom: -20px; } }
@media (max-width: 560px) { .mascot-tldr { width: 60px; left: -6px; bottom: -12px; } }

/* Manifesto: sleeping pose, peeking in from the side — closing note,
   visible at every width */
.manifesto { position: relative; }
.mascot-manifesto {
  width: 150px;
  left: -80px;
  bottom: -10px;
  transform: rotate(6deg);
  z-index: 2;
}
@media (max-width: 1000px) { .mascot-manifesto { width: 100px; left: -30px; } }
@media (max-width: 640px) { .mascot-manifesto { width: 70px; left: -12px; } }
