/* ════════════════════════════════════════════════════════
   Dyna Apples — style.css        Savera Continental Ltd.
   ════════════════════════════════════════════════════════ */

/* ─── 0. Design Tokens ──────────────────────────────────────── */
:root {
  /* Palette — warm parchment + tomato red + forest green */
  --parchment:   #F5EDD8;
  --parchment-2: #EDE4CE;
  --parchment-3: #E0D3B8;
  --cream-card:  #FDFAF4;
  --white:       #FFFFFF;

  --tomato:      #E8392A;
  --tomato-lt:   #F05545;
  --tomato-dim:  rgba(232,57,42,.1);
  --tomato-ring: rgba(232,57,42,.22);

  --forest:      #2D5E3A;
  --forest-lt:   #3D7A4D;
  --forest-dim:  rgba(45,94,58,.1);
  --forest-ring: rgba(45,94,58,.2);

  --bark:        #5C3D1E;
  --ink:         #1E1208;
  --ink-2:       #3B2510;
  --muted:       #7A6249;
  --muted-lt:    #A08060;
  --border:      rgba(92,61,30,.12);
  --border-hi:   rgba(232,57,42,.25);

  /* Shadows */
  --sh-xs:  0 1px 4px  rgba(30,18,8,.07);
  --sh-sm:  0 3px 14px rgba(30,18,8,.1);
  --sh-md:  0 10px 36px rgba(30,18,8,.13);
  --sh-lg:  0 24px 64px rgba(30,18,8,.16);
  --sh-red: 0 8px 32px rgba(232,57,42,.2);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4.5rem;
  --sp-xl: 8rem;

  /* Radii */
  --r-xs:   6px;
  --r-sm:   14px;
  --r-md:   22px;
  --r-lg:   32px;
  --r-pill: 9999px;

  /* Typography */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* Motion */
  --ease:   cubic-bezier(.4,0,.2,1);
  --ease-o: cubic-bezier(0,0,.2,1);
  --t-xs:   0.14s;
  --t-sm:   0.22s;
  --t-md:   0.38s;
  --t-lg:   0.58s;
}

/* ─── 1. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
ul  { list-style: none; }

:focus-visible { outline: 2.5px solid var(--tomato); outline-offset: 3px; border-radius: var(--r-xs); }

/* ─── 2. Utility ────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--tomato);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin-top: 0.9rem;
}

/* Scroll-triggered reveal */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 3. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-sm) var(--ease), transform var(--t-xs) var(--ease), box-shadow var(--t-sm) var(--ease);
}
.btn-primary {
  background: var(--tomato);
  color: var(--white);
  padding: 0.82rem 2rem;
  box-shadow: var(--sh-red);
}
.btn-primary:hover { background: var(--tomato-lt); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,57,42,.3); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.82rem 1.8rem;
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--tomato-ring); color: var(--tomato); background: var(--tomato-dim); }

/* ─── 4. Header ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--sp-md);
  transition: background var(--t-md) var(--ease), box-shadow var(--t-md) var(--ease);
}
#site-header.scrolled {
  background: rgba(245,237,216,.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(30,18,8,.06);
}

.header-logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.header-logo-img { border-radius: 11px; }
.header-logo-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

nav { display: flex; align-items: center; gap: 0.15rem; }
nav a {
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  transition: color var(--t-sm) var(--ease), background var(--t-sm) var(--ease);
}
nav a:hover, nav a.nav-active { color: var(--ink); background: rgba(30,18,8,.06); }
.nav-cta {
  background: var(--tomato);
  color: var(--white) !important;
  margin-left: 0.7rem;
  box-shadow: var(--sh-red);
}
.nav-cta:hover { background: var(--tomato-lt); }

/* ─── 5. Footer ─────────────────────────────────────────────── */
#site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
}
.footer-inner { max-width: 1200px; margin-inline: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(245,237,216,.1);
  margin-bottom: var(--sp-md);
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img { border-radius: 10px; }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.01em;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.74; color: rgba(245,237,216,.45); max-width: 280px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,216,.45);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li a { font-size: 0.86rem; color: rgba(245,237,216,.5); transition: color var(--t-sm) var(--ease); }
.footer-col li a:hover { color: var(--tomato-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: rgba(245,237,216,.3);
}
.footer-tagline { font-style: italic; font-family: var(--serif); }

/* ─── 6. Hero ───────────────────────────────────────────────── */
#home {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 110px 90px;
  padding-inline: var(--sp-md);
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}

