:root {
  --ink: #292929;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --green: #1a8917;
  --mint: #dff5e9;
  --blue: #1d4f7a;
  --paper: #fbfcf8;
  --sun: #f1c84c;
  --hot: #ff2e88;
  --lime: #91f04b;
  --aqua: #27d8ff;
  --orange: #ff8a00;
  --purple-a: #667cea;
  --purple-b: #764ab2;
  --font-sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: charter, "Bitstream Charter", Georgia, Cambria, "Times New Roman", Times, serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.72), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(118,74,178,.09), transparent 30%),
    linear-gradient(90deg, rgba(23,33,29,.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23,33,29,.024) 1px, transparent 1px),
    #f1f0ea;
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
.site-header {
  align-items: center;
  background: linear-gradient(135deg,var(--purple-a) 0%,var(--purple-b) 100%);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 2;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.brand img { border-radius: 8px; }
.brand-sticker {
  background: var(--lime);
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.22);
  color: #122011;
  font-size: 12px;
  line-height: 1;
  padding: 6px 8px;
  transform: rotate(-8deg);
  display: inline-block;
}
.animated-bark::after {
  content: "woof";
  animation: barkCycle 8s infinite step-end;
}
.animated-bark {
  color: transparent; /* Hide the original text */
  position: relative;
}
.animated-bark::after {
  color: #122011;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes barkCycle {
  0% { content: "woof"; }
  20% { content: "arf!"; }
  40% { content: "boof"; }
  60% { content: "yip!"; }
  80% { content: "awoo"; }
  100% { content: "woof"; }
}
nav {
  display: flex;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
}
nav a {
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
}
.nav-cta {
  background: white;
  box-shadow: 3px 3px 0 rgba(0,0,0,.22);
  color: var(--purple-b);
}
.home-page {
  align-items: center;
  background: linear-gradient(135deg,var(--purple-a) 0%,var(--purple-b) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 73px);
  padding: 2rem;
  text-align: center;
}
.home-logo {
  align-items: center;
  display: flex;
  gap: .75rem;
  margin-bottom: 2rem;
}
.home-logo .logo-icon {
  height: 48px;
  width: auto;
}
.home-logo .logo-text {
  height: 32px;
  width: auto;
}
.home-page h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.home-page .description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 600px;
}
.home-page .store-links a {
  color: white;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: underline;
}
.home-page .home-footer {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 3rem;
  padding-top: 2rem;
}
.home-page .home-footer a {
  color: white;
  opacity: .82;
  text-decoration: none;
}

