:root {
  --cream: #fff7e6;
  --paper: #fffcf6;
  --surface: #f7f1e5;
  --ink: #0f2018;
  --ink-soft: #2a4235;
  --muted: #6b7d72;
  --green: #16623c;
  --green-dark: #0d3d26;
  --green-light: #eaf4ee;
  --green-mid: #c8e8d4;
  --coral: #ff7b5e;
  --gold: #ffb840;
  --line: rgba(16, 83, 45, 0.1);
  --shadow-sm: 0 4px 16px rgba(10, 35, 20, 0.06);
  --shadow: 0 12px 40px rgba(10, 35, 20, 0.09);
  --shadow-lg: 0 24px 64px rgba(10, 35, 20, 0.13);
  --radius: 24px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Background ─────────────────────────────────── */
.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(196, 232, 214, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 20%, rgba(242, 225, 185, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(220, 240, 228, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #fffbf0 0%, #fff7e6 60%, #fff4de 100%);
}

/* ─── Layout ─────────────────────────────────────── */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Nav ────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Logo real — icon + wordmark */
.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(10,35,20,0.12);
}

.logo-wordmark {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 120ms, background 120ms;
}

.nav-link:hover { color: var(--ink); background: rgba(16,83,45,0.05); }
.nav-link.active { color: var(--green); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16,83,45,0.3);
  transition: transform 120ms, box-shadow 120ms;
  flex-shrink: 0;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,83,45,0.35); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 72px 0 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.048em;
  color: var(--ink);
  max-width: 13ch;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
}

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

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(10,35,20,0.22), 0 2px 8px rgba(10,35,20,0.12);
  transition: transform 150ms, box-shadow 150ms;
  border: none;
  cursor: pointer;
}

.store-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(10,35,20,0.28); }

.store-btn.outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-label small { display: block; font-size: 10px; font-weight: 400; opacity: 0.6; line-height: 1.2; }
.store-label strong { display: block; font-size: 15px; font-weight: 700; line-height: 1.2; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
}

/* ─── Phone Mockup ───────────────────────────────── */
.phone-wrap {
  position: relative;
  flex-shrink: 0;
  padding: 24px 0 40px;
}

/* Glow blob behind phones */
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at 60% 40%, rgba(22,98,60,0.18) 0%, rgba(196,232,214,0.12) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.phone-screens {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  z-index: 1;
}

.phone-device {
  display: inline-block;
  flex-shrink: 0;
}

.phone-device.back-phone {
  margin-top: 48px;
  opacity: 0.45;
  transform: scale(0.86) rotate(5deg);
  transform-origin: top left;
  filter: blur(1px);
}

/* ─── Phone frame (referencia: waterdrop notch, navy frame) ── */
.phone-shell {
  position: relative;
  width: 210px;
  border-radius: 28px;
  background: linear-gradient(170deg, #1c2a4a 0%, #0e1a30 60%, #0a1220 100%);
  padding: 8px 5px 14px;
  box-shadow:
    0 40px 80px rgba(8,18,40,0.45),
    0 16px 32px rgba(8,18,40,0.25),
    0 0 0 1px #1a2a50,
    0 0 0 2px #0a1220,
    inset 0 1px 0 rgba(100,140,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.5);
}

/* Thin top bezel area with waterdrop notch */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #0a1220;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(100,140,255,0.12);
}

/* Inner screen bezel (thin top, thicker bottom chin) */
.phone-shell .phone-screen-img {
  border-radius: 20px;
  margin-top: 10px;
}

.phone-screen-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  margin-top: 10px;
}

/* Side gloss on frame */
.phone-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    rgba(100,160,255,0.10) 0%,
    rgba(100,160,255,0.04) 20%,
    transparent 50%,
    rgba(0,0,0,0.1) 100%
  );
  pointer-events: none;
  z-index: 5;
}

/* Side buttons */
.phone-shell::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 28%;
  width: 3px;
  height: 12%;
  background: linear-gradient(180deg, #1c2a4a, #0e1a30);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 22px 0 #16243e, 0 -28px 0 #16243e;
}

.phone-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 60px;
  background: rgba(22, 98, 60, 0.28);
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

/* ─── Screenshots gallery ────────────────────────── */
.gallery-section {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(196,232,214,0.22) 0%, transparent 70%);
  border-radius: 32px;
  margin: 0 -8px;
}

.gallery-inner {
  padding: 0 8px;
}

.screenshots-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 200ms;
}

.screenshot-item:hover {
  transform: translateY(-6px);
}

.screenshot-item .phone-shell {
  width: 186px;
  box-shadow: 0 24px 64px rgba(10,35,20,0.22), 0 0 0 1px rgba(255,255,255,0.09), 0 0 0 2px rgba(0,0,0,0.5);
}

.screenshot-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Section titles ─────────────────────────────── */
.section {
  padding: 72px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.08;
  max-width: 20ch;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

/* ─── Feature grid ───────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feat-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms, box-shadow 180ms;
}

.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.feat-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── Split section ──────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ─── CTA band ───────────────────────────────────── */
.cta-band {
  margin: 0 0 72px;
  padding: 64px 56px;
  border-radius: 36px;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(196,232,214,0.35) 0%, transparent 60%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-copy h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.cta-copy p {
  font-size: 17px;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 400px;
}

.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  background: white;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform 150ms;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: background 150ms;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ─── Footer ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  color: var(--muted);
  transition: color 120ms;
}

.footer-link:hover { color: var(--ink); }

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ─── Divider ────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--line);
}

/* ─── Policy / Delete page ───────────────────────── */
.prose-hero {
  padding: 64px 0 44px;
  max-width: 700px;
}

.prose-hero h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 22ch;
}

.prose-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.prose-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding-bottom: 72px;
}

.prose-body h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 40px 0 12px;
}

.prose-body h2:first-child { margin-top: 0; }

.prose-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #3d5248;
  margin-bottom: 14px;
}

.prose-body ul {
  margin: 12px 0 18px 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.prose-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: #3d5248;
}

.prose-body li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 10px;
}

.sidebar-card {
  position: sticky;
  top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--green-light);
}

.sidebar-item:last-child { margin-bottom: 0; }

.sidebar-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.sidebar-item span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Steps ──────────────────────────────────────── */
.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Warning card ───────────────────────────────── */
.warning-card {
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: #fff8f6;
  border: 1px solid #ffd5cb;
  margin-top: 20px;
}

.warning-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 6px;
}

.warning-card p {
  font-size: 13px;
  color: #7d4c44;
  line-height: 1.6;
  margin: 0;
}

/* ─── Contact card ───────────────────────────────── */
.contact-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  text-align: center;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16,83,45,0.28);
  transition: transform 120ms, box-shadow 120ms;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,83,45,0.32); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  background: white;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 120ms;
}

.btn-secondary:hover { transform: translateY(-1px); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 0 32px;
  }

  .phone-wrap { display: none; }

  .features { grid-template-columns: repeat(2, 1fr); }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split.reverse { direction: ltr; }

  .cta-band {
    padding: 44px 32px;
    flex-direction: column;
    text-align: center;
  }

  .cta-btns { justify-content: center; }

  .prose-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }

  .screenshots-row { gap: 14px; }
  .screenshot-item .phone-shell { width: 140px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .features { grid-template-columns: 1fr; }
  .screenshots-row { gap: 10px; }
  .screenshot-item .phone-shell { width: 120px; }
  .screenshot-label { font-size: 11px; }
}
