/* ─────────────── Design tokens (mirror of styles.css) ─────────────── */
:root {
  --radius: 0.875rem;

  --background: #f2f2f6;
  --foreground: #303233;

  --surface: #ffffff;
  --text: #303233;
  --text-secondary: #484848;
  --text-hint: #727272;
  --text-surface: #ffffff;

  --card: #ffffff;
  --card-foreground: #303233;

  --primary: #fa8c16;
  --primary-foreground: #ffffff;
  --primary-light: #fdd1a2;
  --primary-container: #fef3e7;

  --secondary: #13c2c2;
  --secondary-foreground: #ffffff;
  --secondary-container: #e7f8f8;

  --muted: #f0f0f0;
  --muted-foreground: #727272;

  --accent: #f05b27;
  --accent-foreground: #ffffff;
  --accent-dark: #c84316;

  --border: #d8d8d8;
  --border-light: #f0f0f0;

  --ocean: var(--secondary);

  --font-display: "Raleway", system-ui, sans-serif;
  --font-body: "Raleway", system-ui, sans-serif;

  --shadow-soft: 0 2px 10px rgba(48, 50, 51, 0.07);
  --shadow-elevated: 0 6px 24px rgba(48, 50, 51, 0.10), 0 2px 6px rgba(48, 50, 51, 0.05);

  --gradient-hero: radial-gradient(ellipse at top, rgba(254, 243, 231, 0.9), transparent 60%),
                   linear-gradient(180deg, #ffffff, #f2f2f6);
  --gradient-sunset: linear-gradient(135deg, #fa8c16, #f05b27);
  --gradient-ocean: linear-gradient(135deg, #13c2c2, #0e9a9a);
}

/* ─────────────── Reset ─────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

/* ─────────────── Utilities ─────────────── */
.container { max-width: 72rem; margin-inline: auto; padding-inline: 1.25rem; }
.container-5 { max-width: 64rem; margin-inline: auto; padding-inline: 1.25rem; }
.container-4 { max-width: 56rem; margin-inline: auto; padding-inline: 1.25rem; }
.container-3 { max-width: 48rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) {
  .container, .container-5, .container-4, .container-3 { padding-inline: 2rem; }
}

.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }
.italic       { font-style: italic; }
.text-ocean   { color: var(--ocean); }
.text-primary { color: var(--primary); }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.uppercase    { text-transform: uppercase; }
.sr-only      { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─────────────── Download buttons ─────────────── */
.download-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .download-buttons { flex-direction: row; }
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--foreground);
  color: var(--text-surface);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
}
.dl-btn:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.dl-btn:active { transform: scale(0.97); }
.dl-btn--lg {
  height: 3.5rem;
  padding-inline: 1.25rem;
  gap: 0.75rem;
  font-size: 1rem;
  border-radius: 1rem;
}
.dl-btn--lg .dl-ico { height: 1.75rem; width: 1.75rem; }
.dl-btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.dl-btn-top { font-size: 0.625rem; opacity: 0.8; font-weight: 400; }
.dl-btn-bottom { font-size: 1.125rem; line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }

/* ─────────────── Eyebrow pills ─────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow-dot { height: 0.375rem; width: 0.375rem; border-radius: 9999px; }
.eyebrow-primary { background: var(--primary-container); border: 1px solid rgba(253,209,162,0.6); color: var(--accent-dark); }
.eyebrow-primary .eyebrow-dot { background: var(--primary); }
.eyebrow-secondary { background: var(--secondary-container); border: 1px solid rgba(19,194,194,0.2); color: var(--secondary); }
.eyebrow-secondary .eyebrow-dot { background: var(--secondary); }
.eyebrow-white { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--primary-light); }
.eyebrow-white .eyebrow-dot { background: var(--primary); }

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 4rem 0 6rem;
}
@media (min-width: 640px) {
  .hero { padding: 6rem 0 8rem; }
}
.hero-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("./coastal-bg.jpg");
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 90%);
  mask-image: linear-gradient(180deg, black, transparent 90%);
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
}
.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge svg { color: var(--accent); height: 0.875rem; width: 0.875rem; }
.hero-title {
  margin-top: 1.25rem;
  font-size: 2.5rem;
  line-height: 1.02;
  font-weight: 500;
}
@media (min-width: 640px)  { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.25rem; } }
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-inline: auto;
}
@media (min-width: 640px)  { .hero-sub { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero-sub { max-width: 32rem; margin-inline: 0; } }
.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .hero-cta { align-items: flex-start; } }
.note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-message {
  font-size: 0.95rem;
  color: var(--text-hint);
  margin-bottom: 0.75rem;
}

.desktop-info {
  margin-top: 1rem;
  background: var(--primary-container);
  border: 1px solid var(--primary-light);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.desktop-info h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.desktop-info p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.qr-code-container {
  width: 120px;
  height: 120px;
  margin: 0.5rem auto 0.25rem;
  background: var(--surface);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--border-light);
}

#qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
}

#qrcode img {
  border-radius: 0.25rem;
}

.hero-right { position: relative; display: flex; justify-content: center; }
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  filter: blur(64px);
  opacity: 0.6;
  background: radial-gradient(40% 50% at 50% 50%, rgba(250,140,22,0.45), transparent 70%);
}
.hero-mockup {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(20,40,80,0.25));
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 640px)  { .hero-mockup { width: 340px; } }
@media (min-width: 1024px) { .hero-mockup { width: 400px; } }

/* ─────────────── Preview List section ─────────────── */
.preview {
  position: relative;
  padding: 6rem 0;
  background-color: var(--surface);
  overflow: hidden;
}
@media (min-width: 640px) { .preview { padding: 8rem 0; } }
.preview-blob {
  position: absolute;
  top: 5rem; right: 0;
  height: 18rem; width: 18rem;
  border-radius: 9999px;
  opacity: 0.3;
  filter: blur(64px);
  background: radial-gradient(circle, var(--primary-container), transparent 70%);
  pointer-events: none;
}
.section-head { max-width: 42rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .section-head { margin-bottom: 3rem; } }
.section-title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.05;
}
@media (min-width: 640px)  { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 36rem;
}
@media (min-width: 640px) { .section-sub { font-size: 1.125rem; } }

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.filters-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--text-hint);
  margin-right: 0.25rem;
}
.filter-btn {
  position: relative;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background-color: var(--muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.filter-btn:hover { background-color: var(--border-light); }
.filter-btn.is-active {
  color: #fff;
  background: var(--gradient-sunset);
  box-shadow: var(--shadow-soft);
}

.list {
  border-radius: 1.75rem;
  border: 1px solid var(--border-light);
  background-color: rgba(242,242,246,0.5);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: var(--surface);
  transition: background-color 0.2s ease, opacity 0.25s ease, transform 0.25s ease;
  border-top: 1px solid var(--border-light);
}
.list-item:first-child { border-top: 0; }
.list-item:hover { background-color: rgba(254,243,231,0.4); }
@media (min-width: 640px) { .list-item { gap: 1rem; padding: 1rem 1.25rem; } }
.list-item.hidden { display: none; }

.list-logo {
  flex-shrink: 0;
  height: 2.75rem; width: 2.75rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .list-logo { height: 3rem; width: 3rem; } }
.list-logo svg { height: 1.25rem; width: 1.25rem; stroke-width: 2.2; }
.logo-primary   { background: var(--primary-container); color: var(--primary); }
.logo-accent    { background: var(--primary-container); color: var(--accent); }
.logo-secondary { background: var(--secondary-container); color: var(--secondary); }
.logo-muted     { background: var(--muted); color: var(--text-secondary); }

.list-info { flex: 1; min-width: 0; }
.list-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) { .list-name { font-size: 1rem; } }
.list-meta {
  margin-top: 0.125rem;
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-hint);
}
.list-sep { color: rgba(114,114,114,0.4); }
.list-status { display: inline-flex; align-items: center; gap: 0.25rem; font-weight: 500; }
.list-status.open { color: var(--secondary); }
.list-status-dot { height: 0.375rem; width: 0.375rem; border-radius: 9999px; background-color: rgba(114,114,114,0.5); }
.list-status.open .list-status-dot { background-color: var(--secondary); animation: pulse 2s ease-in-out infinite; }

