/* ===== SPIEL LANDING PAGE — Retro Broadcast Sketch ===== */

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

:root {
  --bg: #f5f0e8;
  --surface: #fff;
  --ink: #1a1a1a;
  --ink2: #555;
  --ink3: #999;
  --stroke: #1a1a1a;
  --stroke-light: #d4cfc5;
  --yellow: #e8a817;
  --yellow-bg: rgba(232,168,23,0.08);
  --yellow-border: rgba(232,168,23,0.3);
  --red: #c0392b;
  --r: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Halftone dot texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.7' fill='%23000'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--stroke);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  border: 1.5px solid var(--stroke-light);
  filter: grayscale(100%) contrast(1.2);
}

.nav-logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--ink2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--surface) !important;
  padding: 7px 18px;
  border: 2px solid var(--stroke);
  box-shadow: 2px 2px 0 var(--stroke);
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.1s !important;
}

.nav-cta:hover {
  box-shadow: 1px 1px 0 var(--stroke) !important;
  transform: translate(1px, 1px);
}

/* ===== NOTCH HERO — on paper background ===== */
.notch-hero {
  padding: 70px 24px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.notch-tagline {
  text-align: center;
  font-family: "Caveat", cursive;
  color: var(--ink2);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 40px 24px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 2px solid var(--stroke);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  box-shadow: 2px 2px 0 var(--stroke);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title-line { display: block; }

.hero-title-line.accent {
  font-family: "Caveat", cursive;
  color: var(--yellow);
  font-size: clamp(44px, 7.5vw, 78px);
  letter-spacing: 0;
  transform: rotate(-1deg);
  display: inline-block;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink2);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}

.hero-meta {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--stroke);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.1s;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--stroke);
}

.btn-yellow:hover {
  box-shadow: 2px 2px 0 var(--stroke);
  transform: translate(2px, 2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 15px;
}

.btn-icon { font-size: 18px; }

/* ===== NOTCH MOCKUP ===== */
.notch-mockup {
  max-width: 560px;
  width: 90vw;
  margin: 0 auto;
  padding-top: 80px;
}

.notch-screen {
  background: #000;
  border-radius: 16px 16px 6px 6px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--stroke);
  box-shadow: 4px 4px 0 var(--stroke);
}

/* The notch */
.notch-cutout {
  width: 140px;
  height: 28px;
  background: var(--bg);
  margin: 0 auto;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 10;
}

.notch-camera {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #1a3a1a 40%, #0a1a0a 70%);
  border-radius: 50%;
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 2px rgba(26, 58, 26, 0.5);
}

/* Prompter area */
.notch-prompter {
  position: relative;
  height: 180px;
  overflow: hidden;
}

/* Fade gradients top and bottom */
.notch-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.notch-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* Scrolling text track */
.notch-scroll-area {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.notch-scroll-track {
  animation: notch-scroll 30s linear infinite;
}

.notch-scroll-track p {
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.8;
  text-align: center;
  padding: 0 24px;
  margin: 0;
  white-space: normal;
}

@keyframes notch-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-55%); }
}

/* Pause animation on hover */
.notch-screen:hover .notch-scroll-track {
  animation-play-state: paused;
}

/* Reading guide */
.notch-guide {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(232,168,23,0.6) 0%,
    rgba(232,168,23,0.15) 10%,
    transparent 25%,
    transparent 75%,
    rgba(232,168,23,0.15) 90%,
    rgba(232,168,23,0.6) 100%
  );
}

.notch-guide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(232, 168, 23, 0.7);
  font-size: 9px;
  line-height: 1;
}

.notch-guide-arrow.left { left: 8px; }
.notch-guide-arrow.right { right: 8px; }

/* Label below */
.notch-label {
  text-align: center;
  margin-top: 18px;
  font-family: "Caveat", cursive;
  font-size: 17px;
  color: var(--ink2);
}

.notch-label-arrow {
  color: var(--yellow);
  font-weight: 700;
}

