
:root {
  --bg: #08080c;
  --bg-elev: #111118;
  --bg-card: #161620;
  --bg-light: #f8f5ef;
  --gold: #d4a943;
  --gold-bright: #f5c850;
  --gold-dim: #8a6f2d;
  --pink: #c8125c;
  --navy: #0B0F2E;
  --orange: #e95d2b;
  --ink: #f3f1e6;
  --ink-mute: #a8a4a0;
  --ink-dim: #6b6864;
  --ink-dark: #1a1a1a;
  --ink-dark-mute: #555;
  --border: rgba(212,169,67,0.18);
  --border-strong: rgba(212,169,67,0.4);
  --border-light: rgba(11,15,46,0.12);
  --shadow: 0 10px 40px rgba(0,0,0,0.35);
}

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

html, body {
  background: var(--bg-light);
  color: var(--ink-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--pink); }

code {
  background: rgba(11, 15, 46, 0.06);
  color: var(--navy);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.88em;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}

/* ========== BRAND MARK ========== */
.brand-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; letter-spacing: -0.01em;
}
.brand-mark .b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: var(--gold);
  color: #0b0f2e; font-weight: 800; border-radius: 50%;
  font-family: Georgia, serif; font-size: 18px;
}
.brand-mark .etty {
  font-family: Georgia, serif; font-size: 22px; color: var(--ink-dark);
}
.brand-mark .kicker {
  font-size: 10px; letter-spacing: 0.2em;
  padding: 4px 8px; background: var(--orange); color: white;
  border-radius: 4px; font-weight: 700; margin-left: 6px;
}
.brand-mark.small .b { width: 24px; height: 24px; font-size: 14px; }
.brand-mark.small .etty { font-size: 16px; }
.brand-mark.small .kicker { font-size: 8px; padding: 2px 6px; }

/* ========== AUTH OVERLAY ========== */
.auth-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px; width: 100%;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.auth-card .brand-mark { margin-bottom: 32px; }
.auth-card .brand-mark .etty { color: var(--ink); }
.auth-card h1 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 12px;
  color: var(--ink);
}
.auth-card p {
  color: var(--ink-mute); margin-bottom: 24px;
  font-size: 14px;
}
.auth-card label {
  display: block; font-size: 11px;
  letter-spacing: 0.1em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 8px; font-weight: 600;
}
.auth-card input {
  width: 100%; padding: 14px 16px;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 8px; color: var(--ink); font-size: 16px;
  margin-bottom: 16px;
}
.auth-card input:focus {
  outline: none; border-color: var(--gold);
}
.auth-card button {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--bg);
  border: 0; border-radius: 8px; font-weight: 700;
  font-size: 15px; cursor: pointer;
  transition: background .15s;
}
.auth-card button:hover { background: var(--gold-bright); }
.auth-card .auth-footnote {
  margin-top: 24px; font-size: 12px;
  color: var(--ink-dim); margin-bottom: 0;
}
.auth-card .auth-error {
  background: rgba(200,18,92,0.1); color: var(--pink);
  padding: 12px; border-radius: 6px; font-size: 13px;
  margin-top: 12px;
}

/* ========== TOPBAR ========== */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--border-light);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
.topbar nav { display: flex; gap: 32px; }
.topbar nav a {
  color: var(--ink-dark); font-weight: 500; font-size: 14px;
}
.topbar nav a:hover { color: var(--orange); }
.topbar .signout {
  background: transparent; border: 1px solid var(--border-light);
  padding: 8px 14px; border-radius: 6px; color: var(--ink-dark-mute);
  font-size: 12px; cursor: pointer; font-weight: 500;
}
.topbar .signout:hover { color: var(--ink-dark); border-color: var(--ink-dark); }

