/* ===========================================
   Sleep Sheep 2.0 — Landing
   Paleta y tipografía del Design Spec
   =========================================== */

:root {
  /* Colores de marca (DESIGN_SPEC §1) */
  --purple-core: #6B6BB5;
  --purple-light: #A89FE8;
  --purple-pale: #C4B8FF;
  --purple-900: #26215C;

  /* Superficies — modo claro */
  --bg: #FAFAFC;
  --bg-soft: #F4F4F8;
  --bg-elevated: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #5A5A6E;
  --border: rgba(90, 90, 110, 0.12);
  --border-strong: rgba(90, 90, 110, 0.22);

  /* Espaciado y radios */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Sombras suaves */
  --shadow-soft: 0 1px 2px rgba(38, 33, 92, 0.04), 0 4px 16px rgba(38, 33, 92, 0.04);
  --shadow-medium: 0 4px 12px rgba(38, 33, 92, 0.06), 0 16px 48px rgba(38, 33, 92, 0.08);
  --shadow-strong: 0 12px 32px rgba(38, 33, 92, 0.10), 0 24px 80px rgba(38, 33, 92, 0.12);

  /* Tipografía SF Pro */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Rounded", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-rounded: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", "Helvetica Neue", sans-serif;

  /* Layout */
  --max-content: 1180px;
  --max-text: 720px;
}

/* ===========================================
   Reset y base
   =========================================== */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

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

a {
  color: var(--purple-core);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--purple-900);
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--purple-pale);
  color: var(--purple-900);
}

/* ===========================================
   Tipografía
   =========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-core);
  margin-bottom: 16px;
}

.h-hero {
  font-family: var(--font-rounded);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.h-section {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.h-card {
  font-size: 22px;
  font-weight: 600;
}

.lead {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: var(--max-text);
}

p {
  margin: 0 0 1em;
}

.muted {
  color: var(--text-secondary);
}

/* ===========================================
   Layout helpers
   =========================================== */

.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 12vw, 140px) 0;
}

.section-tight {
  padding: clamp(56px, 8vw, 96px) 0;
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
   Navegación
   =========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 252, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple-core), var(--purple-light));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(107, 107, 181, 0.28);
}

.brand-mark svg,
.brand-mark img {
  width: 22px;
  height: 22px;
  display: block;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--text);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--purple-900);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  margin-right: -8px;
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 252, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
  }
  .nav-links .nav-cta {
    margin-top: 16px;
    align-self: flex-start;
    border-bottom: 0;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ===========================================
   Botones
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple-core);
  color: #fff;
  box-shadow: 0 6px 18px rgba(107, 107, 181, 0.32);
}

.btn-primary:hover {
  background: var(--purple-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107, 107, 181, 0.38);
}

.btn-secondary {
  background: rgba(107, 107, 181, 0.08);
  color: var(--purple-900);
}

.btn-secondary:hover {
  background: rgba(107, 107, 181, 0.14);
  color: var(--purple-900);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  color: var(--purple-core);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.center .btn-row {
  justify-content: center;
}

/* ===========================================
   Hero
   =========================================== */

.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(196, 184, 255, 0.45), transparent 70%),
    radial-gradient(50% 60% at 85% 30%, rgba(168, 159, 232, 0.35), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .lead {
  margin: 0 auto 36px;
}

.hero-meta {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-art {
  margin: 72px auto 0;
  max-width: 320px;
  position: relative;
}

.hero-phone {
  position: relative;
  border-radius: 44px;
  background: linear-gradient(180deg, #1A1A2E 0%, #26215C 100%);
  padding: 14px;
  box-shadow:
    0 4px 12px rgba(38, 33, 92, 0.08),
    0 32px 80px rgba(38, 33, 92, 0.28);
  transform: rotate(-2deg);
}

.hero-phone::before,
.hero-phone::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
}

.hero-phone-screen {
  border-radius: 32px;
  background: linear-gradient(180deg, #FAFAFC 0%, #F0EEFB 100%);
  padding: 28px 24px 40px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

.hero-phone-screen::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #1A1A2E;
  border-radius: 14px;
}

.phone-time {
  margin-top: 60px;
  text-align: center;
}

.phone-time-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.phone-time-big {
  font-family: var(--font-rounded);
  font-weight: 300;
  font-size: 76px;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-top: 6px;
}

.phone-time-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.phone-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px;
  margin-top: 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 12px 28px rgba(38, 33, 92, 0.08);
}

.phone-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.phone-card-row + .phone-card-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.phone-card-row strong {
  font-weight: 600;
  font-family: var(--font-rounded);
  font-size: 17px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-pale);
  color: var(--purple-900);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===========================================
   Cards / grid
   =========================================== */

.grid {
  display: grid;
  gap: 20px;
}

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-strong);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-pale);
  color: var(--purple-900);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Bento (mosaico tipo Apple) */

.bento {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}

.bento > * {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.bento .b-wide { grid-column: span 4; }
.bento .b-small { grid-column: span 2; }
.bento .b-half { grid-column: span 3; }
.bento .b-full { grid-column: span 6; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento .b-wide, .bento .b-small, .bento .b-half, .bento .b-full {
    grid-column: 1 / -1;
  }
}

.bento h3 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.bento p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
  max-width: 36ch;
}

