:root {
  --ink: #27342E;
  --ink-soft: #486056;
  --ink-muted: #486056;
  --brand: #486056;
  --brand-deep: #27342E;
  --brand-light: #9ACDB8;
  --surface: #E4E8D5;
  --surface-alt: #E4FFDF;
  --surface-card: #FFFFFF;
  --clay: #BDFF00;
  --clay-deep: #27342E;
  --clay-light: #F7C3FF;
  --gold: #F7C3FF;
  --gold-light: #E4FFDF;
  --rule: #9ACDB8;
  --rule-soft: #E4FFDF;
  --danger: #C24E42;
  --danger-light: #FBEAE7;
  --danger-border: #EAC6BF;
  --warning: #B8863A;
  --warning-light: #FBF3E2;
  --warning-border: #E9D3A6;
  --radius: 14px;
  --font-title: 'Archivo Black', sans-serif;
  --font-subtitle: 'Nunito Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 60%, var(--surface-alt) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { color: var(--ink); letter-spacing: normal; }

h1 { font-family: var(--font-title); font-weight: 400; }

h2, h3 { font-family: var(--font-subtitle); font-weight: 700; }

.title-lg { font-family: var(--font-title); font-weight: 400; letter-spacing: normal; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

svg { display: block; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 2px 16px rgba(39, 52, 46, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-title);
  font-size: 21px;
  color: var(--ink);
}
.nav-logo span { color: var(--brand); }
.nav-mark { width: 26px; height: 26px; flex-shrink: 0; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--brand-light); text-decoration: none; }
.nav-links a.active { color: var(--surface); background: var(--brand); }
.nav-toggle { display: none; }

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  margin-left: 6px;
}
.lang-btn-option {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  color: var(--ink-muted);
  transition: background 0.15s, color 0.15s;
}
.lang-btn-option.active { background: var(--brand); color: var(--surface); }
.lang-btn-option:not(.active):hover { background: var(--brand-light); color: var(--ink); }

@media (max-width: 760px) {
  .nav { padding: 14px 20px; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
    padding: 10px 16px 18px;
    gap: 4px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    padding: 4px;
  }
}
@media (max-width: 380px) {
  .nav-logo { font-size: 18px; gap: 6px; }
  .nav-mark { width: 22px; height: 22px; }
  .lang-btn-option { padding: 6px 10px; font-size: 11px; }
}