/* Decorative circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.7' fill='%23000'/%3E%3C/svg%3E");
  z-index: 0;
}

.deco-1 { width: 400px; height: 400px; top: -100px; right: -150px; }
.deco-2 { width: 300px; height: 300px; bottom: -50px; left: -100px; }

/* ===== TICKER ===== */
.ticker {
  background: var(--yellow);
  padding: 10px 0;
  overflow: hidden;
  border-top: 2px solid var(--stroke);
  border-bottom: 2px solid var(--stroke);
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-stamp {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  transform: rotate(-2deg);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--ink2);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== WORD DEFINITION ===== */
.definition {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.definition-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 36px 40px;
  box-shadow: 4px 4px 0 var(--stroke);
  border-left: 6px solid var(--yellow);
  position: relative;
}

.def-word {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.def-term {
  font-family: "Caveat", cursive;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.def-divider {
  font-size: 32px;
  color: var(--stroke-light);
  font-weight: 300;
}

.def-pos {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--yellow-bg);
  border: 1.5px dashed var(--yellow-border);
  padding: 3px 10px;
  border-radius: 2px;
}

.def-phonetic {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  color: var(--ink3);
}

.def-meaning {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
}

.def-example {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
  font-style: italic;
  padding-left: 16px;
  border-left: 2px dashed var(--stroke-light);
  margin-bottom: 16px;
}

.def-example em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 700;
}

.def-origin {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5;
}

.def-origin-label {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--stroke-light);
  padding: 2px 6px;
  border-radius: 2px;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 24px 20px;
  box-shadow: 3px 3px 0 var(--stroke);
  transition: all 0.15s;
}

.feature-card:hover {
  box-shadow: 1px 1px 0 var(--stroke);
  transform: translate(2px, 2px);
}

.feature-card.yellow-top {
  border-top: 4px solid var(--yellow);
}

.feature-icon {
  font-size: 20px;
  margin-bottom: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1.5px solid var(--stroke-light);
  border-radius: 4px;
}

.feature-title {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.feature-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ===== FILM STRIP DIVIDER ===== */
.divider-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  opacity: 0.15;
}

.strip-hole {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 1px;
  flex-shrink: 0;
}

.strip-line {
  flex: 1;
  height: 0;
  border-top: 2px solid var(--ink);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 3px 3px 0 var(--stroke);
}

.step-num {
  font-family: "Space Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
  line-height: 1;
  border: 2px solid var(--yellow);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  margin-left: 48px;
}

.connector-dash {
  width: 2px;
  height: 8px;
  background: var(--stroke-light);
}

/* ===== SHORTCUTS ===== */
.shortcuts {
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
}

.shortcut-card {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: 3px 3px 0 var(--stroke);
  position: relative;
  border-left: 5px solid var(--yellow);
}

.shortcut-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.shortcut {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--stroke-light);
}

.shortcut kbd {
  background: var(--bg);
  border: 1.5px solid var(--stroke);
  border-radius: 3px;
  padding: 4px 10px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 1px 1px 0 var(--stroke);
  white-space: nowrap;
}

.shortcut span {
  font-size: 13px;
  color: var(--ink2);
  font-weight: 500;
}

/* ===== DOWNLOAD CTA ===== */
.download {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.download-card {
  background: var(--ink);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Diagonal stripes on download card */
.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,1) 4px,
    rgba(255,255,255,1) 5px
  );
  pointer-events: none;
}

