/* ============================================
   Resimply · Warm Kitchen · Landing Styles
   Bronze + Cream · DM Serif + Inter
   ============================================ */

:root {
  /* Canvas (warm cream) */
  --canvas: #faf8f5;
  --canvas-alt: #f2ede6;
  --surface: #fdfaf7;
  --surface-raised: #ffffff;
  --surface-subtle: #ece7df;

  /* Brand anchor (bronze) */
  --bronze: #9a6b3f;
  --bronze-soft: #c0905e;

  /* Text */
  --text: #1c1b19;
  --text-body: #4a4540;
  --text-subtle: #8a8378;
  --text-muted: #b8b2a9;
  --text-on-dark: #faf8f5;

  /* Accent washes */
  --aura-amber: #f0d9b5;
  --aura-sage: #c8d9c2;
  --aura-clay: #e8cdb5;
  --aura-linen: #ede4d7;
  --aura-stone: #d9d0c5;

  /* Functional */
  --divider: rgba(28, 27, 25, 0.08);
  --basil: #4e7c5a;
  --basil-soft: #7fb08c;

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Type */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "DM Serif Display", "Tiempos Headline", "Iowan Old Style", Georgia, serif;
  --font-wordmark: "EB Garamond", "Tiempos Headline", Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(154, 107, 63, 0.06);
  --shadow-md: 0 12px 36px rgba(154, 107, 63, 0.10);
  --shadow-lg: 0 28px 70px rgba(154, 107, 63, 0.14);
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--text-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: var(--bronze);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
a:hover {
  opacity: 0.75;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--bronze);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 1;
}
.btn-primary {
  background: var(--bronze);
  color: var(--text-on-dark);
  box-shadow: 0 8px 24px rgba(154, 107, 63, 0.22);
}
.btn-primary:hover {
  background: #7e5530;
  box-shadow: 0 12px 32px rgba(154, 107, 63, 0.30);
  color: var(--text-on-dark);
}
.btn-ghost {
  background: var(--surface-raised);
  color: var(--bronze);
  border: 1px solid var(--divider);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--bronze);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-wordmark);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--bronze);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-logo:hover {
  opacity: 1;
}
.nav-logo span {
  color: var(--bronze);
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--bronze);
  opacity: 1;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  display: inline-flex;
}

/* Lang switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-raised);
  border: 1px solid var(--divider);
  color: var(--text-subtle);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--surface-raised);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 160px;
  display: none;
  box-shadow: var(--shadow-md);
}
.lang-dropdown.open {
  display: block;
}
.lang-option {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: left;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.lang-option:hover {
  background: var(--canvas-alt);
}
.lang-option.active {
  color: var(--bronze);
  font-weight: 600;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--canvas) 0%, var(--canvas-alt) 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--aura-amber), transparent 70%);
  top: -120px;
  left: -160px;
}
.hero-blob-b {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, var(--aura-sage), transparent 70%);
  bottom: -220px;
  right: -180px;
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-raised);
  border: 1px solid var(--divider);
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title em {
  font-family: var(--font-wordmark);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-subtle);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Hero visual / device frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.device-frame {
  position: relative;
  width: 288px;
  background: #1c1b19;
  border-radius: 48px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.device-frame:hover {
  transform: rotate(0deg) translateY(-6px);
}
.device-frame-sm {
  width: 220px;
  border-radius: 36px;
  padding: 8px;
  transform: rotate(0deg);
}
.device-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #1c1b19;
  border-radius: 999px;
  z-index: 2;
}
.device-frame-sm .device-notch {
  width: 70px;
  height: 20px;
  top: 14px;
}
.device-screen,
.device-frame img {
  width: 100%;
  height: auto;
  border-radius: 38px;
  display: block;
}
.device-frame-sm img {
  border-radius: 28px;
}

.hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-raised);
  color: var(--bronze);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 1px solid var(--divider);
}
.hero-float-tl {
  top: 40px;
  left: -20px;
  animation: floatA 6s ease-in-out infinite;
}
.hero-float-br {
  bottom: 80px;
  right: -10px;
  animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 22px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  color: var(--text-subtle);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}
.marquee-track span {
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Section labels & headers --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title em {
  font-family: var(--font-wordmark);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}
.section-desc {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-subtle);
  max-width: 580px;
  line-height: 1.65;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- Showcase --- */
