/* =========================================================
   01) Design Tokens
   ========================================================= */
:root {
  color-scheme: light;
  --font-sans: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --line-body: 1.65;
  --line-heading: 1.12;
  --line-tight: 1.22;
  --fs-display: clamp(2.2rem, 1.65rem + 3.1vw, 4.2rem);
  --fs-h1: clamp(2rem, 1.55rem + 2.2vw, 3.35rem);
  --fs-h2: clamp(1.75rem, 1.42rem + 1.35vw, 2.65rem);
  --fs-h3: clamp(1.28rem, 1.14rem + 0.45vw, 1.58rem);
  --fs-body: clamp(1rem, 0.97rem + 0.16vw, 1.08rem);
  --fs-body-lg: clamp(1.07rem, 1.01rem + 0.34vw, 1.22rem);
  --fs-small: clamp(0.9rem, 0.87rem + 0.12vw, 0.98rem);
  --fs-caption: clamp(0.8rem, 0.78rem + 0.1vw, 0.86rem);
  --container-max: 1360px;
  --container-gutter-mobile: 1.5rem;
  --container-gutter-tablet: 2rem;
  --container-gutter-desktop: 3rem;

  --color-page-glow: #f0f3ff;
  --color-page: #f6f8fd;
  --color-surface: #ffffff;
  --color-muted-surface: #eff3fd;
  --color-ink-900: #0f172a;
  --color-ink-700: #42506b;
  --color-ink-500: #6a7891;
  --color-brand-500: #4f46e5;
  --color-brand-400: #6366f1;
  --color-brand-300: #7a71ff;
  --color-border: #e7ebf5;

  --gradient-brand: linear-gradient(120deg, #4f46e5 0%, #6366f1 48%, #7a71ff 100%);
  --gradient-dark: linear-gradient(115deg, #08122f 0%, #050a1d 40%, #0e1f57 100%);

  --radius-xs: 0.625rem;
  --radius-sm: 0.875rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.25rem;

  --shadow-sm: 0 10px 22px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 28px 60px rgba(7, 16, 37, 0.16);

  --space-1: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
  --space-2: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  --space-3: clamp(1rem, 0.9rem + 0.7vw, 1.5rem);
  --space-4: clamp(1.25rem, 1.05rem + 1vw, 2rem);
  --space-5: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  --space-6: clamp(2.25rem, 2rem + 1.8vw, 3.75rem);
  --space-7: clamp(3rem, 2.4rem + 2.8vw, 5rem);
}

/* =========================================================
   02) Base + Utilities
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  background: radial-gradient(circle at top center, var(--color-page-glow) 0%, var(--color-page) 34%, var(--color-page) 100%);
  color: var(--color-ink-900);
  line-height: var(--line-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: page-enter 0.38s ease both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-heading);
  letter-spacing: -0.025em;
  font-weight: 800;
}

p,
li {
  line-height: var(--line-body);
}

body.page-lite {
  background: var(--color-page);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-brand-400);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container-max), calc(100% - var(--container-gutter-mobile)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(2.85rem, 5.5vw, 5rem);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-6);
}

.section-header h2 {
  font-size: var(--fs-h2);
}

.section-header p {
  margin-top: var(--space-2);
  color: var(--color-ink-700);
  font-size: var(--fs-body-lg);
}

body,
.site-header,
.post-card,
.feature-card,
.mission,
.site-footer,
.footer-bottom,
.nav-utility,
.menu-button,
.btn-secondary,
.main-nav a {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   03) Header + Navigation
   ========================================================= */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-row {
  min-height: 72px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.65rem;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: #111a32;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(160deg, #5ea0ff 0%, #4576d8 100%);
  box-shadow: 0 8px 18px rgba(68, 113, 214, 0.28);
}

.brand-name {
  font-size: clamp(1.35rem, 1.2rem + 0.9vw, 1.75rem);
  letter-spacing: -0.02em;
}

.menu-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.82rem;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #fff;
  position: relative;
}

.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.08rem;
  height: 2px;
  border-radius: 999px;
  background: #3d4e70;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-button::before {
  transform: translate(-50%, -50%) translateY(-5px);
}

.menu-button::after {
  transform: translate(-50%, -50%) translateY(5px);
  box-shadow: 0 -5px 0 #3d4e70;
}

.menu-toggle:checked + .menu-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle:checked + .menu-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: none;
}

.menu-toggle:focus-visible + .menu-button {
  outline: 2px solid var(--color-brand-400);
  outline-offset: 2px;
}

.main-nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.22rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgba(15, 23, 42, 0);
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  z-index: 25;
  transition: max-height 0.3s ease, opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, padding 0.22s ease;
}