/* ========== HERO ========== */
.hero {
  padding: 80px 40px 96px;
  background:
    radial-gradient(circle at 20% 30%, rgba(233, 93, 43, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 169, 67, 0.05), transparent 50%),
    var(--bg-light);
  position: relative;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; font-size: 11px;
  letter-spacing: 0.18em; color: var(--orange);
  font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 24px;
  color: var(--ink-dark); max-width: 1000px;
}
.hero h1 em {
  font-family: Georgia, serif; font-style: italic;
  color: var(--orange); font-weight: 600;
}
.hero-lede {
  font-size: 18px; line-height: 1.55; color: var(--ink-dark-mute);
  max-width: 760px; margin-bottom: 40px;
}
.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.cta-primary {
  background: var(--ink-dark); color: var(--bg-light);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  transition: background .15s;
}
.cta-primary:hover { background: var(--orange); color: white; }
.cta-secondary {
  background: white; color: var(--ink-dark);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  border: 1px solid var(--border-light);
}
.cta-secondary:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; max-width: 800px;
}
.hero-stats > div {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 16px; border-left: 2px solid var(--orange);
}
.hero-stats .stat-num {
  font-size: 36px; font-weight: 600;
  line-height: 1; color: var(--ink-dark);
  letter-spacing: -0.02em;
}
.hero-stats .stat-label {
  font-size: 12px; color: var(--ink-dark-mute);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ========== SECTIONS ========== */
.section {
  max-width: 1100px; margin: 0 auto;
  padding: 96px 40px;
}
.section.dark-section {
  max-width: none; margin: 0;
  background: var(--bg); color: var(--ink);
  padding: 96px 40px;
}
.section.dark-section .section-header {
  max-width: 1100px; margin: 0 auto 48px;
}
.section.dark-section h2 { color: var(--ink); }
.section.dark-section .section-num { color: var(--gold); }
.section.dark-section .section-intro { color: var(--ink-mute); }
.section.dark-section code {
  background: rgba(212,169,67,0.1); color: var(--gold-bright);
}

.section-header { margin-bottom: 48px; }
.section-num {
  display: inline-block; font-size: 12px;
  letter-spacing: 0.15em; color: var(--orange);
  font-weight: 700; margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--ink-dark); max-width: 900px;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 17px; color: var(--ink-dark-mute);
  max-width: 760px; line-height: 1.55;
}

/* ========== HOW TO AI ========== */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 56px;
}
.how-col {
  background: white; border: 1px solid var(--border-light);
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.how-col.featured {
  background: var(--orange); color: white;
  border-color: var(--orange);
}
.how-tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 12px; background: var(--ink-dark); color: white;
  border-radius: 6px; align-self: flex-start;
  margin-bottom: 4px;
}
.how-col.featured .how-tag { background: var(--ink-dark); }
.how-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px;
  font-size: 13.5px; line-height: 1.45;
}
.how-key {
  font-weight: 600; color: var(--ink-dark-mute);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}
.how-col.featured .how-key { color: rgba(255,255,255,0.75); }
.how-val { color: var(--ink-dark); }
.how-col.featured .how-val { color: white; }
.how-vibe {
  background: rgba(11,15,46,0.04); padding: 16px;
  border-radius: 8px; font-size: 13px; line-height: 1.5;
  margin-top: auto;
}
.how-vibe em { color: var(--orange); font-style: italic; font-weight: 500; }
.how-col.featured .how-vibe { background: rgba(0,0,0,0.18); }
.how-col.featured .how-vibe em { color: var(--gold-bright); }

