:root {
  --canvas: #0b0c0e;
  --surface: #16181d;
  --elevated: #1c1f26;
  --hairline: rgba(255, 196, 80, 0.14);
  --accent: #ff5500;
  --accent-dim: #d64600;
  --highlight: #ffc107;
  --text: #f4f5f7;
  --muted: #8c92a0;
  --faint: #5c6370;
  --danger: #d15a50;
  --upvote: #ffc107;
  --downvote: #738cb8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --measure: 72rem;
  --nav-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

::selection {
  background: color-mix(in srgb, var(--accent) 55%, transparent);
  color: #fff;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 80;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--measure), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--canvas) 78%, transparent);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--measure), calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand-mark {
  height: 34px;
  width: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--text);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #ff6a1a 0%, var(--accent) 55%, var(--accent-dim) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 85, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 85, 0, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--hairline);
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--highlight) 45%, transparent);
  color: var(--highlight);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

/* Hero */

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  inset: -10% 10% auto;
  height: 28rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 193, 7, 0.22), transparent 58%),
    radial-gradient(ellipse at 20% 40%, rgba(255, 85, 0, 0.16), transparent 50%);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--highlight);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.hero h1,
.page-hero h1,
.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  margin: 0.7rem 0 1rem;
  max-width: 12ch;
}

.lede {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 36rem;
  margin: 0 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-note {
  color: var(--faint);
  font-size: 0.92rem;
}

.wordmark {
  width: min(22rem, 100%);
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 12px 30px rgba(255, 193, 7, 0.18));
}

/* Device */

.stage {
  position: relative;
}

.device {
  width: min(22.5rem, 100%);
  margin-inline: auto;
  background: #070809;
  border: 1px solid var(--hairline);
  border-radius: 2.2rem;
  padding: 0.7rem;
  box-shadow: var(--shadow);
}

.device-screen {
  --d-canvas: #0b0c0e;
  --d-surface: #16181d;
  --d-elevated: #1c1f26;
  --d-accent: #ff5500;
  --d-highlight: #ffc107;
  --d-text: #f4f5f7;
  --d-muted: #8c92a0;
  --d-rail: #ff5500;
  background: var(--d-canvas);
  border-radius: 1.7rem;
  overflow: hidden;
  min-height: 34rem;
  transition: background 0.35s ease, color 0.35s ease;
}

.device-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem 0.55rem;
  color: var(--d-text);
  font-weight: 700;
}

.device-bar small {
  color: var(--d-muted);
  font-weight: 600;
}

.feed {
  display: grid;
  gap: 0.65rem;
  padding: 0 0.75rem 0.9rem;
}

.post {
  background: var(--d-surface);
  border: 1px solid color-mix(in srgb, var(--d-highlight) 12%, transparent);
  border-radius: 14px;
  padding: 0.85rem;
  color: var(--d-text);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.post .meta {
  display: flex;
  justify-content: space-between;
  color: var(--d-muted);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.post h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  line-height: 1.25;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.post p {
  margin: 0;
  color: var(--d-muted);
  font-size: 0.78rem;
}

.post-foot {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--d-muted);
}

.post-foot .up {
  color: var(--d-highlight);
}

.comment-preview {
  margin-top: 0.55rem;
  padding-left: 0.65rem;
  border-left: 2px solid var(--d-rail);
  color: var(--d-muted);
  font-size: 0.75rem;
}

.presets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.preset {
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.preset[aria-pressed="true"],
.preset:hover {
  border-color: var(--highlight);
  color: var(--highlight);
}

.preset-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 99px;
  margin-right: 0.35rem;
  vertical-align: middle;
}

/* Sections */

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0.4rem 0 0.7rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.08rem;
}

.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.4rem;
  overflow: hidden;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.45rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card.feature {
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.card.tall {
  grid-row: span 2;
}

.pulse-visual {
  height: 7.5rem;
  margin-bottom: 1.2rem;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(18, 1fr);
  gap: 0.28rem;
}

.pulse-visual span {
  display: block;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--highlight), var(--accent));
  animation: pulseBar 1.8s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes pulseBar {
  0%, 100% { transform: scaleY(0.35); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.flare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.flare-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 193, 7, 0.16), transparent 50%),
    var(--surface);
}

.flare-card.evening {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 85, 0, 0.2), transparent 52%),
    var(--surface);
}

.time {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--highlight);
  letter-spacing: -0.04em;
}

.stack {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

.icon-tile {
  background: #050506;
  border: 1px solid var(--hairline);
  border-radius: 28px;
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.icon-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-tile figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mascot-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.mascot {
  width: min(18rem, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(255, 85, 0, 0.25));
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.list li {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 0.7rem;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--highlight), var(--accent));
}

.privacy-band {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 193, 7, 0.08), transparent 40%),
    var(--elevated);
  border-radius: 28px;
  border: 1px solid var(--hairline);
  padding: 2rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.chip {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  background: color-mix(in srgb, var(--canvas) 55%, transparent);
}

/* Feature catalog */

.catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.catalog article {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
}

.catalog h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.catalog p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
}

.prose {
  max-width: 46rem;
  padding-bottom: 5rem;
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 2.2rem 0 0.6rem;
}

.prose h3 {
  margin: 1.4rem 0 0.4rem;
}

.prose p,
.prose li {
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
}