/* Organic blob shapes */
#home::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(232,57,42,.08) 0%, transparent 60%);
  top: -200px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
  animation: drift-a 14s ease-in-out infinite;
}
#home::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(45,94,58,.07) 0%, transparent 65%);
  bottom: -100px; left: -60px;
  border-radius: 50%;
  pointer-events: none;
  animation: drift-b 18s ease-in-out infinite;
}
@keyframes drift-a { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-20px,-28px) scale(1.07)} }
@keyframes drift-b { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(18px,22px) scale(1.05)} }

.hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--tomato-dim);
  border: 1.5px solid var(--tomato-ring);
  border-radius: var(--r-pill);
  padding: 0.3rem 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tomato);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--tomato);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  font-weight: 700;
  line-height: 1.03;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--tomato);
}

.hero-p {
  font-size: 1.08rem;
  line-height: 1.82;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

/* Hero stats — HIDDEN. To re-enable: change display:none to display:flex below */
.hero-stats { display: none; }
.hero-stats-inner {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label { font-size: 0.73rem; color: var(--muted); margin-top: 0.3rem; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-screenshot {
  width: 295px;
  filter: drop-shadow(0 32px 64px rgba(30,18,8,.22));
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(.4deg); }
}

.hero-badge {
  position: absolute;
  background: var(--cream-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.05rem;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hero-badge-val { color: var(--tomato); }
.hero-badge-left  { left: -55px; top: 22%; animation: badge-l 6s ease-in-out infinite; }
.hero-badge-right { right: -55px; bottom: 28%; animation: badge-r 7.5s ease-in-out infinite; }
@keyframes badge-l { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes badge-r { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ─── 7. Features ───────────────────────────────────────────── */
#features {
  padding-block: var(--sp-xl);
  padding-inline: var(--sp-md);
  background: var(--cream-card);
  position: relative;
}

.features-header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 4.5rem;
}
.features-header .section-label { justify-content: center; }
.features-header .section-label::before { display: none; }
.features-header .section-sub { margin-inline: auto; }

.features-grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-md) var(--ease), box-shadow var(--t-md) var(--ease), border-color var(--t-md) var(--ease);
}
/* Top accent bar on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tomato), var(--tomato-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-md) var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--tomato-ring); }

/* Featured tasks card */
.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(140deg, #fff8f7 0%, #fff3f2 100%);
  border-color: var(--tomato-ring);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.feature-card.featured::before { transform: scaleX(1); }

.task-demo {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-sm);
  min-width: 220px;
}
.task-demo-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.task-item:last-child { border-bottom: none; }
.task-item.done { color: var(--muted); text-decoration: line-through; }
.task-check {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.task-check.checked { background: var(--tomato); border-color: var(--tomato); }
.task-check.checked::after { content: '✓'; font-size: 0.6rem; color: white; font-weight: 900; }

.feature-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  background: var(--tomato-dim);
  border: 1.5px solid var(--tomato-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.feature-card.featured h3 { font-size: 1.75rem; font-weight: 700; }
.feature-card p { font-size: 0.88rem; line-height: 1.78; color: var(--muted); }

/* ─── 8. Testimonials ───────────────────────────────────────── */
#reviews {
  padding-block: var(--sp-xl);
  padding-inline: var(--sp-md);
  background: var(--parchment-2);
  position: relative;
  overflow: hidden;
}

.testimonials-coming-soon {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.22rem;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-glow);
  padding: 4rem 2rem;
  border-radius: var(--r-lg);
  border: 1.5px dashed var(--amber);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

/* Big decorative quotation mark */
#reviews::before {
  content: 'C';
  position: absolute;
  font-family: var(--serif);
  font-size: 28rem;
  line-height: 1;
  color: rgba(232,57,42,.05);
  top: -3rem;
  left: -1rem;
  pointer-events: none;
  select: none;
}

.reviews-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.reviews-header .section-label { justify-content: center; }
.reviews-header .section-label::before { display: none; }
.reviews-header .section-sub { margin-inline: auto; }

.reviews-grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  padding: 2rem 1.85rem;
  border: 1.5px solid var(--border);
  transition: transform var(--t-md) var(--ease), box-shadow var(--t-md) var(--ease), border-color var(--t-md) var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--tomato-ring); }

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--tomato);
  letter-spacing: 2px;
}
.review-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1.4rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tomato), var(--bark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.review-avatar.green { background: linear-gradient(135deg, var(--forest), var(--forest-lt)); }
.review-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.review-role { font-size: 0.74rem; color: var(--muted); margin-top: 0.1rem; }

/* ─── 9. Download ───────────────────────────────────────────── */
#download {
  padding-block: var(--sp-xl);
  padding-inline: var(--sp-md);
  background: var(--cream-card);
  position: relative;
  overflow: hidden;
}
#download::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,57,42,.07) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.download-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.download-content .section-title { margin-bottom: 1.1rem; }
.download-content .section-sub   { margin-bottom: 2.5rem; }