.menu-toggle:checked + .menu-button + .main-nav {
  max-height: min(70vh, 500px);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 0.45rem;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  border-radius: 0.72rem;
  font-weight: 600;
  font-size: var(--fs-small);
  color: #324056;
  padding: 0.62rem 0.8rem;
  border-bottom: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-brand-500);
  background: #f1f4fe;
}

.main-nav a[aria-current="page"] {
  color: var(--color-brand-500);
  border-color: transparent;
  background: #ecf0ff;
}

.nav-chevron {
  font-size: 0.58rem;
  line-height: 1;
  transform: translateY(-1px);
}

.nav-utility {
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border-radius: 0.82rem;
  border: 1px solid rgba(249, 115, 22, 0.5);
  display: grid;
  place-items: center;
  appearance: none;
  cursor: pointer;
  color: #f97316;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 35% 30%, #fff8ee 0%, #ffeacb 52%, #ffd8a9 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 20px rgba(249, 115, 22, 0.22), 0 0 18px rgba(249, 115, 22, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.appearance-icon {
  position: absolute;
  width: 1.08rem;
  height: 1.08rem;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
}

.icon-sun {
  opacity: 0;
  transform: scale(0.7) rotate(18deg);
  color: #f97316;
  filter: none;
}

.icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  color: #25345f;
  filter: drop-shadow(0 0 8px rgba(71, 93, 151, 0.32));
}

.nav-utility:hover,
.nav-utility:focus-visible {
  transform: translateY(-1px);
  background: radial-gradient(circle at 35% 28%, #fffdf7 0%, #ffefcf 52%, #ffdcae 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 12px 24px rgba(249, 115, 22, 0.26), 0 0 24px rgba(249, 115, 22, 0.35);
}

.nav-utility:focus-visible {
  outline: 2px solid var(--color-brand-400);
  outline-offset: 2px;
}

/* =========================================================
   04) Static Pages
   ========================================================= */
.static-main {
  padding-top: clamp(2.5rem, 4.5vw, 4rem);
  min-height: auto;
}

.static-wrap {
  max-width: 960px;
}

.page-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-6);
}

.page-head h1 {
  font-size: var(--fs-h1);
  line-height: 1.08;
}

.page-head p {
  margin: clamp(0.95rem, 0.8rem + 0.5vw, 1.4rem) auto 0;
  max-width: 820px;
  color: var(--color-ink-700);
  font-size: var(--fs-body-lg);
}

.page-head-legal {
  margin-bottom: var(--space-5);
}

.effective-date {
  font-weight: 600;
  font-size: var(--fs-body);
  letter-spacing: 0.01em;
}

.content-stack {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 1.6rem + 1vw, 3rem);
}

.content-block h2 {
  font-size: clamp(1.45rem, 1.28rem + 0.85vw, 2.05rem);
  line-height: var(--line-tight);
  padding-left: 0.9rem;
  border-left: 5px solid var(--color-brand-400);
}

.content-block p,
.content-block li {
  margin-top: var(--space-2);
  color: var(--color-ink-700);
  font-size: var(--fs-body);
}

.content-block ul {
  margin-top: 0.65rem;
  padding-left: 1rem;
  list-style-position: inside;
}

.content-block a {
  color: var(--color-brand-500);
  font-weight: 700;
}

/* =========================================================
   05) Hero
   ========================================================= */
.hero {
  padding-top: clamp(3.1rem, 6vw, 6rem);
  padding-bottom: var(--space-4);
}

.hero-inner {
  text-align: center;
  max-width: 920px;
}

.hero h1 {
  margin-inline: auto;
  max-width: 930px;
  font-size: var(--fs-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: var(--space-4) auto 0;
  max-width: 760px;
  font-size: clamp(1.08rem, 1.02rem + 0.42vw, 1.20rem);
  line-height: 1.68;
  color: #3e4e69;
}

.hero-actions {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-downloads {
  margin-top: var(--space-4);
}

.hero-downloads-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.68rem, 0.65rem + 0.1vw, 0.76rem);
  font-weight: 800;
  color: #6b7a9a;
}

.store-row-hero {
  margin-top: 0;
  flex-wrap: nowrap;
  gap: 0.85rem;
}