.prose a {
  color: var(--highlight);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.prose code {
  font-size: 0.9em;
  color: var(--highlight);
  background: color-mix(in srgb, var(--canvas) 70%, transparent);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 0.05em 0.35em;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose li {
  margin: 0.35rem 0;
}

.footer img {
  margin-bottom: 0.75rem;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.faq p {
  color: var(--muted);
  margin: 0.6rem 0 0.2rem;
}

.support-hero {
  padding: 4rem 0 2.2rem;
  text-align: center;
  max-width: 40rem;
}

.support-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0.4rem 0 0.9rem;
}

.support-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 0 auto 1.5rem;
}

.support-hero a {
  color: var(--highlight);
}

.support-hero .hero-actions {
  justify-content: center;
}

.support-mark {
  width: 4.5rem;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(255, 85, 0, 0.28));
}

.support-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding-bottom: 2.5rem;
}

.support-tile {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.support-tile:hover {
  border-color: color-mix(in srgb, var(--highlight) 45%, transparent);
  transform: translateY(-1px);
}

.support-tile strong {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.support-tile span {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .support-links {
    grid-template-columns: 1fr;
  }
}

/* Footer */

.footer {
  border-top: 1px solid var(--hairline);
  padding: 2.4rem 0 2.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer a:hover {
  color: var(--highlight);
}

.footer small {
  display: block;
  margin-top: 1.6rem;
  color: var(--faint);
  max-width: 46rem;
}

.legal-note {
  margin-top: 1rem;
}

/* Moments */

.preset-hint {
  text-align: center;
  color: var(--faint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1rem 0 0.5rem;
}

.moment {
  padding: 4.5rem 0;
  border-top: 1px solid var(--hairline);
}

.moment h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 0.7rem;
}

.moment p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 28rem;
  margin: 0;
}

.moment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
}

.swatch-row span {
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.swatch-row.big span {
  border-radius: 22px;
  min-height: 4.5rem;
}

.moment-pulse {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 85, 0, 0.14), transparent 55%),
    var(--canvas);
}

.moment-pulse p {
  margin-inline: auto;
}

.pulse-mark {
  width: min(14rem, 55%);
  margin: 0 auto 1.2rem;
}

.pulse-visual.big {
  height: 9rem;
  max-width: 36rem;
  margin: 2rem auto 0;
  grid-template-columns: repeat(24, 1fr);
}

.listen-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.listen-card {
  background: linear-gradient(160deg, #1a120c, #0d0e12 60%);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.listen-card.compact {
  padding: 1.1rem 1.2rem;
}

.listen-now {
  color: var(--highlight);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.8rem 0 0.25rem;
}

.listen-card h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.listen-bar {
  margin-top: 1rem;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.listen-bar span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  border-radius: inherit;
}

.eq {
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
  height: 2.2rem;
}

.eq i {
  display: block;
  width: 0.35rem;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--highlight), var(--accent));
  animation: eqPulse 1.1s ease-in-out infinite;
  height: 40%;
}

.eq i:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq i:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.eq i:nth-child(4) { height: 55%; animation-delay: 0.05s; }
.eq i:nth-child(5) { height: 85%; animation-delay: 0.15s; }
.eq i:nth-child(6) { height: 45%; animation-delay: 0.25s; }
.eq i:nth-child(7) { height: 65%; animation-delay: 0.18s; }

@keyframes eqPulse {
  0%, 100% { transform: scaleY(0.45); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

.flare-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.flare-strip.stacked {
  grid-template-columns: 1fr;
}

.flare-pill {
  border-radius: 22px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--hairline);
  display: grid;
  gap: 0.2rem;
}

.flare-pill.morning {
  background: radial-gradient(circle at 15% 0%, rgba(255, 193, 7, 0.22), transparent 50%), var(--surface);
}

.flare-pill.night {
  background: radial-gradient(circle at 85% 0%, rgba(255, 85, 0, 0.24), transparent 52%), var(--surface);
}

.flare-pill span {
  color: var(--highlight);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.flare-pill strong {
  font-size: 1.15rem;
}

.flare-pill em {
  color: var(--muted);
  font-style: normal;
}

.quiet-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.moment-icons h2 {
  margin-bottom: 1.4rem;
}

.moment-trust {
  text-align: center;
  background: var(--elevated);
}

.moment-trust p {
  margin-inline: auto;
}

.moment-trust a {
  color: var(--highlight);
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
}

.spot {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 1.4rem;
  display: grid;
  gap: 0.85rem;
  min-height: 17rem;
}

.spot h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin: 0;
}

.spot p {
  color: var(--muted);
  margin: 0;
}

.spot-visual {
  min-height: 6.5rem;
  display: grid;
  align-content: end;
}

.mock-thread {
  gap: 0.45rem;
  background: #0a0b0d;
  border-radius: 16px;
  padding: 0.9rem;
}

.mock-line {
  height: 0.55rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  width: 72%;
}

.mock-line.wide { width: 92%; }
.mock-line.mid { width: 54%; }

.mock-new {
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0b0c0e;
  background: var(--highlight);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.mock-bot {
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 600;
}

.icon-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  align-items: center;
}

.icon-mini img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: #050506;
}

.also {
  padding: 2rem 0 4.5rem;
}

.also h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.also-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.also-list li {
  color: var(--muted);
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--surface);
}

.also-list strong {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .eq i,
  .pulse-visual span {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .moment-grid,
  .listen-split,
  .quiet-grid,
  .flare-strip,
  .spotlight,
  .also-list {
    grid-template-columns: 1fr;
  }
}

/* Motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse-visual span,
  .btn,
  .device-screen,
  .post {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .bento,
  .flare-pair,
  .mascot-split,
  .grid-3,
  .catalog,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .icon-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    max-width: none;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.2rem;
    background: color-mix(in srgb, var(--canvas) 94%, transparent);
    border-bottom: 1px solid var(--hairline);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.4rem;
  }
}
