/* ============================================
   First Step — "The Warm Threshold" Marketing Site
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* --- CSS Variables --- */
:root {
  /* Palette */
  --bg: #F5EFE6;
  --bg-deep: #EDE6DA;
  --surface: #FAF5ED;
  --surface-elevated: #FFFFFF;
  --text: #2C2420;
  --text-secondary: #6B5E55;
  --text-muted: #9A8E84;
  --accent: #E8855C;
  --accent-hover: #D97348;
  --accent-soft: #F4C9B4;
  --calm: #5AA8A0;
  --calm-soft: #B6DBD6;
  --gold: #D4A853;
  --gold-soft: #F0DDB3;
  --rose: #D4756A;
  --rose-soft: #F0C4BE;

  /* Dark palette (for contrast sections) */
  --dark-bg: #1C1714;
  --dark-surface: #2A2320;
  --dark-text: #F0E8DE;
  --dark-text-secondary: #B8ADA3;

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Nunito', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 8px 30px rgba(44, 36, 32, 0.1);
  --shadow-xl: 0 16px 50px rgba(44, 36, 32, 0.12);

  /* Transitions */
  --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  max-width: 600px;
}

.text-accent { color: var(--accent); }
.text-calm { color: var(--calm); }
.text-gold { color: var(--gold); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-4xl) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-gentle);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 133, 92, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 133, 92, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 14px 20px;
}

.btn-ghost:hover {
  background: rgba(232, 133, 92, 0.08);
}

.btn-appstore {
  background: var(--text);
  color: #fff;
  padding: 12px 28px;
  gap: 10px;
  font-size: 15px;
}

.btn-appstore:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-appstore .btn-appstore-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-appstore .btn-appstore-label small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

.btn-appstore .btn-appstore-label span {
  font-size: 18px;
  font-weight: 700;
}

/* Apple icon SVG in button */
.btn-appstore svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Breathing animation for hero CTA */
.btn-breathe {
  animation: breathe 4s var(--ease-gentle) infinite;
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 4px 16px rgba(232, 133, 92, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(232, 133, 92, 0.5); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--duration-normal) var(--ease-gentle);
}

.nav.scrolled {
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

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

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* Mobile menu */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
  }

  .nav-links.open a {
    font-size: 18px;
    padding: var(--space-sm) 0;
  }

  .nav-links.open .nav-cta {
    display: inline-flex;
    margin-top: var(--space-sm);
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(232, 133, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(90, 168, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--surface);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--calm);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-content {
  max-width: 640px;
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin: 0 auto var(--space-xl);
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-cta-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    text-align: left;
    gap: var(--space-3xl);
  }

  .hero-content {
    flex: 1;
  }

  .hero-content p {
    margin-left: 0;
  }

  .hero-cta-group {
    flex-direction: row;
  }

  .hero-phone-wrapper {
    flex: 0 0 auto;
  }
}