.how-table-wrap {
  margin-bottom: 48px;
  overflow-x: auto;
}
.how-table-title {
  font-size: 18px; font-weight: 600; margin-bottom: 16px;
  color: var(--ink-dark);
}
.how-table {
  width: 100%; border-collapse: collapse;
  background: white; border: 1px solid var(--border-light);
  border-radius: 12px; overflow: hidden;
  font-size: 13.5px; line-height: 1.5;
}
.how-table th {
  background: var(--ink-dark); color: white;
  padding: 14px 18px; text-align: left;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.how-table th.featured-col, .how-table td.featured-col {
  background: var(--orange); color: white;
}
.how-table td.featured-col strong { color: var(--gold-bright); }
.how-table td {
  padding: 16px 18px; vertical-align: top;
  border-top: 1px solid var(--border-light);
  color: var(--ink-dark);
}
.how-table tbody tr:hover td:not(.featured-col) {
  background: rgba(233, 93, 43, 0.03);
}

.when-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 48px;
}
.when-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: 12px; padding: 24px;
}
.when-card.featured {
  background: var(--orange); color: white;
  border-color: var(--orange);
}
.when-tag {
  font-size: 14px; font-weight: 700;
  margin-bottom: 14px;
}
.when-card.featured .when-tag { color: white; }
.when-card ul { list-style: none; }
.when-card li {
  padding: 8px 0 8px 20px; position: relative;
  font-size: 14px; line-height: 1.5;
  color: var(--ink-dark);
}
.when-card.featured li { color: white; }
.when-card li::before {
  content: '●'; position: absolute; left: 0;
  color: var(--orange); font-size: 10px;
  top: 12px;
}
.when-card.featured li::before { color: var(--gold-bright); }