/* ---------- Layout ---------- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 760px) { .wrap { padding: 0 22px; } }

section { padding: 100px 0; }
@media (max-width: 760px) { section { padding: 64px 0; } }
.section-alt { background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%); }
.section-tight { padding: 64px 0; }

.eyebrow {
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  border: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover { background: var(--brand-deep); }
.btn-outline { background: transparent; border: 1.5px solid var(--rule); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--ink), var(--brand-deep));
  color: var(--surface);
  padding: 17px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(39, 52, 46, 0.22), 0 0 0 0 rgba(189, 255, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.store-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -60%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
.store-btn:hover {
  text-decoration: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(39, 52, 46, 0.3), 0 0 0 4px rgba(189, 255, 0, 0.18);
}
.store-btn:active { transform: translateY(-1px) scale(0.99); }
.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; position: relative; z-index: 1; }
.store-btn .store-sub { display: block; font-size: 11.5px; opacity: 0.75; font-weight: 400; position: relative; z-index: 1; }
.store-btn .store-main { display: block; font-family: var(--font-title); font-size: 19px; line-height: 1.25; position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 40px; position: relative; overflow: hidden; }
.hero::before, .mesh-bg::before {
  content: '';
  position: absolute;
  inset: -15% -10%;
  background:
    radial-gradient(circle at 12% 20%, rgba(154, 205, 184, 0.45), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(189, 255, 0, 0.22), transparent 38%),
    radial-gradient(circle at 78% 92%, rgba(247, 195, 255, 0.35), transparent 42%),
    radial-gradient(circle at 8% 85%, rgba(72, 96, 86, 0.12), transparent 40%);
  filter: blur(46px);
  z-index: 0;
  animation: meshDrift 16s ease-in-out infinite;
}
.hero .wrap, .mesh-bg .wrap { position: relative; z-index: 1; }
.mesh-bg { position: relative; overflow: hidden; }
@keyframes meshDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2%, 3%) scale(1.04); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 20px; }
  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 16px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 31px; }
}
.hero h1 { font-size: 48px; line-height: 1.14; margin-bottom: 22px; max-width: 560px; }
.hero h1 em {
  color: var(--ink);
  background: var(--clay);
  font-style: normal;
  padding: 0 8px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 460px; }

.trail-figure { position: relative; }
.trail-figure svg { width: 100%; height: auto; position: relative; z-index: 1; }
@media (max-width: 900px) {
  .trail-figure { max-width: 280px; margin: 0 auto; }
}
.trail-figure::before {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 30% 25%, rgba(189, 255, 0, 0.28), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(247, 195, 255, 0.32), transparent 55%),
    radial-gradient(circle at 45% 60%, rgba(154, 205, 184, 0.4), transparent 60%);
  filter: blur(34px);
  z-index: 0;
  animation: blobDrift 11s ease-in-out infinite;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -4%) scale(1.06); }
}

.paw-stamp {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: pawIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.paw-stamp:nth-of-type(1) { animation-delay: 0.1s; }
.paw-stamp:nth-of-type(2) { animation-delay: 0.35s; }
.paw-stamp:nth-of-type(3) { animation-delay: 0.6s; }
.paw-stamp:nth-of-type(4) { animation-delay: 0.85s; }
.paw-stamp:nth-of-type(5) { animation-delay: 1.1s; }
.paw-stamp:nth-of-type(6) { animation-delay: 1.35s; }

@keyframes pawIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

.paw-float {
  transform-box: fill-box;
  transform-origin: center;
  animation: pawFloat 3.2s ease-in-out infinite;
}
@keyframes pawFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.app-badge {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 26px;
  animation: floaty 3.6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- Feature bento grid ---------- */
.feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .feature-bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-bento { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 6px 20px rgba(39, 52, 46, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(39, 52, 46, 0.1); }
.feature-card.tint-mint { background: var(--surface-alt); }

.feature-card .f-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 16px rgba(72, 96, 86, 0.4);
  flex-shrink: 0;
}
.feature-card .f-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 20px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.feature-card.span-1 { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.feature-card.span-2 { grid-column: span 2; display: flex; align-items: flex-start; gap: 22px; }
.feature-card.span-2 .f-body h3 { margin-top: 6px; }
.feature-card.span-3 { grid-column: span 3; display: flex; align-items: center; gap: 28px; }

@media (max-width: 900px) {
  .feature-card.span-2, .feature-card.span-3 { grid-column: span 2; }
}
@media (max-width: 620px) {
  .feature-card.span-2, .feature-card.span-3 {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
}

.feature-card.premium {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--surface-alt) 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(138, 69, 39, 0.14);
}
.feature-card.premium:hover { box-shadow: 0 16px 34px rgba(138, 69, 39, 0.2); }
.feature-card.premium .f-icon { background: var(--gold); color: var(--clay-deep); box-shadow: 0 5px 16px rgba(247, 195, 255, 0.55); }
.feature-card.premium h3 { color: var(--clay-deep); }

/* ---------- Screens (real screenshots) ---------- */
.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
@media (max-width: 900px) { .screen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .screen-grid { grid-template-columns: 1fr; } }

.screen-card {
  text-align: center;
  background: var(--surface-card);
  border-radius: var(--radius);
  border-top: 5px solid var(--brand);
  padding: 28px 24px 34px;
  box-shadow: 0 10px 26px rgba(39, 52, 46, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.screen-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(39, 52, 46, 0.18); }
.screen-card.tint-mint { background: var(--surface-alt); }
.screen-card.accent-lime { border-top-color: var(--clay); }
.screen-card.accent-pink { border-top-color: var(--gold); }

.screen-card .shot-frame {
  margin: 0 auto 22px;
  max-width: 230px;
  transition: transform 0.3s ease;
}
.screen-card:hover .shot-frame { transform: translateY(-4px) rotate(-1deg); }
.screen-card img {
  width: 100%;
  display: block;
  border-radius: 26px;
  box-shadow: 0 18px 32px rgba(39, 52, 46, 0.24), 0 4px 10px rgba(39, 52, 46, 0.14);
}
.screen-card h3 { font-size: 18px; margin-bottom: 6px; }
.screen-card p { font-size: 14.5px; color: var(--ink-soft); max-width: 240px; margin: 0 auto; }

/* ---------- About / editorial ---------- */
.editorial { max-width: 700px; }
.editorial p { margin-bottom: 20px; font-size: 17px; }
.editorial .drop::first-letter {
  font-family: var(--font-title);
  font-size: 68px;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--brand);
}
.pull-card {
  background: var(--gold-light);
  border-radius: var(--radius);
  padding: 32px 34px;
  margin-top: 12px;
}
.pull-card h2 { font-size: 22px; color: var(--clay-deep); margin-bottom: 10px; }
.pull-card p { font-size: 16px; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Legal pages ---------- */
.legal-page { max-width: 700px; }
.legal-page h1 { font-size: 34px; margin-bottom: 6px; }
.legal-page h2 { font-size: 21px; margin: 40px 0 12px; }
.legal-page p { margin-bottom: 14px; color: var(--ink-soft); }
.legal-page .updated { font-family: var(--font-subtitle); font-weight: 700; color: var(--ink-muted); font-size: 13px; margin-bottom: 44px; letter-spacing: 0.03em; }

.note-box {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brand);
  background: var(--surface-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-top: 8px;
}
.note-box p { color: var(--ink-soft); margin-bottom: 0; font-size: 15px; }
.note-box .note-label {
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clay-deep);
  display: block;
  margin-bottom: 8px;
}

/* ---------- Delete account steps ---------- */
.steps { margin-top: 8px; }
.step-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.step-row:last-child { border-bottom: none; }
.step-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-deep);
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-row h2 { font-size: 18px; margin: 0 0 8px; }
.step-row p { margin-bottom: 0; }