/* --- Phone Mockup --- */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--dark-bg);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 20px 60px rgba(28, 23, 20, 0.15),
    0 0 0 1px rgba(44, 36, 32, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  animation: phone-float 6s var(--ease-gentle) infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-mockup { animation: none; }
  .btn-breathe { animation: none; }
  .hero-badge-dot { animation: none; }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: var(--dark-bg);
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #1F1A16;
  border-radius: 30px;
  overflow: hidden;
  padding: 50px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-header {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.mock-capture-bar {
  background: #2E2824;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: #6B5E55;
  margin-bottom: 4px;
}

.mock-task {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2A2320;
  border-radius: 14px;
  padding: 12px 14px;
  animation: mock-task-in 0.5s var(--ease-bounce) both;
}

.mock-task:nth-child(3) { animation-delay: 0.1s; }
.mock-task:nth-child(4) { animation-delay: 0.2s; }
.mock-task:nth-child(5) { animation-delay: 0.3s; }
.mock-task:nth-child(6) { animation-delay: 0.4s; }
.mock-task:nth-child(7) { animation-delay: 0.5s; }

@keyframes mock-task-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mock-emoji {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-task-info {
  flex: 1;
  min-width: 0;
}

.mock-task-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-task-meta {
  font-size: 11px;
  color: var(--dark-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.mock-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(90, 168, 160, 0.2);
  color: var(--calm);
}

.mock-start-btn {
  background: var(--accent);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: auto;
}

/* --- Empathy Section --- */
.empathy {
  text-align: center;
  padding: var(--space-4xl) 0;
  position: relative;
}

.empathy-inner {
  max-width: 680px;
  margin: 0 auto;
}

.empathy h2 {
  margin-bottom: var(--space-lg);
}

.empathy p {
  font-size: 1.1rem;
  margin: 0 auto;
  line-height: 1.7;
}

.empathy-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-soft);
  border-radius: var(--radius-full);
  margin: var(--space-xl) auto 0;
}

/* --- How It Works --- */
.how-it-works {
  background: var(--surface);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 36, 32, 0.06), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-header p {
  margin: var(--space-md) auto 0;
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.step-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.step-number-1 {
  background: var(--accent-soft);
  color: var(--accent);
}

.step-number-2 {
  background: var(--calm-soft);
  color: var(--calm);
}

.step-number-3 {
  background: var(--gold-soft);
  color: var(--gold);
}

.step-icon {
  font-size: 40px;
  margin-bottom: var(--space-md);
  display: block;
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 15px;
  margin: 0 auto;
}

/* --- Features Section --- */
.features {
  padding: var(--space-4xl) 0;
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
  align-items: center;
}

.feature-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-block {
    flex-direction: row;
    gap: var(--space-3xl);
  }

  .feature-block.reverse {
    flex-direction: row-reverse;
  }
}

.feature-text {
  flex: 1;
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.feature-label-peach {
  background: var(--accent-soft);
  color: var(--accent);
}

.feature-label-teal {
  background: var(--calm-soft);
  color: var(--calm);
}

.feature-label-gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.feature-label-rose {
  background: var(--rose-soft);
  color: var(--rose);
}

.feature-text h2 {
  margin-bottom: var(--space-md);
}

.feature-text p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-visual {
  flex: 0 0 auto;
  width: 100%;
  max-width: 340px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 36, 32, 0.04);
  position: relative;
  overflow: hidden;
}

/* Feature card - Timer */
.timer-display {
  text-align: center;
  padding: var(--space-xl) 0;
}

.timer-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid var(--bg-deep);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timer-ring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--calm);
  border-right-color: var(--calm);
  transform: rotate(45deg);
  animation: timer-rotate 8s linear infinite;
}

@keyframes timer-rotate {
  to { transform: rotate(405deg); }
}

.timer-time {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
}

.timer-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--calm);
  margin-top: var(--space-xs);
}

.timer-step {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Feature card - Brain Dump */
.braindump-demo {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.braindump-demo .line {
  display: block;
  opacity: 0;
  animation: type-line 0.3s var(--ease-gentle) forwards;
}

.braindump-demo .line:nth-child(1) { animation-delay: 0.2s; }
.braindump-demo .line:nth-child(2) { animation-delay: 0.5s; }
.braindump-demo .line:nth-child(3) { animation-delay: 0.8s; }
.braindump-demo .line:nth-child(4) { animation-delay: 1.1s; }

@keyframes type-line {
  to { opacity: 1; }
}

.braindump-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--accent);
  margin: var(--space-md) 0;
}