.store-row-hero .store-btn {
  width: calc(50% - 0.43rem);
  min-width: 0;
  min-height: 4.3rem;
  max-width: none;
  border-radius: 1.2rem;
  padding: 0.56rem 0.78rem;
  gap: 0.56rem;
  box-shadow: 0 12px 24px rgba(11, 21, 48, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-row-hero .store-copy small {
  font-size: clamp(0.54rem, 0.53rem + 0.08vw, 0.62rem);
  letter-spacing: 0.08em;
}

.store-row-hero .store-copy strong {
  font-size: clamp(0.86rem, 0.84rem + 0.25vw, 1.02rem);
}

.store-row-hero .store-icon.has-image {
  width: 1.95rem;
  height: 1.95rem;
}

.store-row-hero .apple {
  background:
    radial-gradient(130% 145% at 0% 0%, rgba(183, 193, 255, 0.34) 0%, rgba(183, 193, 255, 0) 54%),
    linear-gradient(120deg, #5166bd 0%, #33498e 50%, #162752 100%);
  border-color: rgba(173, 191, 243, 0.66);
  box-shadow: 0 14px 28px rgba(11, 21, 52, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(4, 9, 23, 0.35);
}

.store-row-hero .play {
  background: linear-gradient(130deg, #1f84ff 0%, #10b4d8 100%);
  border-color: rgba(103, 196, 255, 0.64);
}

.store-row-hero .play .store-copy small {
  color: rgba(224, 247, 255, 0.9);
}

.btn {
  width: 100%;
  max-width: 320px;
  min-height: 3.4rem;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.65rem;
  font-size: clamp(0.98rem, 0.95rem + 0.12vw, 1.05rem);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.28);
}

.btn-secondary {
  color: #111c34;
  background: #fff;
  border: 1px solid #d8ddea;
  box-shadow: var(--shadow-sm);
}

.btn svg {
  flex-shrink: 0;
}

.hero-arrow-icon,
.hero-play-icon {
  width: 1.22rem;
  height: 1.22rem;
  transition: transform 0.22s ease;
}

.hero-play-icon {
  color: var(--color-brand-500);
}

.btn-primary:hover .hero-arrow-icon,
.btn-primary:focus-visible .hero-arrow-icon {
  transform: translateX(0.2rem);
}

.btn-secondary:hover .hero-play-icon,
.btn-secondary:focus-visible .hero-play-icon {
  transform: scale(1.1);
}

.play-dot {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #b9c1d6;
  font-size: 0.6rem;
  color: var(--color-brand-500);
}

/* =========================================================
   06) Showcase Panel
   ========================================================= */
.showcase {
  padding-top: var(--space-4);
}

.showcase .container {
  position: relative;
}

.showcase .container::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(106, 133, 255, 0.52) 0%, rgba(106, 133, 255, 0) 72%);
  opacity: 0;
  transform: translateY(10px) scaleX(0.88);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.showcase-panel {
  position: relative;
  z-index: 1;
  min-height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 45% 40%, rgba(41, 98, 255, 0.23), rgba(41, 98, 255, 0) 35%),
    var(--gradient-dark);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  padding: var(--space-5);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
  z-index: 0;
  pointer-events: none;
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(1, 6, 22, 0.84) 14%, rgba(5, 17, 50, 0.58) 52%, rgba(3, 11, 34, 0.84) 100%);
  z-index: 1;
  pointer-events: none;
}

.showcase-copy {
  text-align: center;
  color: #f8fbff;
  max-width: 570px;
  padding-bottom: 2.8rem;
  position: relative;
  z-index: 2;
}

.showcase-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  margin: 0 auto var(--space-3);
  border: 1px solid rgba(132, 147, 255, 0.42);
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(79, 70, 229, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 42px rgba(3, 10, 27, 0.45);
  transition: transform 0.5s ease;
}

.showcase-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.showcase-panel:hover .showcase-icon,
.showcase-panel:focus-within .showcase-icon {
  transform: scale(1.08);
}

.showcase .container:hover::after,
.showcase .container:focus-within::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.showcase-copy h2 {
  font-size: clamp(1.9rem, 1.55rem + 1.15vw, 2.75rem);
  line-height: 1.1;
}

.showcase-copy p {
  margin-top: var(--space-2);
  color: rgba(237, 243, 255, 0.9);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
}

.context-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1;
  color: #f9fbff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  z-index: 3;
  animation: pill-drift var(--pill-duration, 5.8s) ease-in-out infinite;
  will-change: transform;
}

.pill-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  flex: 0 0 auto;
  opacity: 0.95;
}

.pill-label {
  display: block;
}

.pill-joke {
  top: 11%;
  left: 7%;
  background: rgba(127, 96, 20, 0.72);
  --pill-duration: 5.8s;
  --pill-y: -6px;
  animation-delay: 0.1s;
}

.pill-thought {
  top: 13%;
  right: 7%;
  background: rgba(66, 82, 154, 0.7);
  --pill-duration: 6.2s;
  --pill-y: -5px;
  animation-delay: 0.5s;
}

.pill-moment {
  bottom: 7%;
  left: 10%;
  background: rgba(26, 119, 109, 0.72);
  --pill-duration: 5.9s;
  --pill-y: -6px;
  animation-delay: 0.9s;
}

.pill-rant {
  bottom: 6%;
  right: 11%;
  color: #f8e7ee;
  border-color: rgba(170, 84, 125, 0.75);
  background: rgba(94, 47, 83, 0.78);
  box-shadow: inset 0 0 0 1px rgba(216, 129, 171, 0.16);
  --pill-duration: 6.4s;
  --pill-y: -7px;
  animation-delay: 1.2s;
}