/* ===== App Showcase (homepage) ===== */
body:has(.app-showcase) { background: #07060d; }
body:has(.app-showcase) .site-header {
  background: rgba(7,6,13,.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
body:has(.app-showcase) .nav-cta { background: #fff; color: #07060d; box-shadow: 0 6px 20px rgba(255,255,255,.18); }
body:has(.app-showcase) .email-signup-band { background: #0c0a16; border-top: 1px solid rgba(255,255,255,.06); }
body:has(.app-showcase) footer { background: #07060d; color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.06); }
body:has(.app-showcase) footer a { color: rgba(255,255,255,.85); }
.app-showcase {
  background:
    radial-gradient(ellipse 60% 50% at 12% 6%, rgba(118,74,178,.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 10%, rgba(102,124,234,.38), transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(255,46,136,.18), transparent 70%),
    #07060d;
  color: #fff;
  font-family: var(--font-sans);
  overflow: hidden;
  position: relative;
}
.app-showcase::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  pointer-events: none;
  opacity: .9;
  mix-blend-mode: screen;
}
.app-showcase > * { position: relative; z-index: 1; }

.showcase-hero {
  padding: clamp(48px, 9vw, 120px) clamp(20px, 5vw, 80px) clamp(40px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.showcase-kicker {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.showcase-kicker .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #91f04b;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 10px #91f04b;
}
.showcase-hero h1 {
  font-size: clamp(64px, 13vw, 184px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  padding-bottom: 0.08em;
  margin: 24px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #d4cdf4 70%, #8a82c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.showcase-hero .lede {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: 0 auto 36px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #91f04b 0%, #27d8ff 100%);
  color: #07060d;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15) inset,
    0 20px 60px -10px rgba(145,240,75,.45),
    0 8px 24px rgba(39,216,255,.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta-primary:hover { transform: translateY(-2px); }
.cta-primary.giant { padding: 22px 44px; font-size: 20px; }
.cta-primary svg { width: 20px; height: 20px; }

.hero-phones {
  margin: clamp(56px, 8vw, 120px) auto 0;
  max-width: 1240px;
  padding: 0 clamp(8px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.8vw, 28px);
  position: relative;
}
.hero-phones::before {
  content: "";
  position: absolute;
  inset: 8% -2% 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(145,240,75,.22), transparent 60%),
    radial-gradient(ellipse 40% 60% at 18% 70%, rgba(255,46,136,.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 82% 70%, rgba(39,216,255,.22), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-phones > .app-shot:nth-child(1) { transform: translateY(20px) rotate(-2deg); }
.hero-phones > .app-shot:nth-child(2) { transform: translateY(-10px) rotate(1.2deg); }
.hero-phones > .app-shot:nth-child(3) { transform: translateY(10px) rotate(-1.2deg); }
.hero-phones > .app-shot:nth-child(4) { transform: translateY(-20px) rotate(2deg); }

/* Real screenshots, tightly cropped to just the phone via height-fit + scale zoom */
.app-shot {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  display: block;
  overflow: hidden;
  border-radius: 14% / 6.4%;
  position: relative;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,.55))
    drop-shadow(0 30px 60px rgba(118,74,178,.35))
    drop-shadow(0 60px 100px rgba(39,216,255,.18));
  transition: transform .35s ease;
}
.app-shot img {
  position: absolute;
  width: auto;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.18);
  transform-origin: center;
  display: block;
  max-width: none;
}
.spotlight-art {
  display: flex; justify-content: center;
}
.spotlight-art .app-shot {
  width: clamp(260px, 28vw, 360px);
  transform: rotate(-3deg);
}
.spotlight.alt .spotlight-art .app-shot { transform: rotate(3deg); }
.spotlight-art .app-shot:hover { transform: rotate(0); }
.app-shot:hover img { transform: translate(-50%, -50%) scale(1.22); }

/* ===== AI Manifesto section ===== */
.ai-manifesto {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 120px) clamp(20px, 5vw, 60px) clamp(24px, 4vw, 60px);
  text-align: center;
  position: relative;
}
.ai-manifesto::before {
  content: "";
  position: absolute;
  inset: 10% 10% 10% 10%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(102,124,234,.22), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.ai-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(145,240,75,.16), rgba(39,216,255,.14));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 24px;
}
.ai-eyebrow .ai-spark {
  background: linear-gradient(135deg, #91f04b, #27d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 14px;
}
.ai-manifesto h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  padding-bottom: 0.06em;
  margin: 0 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #d4cdf4 70%, #8a82c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-manifesto h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #91f04b 0%, #27d8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-manifesto p.lede {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 760px;
  margin: 0 auto 28px;
}
.ai-manifesto p.tag {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.6);
  max-width: 760px;
  margin: 0 auto;
}
.ai-pills {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px;
}
.ai-pill {
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 8px;
}
.ai-pill .pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #91f04b, #27d8ff);
  box-shadow: 0 0 8px rgba(145,240,75,.5);
}

/* ===== How the AI works ===== */
.ai-how {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
  position: relative;
}
.ai-how-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.ai-how-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #91f04b;
  margin: 0 0 18px;
}
.ai-how h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 24px;
  color: #fff;
}
.ai-how h2 strong {
  background: linear-gradient(135deg, #ff7a7a 0%, #ff2e88 60%, #764ab2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.ai-how-lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0;
}

.ai-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  position: relative;
}
.ai-how-steps::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(145,240,75,.35) 20%, rgba(39,216,255,.35) 50%, rgba(255,46,136,.35) 80%, transparent);
  z-index: 0;
}
.ai-how-step {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}
.ai-how-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(145,240,75,.14), rgba(39,216,255,.14));
  border: 1px solid rgba(255,255,255,.16);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.ai-how-step:nth-child(1) .num { background: linear-gradient(135deg, rgba(145,240,75,.18), rgba(39,216,255,.14)); color: #c9ffb0; }
.ai-how-step:nth-child(2) .num { background: linear-gradient(135deg, rgba(102,124,234,.18), rgba(167,139,250,.14)); color: #c9d1ff; }
.ai-how-step:nth-child(3) .num { background: linear-gradient(135deg, rgba(255,138,0,.18), rgba(255,46,136,.14)); color: #ffd0a3; }
.ai-how-step h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff;
}
.ai-how-step p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 12px;
}
.ai-how-step .step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 4px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  margin-top: 4px;
}

.ai-how-contrarian {
  margin-top: clamp(40px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255,46,136,.12), rgba(118,74,178,.16));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.ai-how-contrarian h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
}
.ai-how-contrarian h3 em {
  font-style: normal;
  background: linear-gradient(135deg, #91f04b, #27d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-how-contrarian p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 0 12px;
}
.ai-how-checks {
  display: flex; flex-direction: column; gap: 10px;
}
.ai-how-check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.ai-how-check .ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #91f04b, #27d8ff);
  color: #07221c;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-how-check .x {
  background: linear-gradient(135deg, #ff7a7a, #d6324a);
  color: #fff;
}
.ai-how-check strong { display: block; font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.ai-how-check span { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.45; }

@media (max-width: 900px) {
  .ai-how-steps { grid-template-columns: 1fr; }
  .ai-how-steps::before { display: none; }
  .ai-how-contrarian { grid-template-columns: 1fr; }
}

/* ===== Legacy CSS replica styles (no longer rendered, retained as harmless inert rules) ===== */
.screen-translator .t-mode-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 3cqi; font-weight: 700;
  color: rgba(255,255,255,.85);
}
.screen-translator .t-mode .t-blue { color: #60a5fa; }
.screen-translator .t-mode .t-purple { color: #a78bfa; }
.screen-translator .t-mode .t-arrow-i { color: #a78bfa; }
.screen-translator .t-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 1.4cqi 3cqi;
  font-size: 2.6cqi;
  display: inline-flex; gap: 0.8cqi; align-items: center;
}
.screen-translator .t-direction-card {
  background: linear-gradient(180deg, #1a1a22, #15151c);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 5.5cqi;
  padding: 4cqi 3.6cqi 5.5cqi;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5cqi;
  position: relative;
}
.screen-translator .t-avatar {
  display: flex; flex-direction: column; align-items: center; gap: 1.4cqi;
  position: relative;
}
.screen-translator .t-av-circle {
  width: 12cqi; height: 12cqi; border-radius: 50%;
  background: linear-gradient(135deg, #ff8a8a, #b94c5d);
  border: 0.6cqi solid rgba(255,255,255,.12);
}
.screen-translator .t-av-circle.a-dog {
  background: linear-gradient(135deg, #f5d088, #b07a39);
}
.screen-translator .t-av-badge {
  position: absolute; top: 7cqi; right: 22%;
  width: 4cqi; height: 4cqi; border-radius: 50%;
  background: linear-gradient(135deg, #8b6cff, #6747e8);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2cqi; color: #fff;
  border: 0.4cqi solid #1a1a22;
}
.screen-translator .t-av-label {
  font-size: 2.6cqi; font-weight: 700; color: rgba(255,255,255,.78);
}
.screen-translator .t-line {
  display: flex; align-items: center; gap: 1.2cqi;
  position: relative;
  margin-top: -3cqi;
}
.screen-translator .t-line::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 0.4cqi; background: rgba(255,255,255,.18); border-radius: 999px;
  transform: translateY(-50%);
}
.screen-translator .t-line .t-knob {
  width: 3cqi; height: 3cqi; border-radius: 50%;
  background: #fff; position: relative; z-index: 1;
  box-shadow: 0 0 0 0.6cqi rgba(255,255,255,.1);
}
.screen-translator .t-line .t-tick {
  width: 1cqi; height: 1cqi; border-radius: 50%;
  background: rgba(255,255,255,.4); position: relative; z-index: 1;
}
.screen-translator .t-arrow {
  position: absolute; bottom: 1.4cqi; left: 50%; transform: translateX(-50%);
  font-size: 2.6cqi; color: rgba(255,255,255,.45);
}
.screen-translator .t-tabs {
  display: inline-flex;
  background: #0d0d12;
  border-radius: 999px;
  padding: 0.8cqi;
  align-self: flex-start;
}
.screen-translator .t-tab {
  background: transparent; border: 0; color: rgba(255,255,255,.5);
  font: inherit; padding: 1.4cqi 4.5cqi; border-radius: 999px;
  font-size: 2.8cqi; font-weight: 700; cursor: pointer;
}
.screen-translator .t-tab.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.screen-translator .t-input {
  background: #0d0d12;
  border-radius: 4cqi;
  padding: 3cqi 3.6cqi;
  font-size: 3.4cqi;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.screen-translator .t-input .t-cursor {
  display: inline-block;
  width: 0.4cqi; height: 3.6cqi;
  background: #27d8ff;
  margin-left: 0.4cqi;
  vertical-align: middle;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.screen-translator .t-actions {
  display: flex; gap: 2.4cqi; align-items: center;
}
.screen-translator .t-translate {
  flex: 1;
  background: linear-gradient(135deg, #8b6cff, #6747e8);
  border: 0; color: #fff;
  font: inherit; font-weight: 800; font-size: 3.4cqi;
  padding: 3.4cqi;
  border-radius: 4cqi;
  cursor: pointer;
  box-shadow: 0 1.2cqi 3cqi rgba(139,108,255,.4);
}
.screen-translator .t-mic {
  width: 11cqi; height: 11cqi;
  border: 0; border-radius: 3cqi;
  background: linear-gradient(135deg, #ff7a7a, #d6324a);
  color: #fff; font-size: 5cqi;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1.2cqi 3cqi rgba(214,50,74,.4);
}
.screen-translator .t-hold {
  text-align: center; font-size: 2.4cqi;
  color: rgba(255,255,255,.45);
}
.screen-translator .t-suggestion {
  background: linear-gradient(180deg, #1a1a22, #15151c);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 5cqi;
  padding: 2.6cqi 3cqi;
  display: flex; align-items: center; gap: 2.4cqi;
}
.screen-translator .t-sug-icon {
  width: 7cqi; height: 7cqi;
  border-radius: 2.4cqi;
  background: linear-gradient(135deg, #8b6cff, #6747e8);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 4cqi;
  flex-shrink: 0;
}
.screen-translator .t-sug-text { flex: 1; min-width: 0; }
.screen-translator .t-sug-text strong { display: block; font-size: 3cqi; font-weight: 800; }
.screen-translator .t-sug-text em {
  display: block; font-style: italic; font-size: 2.4cqi;
  color: rgba(255,255,255,.55); line-height: 1.2;
}
.screen-translator .t-sug-try {
  background: rgba(255,255,255,.06);
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: inherit; font-weight: 700; font-size: 2.4cqi;
  padding: 1.6cqi 2.4cqi;
  text-align: center; line-height: 1.1;
  flex-shrink: 0;
}

/* ===== Emergency Vet screen ===== */
.screen-vet { gap: 2.6cqi; }
.screen-vet .v-conn {
  align-self: center;
  background: rgba(46,204,113,.16);
  border: 1px solid rgba(46,204,113,.4);
  color: #6ee7a3;
  font-size: 2.6cqi; font-weight: 700;
  padding: 1.2cqi 3cqi;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 1.2cqi;
}
.screen-vet .v-conn::before {
  content: ""; width: 2cqi; height: 2cqi; border-radius: 50%;
  background: #2ecc71; box-shadow: 0 0 1.4cqi #2ecc71;
}
.screen-vet .v-fastest {
  background: linear-gradient(180deg, #1a1a22, #15151c);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 5cqi;
  padding: 3cqi;
  display: flex; align-items: center; gap: 2.4cqi;
}
.screen-vet .v-fast-icon {
  width: 8cqi; height: 8cqi; border-radius: 50%;
  background: rgba(96,165,250,.15);
  border: 1px solid rgba(96,165,250,.3);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa; font-size: 4.5cqi;
  flex-shrink: 0;
}
.screen-vet .v-fast-text { flex: 1; min-width: 0; }
.screen-vet .v-fast-eyebrow {
  font-size: 2.2cqi; font-weight: 800; color: #60a5fa; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 1.4cqi;
}
.screen-vet .v-stars { color: #f1c84c; letter-spacing: -0.05em; font-size: 2.4cqi; }
.screen-vet .v-fast-name { font-size: 3cqi; font-weight: 800; margin-top: 0.6cqi; }
.screen-vet .v-fast-mins { font-size: 2.6cqi; color: rgba(255,255,255,.55); }
.screen-vet .v-fast-call {
  width: 8cqi; height: 8cqi;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 4cqi;
  flex-shrink: 0;
}
.screen-vet .v-need-card {
  background: linear-gradient(180deg, #1a1a22, #15151c);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 5cqi;
  padding: 5cqi 4cqi 4.5cqi;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; gap: 3cqi;
  justify-content: center;
}
.screen-vet .v-need-h {
  font-size: 6cqi; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1;
  margin: 0;
}
.screen-vet .v-need-sub {
  font-size: 2.6cqi; color: rgba(255,255,255,.55); margin: 0;
}
.screen-vet .v-call-btn {
  margin-top: 1cqi;
  background: linear-gradient(135deg, #ff7a7a 0%, #d6324a 100%);
  border-radius: 5cqi;
  padding: 5.5cqi 4cqi;
  font-weight: 900;
  font-size: 4cqi;
  letter-spacing: -0.01em;
  display: flex; flex-direction: column; align-items: center; gap: 2cqi;
  box-shadow: 0 1.4cqi 4cqi rgba(214,50,74,.4);
}
.screen-vet .v-call-icon {
  width: 8cqi; height: 8cqi;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.4cqi;
}
.screen-vet .v-search {
  font-size: 2.6cqi; font-weight: 700; color: rgba(255,255,255,.78);
}

/* ===== Generate Dog World screen ===== */
.screen-world {
  gap: 2.6cqi;
}
.screen-world .w-gen-btn {
  background: linear-gradient(135deg, #ff7a7a 0%, #d6324a 100%);
  border-radius: 5cqi;
  padding: 4cqi 3cqi;
  font-weight: 800;
  font-size: 3.4cqi;
  display: flex; align-items: center; justify-content: center; gap: 2cqi;
  box-shadow: 0 1.2cqi 3cqi rgba(214,50,74,.35);
}
.screen-world .w-gen-btn .w-spark { color: #ffd99a; font-size: 3.6cqi; }
.screen-world .w-result {
  background: linear-gradient(180deg, #1a1a22, #15151c);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 5cqi;
  padding: 3.4cqi;
  display: flex; flex-direction: column; gap: 2.4cqi;
  flex: 1;
}
.screen-world .w-result-head {
  display: flex; justify-content: space-between; align-items: center;
}
.screen-world .w-status {
  font-size: 2.8cqi; font-weight: 800;
  display: inline-flex; align-items: center; gap: 1.2cqi;
}
.screen-world .w-status-dot {
  width: 4cqi; height: 4cqi;
  border-radius: 1.2cqi;
  background: linear-gradient(135deg, #91f04b, #2ecc71);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6cqi; color: #07221c; font-weight: 900;
}
.screen-world .w-dl {
  width: 7cqi; height: 7cqi; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.4cqi;
}
.screen-world .w-art {
  aspect-ratio: 4/3;
  border-radius: 3cqi;
  position: relative;
  overflow: hidden;
}
.screen-world .w-art .w-watermark {
  position: absolute;
  bottom: 1.4cqi; right: 2cqi;
  font-size: 2cqi;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  text-shadow: 0 0.4cqi 1cqi rgba(0,0,0,.6);
}
.screen-world .w-meta { font-size: 2.4cqi; color: rgba(255,255,255,.55); line-height: 1.4; }
.screen-world .w-meta b { font-weight: 700; color: rgba(255,255,255,.78); }
.screen-world .w-recent {
  background: linear-gradient(180deg, #1a1a22, #15151c);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 5cqi;
  padding: 3cqi;
}
.screen-world .w-recent-title { font-size: 2.8cqi; font-weight: 800; margin-bottom: 2.4cqi; }
.screen-world .w-recent-row { display: flex; gap: 2.4cqi; align-items: center; }
.screen-world .w-recent-thumb {
  width: 9cqi; height: 9cqi;
  border-radius: 2cqi;
  flex-shrink: 0;
}
.screen-world .w-recent-meta { font-size: 2.4cqi; line-height: 1.3; }
.screen-world .w-recent-meta strong { display: block; font-weight: 800; font-size: 2.6cqi; }
.screen-world .w-recent-meta em { font-style: normal; color: rgba(255,255,255,.55); }
.screen-world .w-recent-meta .w-model { color: #a78bfa; font-size: 2.2cqi; }

/* Cyberpunk variant */
.screen-world.world-cyber .w-art,
.screen-world.world-cyber .w-recent-thumb {
  background:
    radial-gradient(ellipse at 30% 20%, #ff2e88 0%, transparent 40%),
    radial-gradient(ellipse at 70% 30%, #00d4ff 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, #ffea00 0%, transparent 30%),
    linear-gradient(180deg, #1a0a2e 0%, #0d0420 50%, #07060d 100%);
}
.screen-world.world-cyber .w-art::before {
  content: "";
  position: absolute;
  inset: 30% 20% 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.18), transparent 60%);
}
.screen-world.world-cyber .w-art::after {
  content: "🐕";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14cqi;
  filter: drop-shadow(0 1cqi 2cqi rgba(255,46,136,.6));
}

/* Victorian variant */
.screen-world.world-victorian .w-art,
.screen-world.world-victorian .w-recent-thumb {
  background:
    radial-gradient(ellipse at 50% 25%, #fbbf77 0%, transparent 35%),
    radial-gradient(ellipse at 50% 60%, rgba(50,40,30,.6) 0%, transparent 60%),
    linear-gradient(180deg, #4a3829 0%, #2a1f15 50%, #1a120c 100%);
}
.screen-world.world-victorian .w-art::before {
  content: "🏛️";
  position: absolute;
  top: 14%;
  right: 20%;
  font-size: 9cqi;
  opacity: 0.8;
  filter: drop-shadow(0 0 2cqi rgba(255,200,100,.5));
}
.screen-world.world-victorian .w-art::after {
  content: "🐕";
  position: absolute;
  bottom: 8%;
  left: 32%;
  font-size: 14cqi;
  filter: drop-shadow(0 1cqi 2cqi rgba(0,0,0,.6));
}

/* ===== No Ads Ever screen (uses world layout with overlay) ===== */
.screen-world.world-noads {
  position: relative;
}
.screen-world.world-noads .w-noads-headline {
  position: absolute;
  top: 20%; left: 0; right: 0;
  z-index: 5;
  text-align: center;
  font-size: 8cqi;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1cqi 4cqi rgba(0,0,0,.7);
  pointer-events: none;
}
.screen-world.world-noads .w-noads-headline span { color: #91f04b; }
.screen-world.world-noads::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,6,13,.5) 0%, transparent 40%);
  border-radius: 12cqi;
  pointer-events: none;
  z-index: 4;
}

/* Spotlight rows */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 60px);
}
.spotlight.alt .spotlight-art { order: 2; }
.spotlight-copy { max-width: 540px; }
.spotlight-copy .accent-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.spotlight-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 20px;
  color: #fff;
}
.spotlight-copy p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 14px;
}
.spotlight-translator .accent-tag { background: rgba(145,240,75,.14); color: #c9ffb0; border: 1px solid rgba(145,240,75,.32); }
.spotlight-vet .accent-tag       { background: rgba(255,56,56,.16); color: #ffb1b1; border: 1px solid rgba(255,56,56,.4); }
.spotlight-ads .accent-tag       { background: rgba(39,216,255,.14); color: #bfeeff; border: 1px solid rgba(39,216,255,.32); }
.spotlight-privacy .accent-tag   { background: rgba(102,124,234,.16); color: #c9d1ff; border: 1px solid rgba(102,124,234,.4); }
.spotlight-words .accent-tag     { background: rgba(255,46,136,.14); color: #ffc0db; border: 1px solid rgba(255,46,136,.36); }
.spotlight-world .accent-tag     { background: rgba(241,200,76,.14); color: #ffe6a3; border: 1px solid rgba(241,200,76,.4); }

.spotlight-feature-list {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.spotlight-feature {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
}
.spotlight-feature-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.spotlight-feature-text strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.spotlight-feature-text span { font-size: 13px; color: rgba(255,255,255,.66); line-height: 1.45; }

/* Trust band */
.trust-band {
  max-width: 1240px;
  margin: clamp(40px, 6vw, 80px) auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.trust-band-inner {
  background:
    linear-gradient(135deg, rgba(118,74,178,.18), rgba(39,216,255,.08));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center;
  backdrop-filter: blur(20px);
}
.trust-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin: 0 0 16px;
}
.trust-headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  padding-bottom: 0.06em;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #ffffff 0%, #d4cdf4 70%, #8a82c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-headline span { color: #91f04b; -webkit-text-fill-color: #91f04b; }
.trust-sub {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.trust-item strong {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg,#fff,#a097d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: clamp(60px, 10vw, 140px) clamp(20px, 5vw, 60px) clamp(80px, 12vw, 160px);
  max-width: 1100px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  padding-bottom: 0.08em;
  margin: 0 0 32px;
  background: linear-gradient(180deg, #ffffff 0%, #d4cdf4 70%, #8a82c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-cta .footnote {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight.alt .spotlight-art { order: 0; }
  .spotlight-art .app-shot { width: min(260px, 70vw); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .showcase-hero { padding-top: 36px; }
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .8fr);
  padding: clamp(44px, 8vw, 92px) clamp(16px, 4vw, 54px) 36px;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 800;
}
.eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
  line-height: .96;
  margin: 0 0 18px;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 0 16px;
}
h3 {
  font-size: 22px;
  letter-spacing: 0;
  margin: 28px 0 8px;
}
p { margin: 0 0 16px; }
.lead {
  color: var(--muted);
  font-size: 21px;
  max-width: 780px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  background: var(--green);
  border: 2px solid var(--ink);
  color: white;
  display: inline-flex;
  font-weight: 800;
  padding: 13px 17px;
  text-decoration: none;
}
.button.secondary {
  background: var(--sun);
  color: var(--ink);
}
.app-panel {
  background: var(--mint);
  border: 2px solid var(--ink);
  padding: 24px;
}
.app-panel img {
  display: block;
  height: 74px;
  margin-bottom: 18px;
  width: 74px;
}
.band {
  border-top: 1px solid var(--line);
  padding: 42px clamp(16px, 4vw, 54px);
}
.blog-hero {
  background: #101019;
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--sun);
  color: white;
  margin-bottom: 34px;
  overflow: hidden;
  padding: clamp(30px, 6vw, 64px);
  position: relative;
}
.hero-sticker-img {
  position: absolute;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.3));
  z-index: 10;
  pointer-events: none;
  max-width: 120px;
  height: auto;
}
.hero-sticker-img.sticker-1 {
  right: 10%;
  top: 12%;
  width: 110px;
  transform: rotate(15deg);
}
.hero-sticker-img.sticker-2 {
  right: 4%;
  top: 35%;
  width: 130px;
  transform: rotate(-10deg);
}
.hero-sticker-img.sticker-3 {
  right: 15%;
  top: 45%;
  width: 100px;
  transform: rotate(25deg);
}
.hero-sticker-img.sticker-4 {
  right: 8%;
  bottom: 10%;
  width: 120px;
  transform: rotate(-5deg);
}
.hero-sticker-img.sticker-5 {
  right: 22%;
  top: 20%;
  width: 90px;
  transform: rotate(-20deg);
}
.blog-hero h1 {
  font-size: clamp(48px, 8vw, 92px);
  max-width: 760px;
}
.blog-hero .lead {
  color: rgba(255,255,255,.84);
}
/* ===== Inline Email Banner ===== */
.inline-email-banner {
  background: rgba(118, 74, 178, 0.04);
  border: 1px solid rgba(118, 74, 178, 0.15);
  border-left: 4px solid var(--purple-a);
  border-radius: 6px;
  padding: 8px 16px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.inline-email-content h4 {
  margin: 0;
  font-size: 14px;
  color: var(--purple-a);
  white-space: nowrap;
}
.inline-email-form {
  flex: 1;
  min-width: 240px;
}
.inline-email-fields {
  display: flex;
  gap: 8px;
}
.inline-email-fields input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #d1d1d6;
  border-radius: 4px;
  font-size: 13px;
  min-width: 0;
}
.inline-email-fields button {
  background: var(--purple-a);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.inline-email-fields button:hover {
  background: var(--purple-b);
}
.inline-email-success {
  margin: 0;
  color: var(--purple-a);
  font-weight: 600;
  font-size: 15px;
}
.topic-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.topic-card {
  background: #fdfbf7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.topic-card-image {
  background-color: #eee;
  background-position: center;
  background-size: cover;
  height: 200px;
  width: 100%;
}
.topic-card-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex-grow: 1;
  position: relative;
}
.sticker-dynamic {
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.18);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 10px;
  position: absolute;
  right: 18px;
  text-transform: lowercase;
  top: -22px;
  z-index: 2;
  white-space: nowrap;
}
.category-badge {
  background: var(--hot);
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--sun);
  color: white;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 4px 8px;
  text-transform: uppercase;
  align-self: flex-start;
}
.topic-card strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.topic-meta {
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 16px;
  margin-top: auto;
}
.topic-meta span {
  align-items: center;
  display: flex;
  gap: 4px;
}
.topic-meta img {
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.16);
  height: 28px;
  object-fit: cover;
  width: 28px;
}
.games-page {
  padding: 42px clamp(16px, 4vw, 54px);
}
.games-hero {
  background:
    radial-gradient(circle at 14% 20%, rgba(39,216,255,.38), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(255,46,136,.35), transparent 20%),
    radial-gradient(circle at 66% 88%, rgba(145,240,75,.34), transparent 20%),
    #11111b;
  border-radius: 32px;
  box-shadow: 8px 8px 0 var(--hot);
  color: white;
  margin-bottom: 34px;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  position: relative;
}
.games-hero::before {
  background: var(--sun);
  border: 4px solid white;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0,0,0,.24);
  color: var(--ink);
  content: "play!";
  font-weight: 900;
  padding: 12px 16px;
  position: absolute;
  right: 42px;
  top: 42px;
  transform: rotate(10deg);
}
.games-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  max-width: 820px;
}
.games-hero .lead {
  color: rgba(255,255,255,.86);
}
.game-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.game-card {
  background: #101019;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.rounded-games .game-card {
  border-radius: 26px;
}
.games-coming-soon-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.games-blurred {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}
.games-coming-soon-overlay {
  align-items: center;
  background: rgba(10, 8, 20, 0.62);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.games-coming-soon-text {
  background: linear-gradient(135deg, var(--aqua), var(--hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: none;
}
.secret-game-toggle {
  background: var(--purple-b);
  border: 0;
  border-radius: 999px;
  bottom: 14px;
  cursor: pointer;
  height: 18px;
  opacity: .08;
  position: fixed;
  right: 14px;
  width: 18px;
  z-index: 20;
}
.secret-game-toggle:hover,
.secret-game-toggle:focus-visible {
  opacity: .45;
}
.dog-kart-prototype {
  background: #0d0d16;
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--aqua);
  color: white;
  margin: 0 0 34px;
  overflow: hidden;
}
.dog-kart-copy {
  padding: clamp(22px, 4vw, 36px);
}
.dog-kart-copy h2 {
  color: white;
}
.dog-kart-copy p {
  color: rgba(255,255,255,.82);
  max-width: 840px;
}
.dog-kart-stage {
  aspect-ratio: 1 / 1;
  background: #86a2ff;
  border-top: 3px solid rgba(255,255,255,.2);
  margin: 0 auto 28px;
  max-width: 640px;
  min-height: 0;
  position: relative;
  touch-action: none;
}
#dogKartCanvas {
  display: block;
  height: 100%;
  image-rendering: pixelated;
  width: 100%;
}
.dog-kart-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  left: 14px;
  position: absolute;
  top: 14px;
  z-index: 1;
}
.dog-kart-hud span,
.dog-kart-badge {
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
}
.dog-kart-badge {
  background: var(--sun);
  border: 2px solid white;
  box-shadow: 4px 4px 0 rgba(0,0,0,.22);
  color: var(--ink);
  display: none;
}
.dog-kart-badge.is-visible {
  display: inline-flex;
}
.dog-kart-controls {
  bottom: 16px;
  display: none;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}
.dog-kart-controls button {
  background: rgba(255,255,255,.88);
  border: 2px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  height: 58px;
  width: 58px;
}
.game-image {
  aspect-ratio: 1 / 1;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.animated-sunrise {
  animation: sunriseTileFloat 5.5s ease-in-out infinite;
}
.animated-sunrise .game-image {
  animation: sunriseTileGlow 7s ease-in-out infinite;
}
@keyframes sunriseTileFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes sunriseTileGlow {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.14) brightness(1.06); }
}
.app-mention-box {
  background: var(--mint);
  border: 1px solid rgba(32, 96, 68, 0.15);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  margin: 32px 0 0;
  padding: 20px 24px;
}
.app-mention-box a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}
.app-mention-box a:hover {
  text-decoration: none;
}
.article {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 760px) minmax(240px, 320px);
  padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 54px);
}
.article-main {
  background: #fdfbf7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
}
.article-hero-image {
  display: block;
  height: clamp(240px, 36vw, 430px);
  margin: calc(clamp(22px, 4vw, 42px) * -1) calc(clamp(22px, 4vw, 42px) * -1) clamp(24px, 4vw, 38px);
  object-fit: cover;
  width: calc(100% + (clamp(22px, 4vw, 42px) * 2));
}
.article-main .category {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}
.article-main h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 24px;
}
.article-main p {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.58;
  margin: 0 0 29px;
}
.article-main h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  margin: 40px 0 12px;
}
.article-main .lead {
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 40px;
}
.author-bio {
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(102,124,234,.08), rgba(118,74,178,.08));
  border: 1px solid rgba(102,124,234,.15);
  border-radius: 18px;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding: 24px;
}
.author-avatar-container {
  flex: 0 0 auto;
}
.author-avatar-container img {
  border: 4px solid white;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(118,74,178,.15);
  display: block;
  height: 192px;
  object-fit: cover;
  width: 192px;
}
.author-details {
  flex: 1;
}
.author-details h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  margin: 0 0 2px;
}
.author-bio-text {
  margin-top: 12px;
}
.author-bio-text p { 
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.author-kicker {
  color: var(--purple-b);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.author-role {
  color: var(--muted);
  font-weight: 800;
}
.sidebar {
  align-self: start;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  position: sticky;
  top: 86px;
}
.sidebar h2 {
  font-size: 20px;
  margin-bottom: 16px;
}
.related-link {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.15);
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  padding: 14px 16px;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
}
.related-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,.2);
}
.related-link:last-child {
  margin-bottom: 0;
}
.sidebar-sticker {
  background: none;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.18));
  height: 38px;
  position: absolute;
  right: -14px;
  top: -18px;
  width: 38px;
  z-index: 2;
}
.privacy {
  background: linear-gradient(135deg,var(--purple-a) 0%,var(--purple-b) 100%);
  color: white;
  margin: 0;
  max-width: none;
  min-height: 100vh;
  padding: 48px clamp(16px, 4vw, 54px);
}
.privacy-inner {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}
.email-signup-band {
  background: linear-gradient(135deg, var(--purple-a) 0%, var(--purple-b) 100%);
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 54px);
}
.email-signup-inner {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
}
.email-signup-copy {
  color: white;
  flex: 1;
  max-width: 480px;
}
.email-signup-eyebrow {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.email-signup-heading {
  color: white;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 12px;
}
.email-signup-lead {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.email-signup-form {
  flex: 1;
  max-width: 440px;
}
.email-signup-fields {
  display: flex;
  gap: 10px;
}
.email-signup-input {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: white;
  flex: 1;
  font-family: var(--font-sans);
  font-size: 16px;
  min-width: 0;
  outline: none;
  padding: 13px 20px;
  transition: border-color 0.2s;
}
.email-signup-input::placeholder { color: rgba(255,255,255,.5); }
.email-signup-input:focus { border-color: var(--lime); }
.email-signup-btn {
  background: var(--lime);
  border: none;
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.22);
  color: #122011;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
  padding: 13px 22px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  white-space: nowrap;
}
.email-signup-btn:hover {
  box-shadow: 6px 6px 0 rgba(0,0,0,.28);
  transform: translate(-1px, -1px);
}
.email-signup-success {
  background: rgba(255,255,255,.12);
  border: 2px solid var(--lime);
  border-radius: 12px;
  color: var(--lime);
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  padding: 14px 20px;
  text-align: center;
}
@media (max-width: 720px) {
  .email-signup-inner { flex-direction: column; gap: 28px; }
  .email-signup-copy, .email-signup-form { max-width: 100%; }
  .email-signup-fields { flex-direction: column; }
  .email-signup-btn { width: 100%; }
}
footer {
  background: var(--ink);
  color: white;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 28px clamp(16px, 4vw, 54px);
}
footer p { margin: 0; max-width: 720px; }
@media (max-width: 840px) {
  .hero, .article, .topic-grid, .game-grid { grid-template-columns: 1fr; }
  .site-header, footer { align-items: flex-start; flex-direction: column; }
  .sidebar { position: static; }
  .author-bio { align-items: center; flex-direction: column; text-align: center; }
  .author-avatar-container img { height: 140px; width: 140px; }
  .dog-kart-controls { display: flex; }
}