.braindump-tasks {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.braindump-task {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 12px;
  background: rgba(232, 133, 92, 0.06);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Feature card - Buddy */
.buddy-demo {
  text-align: center;
}

.buddy-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.buddy-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.buddy-avatar-you {
  background: var(--accent-soft);
  border: 3px solid var(--accent);
}

.buddy-avatar-buddy {
  background: var(--calm-soft);
  border: 3px solid var(--calm);
  animation: buddy-work 3s ease infinite;
}

@keyframes buddy-work {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.buddy-status {
  font-size: 14px;
  color: var(--calm);
  font-weight: 600;
}

.buddy-message {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(90, 168, 160, 0.08);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
}

/* --- My Day Demo --- */
.myday-demo {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.myday-section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.myday-section-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.myday-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(44, 36, 32, 0.04);
}

.myday-item--now {
  background: var(--surface-elevated);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm);
}

.myday-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.myday-item--now .myday-item-title {
  color: var(--text);
}

.myday-item-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 133, 97, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.myday-item-play svg {
  width: 12px;
  height: 12px;
  fill: var(--accent);
  margin-left: 2px;
}

.myday-item-chevron {
  color: var(--text-muted);
  font-size: 16px;
  flex-shrink: 0;
}

.myday-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Small Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-mini-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(44, 36, 32, 0.04);
  transition: all var(--duration-normal) var(--ease-gentle);
}

.feature-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-mini-icon {
  font-size: 32px;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-mini-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.feature-mini-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* --- Watch Section --- */
.watch-section {
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.watch-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 133, 92, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.watch-section h2,
.watch-section h3 {
  color: var(--dark-text);
}

.watch-section p {
  color: var(--dark-text-secondary);
}

.watch-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .watch-inner {
    flex-direction: row;
    text-align: left;
    gap: var(--space-3xl);
  }
}

.watch-visual {
  flex: 0 0 auto;
}

.watch-mockup {
  width: 180px;
  height: 220px;
  background: #111;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.watch-mockup::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 60px;
  width: 6px;
  height: 40px;
  background: #222;
  border-radius: 3px;
}

.watch-screen {
  width: 100%;
  height: 100%;
  background: #1A1512;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
}

.watch-timer-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #2A2320;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.watch-timer-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--calm);
  border-right-color: var(--calm);
  border-bottom-color: var(--calm);
  transform: rotate(-30deg);
}

.watch-timer-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--dark-text);
}

.watch-step-label {
  font-size: 11px;
  color: var(--dark-text-secondary);
  text-align: center;
}

.watch-content {
  flex: 1;
}

.watch-features-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.watch-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 15px;
}

.watch-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 133, 92, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.watch-feature-item strong {
  color: var(--dark-text);
  display: block;
}

.watch-feature-item span {
  color: var(--dark-text-secondary);
  font-size: 14px;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 133, 92, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  margin: 0 auto var(--space-xl);
  font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
  background: var(--dark-bg);
  color: var(--dark-text-secondary);
  padding: var(--space-2xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  font-size: 14px;
}

.footer-links a {
  color: var(--dark-text-secondary);
  transition: color var(--duration-fast);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--dark-text-secondary);
  opacity: 0.7;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-gentle), transform 0.7s var(--ease-gentle);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Legal Pages --- */
.legal-page {
  padding-top: 100px;
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.legal-page .container {
  max-width: 760px;
}

.legal-header {
  margin-bottom: var(--space-3xl);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: var(--space-sm);
}

.legal-header .legal-date {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--text);
}

.legal-content p {
  margin-bottom: var(--space-md);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: none;
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content ul li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  position: relative;
  list-style: none;
  padding-left: var(--space-md);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent-hover);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-xl);
  transition: gap var(--duration-fast);
}

.legal-back:hover {
  gap: var(--space-md);
}

/* --- Guide Page --- */
.guide-page {
  padding-top: 100px;
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.guide-page .container {
  max-width: 800px;
}

/* Guide Hero — centered, warm, radial glow */
.guide-hero {
  text-align: center;
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
}

.guide-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 133, 92, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.guide-hero .section-label {
  margin-bottom: var(--space-md);
}

.guide-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.guide-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.guide-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.guide-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-soft);
  border-radius: var(--radius-full);
  margin: var(--space-2xl) auto 0;
}

/* Guide TOC — warm, icon circles, sublabels */
.guide-toc {
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(44, 36, 32, 0.04);
}

.guide-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .guide-toc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .guide-toc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-toc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: all var(--duration-fast);
  text-decoration: none;
}

.guide-toc-item:hover {
  background: rgba(232, 133, 92, 0.06);
  color: var(--accent);
  transform: translateY(-2px);
}

.guide-toc-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  margin-bottom: 2px;
}