/* ========== SKILLS (numbered list) ========== */
.skills-list {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 1100px; margin: 0 auto;
}
.skill-row {
  display: grid; grid-template-columns: 56px 1fr 40px;
  gap: 20px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 22px;
  text-decoration: none; color: var(--ink);
  transition: border-color .2s, transform .15s, background .2s;
}
.skill-row:hover {
  border-color: var(--border-strong);
  transform: translateX(3px);
  background: rgba(212,169,67,0.05);
}
.skill-row.featured {
  background: linear-gradient(90deg, rgba(212,169,67,0.18), rgba(212,169,67,0.04));
  border-color: var(--border-strong);
}
.skill-num {
  font-family: Georgia, serif;
  font-size: 30px; font-weight: 600;
  color: var(--gold); line-height: 1;
  letter-spacing: -0.01em;
  text-align: left;
}
.skill-row.featured .skill-num { color: var(--gold-bright); }
.skill-body {
  display: flex; flex-direction: column; gap: 6px;
}
.skill-name-row {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.skill-name {
  font-size: 17px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em;
}
.skill-owner {
  font-size: 10px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; padding: 3px 8px;
  background: rgba(212,169,67,0.1); border-radius: 4px;
}
.skill-desc {
  color: var(--ink-mute); font-size: 13.5px; line-height: 1.55;
}
.skill-verbatim {
  font-size: 12px; color: var(--ink-dim);
  font-style: italic; margin-top: 2px;
}
.skill-dl-icon {
  background: var(--gold); color: var(--bg);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
  transition: background .15s;
}
.skill-row:hover .skill-dl-icon { background: var(--gold-bright); }
.skills-bundle {
  max-width: 1100px; margin: 32px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bundle-card {
  background: rgba(212,169,67,0.08);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  color: var(--ink); transition: border-color .2s;
}
.bundle-card:hover { border-color: var(--border-strong); }
.bundle-icon {
  background: var(--gold); color: var(--bg);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.bundle-name {
  font-weight: 600; color: var(--ink);
}
.bundle-sub {
  font-size: 12px; color: var(--ink-mute);
  margin-top: 2px;
}

/* ========== WORKSHOP ========== */
.workshop-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; margin-bottom: 56px;
}
.workshop-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: 12px; padding: 24px;
}
.workshop-card.featured {
  background: var(--orange); color: white; border-color: var(--orange);
}
.workshop-card h3 {
  font-size: 14px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: 0.02em;
  color: var(--ink-dark);
}
.workshop-card.featured h3 { color: white; }
.workshop-card p {
  color: var(--ink-dark-mute); font-size: 14px;
  margin-bottom: 12px;
}
.workshop-card.featured p { color: rgba(255,255,255,0.85); }
.workshop-card ul { list-style: none; }
.workshop-card li {
  padding: 4px 0 4px 16px; position: relative;
  font-size: 13.5px; line-height: 1.5; color: var(--ink-dark);
}
.workshop-card.featured li { color: white; }
.workshop-card li::before {
  content: '·'; position: absolute; left: 4px;
  color: var(--orange); font-size: 18px;
  top: 2px;
}
.workshop-card.featured li::before { color: var(--gold-bright); }

.cheat-sheet {
  background: var(--bg-card); color: var(--ink);
  border-radius: 16px; padding: 32px;
  margin-top: 32px;
}
.cheat-sheet h3 {
  font-size: 18px; font-weight: 600; margin-bottom: 24px;
  color: var(--gold-bright);
}
.cheat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.cheat-grid h4 {
  font-size: 13px; color: var(--gold); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700;
}
.cheat-grid ol, .cheat-grid ul {
  padding-left: 18px;
  font-size: 14px; line-height: 1.6;
  color: var(--ink-mute);
}
.cheat-grid strong { color: var(--ink); }

/* ========== VOICE PROTOCOL ========== */
.voice-stage {
  display: flex; flex-direction: column; gap: 16px;
}
.voice-step {
  background: white; border: 1px solid var(--border-light);
  border-radius: 14px; padding: 28px 32px;
  position: relative;
}
.voice-step.featured {
  background: linear-gradient(135deg, var(--orange), #f06d3b);
  color: white; border-color: var(--orange);
}
.voice-step-tag {
  display: inline-block; font-size: 11px;
  letter-spacing: 0.16em; font-weight: 700;
  background: var(--ink-dark); color: white;
  padding: 6px 12px; border-radius: 6px;
  margin-bottom: 16px;
}
.voice-step.featured .voice-step-tag {
  background: rgba(0,0,0,0.3); color: white;
}
.voice-step h3 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.2;
  margin-bottom: 12px; color: var(--ink-dark);
}
.voice-step.featured h3 { color: white; }
.voice-step .voice-step-lede {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-dark-mute); margin-bottom: 20px;
  max-width: 800px;
}
.voice-step.featured .voice-step-lede {
  color: rgba(255,255,255,0.92);
}
.voice-step.featured .voice-step-lede code {
  background: rgba(0,0,0,0.18); color: white;
}
.voice-step .prompt-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
  color: var(--ink);
}
.voice-step.featured .prompt-box {
  background: rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.18);
}
.voice-step .prompt-box summary {
  cursor: pointer; color: var(--gold-bright);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; list-style: none;
  user-select: none; display: flex; align-items: center; gap: 8px;
}
.voice-step.featured .prompt-box summary {
  color: white;
}
.voice-step .prompt-box summary::before {
  content: '▸'; display: inline-block;
  transition: transform .15s; color: var(--gold);
}
.voice-step.featured .prompt-box summary::before { color: rgba(255,255,255,0.8); }
.voice-step .prompt-box[open] summary::before { transform: rotate(90deg); }
.voice-step .prompt-box pre {
  margin: 16px 0 12px; white-space: pre-wrap;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(212,169,67,0.08);
  border-radius: 6px; padding: 16px 18px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.55;
  color: var(--ink); max-height: 380px; overflow-y: auto;
}
.voice-step.featured .prompt-box pre {
  background: rgba(0,0,0,0.45); border-color: rgba(255,255,255,0.08);
}
.voice-step .prompt-box .copy-btn {
  background: var(--gold); color: var(--bg);
  border: 0; padding: 10px 18px; border-radius: 6px;
  font-weight: 700; font-size: 13px; cursor: pointer;
  transition: background .15s;
}
.voice-step .prompt-box .copy-btn:hover { background: var(--gold-bright); }
.voice-step.featured .prompt-box .copy-btn {
  background: var(--ink-dark); color: white;
}
.voice-step.featured .prompt-box .copy-btn:hover { background: black; }