.wa-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 9999px;
  background-color: #25D366;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.wa-btn:hover { filter: brightness(1.05); box-shadow: var(--shadow-elevated); }
.wa-btn svg { height: 1rem; width: 1rem; stroke-width: 2.4; }
.wa-label { display: none; }
@media (min-width: 640px) {
  .wa-btn { padding: 0 1rem; font-size: 0.875rem; }
  .wa-label { display: inline; }
}

.notice {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--gradient-sunset);
  color: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  margin-top: 2rem;
}
@media (min-width: 640px) { .notice { padding: 2rem; } }
.notice-blob {
  position: absolute;
  top: -3rem; right: -3rem;
  height: 12rem; width: 12rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.15);
  filter: blur(32px);
  pointer-events: none;
}
.notice-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (min-width: 640px) { .notice-inner { flex-direction: row; align-items: center; gap: 1.5rem; } }
.notice-icon {
  flex-shrink: 0;
  height: 3rem; width: 3rem;
  border-radius: 1rem;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.notice-icon svg { height: 1.25rem; width: 1.25rem; stroke-width: 2.4; }
.notice-body { flex: 1; }
.notice-title { font-size: 1rem; font-weight: 700; line-height: 1.15; }
@media (min-width: 640px) { .notice-title { font-size: 1.125rem; } }
.notice-sub {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  opacity: 0.9;
  max-width: 36rem;
}
@media (min-width: 640px) { .notice-sub { font-size: 1rem; } }
.notice-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background-color: #fff;
  color: var(--accent-dark);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.notice-cta:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.notice-cta svg { height: 1rem; width: 1rem; }

/* ─────────────── Benefits (bento grid) ─────────────── */
.benefits {
  position: relative;
  padding: 6rem 0;
  background-color: var(--surface);
  overflow: hidden;
}
@media (min-width: 640px) { .benefits { padding: 8rem 0; } }
.benefits-blob-tl {
  position: absolute;
  top: -8rem; left: -6rem;
  height: 18rem; width: 18rem;
  border-radius: 9999px;
  opacity: 0.4;
  filter: blur(64px);
  background: radial-gradient(circle, var(--primary-container), transparent 70%);
  pointer-events: none;
}
.benefits-blob-br {
  position: absolute;
  bottom: 0; right: -6rem;
  height: 18rem; width: 18rem;
  border-radius: 9999px;
  opacity: 0.4;
  filter: blur(64px);
  background: radial-gradient(circle, var(--secondary-container), transparent 70%);
  pointer-events: none;
}
.benefits-head { max-width: 48rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .benefits-head { margin-bottom: 5rem; } }
.benefits-title {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
}
@media (min-width: 640px)  { .benefits-title { font-size: 3rem; } }
@media (min-width: 1024px) { .benefits-title { font-size: 3.75rem; } }
.benefits-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 36rem;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
@media (min-width: 640px) { .bento { grid-auto-rows: 200px; gap: 1.25rem; } }

.bento-item {
  position: relative;
  border-radius: 1.75rem;
  padding: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}
.bento-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }

.bento-featured {
  grid-column: span 6;
  grid-row: span 2;
  padding: 2rem;
  background: var(--gradient-sunset);
  color: #fff;
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) { .bento-featured { padding: 2.5rem; } }
@media (min-width: 1024px) { .bento-featured { grid-column: span 4; } }
.bento-featured-blob {
  position: absolute;
  top: -2.5rem; right: -2.5rem;
  height: 12rem; width: 12rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.15);
  filter: blur(32px);
}
.bento-featured-head { display: flex; align-items: center; gap: 0.75rem; position: relative; }
.bento-featured-icon {
  height: 3rem; width: 3rem;
  border-radius: 1rem;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.bento-featured-icon svg { height: 1.25rem; width: 1.25rem; stroke-width: 2.4; }
.bento-featured-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
  font-weight: 600;
}
.bento-featured-big {
  position: relative;
  margin-top: auto;
  padding-top: 3rem;
}
.bento-featured-number {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 640px) { .bento-featured-number { font-size: 3.75rem; } }
.bento-featured-caption {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.95;
  max-width: 24rem;
}
@media (min-width: 640px) { .bento-featured-caption { font-size: 1.25rem; } }

.bento-stat-ocean {
  grid-column: span 3;
  background: var(--secondary);
  color: var(--secondary-foreground);
}
@media (min-width: 1024px) { .bento-stat-ocean { grid-column: span 2; } }
.bento-stat-ocean svg { height: 1.5rem; width: 1.5rem; stroke-width: 2.2; }
.bento-stat-number { font-size: 2.25rem; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
@media (min-width: 640px) { .bento-stat-number { font-size: 3rem; } }
.bento-stat-caption { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 500; opacity: 0.9; }

.bento-stat-surface {
  grid-column: span 3;
  background-color: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1024px) { .bento-stat-surface { grid-column: span 2; } }
.bento-stat-surface .icon-pill {
  height: 2.75rem; width: 2.75rem;
  border-radius: 1rem;
  background-color: var(--primary-container);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.bento-stat-surface:hover .icon-pill { background-color: var(--primary); color: #fff; }
.bento-stat-surface .icon-pill svg { height: 1.25rem; width: 1.25rem; stroke-width: 2.2; }
.bento-stat-surface .bento-stat-caption { color: var(--text-hint); }

.bento-small {
  grid-column: span 3;
  background-color: var(--surface);
  border: 1px solid var(--border-light);
}
@media (min-width: 1024px) { .bento-small { grid-column: span 2; } }
.bento-small .icon-pill {
  height: 2.75rem; width: 2.75rem;
  border-radius: 1rem;
  background-color: var(--primary-container);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.bento-small:hover .icon-pill { background-color: var(--primary); color: #fff; }
.bento-small .icon-pill svg { height: 1.25rem; width: 1.25rem; stroke-width: 2.2; }
.bento-small-title { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; }
.bento-small-text { margin-top: 0.25rem; font-size: 0.875rem; color: var(--text-hint); line-height: 1.6; }

.bento-dark {
  grid-column: span 6;
  background-color: var(--text);
  color: var(--text-surface);
}
@media (min-width: 1024px) { .bento-dark { grid-column: span 2; } }
.bento-dark svg { height: 1.5rem; width: 1.5rem; color: var(--primary-light); }
.bento-dark-title { font-size: 1.25rem; font-weight: 700; line-height: 1.15; }
.bento-dark-text { margin-top: 0.5rem; font-size: 0.875rem; opacity: 0.7; }

/* ─────────────── Differentiator ─────────────── */
.differentiator {
  position: relative;
  padding: 5rem 0;
  background-color: var(--text);
  color: var(--text-surface);
  overflow: hidden;
}
@media (min-width: 640px) { .differentiator { padding: 7rem 0; } }
.differentiator-blob {
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  height: 24rem; width: 80%;
  border-radius: 9999px;
  opacity: 0.2;
  filter: blur(64px);
  background: var(--gradient-sunset);
  pointer-events: none;
}
.diff-head { max-width: 42rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .diff-head { margin-bottom: 3.5rem; } }
.diff-title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 640px)  { .diff-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .diff-title { font-size: 3rem; } }
.diff-strike {
  font-style: italic;
  font-weight: 500;
  opacity: 0.6;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}
.diff-sub {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.75;
  max-width: 32rem;
}
@media (min-width: 640px) { .diff-sub { font-size: 1.125rem; } }

.diff-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.diff-card {
  padding: 1.5rem;
  border-radius: 1.75rem;
}
@media (min-width: 640px) { .diff-card { padding: 1.75rem; } }
.diff-card-before {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.diff-card-after {
  position: relative;
  overflow: hidden;
  background: var(--gradient-sunset);
}
.diff-card-after-blob {
  position: absolute;
  top: -2.5rem; right: -2.5rem;
  height: 10rem; width: 10rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.15);
  filter: blur(32px);
}
.diff-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.diff-card-after .diff-card-tag { opacity: 0.9; position: relative; }
.diff-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; opacity: 0.8; }
@media (min-width: 640px) { .diff-list { font-size: 1rem; } }
.diff-card-after .diff-list { opacity: 1; font-weight: 500; position: relative; }
.diff-list li { display: flex; gap: 0.75rem; }
.diff-list .mark { opacity: 0.4; }
.diff-card-after .mark { opacity: 0.9; }

/* ─────────────── Social proof ─────────────── */
.social-proof { padding: 5rem 0; background-color: rgba(231,248,248,0.4); }
@media (min-width: 640px) { .social-proof { padding: 6rem 0; } }
.social-proof-inner { text-align: center; }
.social-proof-icon { height: 1.5rem; width: 1.5rem; margin: 0 auto; color: var(--ocean); }
.social-proof-quote {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: var(--foreground);
  font-family: var(--font-display);
  font-style: italic;
  max-width: 42rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .social-proof-quote { font-size: 1.5rem; } }
.social-proof-meta { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ─────────────── Final CTA ─────────────── */
.final-cta { padding: 7rem 0; background: var(--gradient-hero); }
@media (min-width: 640px) { .final-cta { padding: 9rem 0; } }
.final-cta-inner { text-align: center; }
.final-cta-title { font-size: 2.25rem; font-weight: 700; line-height: 1.05; }
@media (min-width: 640px) { .final-cta-title { font-size: 3.75rem; } }
.final-cta-sub { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-foreground); max-width: 36rem; margin-inline: auto; }
.final-cta-actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* ─────────────── Footer ─────────────── */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 0.875rem; color: var(--muted-foreground);
}
/*@media (min-width: 640px) { .footer-inner { flex-direction: row; } }*/
.footer-brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-brand svg { height: 1rem; width: 1rem; color: var(--ocean); }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--foreground); }

.hidden { display: none !important; }

/* ─────────────── Animations ─────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-badge-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-mockup-in {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.anim-badge { animation: hero-badge-up 0.6s both; }
.anim-h1    { animation: hero-fade-up 0.7s 0.1s both; }
.anim-p     { animation: hero-fade-up 0.7s 0.2s both; }
.anim-cta   { animation: hero-fade-up 0.7s 0.3s both; }
.hero-right { animation: hero-mockup-in 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* Scroll reveal (mimics <Reveal>) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