.guide-toc-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.guide-toc-sublabel {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Guide Sections */
.guide-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-md);
  scroll-margin-top: 80px;
}

.guide-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-soft);
  border-radius: var(--radius-full);
  margin: var(--space-xl) auto var(--space-3xl);
}

.guide-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.guide-section-icon {
  font-size: 32px;
}

.guide-section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  margin: 0;
}

.guide-section > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Guide Subsection Labels — colored pills */
.guide-subsection-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.guide-subsection-label--gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.guide-subsection-label--calm {
  background: var(--calm-soft);
  color: var(--calm);
}

.guide-subsection-label--rose {
  background: var(--rose-soft);
  color: var(--rose);
}

.guide-subsection-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.guide-subsection-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Guide Steps */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.guide-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.guide-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-step-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.guide-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Guide Tips */
.guide-tip {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(90, 168, 160, 0.06);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--calm);
  margin-top: var(--space-xl);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.guide-tip-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Guide Callout */
.guide-callout {
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: var(--space-xl);
  border: 1px solid rgba(44, 36, 32, 0.04);
}

.guide-callout p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  max-width: none;
}

.guide-callout em {
  color: var(--accent);
}

/* Guide Advice List */
.guide-advice-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.guide-advice-item {
  padding: var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 36, 32, 0.04);
  transition: transform var(--duration-fast) var(--ease-gentle);
}

.guide-advice-item:hover {
  transform: translateY(-1px);
}

/* Color-coded advice item variants */
.guide-advice-item--gold {
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), var(--surface));
}

.guide-advice-item--calm {
  border-left: 3px solid var(--calm);
  background: linear-gradient(135deg, rgba(90, 168, 160, 0.04), var(--surface));
}

.guide-advice-item--rose {
  border-left: 3px solid var(--rose);
  background: linear-gradient(135deg, rgba(212, 117, 106, 0.04), var(--surface));
}

.guide-advice-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Colored dot prefix replacing monotonous emoji */
.guide-advice-item--gold h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.guide-advice-item--calm h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--calm);
  flex-shrink: 0;
}

.guide-advice-item--rose h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.guide-advice-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.guide-advice-item p:last-child {
  margin-bottom: 0;
}

/* Guide Workflow Grid */
.guide-workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .guide-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.guide-workflow-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 36, 32, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-fast) var(--ease-gentle), box-shadow var(--duration-fast);
}

.guide-workflow-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.guide-workflow-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.guide-badge-peach {
  background: var(--accent-soft);
  color: var(--accent);
}

.guide-badge-teal {
  background: var(--calm-soft);
  color: var(--calm);
}

.guide-badge-gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.guide-badge-rose {
  background: var(--rose-soft);
  color: var(--rose);
}

.guide-workflow-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.guide-workflow-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.guide-workflow-best {
  display: block;
  margin-top: var(--space-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 36, 32, 0.06);
}

/* Guide Troubleshooting */
.guide-troubleshoot {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.guide-troubleshoot-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(44, 36, 32, 0.04);
}

.guide-troubleshoot-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--calm-soft);
  color: var(--calm);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-troubleshoot-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.guide-troubleshoot-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Apple Watch Dark Theme Container */
.guide-watch-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
  margin: 0 calc(-1 * var(--space-xl));
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-xl);
}