.voice-next-step {
  background: var(--ink-dark); color: white;
  border-radius: 14px; padding: 28px 32px;
  margin-top: 8px;
}
.voice-next-step h3 {
  font-size: 22px; font-weight: 600; color: var(--gold-bright);
  margin-bottom: 18px;
}
.voice-next-step ol {
  padding-left: 24px; margin-bottom: 20px;
  font-size: 15px; line-height: 1.7;
}
.voice-next-step ol li { color: var(--ink); margin-bottom: 6px; }
.voice-next-step code {
  background: rgba(212,169,67,0.18); color: var(--gold-bright);
}
.voice-next-step .voice-note {
  font-size: 14px; color: var(--ink-mute);
  background: rgba(212,169,67,0.06); padding: 14px 16px;
  border-left: 2px solid var(--gold); border-radius: 0 6px 6px 0;
}
.voice-next-step strong { color: var(--gold-bright); }

/* ========== CHAT ========== */
.chat-stage {
  max-width: 800px; margin: 0 auto;
}
.chat-window {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  min-height: 360px; max-height: 560px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 16px;
}
.chat-message {
  display: flex; gap: 12px;
  align-items: flex-start;
}
.chat-message.user { justify-content: flex-end; }
.chat-message.user .chat-avatar { display: none; }
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: Georgia, serif; flex-shrink: 0;
}
.chat-bubble {
  background: var(--bg-elev); padding: 14px 18px;
  border-radius: 12px; max-width: 78%;
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink);
}
.chat-message.user .chat-bubble {
  background: var(--gold); color: var(--bg);
}
.chat-bubble p { margin-bottom: 8px; }
.chat-bubble p:last-child { margin-bottom: 0; }
.chat-bubble code {
  background: rgba(212,169,67,0.15); color: var(--gold-bright);
  padding: 1px 6px; border-radius: 3px;
  font-size: 0.88em;
}
.chat-bubble.typing {
  display: flex; gap: 6px; padding: 18px;
}
.chat-bubble.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.6;
  animation: bounce 1.4s infinite ease-in-out both;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: -0.16s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: -0.08s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}
.chat-input-row {
  display: flex; gap: 8px;
}
.chat-input-row input {
  flex: 1; padding: 14px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--ink); font-size: 15px;
}
.chat-input-row input:focus {
  outline: none; border-color: var(--gold);
}
.chat-input-row button {
  background: var(--gold); color: var(--bg);
  border: 0; padding: 0 24px; border-radius: 8px;
  font-weight: 700; font-size: 14px; cursor: pointer;
}
.chat-input-row button:hover { background: var(--gold-bright); }
.chat-input-row button:disabled {
  background: var(--gold-dim); cursor: not-allowed;
}
.chat-suggestions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 12px;
}
.suggestion {
  background: transparent; border: 1px solid var(--border);
  color: var(--ink-mute); padding: 8px 14px;
  border-radius: 100px; font-size: 12px;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.suggestion:hover {
  border-color: var(--gold); color: var(--gold-bright);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg); color: var(--ink-mute);
  padding: 40px 40px;
  text-align: center;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer .brand-mark { margin-bottom: 16px; }
.footer .brand-mark .etty { color: var(--ink); }
.footer p { margin-bottom: 8px; font-size: 14px; }
.footer .small { font-size: 12px; color: var(--ink-dim); }
.footer a { color: var(--gold-bright); }

/* ========== TOAST ========== */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--ink-dark); color: white;
  padding: 12px 20px; border-radius: 8px;
  font-size: 14px; box-shadow: var(--shadow);
  z-index: 200; animation: toastIn .25s ease-out;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero { padding: 56px 24px 64px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section { padding: 56px 24px; }
  .section.dark-section { padding: 56px 24px; }
  .topbar { padding: 14px 20px; }
  .topbar nav { gap: 14px; font-size: 12px; }
  .how-grid { grid-template-columns: 1fr; }
  .when-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .skills-bundle { grid-template-columns: 1fr; }
  .how-row { grid-template-columns: 1fr; gap: 4px; }
}
