:root {
  --navy: #111736;
  --slate: #4e5a78;
  --blue: #1a6bf5;
  --bright-blue: #3d8fff;
  --ice: #d6f2ff;
  --soft-blue: #edf9ff;
  --mint: #41c47d;
  --coral: #ff5f77;
  --lemon: #f5cb38;
  --ink: #090e27;
  --paper: #ffffff;
  --shadow: 0 32px 80px rgba(20, 60, 120, 0.22);
  --shadow-sm: 0 12px 36px rgba(20, 60, 120, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  font-family: 'DM Sans', 'Avenir Next Rounded', ui-rounded, 'SF Pro Rounded', sans-serif;
  color: var(--navy);
  background:
    radial-gradient(ellipse 100% 55% at 12% 0%, rgba(56, 189, 248, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 88% 8%, rgba(247, 214, 93, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 55% 35% at 50% 100%, rgba(33, 111, 242, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 38% 28% at 95% 55%, rgba(82, 196, 135, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #bde9ff 0%, #e5f7ff 26%, #f3faff 55%, #ffffff 100%);
  overflow-x: hidden;
}

/* Noise grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: 200;
  opacity: 0.45;
  mix-blend-mode: multiply;
}

/* Subtle grid lines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 31, 71, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 31, 71, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}

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

section {
  scroll-margin-top: 82px;
}

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

/* ─── Navigation ─────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 52px rgba(30, 80, 140, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  transition: box-shadow 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.08rem;
  font-variation-settings: 'opsz' 14, 'wght' 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(33, 111, 242, 0.28);
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a,
.nav-cta {
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover {
  background: rgba(33, 111, 242, 0.07);
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: #000;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(9, 14, 39, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #111;
  box-shadow: 0 8px 28px rgba(9, 14, 39, 0.3);
}

/* ─── Hero ───────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: min(1180px, calc(100% - 32px));
  min-height: min(640px, calc(100svh - 120px));
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) 0 24px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(33, 111, 242, 0.07);
  border: 1px solid rgba(33, 111, 242, 0.16);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.65;
  flex-shrink: 0;
}

h1,
h2 {
  margin-top: 0;
  font-family: 'Fraunces', serif;
}

h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(5rem, 11vw, 9.8rem);
  font-style: italic;
  font-variation-settings: 'opsz' 100, 'wght' 820;
  line-height: 0.84;
  letter-spacing: -0.025em;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-variation-settings: 'opsz' 72, 'wght' 720;
  line-height: 0.93;
  letter-spacing: -0.025em;
}

h3 {
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hero-lede,
.split-copy p,
.plus-panel p {
  max-width: 640px;
  color: var(--slate);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 500;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 15px 48px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--bright-blue) 0%, var(--blue) 100%);
  box-shadow: 0 8px 28px rgba(33, 111, 242, 0.32), 0 2px 8px rgba(33, 111, 242, 0.2);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}

.button.primary:hover {
  box-shadow: 0 16px 48px rgba(33, 111, 242, 0.42), 0 4px 14px rgba(33, 111, 242, 0.25);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(30, 80, 140, 0.1);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(30, 80, 140, 0.14);
}

/* App Store badge button */
.button.appstore {
  min-height: auto;
  padding: 12px 22px;
  border-radius: 16px;
  background: #000;
  color: #fff;
  gap: 12px;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.2s ease;
}

.button.appstore:hover {
  background: #111;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42), 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.button.appstore-lg {
  padding: 16px 30px;
  border-radius: 20px;
  font-size: 1rem;
}

.button.appstore-lg .apple-mark {
  width: 26px;
  height: 26px;
}

.button.appstore-lg .appstore-text small {
  font-size: 0.72rem;
}

.button.appstore-lg .appstore-text strong {
  font-size: 1.35rem;
}

.apple-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

.apple-mark-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.appstore-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1;
}

.appstore-text small {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.72;
  margin-bottom: 2px;
}

.appstore-text strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.download-sub {
  margin: 0;
  padding-top: 10px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 500;
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.88);
  font-size: 0.79rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.trust-strip span svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ─── Phone mockup ───────────────────────────── */

.hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
  perspective: 1400px;
}

.phone,
.mini-phone {
  position: relative;
  border: 10px solid #0b1020;
  border-radius: 46px;
  background: #0b1020;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.hero-phone {
  width: min(296px, 86vw);
  min-height: 510px;
  transform: rotate(-2.5deg);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-stage:hover .hero-phone {
  transform: rotate(-1deg) scale(1.015);
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(-50%);
}

.app-screen,
.mini-screen {
  overflow: hidden;
  border-radius: 35px;
  background: linear-gradient(168deg, #bde8ff 0%, #eaf8ff 40%, #f6fcff 70%, #fff 100%);
}

.app-screen {
  min-height: 490px;
  padding: 34px 14px 14px;
}

.app-topbar,
.freeze-card,
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.app-topbar strong,
.freeze-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.app-topbar span,
.freeze-card span,
.timer-block span,
.mini-screen p {
  display: block;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.settings-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 2px 10px rgba(33, 111, 242, 0.1);
  color: var(--slate);
  flex-shrink: 0;
}

.ice-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-top: 6px;
}

.ice-stage::after {
  content: "";
  position: absolute;
  bottom: 30px;
  width: 55%;
  height: 22px;
  border-radius: 50%;
  background: rgba(33, 111, 242, 0.16);
  filter: blur(10px);
}

.ice-stage img {
  position: relative;
  z-index: 1;
  width: 158px;
  height: 204px;
  object-fit: cover;
  object-position: center 55%;
  filter: drop-shadow(0 24px 30px rgba(33, 111, 242, 0.24));
  transition: opacity 280ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.status-pill {
  position: absolute;
  top: 18px;
  right: 2px;
  z-index: 2;
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  background: var(--mint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(65, 196, 125, 0.38);
}

.timer-block {
  text-align: center;
}

.timer-block strong {
  display: block;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: clamp(2.74rem, 9vw, 3.3rem);
  font-variation-settings: 'opsz' 36, 'wght' 700;
  line-height: 0.94;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.melt-meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.melt-meter div {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(33, 111, 242, 0.1);
}

.melt-meter i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--bright-blue));
  transition: width 300ms ease;
}

.freeze-card {
  margin: 16px 0 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 26px rgba(54, 110, 158, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.app-chips {
  display: flex;
}

.app-chips b {
  display: block;
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  line-height: 0;
}

.app-chips b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--bright-blue), var(--blue));
  font: inherit;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(33, 111, 242, 0.3);
  cursor: pointer;
}

.melt-controls {
  position: absolute;
  bottom: -18px;
  left: 50%;
  display: flex;
  gap: 7px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(40, 89, 136, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.melt-controls button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 31, 71, 0.14);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.melt-controls button:hover {
  background: rgba(25, 31, 71, 0.34);
  transform: scale(1.25);
}

.melt-controls button.active {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(33, 111, 242, 0.14);
}

/* ─── Screenshots band ───────────────────────── */

.screenshots-band {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) 0 clamp(24px, 4vw, 48px);
  text-align: center;
}

.screenshots-label {
  margin-bottom: 28px;
}

.screenshots-row {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}

.screenshot-frame {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.screenshot-phone {
  position: relative;
  width: clamp(180px, 26vw, 240px);
  border-radius: 40px;
  border: 10px solid #0b1020;
  background: #0b1020;
  box-shadow:
    0 40px 90px rgba(20, 60, 120, 0.26),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.screenshot-phone:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 60px 110px rgba(20, 60, 120, 0.3),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.screenshot-frame:first-child .screenshot-phone {
  transform: rotate(-3deg);
}

.screenshot-frame:first-child .screenshot-phone:hover {
  transform: rotate(-1.5deg) translateY(-8px) scale(1.02);
}

.screenshot-frame:last-child .screenshot-phone {
  transform: rotate(3deg);
}

.screenshot-frame:last-child .screenshot-phone:hover {
  transform: rotate(1.5deg) translateY(-8px) scale(1.02);
}

.screenshot-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.screenshot-frame figcaption {
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── Plus pricing ───────────────────────────── */

.plus-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(245, 203, 56, 0.16);
  border: 1px solid rgba(245, 203, 56, 0.32);
  color: var(--lemon);
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Fraunces', serif;
  letter-spacing: -0.02em;
}

.price-badge small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
  font-family: 'DM Sans', sans-serif;
}

.price-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  font-weight: 500;
}

/* ─── Closing sub-text ───────────────────────── */

.closing-sub {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── Sections shared ────────────────────────── */

.feature-band,
.split-section,
.plus-panel,
.closing-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(40px, 8vw, 100px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

/* ─── Feature grid ─────────────────────────── */

.feature-band {
  position: relative;
}

.feature-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 100vw;
  height: 78%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(214, 242, 255, 0.52) 24%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(90deg, rgba(17, 23, 54, 0.055) 0 1px, transparent 1px 74px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.feature-grid article:nth-child(1) {
  --accent: var(--blue);
  --accent-soft: rgba(26, 107, 245, 0.12);
  --shadow-accent: rgba(26, 107, 245, 0.16);
  --card-top: #e8f7ff;
  --card-bottom: #f9fdff;
}

.feature-grid article:nth-child(2) {
  --accent: var(--mint);
  --accent-soft: rgba(65, 196, 125, 0.14);
  --shadow-accent: rgba(65, 196, 125, 0.15);
  --card-top: #ebfbf3;
  --card-bottom: #fbfffc;
}

.feature-grid article:nth-child(3) {
  --accent: var(--coral);
  --accent-soft: rgba(255, 95, 119, 0.14);
  --shadow-accent: rgba(255, 95, 119, 0.16);
  --card-top: #fff1f4;
  --card-bottom: #fffdfc;
}

.feature-grid article {
  position: relative;
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 54, 0.08);
  background: linear-gradient(180deg, var(--card-top) 0%, var(--card-bottom) 64%);
  box-shadow:
    0 20px 54px var(--shadow-accent),
    0 8px 18px rgba(42, 89, 132, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 23, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 54, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  pointer-events: none;
}

.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow:
    0 34px 76px var(--shadow-accent),
    0 12px 28px rgba(42, 89, 132, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.feature-img-zone {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 268px;
  padding: 30px 22px 6px;
  overflow: hidden;
}

.feature-img-zone::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 16%;
  width: 68%;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(13px);
  opacity: 0.78;
}

.feature-img {
  position: relative;
  z-index: 1;
  width: 226px;
  height: 236px;
  object-fit: cover;
  object-position: center 54%;
  filter: drop-shadow(0 18px 24px var(--shadow-accent));
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-grid article:nth-child(2) .feature-img,
.feature-grid article:nth-child(3) .feature-img {
  width: min(380px, 116%);
  height: 220px;
  max-height: none;
  object-position: center 57%;
}

.feature-grid article:hover .feature-img {
  transform: translateY(-7px) scale(1.04);
}

.feature-text {
  position: relative;
  z-index: 1;
  min-height: 184px;
  padding: 22px 24px 26px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(17, 23, 54, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-num {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.feature-grid h3 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.44rem, 2vw, 1.82rem);
  font-variation-settings: 'opsz' 28, 'wght' 780;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--ink);
}

.feature-grid p {
  margin: 0;
  color: #3e4965;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.58;
}

/* ─── Split section ──────────────────────────── */

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.phone-stack {
  position: relative;
  min-height: 600px;
}

.mini-phone {
  position: absolute;
  width: 276px;
  border-width: 8px;
}

.mini-screen {
  min-height: 540px;
  padding: 26px 18px;
}

.mini-screen h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.42rem;
  font-variation-settings: 'opsz' 24, 'wght' 720;
  text-align: center;
  letter-spacing: -0.015em;
}

.mini-screen img {
  width: 168px;
  height: 190px;
  margin: 8px auto;
  object-fit: cover;
  object-position: center 52%;
  filter: drop-shadow(0 18px 24px rgba(33, 111, 242, 0.2));
}

.mini-screen span {
  display: block;
  margin-top: 10px;
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.onboarding-shot {
  left: 0;
  top: 24px;
  transform: rotate(-5deg);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.onboarding-shot:hover {
  transform: rotate(-2.5deg) scale(1.02);
}

.success-shot {
  right: 6%;
  top: 78px;
  transform: rotate(6deg);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-shot:hover {
  transform: rotate(3deg) scale(1.02);
}

.success-shot .mini-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.success-shot .stat-row {
  margin-top: 16px;
}

.success-shot b {
  flex: 1;
  padding: 18px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.52;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--mint);
  font-size: 0.76rem;
  box-shadow: 0 3px 12px rgba(65, 196, 125, 0.32);
}

/* ─── Plus panel ─────────────────────────────── */

.plus-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: 32px;
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 80% at 2% 100%, rgba(33, 111, 242, 0.11), transparent 55%),
    radial-gradient(ellipse 55% 55% at 98% 0%, rgba(56, 189, 248, 0.13), transparent 55%),
    linear-gradient(150deg, #dbeafe 0%, #e0f7ff 48%, #f0fbff 100%);
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: 0 28px 80px rgba(30, 80, 140, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.plus-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
  pointer-events: none;
}

.plus-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 30px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 111, 242, 0.09), transparent 70%);
  pointer-events: none;
  animation: orb-drift 7s ease-in-out 1.5s infinite reverse;
}

.plus-panel h2 {
  color: var(--ink);
}

.plus-panel > div > p {
  color: var(--slate);
  opacity: 1;
}

.plus-panel .eyebrow {
  background: rgba(33, 111, 242, 0.07);
  border-color: rgba(33, 111, 242, 0.18);
  color: var(--blue);
}

.plus-panel .eyebrow::before {
  background: var(--blue);
}

.plus-panel .price-note {
  color: var(--slate);
}

.plus-panel .price-badge {
  background: rgba(33, 111, 242, 0.09);
  border-color: rgba(33, 111, 242, 0.22);
  color: var(--blue);
}

.plus-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(96, 165, 250, 0.22);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(30, 80, 140, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.plus-card img {
  height: 200px;
  width: 150px;
  object-fit: cover;
  object-position: center 55%;
  filter: drop-shadow(0 12px 24px rgba(33, 111, 242, 0.2));
}

.plus-card span,
.plus-card b {
  display: block;
}

.plus-card span {
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
}

.plus-card b {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(33, 111, 242, 0.05);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(33, 111, 242, 0.1);
}

.plus-card b::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ─── Closing CTA ────────────────────────────── */

.closing-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 0;
}

.closing-cta img {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(33, 111, 242, 0.24), 0 0 0 4px rgba(255, 255, 255, 0.85);
}

.closing-cta h2 {
  max-width: 760px;
  margin-bottom: 36px;
}

.closing-cta .button {
  font-size: 1rem;
  padding: 18px 32px;
}

/* ─── Footer ─────────────────────────────────── */

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 1px solid rgba(25, 31, 71, 0.07);
}

footer span:first-child {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'wght' 800;
  color: var(--navy);
}

/* ─── Scroll reveal ──────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.34, 1.28, 0.64, 1);
  will-change: transform, opacity;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Directional card entrances */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px) translateY(10px);
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.68s cubic-bezier(0.34, 1.32, 0.64, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px) translateY(10px);
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.68s cubic-bezier(0.34, 1.32, 0.64, 1);
  will-change: transform, opacity;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Scrolled header depth */
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(30, 80, 140, 0.1), 0 24px 64px rgba(30, 80, 140, 0.14),
              inset 0 1px 0 rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.93);
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.055) 0%, transparent 62%);
  top: 0;
  left: 0;
  z-index: 0;
  will-change: transform;
  transform: translate(-50%, -50%);
}