.showcase {
  padding: 110px 0;
}
.showcase-tinted {
  background: var(--surface);
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-flip .showcase-inner {
  direction: rtl;
}
.showcase-flip .showcase-content,
.showcase-flip .showcase-visual {
  direction: ltr;
}
.showcase-content {
  max-width: 480px;
}
.showcase-visual {
  display: flex;
  justify-content: center;
}
/* Share section ships without a device shot, collapse to a single centered column
   so the copy reads as a centered statement instead of sitting in a half-width grid cell. */
.showcase-centered .showcase-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.showcase-centered .showcase-content {
  max-width: 600px;
}
/* Keep the bullet copy left-aligned while the block itself stays centered. */
.showcase-centered .check-list {
  display: inline-flex;
  text-align: left;
}
.showcase-img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.check-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bronze);
  opacity: 0.18;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

/* --- How it works --- */
.how {
  padding: 110px 0;
  background: var(--surface);
}
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--surface-raised);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.how-step-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 400;
}
.how-step-desc {
  font-size: 15px;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* --- Features grid (4 cards) --- */
.features {
  padding: 110px 0;
  background: var(--canvas);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 14px;
}
.feature-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 400;
}
.feature-card-desc {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.55;
}

/* --- Duo (side-by-side cards) --- */
.duo {
  padding: 110px 0;
  background: var(--canvas);
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.duo-card {
  background: var(--surface-raised);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--divider);
}
.duo-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.duo-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.duo-desc {
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Pricing --- */
.pricing {
  padding: 110px 0;
  background: var(--surface);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface-raised);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--divider);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border: 1.5px solid var(--bronze);
  box-shadow: var(--shadow-md);
}
.price-card-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bronze);
  color: var(--text-on-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card-head {
  text-align: center;
  margin-bottom: 28px;
}
.price-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.price-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.price-card-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--bronze);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card-period {
  color: var(--text-subtle);
  font-size: 14px;
}
.price-card-tag {
  color: var(--text-subtle);
  font-size: 13px;
}
.price-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.5;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bronze);
  font-weight: 600;
}
.pricing-foot {
  text-align: center;
  color: var(--text-subtle);
  font-size: 13px;
  margin-top: 32px;
}

/* --- FAQ --- */
.faq {
  padding: 110px 0;
  background: var(--canvas);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface-raised);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  position: relative;
  padding-right: 56px;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--bronze);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.65;
}

/* --- Final CTA --- */
.final-cta {
  padding: 110px 0;
  background: var(--canvas);
}
.final-cta-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface-raised);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-md);
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.final-cta-title em {
  font-family: var(--font-wordmark);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}
.final-cta-desc {
  color: var(--text-subtle);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.final-cta-foot {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 18px;
  letter-spacing: 0.04em;
}

/* --- Footer --- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-wordmark);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer-tagline {
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.5;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-subtle);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--bronze);
}
.footer-bottom {
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  color: var(--text-muted);
  font-size: 12px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-legal-links a {
  color: var(--text-muted);
  font-size: 12px;
}

/* --- Sticky mobile CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--surface-raised);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--divider);
  padding: 12px 16px;
  display: none;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-text strong {
  display: block;
  font-family: var(--font-wordmark);
  font-style: italic;
  color: var(--bronze);
  font-size: 16px;
}
.sticky-cta-text span {
  color: var(--text-subtle);
  font-size: 12px;
}

/* --- Download modal --- */
.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.dl-modal[hidden] {
  display: none;
}
.dl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 25, 0.5);
  backdrop-filter: blur(6px);
}
.dl-modal-card {
  position: relative;
  background: var(--surface-raised);
  border-radius: var(--radius-xl);
  padding: 48px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.dl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface);
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--text-subtle);
  cursor: pointer;
}
.dl-modal-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.dl-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.dl-modal-body {
  color: var(--text-subtle);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.dl-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- Legal page wrapper --- */
.legal-page {
  padding: 140px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-page .legal-updated,
.legal-page .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}
.legal-page p,
.legal-page li {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-page ul,
.legal-page ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.legal-page strong {
  color: var(--text);
  font-weight: 600;
}
.legal-page a {
  color: var(--bronze);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-page hr {
  border: 0;
  border-top: 1px solid var(--divider);
  margin: 40px 0;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.legal-page th,
.legal-page td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
}
.legal-page th {
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
}

/* --- Scroll animation --- */
.mood-card, .price-card, .duo-card, .faq-item, .showcase-content {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    min-height: 480px;
  }
  .showcase {
    padding: 80px 0;
  }
  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .showcase-flip .showcase-inner {
    direction: ltr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps {
    grid-template-columns: 1fr;
  }
  .duo-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .nav-links {
    display: none;
  }
  .sticky-cta {
    display: block;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .container {
    padding: 0 18px;
  }
}