.pill-rant .pill-icon {
  width: 1rem;
  height: 1rem;
}

@keyframes pill-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(var(--pill-x, 0), var(--pill-y, -6px), 0);
  }
}

/* =========================================================
   07) Posts Grid
   ========================================================= */
.posts {
  padding-top: var(--space-6);
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: var(--space-4);
}

.post-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.post-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: clamp(220px, 28vw, 330px);
}

.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.post-card:nth-child(1) .post-media img {
  object-position: center 58%;
}

.post-card:nth-child(2) .post-media img {
  object-position: center 45%;
}

.post-card:nth-child(3) .post-media img {
  object-position: center 62%;
}

.post-card:nth-child(4) .post-media img {
  object-position: center 42%;
}

.post-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font-weight: 800;
  font-size: var(--fs-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.post-thought {
  background: #eef0ff;
  color: #4f46e5;
}

.post-joke {
  background: #fff5e6;
  color: #c56b00;
}

.post-moment {
  background: #e8fbf4;
  color: #0f8b62;
}

.post-rant {
  background: #fff0f3;
  color: #cc375b;
}

.post-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  min-height: clamp(220px, 22vw, 300px);
  padding: clamp(1.2rem, 1rem + 0.9vw, 2rem);
  padding-bottom: clamp(0.7rem, 0.62rem + 0.34vw, 1rem);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.avatar-thought {
  background: #4f46e5;
}

.avatar-joke {
  background: #f59e0b;
}

.avatar-moment {
  background: #10b981;
}

.avatar-rant {
  background: #f43f5e;
}

.post-author h3 {
  font-size: clamp(1.18rem, 1.07rem + 0.24vw, 1.34rem);
  line-height: var(--line-tight);
}

.post-author p {
  color: #8a96ac;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.post-text {
  font-size: clamp(1.08rem, 1.01rem + 0.28vw, 1.28rem);
  color: #1b2640;
  font-weight: 600;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
  padding-bottom: clamp(0.72rem, 0.62rem + 0.36vw, 0.96rem);
  border-bottom: 1px solid rgba(88, 106, 145, 0.26);
}

.reaction-chip {
  align-self: flex-start;
  margin-top: 0.15rem;
  border-radius: 999px;
  padding: 0.42rem 0.84rem;
  font-size: clamp(0.8rem, 0.78rem + 0.12vw, 0.88rem);
  font-weight: 800;
}

.chip-thought {
  color: #4f46e5;
  background: #ecefff;
}

.chip-joke {
  color: #c06901;
  background: #fff3dd;
}

.chip-moment {
  color: #0f8b62;
  background: #e7f9f1;
}

.chip-rant {
  color: #cd3259;
  background: #ffedf2;
}

/* =========================================================
   08) Why Joovnet Cards
   ========================================================= */
.features {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 70, 229, 0.24), rgba(79, 70, 229, 0) 38%),
    radial-gradient(circle at 84% 82%, rgba(64, 140, 255, 0.14), rgba(64, 140, 255, 0) 40%),
    linear-gradient(145deg, #040d25 0%, #030a1d 55%, #061434 100%);
}

.features .section-header {
  margin-bottom: clamp(1.8rem, 1.2rem + 1.6vw, 3rem);
}

.features .section-header h2 {
  color: #eef3ff;
}

.features .section-header p {
  color: #9caaca;
  max-width: 700px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: clamp(1rem, 0.8rem + 0.7vw, 1.4rem);
}

.feature-card {
  height: 100%;
  min-height: clamp(250px, 20vw, 320px);
  border-radius: clamp(1.4rem, 1.1rem + 0.7vw, 1.9rem);
  border: 1px solid rgba(130, 154, 210, 0.25);
  background: linear-gradient(180deg, rgba(8, 21, 53, 0.9) 0%, rgba(5, 13, 36, 0.96) 100%);
  box-shadow: 0 16px 34px rgba(2, 8, 24, 0.38);
  padding: clamp(1.35rem, 1.1rem + 0.9vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.8rem, 0.65rem + 0.5vw, 1.2rem);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.feature-icon {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 1.3rem;
}

.feature-icon svg {
  width: 1.48rem;
  height: 1.48rem;
  display: block;
}

.icon-blue {
  color: #78a7ff;
  background: rgba(34, 72, 165, 0.4);
}

.icon-pink {
  color: #ff759d;
  background: rgba(134, 31, 80, 0.44);
}

.icon-indigo {
  color: #8f8cff;
  background: rgba(49, 47, 151, 0.42);
}

.icon-gold {
  color: #ffc64a;
  background: rgba(107, 61, 27, 0.48);
}

.feature-card h3 {
  font-size: var(--fs-h3);
  color: #f4f7ff;
  line-height: var(--line-tight);
}

.feature-card p {
  margin-top: 0;
  color: #96a7c8;
  font-size: var(--fs-body);
  line-height: var(--line-body);
  max-width: 30ch;
}

.feature-card-media {
  width: 100%;
  margin-top: auto;
  padding: 0.28rem;
  border-radius: 1rem;
  border: 2px solid rgba(120, 167, 255, 0.9);
  background: linear-gradient(180deg, rgba(9, 20, 47, 0.95) 0%, rgba(5, 13, 33, 0.98) 100%);
  box-shadow:
    0 0 0 4px rgba(120, 167, 255, 0.2),
    0 14px 28px rgba(2, 8, 24, 0.4),
    0 0 28px rgba(120, 167, 255, 0.35);
}

.feature-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(3, 10, 29, 0.78);
  border-radius: 0.78rem;
}