/* Word reveal */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(52%) rotate(1deg);
  transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.48s cubic-bezier(0.34, 1.42, 0.64, 1);
  will-change: transform, opacity;
}

.word.visible {
  opacity: 1;
  transform: none;
}

/* Magnetic button — smooth return */
.nav-cta,
.button.appstore-lg {
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              background 0.2s ease;
}

/* ─── Keyframes ──────────────────────────────── */

@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes hero-stage-in {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: none; }
}


@keyframes shimmer-pass {
  0%   { left: -55%; }
  100% { left: 125%; }
}

@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(65, 196, 125, 0.38), 0 0 0 0 rgba(65, 196, 125, 0.5); }
  60%       { box-shadow: 0 4px 14px rgba(65, 196, 125, 0.38), 0 0 0 10px rgba(65, 196, 125, 0); }
}

@keyframes orb-drift {
  0%, 100% { opacity: 0.22; transform: scale(1) translate(0, 0); }
  40%       { opacity: 0.32; transform: scale(1.12) translate(5%, -5%); }
  75%       { opacity: 0.15; transform: scale(0.92) translate(-4%, 6%); }
}

@keyframes icon-levitate {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ─── Hero entrance ──────────────────────────── */

.hero { position: relative; }

.hero-copy > * { opacity: 0; }
.hero-copy .eyebrow      { animation: fade-up-in .55s cubic-bezier(.22,1,.36,1) .12s forwards; }
.hero-copy h1            { animation: fade-up-in .65s cubic-bezier(.22,1,.36,1) .26s forwards; }
.hero-copy .hero-lede    { animation: fade-up-in .65s cubic-bezier(.22,1,.36,1) .42s forwards; }
.hero-copy .hero-actions { animation: fade-up-in .65s cubic-bezier(.22,1,.36,1) .58s forwards; }
.hero-copy .trust-strip  { animation: fade-up-in .65s cubic-bezier(.22,1,.36,1) .74s forwards; }

.hero-stage { opacity: 0; animation: hero-stage-in .9s cubic-bezier(.22,1,.36,1) .34s forwards; }

/* ─── Ice float ──────────────────────────────── */

.ice-wrapper {
  position: relative;
  z-index: 1;
}

/* ─── Button shimmer ─────────────────────────── */

.button.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -55%;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  animation: shimmer-pass 3.4s ease-in-out 1.6s infinite;
}