.download-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: blink 1.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.download-title {
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.download-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.download-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.meta-sep { opacity: 0.5; }

/* ===== FOOTER ===== */
.footer {
  border-top: 2px solid var(--stroke);
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  filter: grayscale(100%) contrast(1.2);
}

.footer-logo-text {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-copy {
  font-size: 12px;
  color: var(--ink3);
}

.footer-sep {
  font-size: 12px;
  color: var(--ink3);
  opacity: 0.5;
}

.footer-link {
  font-size: 12px;
  color: var(--ink3);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--ink);
}

/* ===== RECORDING SHOWCASE ===== */
.showcase {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.showcase-card {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: 3px 3px 0 var(--stroke);
  text-align: center;
  position: relative;
  transition: all 0.15s;
}

.showcase-card:hover {
  box-shadow: 1px 1px 0 var(--stroke);
  transform: translate(2px, 2px);
}

.showcase-card.featured {
  border-top: 4px solid var(--yellow);
}

.showcase-visual {
  margin-bottom: 16px;
}

.showcase-screen {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 6px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.showcase-webcam-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cam-circle {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.cam-body {
  width: 24px;
  height: 8px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 2px;
}

.showcase-screen-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  width: 100%;
}

.screen-line {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.showcase-pip {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.pip-face {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  margin: 6px auto 0;
}

.pro-badge {
  position: absolute;
  top: -7px;
  right: -4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 7px;
  font-weight: 800;
  padding: 2px 6px;
  letter-spacing: 1px;
  border: 1.5px solid var(--ink);
  transform: rotate(3deg);
  z-index: 2;
}

.showcase-title {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.showcase-desc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.5;
}

.showcase-extras {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink2);
  font-weight: 500;
}

.extra-icon { font-size: 16px; }

/* ===== USE CASES ===== */
.use-cases {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.usecase-card {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: 2px 2px 0 var(--stroke);
  transition: all 0.15s;
}

.usecase-card:hover {
  box-shadow: 1px 1px 0 var(--stroke);
  transform: translate(1px, 1px);
}

.usecase-emoji {
  font-size: 24px;
  margin-bottom: 8px;
}

.usecase-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.usecase-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.pricing-single {
  max-width: 700px;
  margin: 0 auto 40px;
}

.pricing-col {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: 3px 3px 0 var(--stroke);
  position: relative;
}

.pricing-col.free {
  border-top: 4px solid var(--yellow);
}

.pricing-trial-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  margin-bottom: 12px;
}

.pricing-cols-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pricing-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink3);
  margin-bottom: 8px;
}

.pricing-cta-row {
  text-align: center;
}

.pricing-note {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 10px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--stroke-light);
}

.pricing-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: "Space Mono", monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-col.pro .pricing-price { color: var(--ink3); }

.pricing-period {
  font-size: 12px;
  color: var(--ink3);
}

.pricing-features {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-features li {
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--stroke-light);
  color: var(--ink2);
}

.pricing-features li:last-child { border-bottom: none; }

/* Comparison table */
.comparison-card {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 3px 3px 0 var(--stroke);
  max-width: 700px;
  margin: 0 auto;
}

.comparison-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.comparison-table {
  display: flex;
  flex-direction: column;
}

.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--stroke-light);
  font-size: 13px;
  align-items: center;
}

.comp-row:last-child { border-bottom: none; }

.comp-row.comp-header {
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--stroke);
  padding-bottom: 10px;
}

.comp-highlight {
  color: var(--yellow);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  margin-bottom: 8px;
  box-shadow: 2px 2px 0 var(--stroke);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.faq-item summary:hover {
  background: var(--yellow-bg);
}

.faq-item summary::after {
  content: '+';
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

/* ===== LEGAL / BLOG PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.legal-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 48px 40px;
  box-shadow: 4px 4px 0 var(--stroke);
}

.legal-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.legal-updated {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 32px;
}

.legal-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--stroke-light);
}

.legal-card h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 6px;
}

.legal-card p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-card ul {
  margin: 0 0 16px 20px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
}

.legal-card li {
  margin-bottom: 4px;
}

.legal-card a {
  color: var(--yellow);
  font-weight: 600;
}

.legal-card a:hover {
  color: var(--ink);
}

.contact-email {
  font-family: "Space Mono", monospace;
  font-size: 16px !important;
  font-weight: 700;
}

.contact-email a {
  color: var(--yellow);
  text-decoration: none;
}

/* Changelog */
.changelog-entry {
  margin-top: 24px;
}

.changelog-version {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.changelog-version h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  font-family: "Space Mono", monospace;
}

.changelog-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
}

.changelog-date {
  font-size: 13px;
  color: var(--ink3);
}

/* Blog grid */
.blog-header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 3px 3px 0 var(--stroke);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.15s;
  display: block;
}

.blog-card:hover {
  box-shadow: 1px 1px 0 var(--stroke);
  transform: translate(2px, 2px);
}

.blog-tag {
  display: inline-block;
  background: var(--yellow-bg);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px dashed var(--yellow-border);
  border-radius: 2px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500;
}

/* Blog article */
.blog-back {
  font-size: 13px;
  color: var(--ink3);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.blog-back:hover {
  color: var(--ink);
}

.blog-article .legal-title {
  margin-top: 8px;
}

.blog-cta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--stroke-light);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 40px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .shortcut-grid { grid-template-columns: 1fr; }
  .pricing-cols-inner { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 12px; }
  .step-connector { margin-left: 0; flex-direction: row; justify-content: center; }
  .connector-dash { width: 8px; height: 2px; }
  .download-card { padding: 40px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .showcase-extras { flex-direction: column; align-items: center; }
  .comp-row { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-title-line.accent { font-size: 40px; }
  .btn-lg { padding: 14px 28px; font-size: 13px; }
}