.feature-image-light {
  display: none;
}

.feature-image-dark {
  display: block;
}

/* =========================================================
   09) Mission Band
   ========================================================= */
.mission {
  background: var(--color-muted-surface);
}

.mission-wrap {
  text-align: center;
  max-width: 920px;
}

.mission-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--color-brand-500);
  border: 1px solid #dfe4f2;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-size: 1.2rem;
}

.mission blockquote {
  margin-inline: auto;
  max-width: 860px;
  font-size: clamp(1.48rem, 1.25rem + 1.05vw, 2.45rem);
  line-height: 1.24;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.018em;
}

.mission-team {
  margin-top: var(--space-4);
  letter-spacing: 0.08em;
  font-size: var(--fs-caption);
  font-weight: 800;
  color: var(--color-brand-500);
}

/* =========================================================
   10) Gallery
   ========================================================= */
.gallery {
  padding-bottom: clamp(4rem, 5vw, 6rem);
}

.gallery .container {
  position: relative;
  border-radius: clamp(1.55rem, 1.25rem + 1vw, 2.3rem);
  padding: clamp(1.1rem, 0.95rem + 0.85vw, 1.9rem);
  border: 1px solid rgba(129, 153, 208, 0.3);
  background:
    radial-gradient(circle at 14% 14%, rgba(95, 120, 255, 0.24), rgba(95, 120, 255, 0) 38%),
    radial-gradient(circle at 86% 84%, rgba(80, 224, 184, 0.12), rgba(80, 224, 184, 0) 42%),
    linear-gradient(145deg, #06112f 0%, #030a1e 52%, #0b1d49 100%);
  box-shadow: 0 26px 50px rgba(3, 10, 27, 0.34);
}

.gallery .section-header {
  margin-bottom: clamp(1.2rem, 0.95rem + 1.05vw, 2.1rem);
}

.gallery .section-header h2 {
  color: #eef3ff;
}

.gallery .section-header p {
  color: #a8b8d8;
}

.gallery-grid {
  --gallery-gap: var(--space-3);
  --gallery-track-count: 5;
  --gallery-card-ratio: 1284 / 2635;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(13.5rem, 78vw);
  gap: var(--gallery-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.4rem;
  -webkit-overflow-scrolling: touch;
  padding: 0.12rem 0.12rem 0.56rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 140, 181, 0.55) rgba(121, 140, 181, 0.18);
}

.gallery-grid::-webkit-scrollbar {
  height: 0.52rem;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(121, 140, 181, 0.55);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(121, 140, 181, 0.18);
  border-radius: 999px;
}

.gallery-card {
  scroll-snap-align: start;
  border-radius: clamp(1.08rem, 0.95rem + 0.52vw, 1.55rem);
  overflow: hidden;
  border: 1px solid rgba(138, 163, 219, 0.28);
  background: linear-gradient(180deg, rgba(8, 20, 53, 0.92) 0%, rgba(6, 14, 37, 0.94) 100%);
  box-shadow: 0 16px 30px rgba(2, 9, 24, 0.45);
  aspect-ratio: var(--gallery-card-ratio);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* =========================================================
   11) CTA Section
   ========================================================= */
.cta {
  background: var(--gradient-dark);
  color: #fff;
  padding-block: clamp(4.2rem, 6vw, 6.5rem);
}

.cta-inner {
  text-align: center;
  max-width: 760px;
}

.cta h2 {
  font-size: clamp(1.9rem, 1.56rem + 1.25vw, 2.85rem);
  line-height: 1.1;
}

.cta p {
  margin-top: var(--space-3);
  color: rgba(229, 236, 255, 0.82);
  font-size: var(--fs-body-lg);
  line-height: 1.65;
}

.store-row {
  margin-top: var(--space-4);
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-row-hero {
  margin-top: 0;
  flex-wrap: nowrap;
  gap: 0.85rem;
}

.store-row-hero .store-btn {
  width: calc((100% - 0.85rem) / 2);
}

.store-btn {
  width: 100%;
  min-width: 0;
  max-width: 23.5rem;
  min-height: 5.1rem;
  border-radius: 1.4rem;
  padding: 0.72rem 1.16rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(3, 8, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.store-btn:hover,
.store-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(3, 8, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  filter: saturate(1.04);
}

.store-icon {
  width: 3.5rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.6;
}

.store-icon.has-image {
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.store-icon.has-image::after {
  display: none;
}

.store-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.store-btn:hover .store-icon,
.store-btn:focus-visible .store-icon {
  transform: translateY(-1px) scale(1.04);
}

.store-svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.store-copy {
  text-align: left;
  line-height: 1.1;
}

.store-copy small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  opacity: 0.82;
  font-size: clamp(0.66rem, 0.64rem + 0.08vw, 0.74rem);
  font-weight: 700;
}

.store-copy strong {
  display: block;
  margin-top: 0.16rem;
  font-size: clamp(1.16rem, 1.08rem + 0.28vw, 1.36rem);
  letter-spacing: -0.028em;
  font-weight: 800;
}

.apple {
  background:
    radial-gradient(130% 145% at 0% 0%, rgba(174, 186, 255, 0.3) 0%, rgba(174, 186, 255, 0) 55%),
    linear-gradient(120deg, #4c62b6 0%, #304584 49%, #14244d 100%);
  color: #ffffff;
  border-color: rgba(226, 236, 255, 0.36);
  box-shadow: 0 14px 30px rgba(10, 19, 47, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(4, 9, 23, 0.36);
}

.apple:hover,
.apple:focus-visible {
  box-shadow: 0 18px 34px rgba(10, 18, 44, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -1px 0 rgba(3, 8, 21, 0.42);
}

.apple .store-icon:not(.has-image) {
  width: 2.68rem;
  height: 2.68rem;
  border-radius: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 8px 16px rgba(1, 6, 17, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.apple .store-icon:not(.has-image)::after {
  opacity: 0.32;
}

.store-svg-apple {
  width: 1.48rem;
  height: 1.78rem;
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(1, 6, 17, 0.2));
}

.play {
  background: linear-gradient(130deg, #48de98 0%, #34d387 100%);
  color: #fff;
  border-color: rgba(111, 245, 179, 0.54);
}

.play .store-icon:not(.has-image) {
  width: 3.68rem;
  height: 3rem;
  border: 1px solid rgba(160, 189, 255, 0.24);
  background: linear-gradient(165deg, #0f1320 0%, #141d2d 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 18px rgba(6, 11, 21, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.play .store-icon:not(.has-image)::after {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, rgba(58, 130, 246, 0.28) 0%, rgba(58, 130, 246, 0) 65%);
  opacity: 1;
}

.play .store-icon.has-image {
  width: 2.8rem;
  height: 2.8rem;
}

.store-svg-play {
  width: 1.72rem;
  height: 1.72rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.38));
}

.play .store-copy small {
  color: rgba(236, 255, 246, 0.9);
}

.play .store-copy strong {
  color: #ffffff;
}

/* =========================================================
   12) Footer
   ========================================================= */
.site-footer {
  background: #f4f6fb;
  padding-top: var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.footer-brand p {
  margin-top: var(--space-2);
  color: var(--color-ink-700);
}

.footer-links h3 {
  font-size: clamp(1.08rem, 1.03rem + 0.2vw, 1.18rem);
  margin-bottom: 0.85rem;
  line-height: var(--line-tight);
}

.footer-links a {
  display: block;
  color: var(--color-ink-700);
  margin: 0.45rem 0;
  font-size: var(--fs-small);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-brand-500);
}

@media (hover: hover) and (pointer: fine) {
  .post-card:hover,
  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .features .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(143, 159, 255, 0.45);
    box-shadow: 0 22px 42px rgba(2, 8, 24, 0.52);
  }
}

.footer-bottom {
  margin-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding: var(--space-3) 0;
}

.footer-bottom p {
  color: #7684a1;
  font-size: var(--fs-small);
}

/* =========================================================
   13) Appearance Mode
   ========================================================= */
[data-theme="dark"] {
  color-scheme: dark;
  --color-page-glow: #1a2244;
  --color-page: #070d1f;
  --color-surface: #111a2e;
  --color-muted-surface: #0c1528;
  --color-ink-900: #edf3ff;
  --color-ink-700: #adb9d4;
  --color-ink-500: #93a2c2;
  --color-border: #263655;
  --shadow-sm: 0 12px 26px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 18px 38px rgba(0, 0, 0, 0.36);
  --shadow-lg: 0 36px 72px rgba(0, 0, 0, 0.52);
  --gradient-dark: linear-gradient(115deg, #050b1c 0%, #030714 45%, #0a1847 100%);
}

[data-theme="dark"] body {
  background: radial-gradient(circle at top center, var(--color-page-glow) 0%, var(--color-page) 38%, var(--color-page) 100%);
}

[data-theme="dark"] body.page-lite {
  background: var(--color-page);
}

[data-theme="dark"] .site-header {
  background: rgba(8, 13, 30, 0.85);
}

[data-theme="dark"] .brand {
  color: #ecf2ff;
}

[data-theme="dark"] .main-nav a {
  color: #b3c1de;
}

[data-theme="dark"] .menu-button {
  background: #121d36;
  border-color: #2d4068;
}

[data-theme="dark"] .menu-button::before,
[data-theme="dark"] .menu-button::after {
  background: #dce5ff;
}

[data-theme="dark"] .menu-button::after {
  box-shadow: 0 -5px 0 #dce5ff;
}

[data-theme="dark"] .menu-toggle:checked + .menu-button + .main-nav {
  background: #101a31;
  border-color: #2d4068;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .main-nav a:hover,
[data-theme="dark"] .main-nav a:focus-visible {
  color: #a8b5ff;
  background: #1b2a4a;
}

[data-theme="dark"] .main-nav a[aria-current="page"] {
  color: #8f9cff;
  border-color: transparent;
  background: #1a2848;
}

[data-theme="dark"] .nav-utility {
  background: linear-gradient(160deg, #111d37 0%, #0a142d 100%);
  color: #c8d4ff;
  border-color: #354a76;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 20px rgba(0, 0, 0, 0.38);
}

[data-theme="dark"] .icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  color: #f8b53f;
  filter: drop-shadow(0 0 7px rgba(248, 181, 63, 0.45));
}

[data-theme="dark"] .icon-moon {
  opacity: 0;
  transform: scale(0.7) rotate(-18deg);
  filter: none;
}

[data-theme="dark"] .nav-utility:hover,
[data-theme="dark"] .nav-utility:focus-visible {
  background: linear-gradient(160deg, #172548 0%, #0f1c38 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 24px rgba(0, 0, 0, 0.44), 0 0 16px rgba(121, 144, 255, 0.24);
}

[data-theme="dark"] .hero-lead {
  color: #b5c3df;
}

[data-theme="dark"] .btn-secondary {
  color: #e7efff;
  background: #121d37;
  border-color: #2c3e65;
  box-shadow: none;
}

[data-theme="dark"] .hero-play-icon {
  color: #96a6ff;
}

[data-theme="dark"] .play-dot {
  border-color: #475b84;
  color: #96a6ff;
}

[data-theme="dark"] .post-card {
  background: rgba(17, 26, 46, 0.92);
  border-color: #273859;
}

[data-theme="dark"] .post-author p {
  color: #8fa0c4;
}

[data-theme="dark"] .post-text {
  color: #e8efff;
  border-bottom-color: rgba(127, 149, 194, 0.38);
}

[data-theme="dark"] .section-header p,
[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-bottom p {
  color: #a7b6d4;
}

[data-theme="dark"] .features .section-header h2 {
  color: #eef3ff;
}

[data-theme="dark"] .features .section-header p,
[data-theme="dark"] .features .feature-card p {
  color: #96a7c8;
}

[data-theme="dark"] .features .feature-card {
  border-color: rgba(130, 154, 210, 0.25);
  background: linear-gradient(180deg, rgba(8, 21, 53, 0.9) 0%, rgba(5, 13, 36, 0.96) 100%);
}

[data-theme="dark"] .feature-card-media {
  border-color: rgba(153, 183, 255, 0.95);
  box-shadow:
    0 0 0 4px rgba(153, 183, 255, 0.23),
    0 14px 28px rgba(2, 8, 24, 0.5),
    0 0 30px rgba(153, 183, 255, 0.4);
}

[data-theme="dark"] .feature-image-dark {
  display: none;
}

[data-theme="dark"] .feature-image-light {
  display: block;
}

[data-theme="dark"] .page-head p,
[data-theme="dark"] .content-block p,
[data-theme="dark"] .content-block li,
[data-theme="dark"] .effective-date {
  color: #a7b6d4;
}

[data-theme="dark"] .content-block h2 {
  border-left-color: #8f9cff;
}

[data-theme="dark"] .content-block a {
  color: #9aa9ff;
}

[data-theme="dark"] .mission {
  background: #0d1730;
}

[data-theme="dark"] .mission-icon {
  background: #13213d;
  border-color: #2f426a;
  color: #b3c2ff;
}

[data-theme="dark"] .site-footer {
  background: #0a1226;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: #24375c;
}

[data-theme="dark"] .showcase-panel {
  box-shadow: 0 36px 68px rgba(0, 0, 0, 0.52);
}

[data-theme="dark"] .gallery-card {
  border-color: rgba(126, 151, 209, 0.42);
  background: linear-gradient(180deg, rgba(7, 18, 49, 0.96) 0%, rgba(4, 11, 31, 0.96) 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

[data-theme="dark"] .store-btn.apple {
  background:
    radial-gradient(130% 155% at 0% 0%, rgba(188, 201, 255, 0.28) 0%, rgba(188, 201, 255, 0) 58%),
    linear-gradient(120deg, #4a62b3 0%, #2c417f 49%, #12224b 100%);
  border-color: rgba(172, 191, 244, 0.62);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(3, 7, 18, 0.48);
}

[data-theme="dark"] .apple .store-icon:not(.has-image) {
  border-color: rgba(149, 174, 224, 0.42);
  background: linear-gradient(165deg, rgba(144, 171, 229, 0.24) 0%, rgba(61, 82, 132, 0.42) 100%);
}

[data-theme="dark"] .play .store-icon:not(.has-image) {
  border-color: rgba(147, 178, 248, 0.36);
  background: linear-gradient(165deg, #101828 0%, #17253f 100%);
}

/* =========================================================
   14) Responsive Breakpoints
   ========================================================= */
@media (min-width: 36rem) {
  .container {
    width: min(var(--container-max), calc(100% - var(--container-gutter-tablet)));
  }

  .hero-actions {
    flex-direction: row;
  }

  .btn {
    width: auto;
  }

  .store-btn {
    width: auto;
    min-width: 188px;
    max-width: none;
  }

  .store-row-hero .store-btn {
    width: 14rem;
    min-width: 14rem;
    max-width: 14rem;
  }

  .store-copy {
    text-align: left;
  }

  .showcase-panel {
    min-height: 430px;
  }

  .showcase-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }

  .showcase-icon svg {
    width: 2rem;
    height: 2rem;
  }

  .context-pill {
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-columns: minmax(12.5rem, 42vw);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  .container {
    width: min(var(--container-max), calc(100% - var(--container-gutter-desktop)));
  }

  .nav-row {
    min-height: 78px;
    padding-block: 0.75rem;
  }

  .showcase-panel {
    min-height: 500px;
  }

  .showcase-copy {
    padding-bottom: 0;
  }

  .pill-joke {
    top: 18%;
    left: 10%;
  }

  .pill-thought {
    top: 24%;
    right: 12%;
  }

  .pill-moment {
    bottom: 15%;
    left: 15%;
  }

  .pill-rant {
    bottom: 13%;
    right: 18%;
  }

  .static-main {
    min-height: calc(100vh - 78px - 300px);
  }
}

@media (min-width: 64rem) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle,
  .menu-button {
    display: none;
  }

  .nav-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-3);
    padding-block: 0;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .main-nav {
    position: static;
    display: flex;
    flex: 1;
    min-width: 0;
    margin-left: auto;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem 1.2rem;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
  }

  .main-nav a {
    display: inline-flex;
    min-height: auto;
    border-radius: 0;
    font-size: var(--fs-small);
    padding: 0.22rem 0;
    border-bottom: 2px solid transparent;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: transparent;
  }

  .main-nav a[aria-current="page"] {
    border-color: var(--color-brand-500);
    background: transparent;
  }

  .nav-utility {
    margin-left: 0.5rem;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-columns: calc((100% - (var(--gallery-gap) * 4)) / var(--gallery-track-count));
    overflow-x: hidden;
  }

  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  [data-theme="dark"] .main-nav a:hover,
  [data-theme="dark"] .main-nav a:focus-visible,
  [data-theme="dark"] .main-nav a[aria-current="page"] {
    background: transparent;
  }

  [data-theme="dark"] .main-nav a[aria-current="page"] {
    border-color: #fff;
  }
}

@media (min-width: 80rem) {
  .showcase-panel {
    min-height: 540px;
  }
}

@media (max-width: 47.99rem) {
  .post-media {
    min-height: 210px;
  }

  .post-body {
    min-height: 0;
  }

  .post-text {
    -webkit-line-clamp: 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 24rem) {
  .store-row-hero {
    gap: 0.55rem;
  }

  .store-row-hero .store-btn {
    width: calc(50% - 0.28rem);
    min-height: 4rem;
    padding: 0.5rem 0.58rem;
    gap: 0.45rem;
  }

  .store-row-hero .store-copy small {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
  }

  .store-row-hero .store-copy strong {
    font-size: 0.82rem;
  }

  .store-row-hero .store-icon.has-image {
    width: 1.76rem;
    height: 1.76rem;
  }

  .pill-joke {
    left: 5%;
  }

  .pill-moment {
    left: 7%;
  }

  .pill-thought {
    right: 5%;
  }

  .pill-rant {
    right: 7%;
  }

  .post-body {
    padding: var(--space-3);
  }

  .content-block h2 {
    padding-left: 0.72rem;
    border-left-width: 4px;
  }
}