/* ─── Status pill pulse ──────────────────────── */

.status-pill { animation: ring-pulse 2.5s ease-in-out infinite; }

/* ─── Plus panel animated orb ────────────────── */

.plus-panel::after { animation: orb-drift 7s ease-in-out 1.5s infinite reverse; }

/* ─── Closing CTA icon levitate ──────────────── */

.closing-cta img.visible { animation: none; }

/* ─── Reduced motion ─────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { opacity: 1; animation: none; }
  .hero-stage    { opacity: 1; animation: none; }
  .ice-wrapper,
  .button.primary::before,
  .status-pill,
  .plus-panel::before,
  .plus-panel::after,
  .closing-cta img.visible { animation: none; }
}

/* ─── Responsive ─────────────────────────────── */

@media (max-width: 920px) {
  .site-header {
    border-radius: 24px;
  }

  nav {
    display: none;
  }

  .hero,
  .split-section,
  .plus-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-phone {
    min-height: 700px;
  }

  .app-screen {
    min-height: 680px;
  }

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

  .feature-grid article:nth-child(2),
  .feature-grid article:nth-child(3) {
    margin-top: 0;
  }

  .phone-stack {
    order: 2;
  }

  .split-copy {
    order: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    margin: 10px 10px 0;
    padding: 8px;
  }

  .brand span {
    display: inline;
  }

  .nav-cta {
    display: none;
  }

  .screenshots-row {
    gap: 28px;
  }

  .screenshot-frame:first-child .screenshot-phone,
  .screenshot-frame:last-child .screenshot-phone {
    transform: none;
  }

  .screenshot-frame:first-child .screenshot-phone:hover,
  .screenshot-frame:last-child .screenshot-phone:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .plus-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero,
  .feature-band,
  .split-section,
  .plus-panel,
  .closing-cta,
  footer {
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
    padding-left: 11px;
    padding-right: 11px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.6rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .trust-strip span {
    min-width: 0;
    text-align: center;
  }

  .trust-strip span:first-child {
    grid-column: 1 / -1;
  }

  .hero-phone {
    width: min(300px, 88vw);
    min-height: 520px;
    border-width: 8px;
    border-radius: 40px;
  }

  .app-screen {
    min-height: 502px;
    padding: 34px 14px 16px;
    border-radius: 31px;
  }

  .hero-stage {
    height: auto;
    overflow: visible;
    margin-top: 8px;
  }

  .hero-phone {
    width: min(260px, 76vw);
    min-height: unset;
  }

  .app-screen {
    min-height: 460px;
    border-radius: 30px;
  }

  .ice-stage {
    min-height: 150px;
  }

  .ice-stage img {
    width: 130px;
    height: 168px;
  }

  .timer-block strong {
    font-size: 2.6rem;
  }

  .melt-controls {
    bottom: 10px;
  }

  /* Phone stack: stack vertically instead of overlapping */
  .phone-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-height: unset;
  }

  .mini-phone {
    position: relative;
    width: min(260px, 76vw);
    left: auto;
    right: auto;
    top: auto;
  }

  .onboarding-shot {
    transform: rotate(-2deg);
  }

  .onboarding-shot:hover {
    transform: rotate(-1deg) scale(1.02);
  }

  .success-shot {
    transform: rotate(2deg);
  }

  .success-shot:hover {
    transform: rotate(1deg) scale(1.02);
  }

  /* Screenshots: side-by-side at smaller size */
  .screenshots-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: center;
  }

  .screenshot-phone {
    width: min(148px, 42vw);
  }

  .screenshot-frame:first-child .screenshot-phone,
  .screenshot-frame:last-child .screenshot-phone {
    transform: none;
  }

  /* Feature cards: remove fixed height on mobile */
  .feature-grid article {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .feature-img-zone {
    min-height: 170px;
    padding: 20px 16px 4px;
  }

  .feature-img {
    width: 160px;
    height: 164px;
  }

  .feature-grid article:nth-child(2) .feature-img,
  .feature-grid article:nth-child(3) .feature-img {
    width: min(280px, 90%);
    height: 160px;
  }

  .feature-text {
    min-height: auto;
    padding: 18px 20px 22px;
  }

  /* Phone stack: reduce screen height */
  .mini-screen {
    min-height: 420px;
    padding: 22px 14px;
  }

  .mini-screen img {
    width: 130px;
    height: 148px;
  }

  .plus-panel {
    padding-inline: 18px;
    border-radius: 26px;
  }

  .plus-card {
    grid-template-columns: 1fr;
  }

  .plus-card img {
    margin: 0 auto;
  }

  footer {
    display: grid;
  }
}