/* ---------- Plans ---------- */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; }
  .plan-card { padding: 32px 26px; }
}

.plan-card {
  background: var(--surface-card);
  border: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
  box-shadow: 0 14px 34px rgba(39, 52, 46, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(39, 52, 46, 0.22); }
.plan-card.plan-featured {
  background: linear-gradient(150deg, var(--gold-light) 0%, var(--surface-alt) 100%);
  border: 3px solid var(--gold);
  box-shadow: 0 16px 40px rgba(138, 69, 39, 0.26);
}
.plan-card.plan-featured:hover { box-shadow: 0 22px 48px rgba(138, 69, 39, 0.32); }
.plan-badge {
  position: absolute;
  top: -15px;
  left: 34px;
  background: var(--gold);
  color: var(--clay-deep);
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(190, 154, 72, 0.4); }
  50% { box-shadow: 0 0 0 9px rgba(190, 154, 72, 0); }
}
.plan-name { font-family: var(--font-title); font-weight: 400; font-size: 26px; margin-bottom: 6px; }
.plan-tag {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 26px;
}
.plan-featured .plan-tag { color: var(--clay-deep); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.plan-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-soft); }
.plan-list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; color: var(--brand); }
.plan-featured .plan-list svg { color: var(--clay-deep); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--surface-alt) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
  box-shadow: 0 14px 34px rgba(39, 52, 46, 0.12);
}
.cta-band h2 { font-size: 27px; margin-bottom: 10px; }
.cta-band p { color: var(--ink-soft); margin: 0 auto; max-width: 440px; }
.cta-band .store-buttons { justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--rule); padding: 48px 0 40px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-brand {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .foot-brand img { width: 20px; height: 20px; object-fit: contain; }

footer .foot-links { display: flex; gap: 22px; font-size: 13.5px; }
footer .foot-links a { color: var(--ink-muted); }
footer .foot-links a:hover { color: var(--brand); }
footer .foot-copy { font-size: 12.5px; color: var(--ink-muted); margin-top: 22px; text-align: center; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Reusable highlight ---------- */
.highlight {
  background: var(--clay);
  color: var(--ink);
  font-style: normal;
  padding: 0 8px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- Hero meta chips ---------- */
.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-meta span { display: flex; align-items: center; gap: 7px; }
.hero-meta span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--clay-deep); }

/* ---------- Warning banner ---------- */
.warning-banner {
  background: var(--danger-light);
  border: 1.5px solid var(--danger-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 48px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 8px 22px rgba(194, 78, 66, 0.1);
}
.warning-banner svg { width: 22px; height: 22px; color: var(--danger); flex-shrink: 0; margin-top: 1px; }
.warning-banner p { color: #6B372E; font-size: 14.5px; line-height: 1.6; margin: 0; }
.warning-banner strong { color: #4A2119; }

/* ---------- Section labels within lang blocks ---------- */
.del-section { margin-bottom: 56px; }
.section-label {
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.del-section h2 { font-size: 25px; margin-bottom: 8px; }
.section-desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 26px; line-height: 1.65; }

/* ---------- Method cards ---------- */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .method-grid { grid-template-columns: 1fr; } }

.method-card {
  border: 2px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--surface-card);
  box-shadow: 0 8px 22px rgba(39, 52, 46, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.method-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(39, 52, 46, 0.12); }
.method-card.primary { border-color: var(--brand); background: var(--brand-light); }

.method-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--surface-card);
  border: 1.5px solid var(--brand);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
  width: fit-content;
}
.method-card.primary .method-badge { background: var(--brand); color: var(--surface); border-color: var(--brand); }

.method-title { font-size: 20px; margin-bottom: 4px; }
.method-sub { display: block; font-family: var(--font-subtitle); font-weight: 700; font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; }

.method-steps { list-style: none; counter-reset: mstep; }
.method-steps li {
  counter-increment: mstep;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.method-steps li:last-child { border-bottom: none; }
.method-steps li::before {
  content: counter(mstep);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.method-steps li strong { color: var(--ink); font-weight: 700; }

/* ---------- Email template block ---------- */
.email-block {
  background: var(--surface-alt);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 56px;
  box-shadow: 0 8px 22px rgba(39, 52, 46, 0.06);
}
.email-template {
  background: var(--surface-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 16px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--ink);
  color: var(--surface);
  border: none;
  border-radius: 10px;
  padding: 11px 20px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 6px 16px rgba(39, 52, 46, 0.2);
}
.copy-btn:hover { background: var(--brand-deep); }
.copy-btn:active { transform: scale(0.97); }
.copy-btn.copied { background: var(--brand); }

/* ---------- Data split ---------- */
.data-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 760px) { .data-split { grid-template-columns: 1fr; } }

.data-card {
  border-radius: var(--radius);
  padding: 24px 26px;
  border: 2px solid;
  box-shadow: 0 8px 20px rgba(39, 52, 46, 0.06);
}
.data-card.deleted { background: var(--danger-light); border-color: var(--danger-border); }
.data-card.retained { background: var(--warning-light); border-color: var(--warning-border); }
.data-card-title {
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.data-card.deleted .data-card-title { color: var(--danger); }
.data-card.retained .data-card-title { color: var(--warning); }
.data-list { list-style: none; font-size: 13.5px; }
.data-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.5;
}
.data-list li:last-child { border-bottom: none; }
.data-card.deleted .data-list li::before { content: '✕'; color: var(--danger); font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.data-card.retained .data-list li::before { content: '○'; color: var(--warning); font-size: 11px; flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--rule); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: var(--brand);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 12px; }

/* ---------- Contact strip ---------- */
.contact-strip {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 34px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 34px rgba(39, 52, 46, 0.25);
}
.contact-strip h3 { font-family: var(--font-title); font-weight: 400; font-size: 22px; color: var(--surface); margin-bottom: 6px; }
.contact-strip p { font-size: 14px; color: rgba(251, 247, 238, 0.65); margin: 0; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clay);
  color: var(--clay-deep);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.contact-btn:hover { transform: translateY(-2px); text-decoration: none; }

.warning-note {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 4px;
  font-size: 14px;
  background: var(--warning-light);
  border: 1.5px solid var(--warning-border);
  color: #6B4E1F;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.warning-note svg { width: 18px; height: 18px; color: var(--warning); flex-shrink: 0; margin-top: 1px; }

.lang-section { display: none; }
.lang-section.visible { display: block; }