.bento.feature-deep > .b-deep {
  background: linear-gradient(135deg, #1A1A2E 0%, #26215C 100%);
  color: #fff;
}

.bento .b-deep h3 { color: #fff; }
.bento .b-deep p { color: rgba(255, 255, 255, 0.72); }

.bento .b-pale {
  background: linear-gradient(135deg, #F2EEFF 0%, #E5DEFF 100%);
  border-color: rgba(107, 107, 181, 0.12);
}

/* ===========================================
   Pasos numerados
   =========================================== */

.steps {
  counter-reset: step;
}

.step {
  padding: 28px 28px 32px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-rounded);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-core);
  letter-spacing: 0.06em;
}

.step h3 {
  margin: 10px 0 6px;
}

/* ===========================================
   CTA grande
   =========================================== */

.cta-big {
  background: linear-gradient(135deg, #1A1A2E 0%, #26215C 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-big::before,
.cta-big::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.cta-big::before {
  width: 320px;
  height: 320px;
  background: var(--purple-light);
  top: -120px;
  left: -80px;
}

.cta-big::after {
  width: 360px;
  height: 360px;
  background: var(--purple-pale);
  bottom: -140px;
  right: -100px;
}

.cta-big > * { position: relative; z-index: 1; }

.cta-big h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-big p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  margin: 0 auto 32px;
  max-width: 580px;
}

.cta-big .btn-primary {
  background: var(--purple-pale);
  color: var(--purple-900);
  box-shadow: none;
}

.cta-big .btn-primary:hover {
  background: #fff;
  color: var(--purple-900);
}

.cta-big .btn-ghost {
  color: rgba(255, 255, 255, 0.86);
}

.cta-big .btn-ghost:hover {
  color: #fff;
}

/* ===========================================
   FAQ / Acordeón
   =========================================== */

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-q .plus {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--purple-core);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] .faq-q .plus {
  background: var(--purple-pale);
  transform: rotate(45deg);
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }

details > summary { list-style: none; }

.faq-a {
  padding: 0 60px 24px 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

/* ===========================================
   Quote / pull
   =========================================== */

.quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
}

.quote .accent {
  color: var(--purple-core);
}

/* ===========================================
   Trust / pills
   =========================================== */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.pill svg { width: 14px; height: 14px; color: var(--purple-core); }

/* ===========================================
   Tabla comparativa
   =========================================== */

.compare {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.compare-row:last-child { border-bottom: 0; }

.compare-cell {
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-row.head {
  background: var(--bg-soft);
}

.compare-row.head .compare-cell {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  letter-spacing: -0.005em;
}

.compare-cell.label { color: var(--text); font-weight: 500; }
.compare-cell.yes { color: var(--purple-core); font-weight: 600; }
.compare-cell.no { color: var(--text-secondary); }

@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-cell:first-child { grid-column: 1 / -1; background: var(--bg-soft); }
}

/* ===========================================
   Footer
   =========================================== */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer a {
  color: var(--text-secondary);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.5;
  margin-top: 12px;
}

/* ===========================================
   Reveal on scroll
   =========================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ===========================================
   Page-specific
   =========================================== */

.page-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 20%, rgba(196, 184, 255, 0.35), transparent 70%);
  z-index: -1;
}

.page-hero h1 {
  font-family: var(--font-rounded);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.page-hero .lead {
  margin: 0 auto;
}

/* Stats inline */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr; }
}

.stat {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
}

.stat-num {
  font-family: var(--font-rounded);
  font-weight: 400;
  font-size: 52px;
  letter-spacing: -0.03em;
  color: var(--purple-core);
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Section header */
.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p { margin: 0; }

/* Two column feature */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

.two-col-art {
  background: linear-gradient(135deg, #F2EEFF 0%, #E5DEFF 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 40px;
}

.two-col-art.dark {
  background: linear-gradient(135deg, #1A1A2E 0%, #26215C 100%);
  color: #fff;
}

.two-col-art.dark .phone-card { background: rgba(255, 255, 255, 0.06); color: #fff; }
.two-col-art.dark .phone-time-big { color: #fff; }
.two-col-art.dark .phone-time-eyebrow,
.two-col-art.dark .phone-time-label,
.two-col-art.dark .phone-card-row { color: rgba(255, 255, 255, 0.74); }

.two-col-art .mock {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

/* Sunrise/sunset bar mock */
.daylight-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #FFD79A, #C4B8FF 50%, #1A1A2E);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-top: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.daylight-bar span { padding: 4px 0; }

/* Number list */
.bignum-list {
  display: grid;
  gap: 32px;
}

.bignum {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.bignum:last-child { border-bottom: 0; padding-bottom: 0; }

.bignum-n {
  font-family: var(--font-rounded);
  font-weight: 300;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: var(--purple-light);
  line-height: 1;
}

.bignum h3 { font-size: 22px; margin-bottom: 8px; }
.bignum p { color: var(--text-secondary); margin: 0; }

@media (max-width: 600px) {
  .bignum { grid-template-columns: 1fr; gap: 8px; }
  .bignum-n { font-size: 44px; }
}