.download-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.store-btn {
  display: inline-flex;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-sm) var(--ease), box-shadow var(--t-sm) var(--ease);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.info-chip {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.3rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.55;
  box-shadow: var(--sh-xs);
}
.info-chip strong { color: var(--ink); }
.info-chip-icon   { font-size: 1.5rem; flex-shrink: 0; }

.dl-visual {
  display: flex;
  gap: 1.4rem;
  align-items: flex-end;
  justify-content: center;
}
.dl-shot {
  filter: drop-shadow(0 24px 48px rgba(30,18,8,.18));
  transition: transform var(--t-md) var(--ease);
}
.dl-shot-a { width: 215px; }
.dl-shot-b { width: 175px; transform: translateY(32px); }
.dl-shot-a:hover { transform: translateY(-8px); }
.dl-shot-b:hover { transform: translateY(24px); }

/* ─── 10. Legal Pages ───────────────────────────────────────── */
.legal-hero {
  padding-block: 140px 68px;
  padding-inline: var(--sp-md);
  text-align: center;
  background: var(--cream-card);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,57,42,.07) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.legal-hero .section-label { justify-content: center; margin-bottom: 0.9rem; }
.legal-hero .section-label::before { display: none; }
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.legal-hero .dates { font-size: 0.82rem; color: var(--muted); position: relative; z-index: 1; }
.legal-hero .dates strong { color: var(--ink-2); }

.legal-wrap {
  max-width: 780px;
  margin-inline: auto;
  padding: 4rem var(--sp-md) var(--sp-xl);
  background: var(--parchment);
}

.legal-intro {
  background: var(--tomato-dim);
  border: 1.5px solid var(--tomato-ring);
  border-radius: var(--r-md);
  padding: 1.6rem 1.8rem;
  margin-bottom: 3rem;
}
.legal-intro p { font-size: 0.9rem; line-height: 1.8; color: var(--ink-2); }
.legal-intro p + p { margin-top: 0.6rem; }
.legal-intro strong { color: var(--ink); }

.legal-section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  letter-spacing: -0.01em;
}
.section-num {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--tomato);
  background: var(--tomato-dim);
  border: 1px solid var(--tomato-ring);
  border-radius: var(--r-pill);
  padding: 0.12rem 0.52rem;
  flex-shrink: 0;
  line-height: 1.7;
}
.legal-section p, .legal-section li {
  font-size: 0.9rem;
  line-height: 1.86;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--ink-2); }
.legal-section a { color: var(--tomato); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--tomato-lt); }
.legal-section ul, .legal-section ol {
  list-style: none; padding: 0;
  margin-block: 0.8rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.legal-section li { padding-left: 1.6rem; position: relative; margin-bottom: 0; }
.legal-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--tomato);
  font-weight: 700;
  font-size: 0.8rem;
}
.legal-caps {
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
  font-weight: 600;
  color: var(--ink-2) !important;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 0 !important;
}
.legal-contact-block {
  background: var(--cream-card);
  border: 1.5px solid var(--tomato-ring);
  border-radius: var(--r-md);
  padding: 1.7rem 2rem;
  margin-top: 0.8rem;
}
.legal-contact-block p { color: var(--muted) !important; font-size: 0.87rem !important; margin-bottom: 0.4rem !important; }
.legal-contact-block strong { color: var(--ink-2); }
.legal-contact-block a { color: var(--tomato); text-decoration: none; }
.legal-contact-block a:hover { text-decoration: underline; }

/* ─── 11. Responsive ────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-inner      { gap: 3rem; }
  .download-inner  { gap: 3.5rem; }
}

@media (max-width: 860px) {
  nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-p      { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual  { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .task-demo { min-width: unset; }

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

  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-btns  { justify-content: center; }
  .info-chip      { margin-inline: auto; }
  .dl-visual      { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
}

@media (max-width: 600px) {
  :root { --sp-xl: 5.5rem; --sp-lg: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-tagline { display: none; }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}