@media (min-width: 640px) {
  .guide-watch-dark {
    margin: 0 calc(-1 * var(--space-2xl));
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.guide-watch-dark .guide-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-watch-dark .guide-section-header h2 {
  color: var(--dark-text);
}

.guide-watch-dark .guide-section > p {
  color: var(--dark-text-secondary);
}

.guide-watch-dark .guide-subsection-title {
  color: var(--dark-text);
}

.guide-watch-dark .guide-subsection-intro {
  color: var(--dark-text-secondary);
}

.guide-watch-dark .guide-step-content h3 {
  color: var(--dark-text);
}

.guide-watch-dark .guide-step-content p {
  color: var(--dark-text-secondary);
}

.guide-watch-dark .guide-troubleshoot-item {
  background: var(--dark-surface);
  border-color: rgba(255, 255, 255, 0.06);
}

.guide-watch-dark .guide-troubleshoot-item strong {
  color: var(--dark-text);
}

.guide-watch-dark .guide-troubleshoot-item p {
  color: var(--dark-text-secondary);
}

.guide-watch-dark .guide-troubleshoot-check {
  background: rgba(90, 168, 160, 0.15);
  color: var(--calm);
}

.guide-watch-dark .guide-advice-item {
  background: var(--dark-surface);
  border-color: rgba(255, 255, 255, 0.06);
}

.guide-watch-dark .guide-advice-item h3 {
  color: var(--dark-text);
}

.guide-watch-dark .guide-advice-item p {
  color: var(--dark-text-secondary);
}

.guide-watch-dark .guide-tip {
  background: rgba(90, 168, 160, 0.08);
  border-left-color: var(--calm);
  color: var(--dark-text-secondary);
}

/* Guide Closing CTA */
.guide-closing {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  margin-top: var(--space-2xl);
}

.guide-closing h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: var(--space-md);
}

.guide-closing p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

.guide-closing .btn {
  display: inline-flex;
}

/* --- Blog Pages --- */

.blog-page {
  padding-top: 100px;
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.blog-page .container {
  max-width: 900px;
}

/* Blog hero */
.blog-hero {
  text-align: center;
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 133, 92, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.blog-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.blog-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.blog-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-soft);
  border-radius: var(--radius-full);
  margin: var(--space-2xl) auto 0;
}

/* Blog card grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 36, 32, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration-fast) var(--ease-gentle),
              box-shadow var(--duration-fast);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.blog-badge-peach {
  background: var(--accent-soft);
  color: var(--accent);
}

.blog-badge-teal {
  background: var(--calm-soft);
  color: var(--calm);
}

.blog-badge-gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.blog-card h2 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: var(--space-sm);
}

.blog-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  max-width: none;
}

.blog-card-meta {
  display: block;
  margin-top: var(--space-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 36, 32, 0.06);
}

/* --- Blog Post Page --- */

.blog-post-page {
  padding-top: 100px;
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.blog-post-page .container {
  max-width: 760px;
}

.blog-post-header {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.blog-post-header .blog-card-badge {
  margin-bottom: var(--space-md);
  display: inline-flex;
}

.blog-post-header h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin-bottom: var(--space-md);
}

.blog-post-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-md);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Blog post content typography */
.blog-post-content h2 {
  font-size: 1.4rem;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  color: var(--text);
}

.blog-post-content p {
  margin-bottom: var(--space-md);
  font-size: 16px;
  line-height: 1.75;
  max-width: none;
  color: var(--text-secondary);
}

.blog-post-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.blog-post-content ul li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  position: relative;
  list-style: none;
  padding-left: var(--space-md);
}

.blog-post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.blog-post-content strong {
  color: var(--text);
  font-weight: 700;
}

/* Comparison table */
.blog-table-wrapper {
  margin: var(--space-2xl) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(44, 36, 32, 0.06);
}

.blog-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.6;
}

.blog-comparison-table th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: left;
  padding: var(--space-md);
  border-bottom: 2px solid rgba(44, 36, 32, 0.1);
  background: var(--surface);
}

.blog-comparison-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
  color: var(--text-secondary);
  vertical-align: top;
}

.blog-comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
  min-width: 140px;
}

.blog-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.blog-comparison-table tbody tr:hover {
  background: rgba(232, 133, 92, 0.03);
}

/* Verdict section */
.blog-verdict {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl) var(--space-xl);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(44, 36, 32, 0.04);
}

.blog-verdict h2 {
  margin-top: 0;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.blog-verdict-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.blog-verdict-point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.blog-verdict-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.blog-verdict-point h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.blog-verdict-point p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: none;
}

/* Blog post CTA */
.blog-post-cta {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  margin-top: var(--space-3xl);
}

.blog-post-cta h2 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.blog-post-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

.blog-post-cta .btn {
  display: inline-flex;
}

/* --- Utilities --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Smooth transitions for the entire page */
.page-loaded .reveal {
  will-change: opacity, transform;
}