/* ─── H1 brand + keyword tagline ───────────────── */

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  max-width: 16ch;
}

.h1-brand {
  display: block;
}

.h1-tagline {
  margin-top: 14px;
  font-family: 'DM Sans', 'Avenir Next Rounded', ui-rounded, sans-serif;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.hero-definition {
  max-width: 600px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.9vw, 1.24rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-copy .hero-definition {
  opacity: 0;
  animation: fade-up-in .65s cubic-bezier(.22, 1, .36, 1) .36s forwards;
}

/* ─── FAQ ──────────────────────────────────────── */

.faq-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(40px, 8vw, 100px) 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq-list details {
  border: 1px solid rgba(17, 23, 54, 0.1);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .25s ease;
}

.faq-list details[open] {
  border-color: rgba(26, 107, 245, 0.4);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-variation-settings: 'opsz' 48, 'wght' 600;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--blue);
  transition: transform .25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 26px 24px;
  max-width: 680px;
  color: var(--slate);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  font-weight: 500;
  line-height: 1.66;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .hero-definition { animation: none; opacity: 1; }
  .faq-list summary::after,
  .faq-list details { transition: none; }
}

/* ─── Article / guide page ─────────────────────── */

.article-main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(24px, 6vw, 64px) 0 clamp(40px, 8vw, 90px);
}

.breadcrumb {
  margin-bottom: 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
}

.breadcrumb a {
  color: var(--blue);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

.article-h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-style: italic;
  font-variation-settings: 'opsz' 90, 'wght' 760;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.article-lede {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;
}

.article-body h2 {
  margin-top: clamp(40px, 6vw, 64px);
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.article-body > p {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  font-weight: 500;
  line-height: 1.7;
}

.article-body a:not(.button) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body .check-list {
  max-width: 680px;
  margin: 0 0 18px;
}

.compare-wrap {
  overflow-x: auto;
  margin: 8px 0 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 0.96rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 23, 54, 0.08);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--soft-blue);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.compare-table tbody th {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.compare-table td {
  color: var(--slate);
  font-weight: 500;
}

.compare-table .row-feature {
  background: rgba(26, 107, 245, 0.06);
}

.compare-table .row-feature th,
.compare-table .row-feature td {
  color: var(--ink);
}

.compare-note {
  max-width: 680px;
  font-size: 0.9rem !important;
  font-style: italic;
  color: var(--slate);
}

.article-cta {
  margin-top: clamp(48px, 7vw, 80px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--soft-blue);
  text-align: center;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .closing-sub {
  margin-top: 14px;
  color: var(--slate);
  font-weight: 600;
}
