/* Koordo — Site web (waitlist beta) */

body {
  background: var(--bg);
  color: var(--ink-900);
  font-family: var(--font-sans);
}

/* Container */
.site-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,247,244,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-nav.scrolled { border-bottom-color: var(--ink-100); }
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand .name {
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--ink-700);
  cursor: pointer;
  transition: color .12s;
}
.nav-links a:hover { color: var(--green-800); }
.nav-cta {
  background: var(--green-800);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .12s, transform .12s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--green-900); }
.nav-cta:active { transform: scale(0.97); }

/* ===== HERO ===== */
.hero {
  padding: 64px 0 56px;
  position: relative;
}
.hero-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 4px var(--green-200);
}
.hero-title {
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero-title .accent { color: var(--green-800); }
.hero-title .accent-warm { color: var(--warm-coral); }
.hero-sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-700);
  margin: 0 0 32px;
  max-width: 520px;
  text-wrap: pretty;
}
.hero-form {
  display: flex; gap: 8px;
  background: var(--bg-cream);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  max-width: 480px;
  align-items: center;
  transition: border-color .15s, box-shadow .15s;
}
.hero-form:focus-within {
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px var(--green-100);
}
.hero-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 10px 0;
  color: var(--ink-900);
}
.hero-form input::placeholder { color: var(--ink-400); }
.hero-form input:focus { outline: none; }
.hero-form button {
  background: var(--green-800);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .12s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-form button:hover { background: var(--green-900); }
.hero-meta {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-500);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-meta .stack {
  display: flex; align-items: center;
}
.hero-meta .stack .av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -8px;
  display: grid; place-items: center;
  font-size: 9.5px; font-weight: 600;
  color: white;
}
.hero-meta .stack .av:first-child { margin-left: 0; }

/* Hero visual : carte mockup empilée */
.hero-visual {
  position: relative;
  height: 460px;
}
.mockup-card {
  position: absolute;
  background: var(--bg-card);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  border: 1px solid var(--ink-100);
}
.mockup-back {
  top: 0; right: 0;
  width: 280px;
  background: var(--green-800);
  color: white;
  padding: 22px 22px 24px;
  transform: rotate(3deg);
}
.mockup-back .eye {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  opacity: 0.7; margin-bottom: 10px;
}
.mockup-back h4 { font-size: 16px; margin: 0 0 4px; font-weight: 500; }
.mockup-back .ref { font-family: var(--font-mono); font-size: 10.5px; opacity: 0.65; margin-bottom: 16px; }
.mockup-back .stages {
  display: flex; gap: 4px; margin-bottom: 6px;
}
.mockup-back .stages .s {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.18);
}
.mockup-back .stages .s.done { background: var(--green-300); }
.mockup-back .stages .s.active { background: white; }
.mockup-back .stages-l {
  display: flex; justify-content: space-between;
  font-size: 9px; font-family: var(--font-mono);
  opacity: 0.6; letter-spacing: 0.06em; margin-top: 6px;
}

.mockup-front {
  top: 110px; left: 0;
  width: 320px;
  transform: rotate(-2deg);
}
.mockup-front .head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.mockup-front .head .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-coral));
  display: grid; place-items: center;
  color: white; font-weight: 600; font-size: 13px;
}
.mockup-front .head .info .n { font-size: 13px; font-weight: 500; }
.mockup-front .head .info .m { font-size: 11px; color: var(--ink-500); }
.mockup-front .alert {
  background: var(--alert-red-bg);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 8px;
}
.mockup-front .alert .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: white;
  color: var(--alert-red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mockup-front .alert .t { font-size: 11.5px; font-weight: 500; }
.mockup-front .alert .s { font-size: 10.5px; color: var(--ink-500); margin-top: 1px; }
.mockup-front .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: var(--bg-cream);
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 11.5px;
}
.mockup-front .row .l { color: var(--ink-700); }
.mockup-front .row .v { font-weight: 600; color: var(--ink-900); }

.mockup-mini {
  bottom: 0; right: 30px;
  width: 220px;
  transform: rotate(4deg);
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  border-color: var(--green-200);
}
.mockup-mini .label { font-size: 11px; color: var(--green-800); font-weight: 500; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.mockup-mini .v {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--green-900);
  line-height: 1;
}
.mockup-mini .t { font-size: 11px; color: var(--ink-700); margin-top: 6px; }

/* Hero blob deco */
.hero-card::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-100), transparent 65%);
  top: -200px; right: -180px;
  z-index: 0;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--warm-orange-light), transparent 65%);
  bottom: -100px; left: -60px;
  z-index: 0;
}

/* ===== Section générique ===== */
.section { padding: 88px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 14px;
}
.section-title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 16px;
  max-width: 760px;
  text-wrap: balance;
}
.section-sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0 0 48px;
  max-width: 640px;
  text-wrap: pretty;
}

/* ===== Problem ===== */
.problem {
  background: var(--bg-cream);
  border-radius: 32px;
  padding: 56px;
  margin: 32px 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.problem-quote {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  text-wrap: pretty;
  position: relative;
  padding-left: 26px;
}
.problem-quote::before {
  content: "“";
  position: absolute;
  left: -4px; top: -16px;
  font-size: 64px;
  color: var(--warm-coral);
  font-family: Georgia, serif;
  line-height: 1;
}
.problem-quote .who {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-500);
  font-style: normal;
}
.problem-stats { display: flex; flex-direction: column; gap: 18px; }
.stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-100);
}
.stat-row:last-child { border: none; }
.stat-row .v {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--green-800);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-row .l {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.45;
}
.stat-row .l b { color: var(--ink-900); font-weight: 500; }

/* ===== How it works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--ink-100);
  border-radius: 22px;
  padding: 28px 24px;
  position: relative;
}
.step-card .num {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--green-800);
  font-weight: 600;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.step-card .num::before {
  content: "";
  display: block;
  width: 24px; height: 1.5px;
  background: var(--green-300);
}
.step-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.step-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.feature-tile {
  background: var(--bg-card);
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 360px;
}
.feature-tile.dark {
  background: linear-gradient(140deg, var(--green-800), var(--green-700));
  color: white;
  border-color: transparent;
}
.feature-tile.cream { background: var(--bg-cream); }
.feature-tile.peach {
  background: linear-gradient(140deg, var(--warm-yellow-light), var(--warm-orange-light));
}
.feature-tile.sage  { background: linear-gradient(140deg, var(--green-100), var(--green-200)); }

.feature-tile .eye {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
  font-weight: 500;
  margin-bottom: 14px;
}
.feature-tile h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.feature-tile p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}
.feature-tile .visual {
  margin-top: auto;
  padding-top: 24px;
  position: relative;
}
.feature-row-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

/* MDPH visual mini */
.mdph-mini {
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
}
.mdph-mini .stages {
  display: flex; gap: 3px; margin-bottom: 8px;
}
.mdph-mini .s {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.mdph-mini .s.done { background: var(--green-300); }
.mdph-mini .s.active { background: white; }
.mdph-mini .row {
  display: flex; justify-content: space-between;
  font-size: 11px;
  font-family: var(--font-mono);
  opacity: 0.85;
}

.coffre-vis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 16px;
}
.coffre-vis .doc {
  background: white;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--ink-700);
  display: flex; align-items: center; gap: 6px;
}
.coffre-vis .doc .ic { color: var(--green-700); }

.team-vis { display: flex; align-items: center; }
.team-vis .av {
  width: 36px; height: 36px;
  border-radius: 11px;
  border: 2.5px solid white;
  margin-left: -8px;
  display: grid; place-items: center;
  color: white; font-size: 12px; font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.team-vis .av:first-child { margin-left: 0; }

.alert-vis {
  background: white;
  border-radius: 14px;
  padding: 14px;
  margin-top: 16px;
  display: flex; align-items: center; gap: 12px;
}
.alert-vis .ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--alert-red-bg);
  color: var(--alert-red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.alert-vis .t { font-size: 12px; font-weight: 500; color: var(--ink-900); }
.alert-vis .s { font-size: 10.5px; color: var(--ink-500); margin-top: 1px; }

/* ===== Pros section ===== */
.pros-card {
  background: var(--green-900);
  border-radius: 32px;
  padding: 64px;
  color: white;
  position: relative;
  overflow: hidden;
}
.pros-card::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149,213,178,0.18), transparent 65%);
  top: -180px; right: -120px;
}
.pros-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.pros-card .section-eyebrow { color: var(--green-300); }
.pros-card h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.15;
  color: white;
}
.pros-card p {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.85;
  margin: 0 0 24px;
}
.pros-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.pros-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pros-item .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(149,213,178,0.18);
  color: var(--green-300);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pros-item .t { font-size: 14px; font-weight: 500; }
.pros-item .s { font-size: 12.5px; opacity: 0.75; margin-top: 3px; line-height: 1.45; }
.pros-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
}

/* ===== Security ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sec-card {
  background: var(--bg-card);
  border: 1px solid var(--ink-100);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
}
.sec-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 14px;
}
.sec-card h4 {
  font-size: 15px;
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.sec-card p {
  font-size: 12.5px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.5;
}

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(140deg, var(--green-800), var(--green-700));
  border-radius: 32px;
  padding: 72px 56px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149,213,178,0.18), transparent 65%);
  top: -150px; right: -100px;
}
.final-cta h2 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.1;
  position: relative;
  text-wrap: balance;
}
.final-cta p {
  font-size: 17px;
  opacity: 0.85;
  margin: 0 auto 32px;
  max-width: 540px;
  position: relative;
  line-height: 1.5;
}
.final-cta .hero-form {
  margin: 0 auto;
  background: white;
  border-color: transparent;
  position: relative;
}

/* ===== Footer ===== */
.site-footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--ink-100);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .name { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; margin-top: 10px; }
.footer-brand p {
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 8px 0 0;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 500;
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--ink-700);
  cursor: pointer;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--green-800); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-100);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--ink-500);
}
.footer-trust {
  display: flex; gap: 18px; align-items: center;
}
.footer-trust .pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
  font-size: 11.5px;
}
.footer-trust .pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-700);
}

/* ===== Hero line-mask reveal ===== */
.lm {
  position: relative;
}
/* ghost: reserves max height; uses grid stacking */
.lm-ghost {
  visibility: hidden;
  display: grid;
}
.lm-ghost-stack {
  grid-area: 1 / 1;
  display: block;
}
.lm-ghost .lm-line { display: block; }

.lm-live {
  position: absolute;
  inset: 0;
}
.lm-stack {
  position: absolute;
  inset: 0;
}
/* Each line is its own clipping mask */
.lm-line {
  display: block;
  overflow: hidden;
  /* a tiny bit of room so descenders/diacritics aren't clipped */
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.lm-inner {
  display: block;
  transform: translateY(105%);
  will-change: transform;
}

/* Incoming: each line slides up from below the mask */
.lm-stack[data-state="in"] .lm-inner {
  animation: lmIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* Outgoing: each line slides up out of the mask */
.lm-stack[data-state="out"] .lm-inner {
  transform: translateY(0);
  animation: lmOut 800ms cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
.lm-stack[data-state="static"] .lm-inner {
  animation: lmIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lmIn {
  0%   { transform: translateY(105%); }
  100% { transform: translateY(0); }
}
@keyframes lmOut {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-105%); }
}

@media (prefers-reduced-motion: reduce) {
  .lm-stack[data-state="in"] .lm-inner,
  .lm-stack[data-state="static"] .lm-inner { animation: none; transform: translateY(0); }
  .lm-stack[data-state="out"] .lm-inner { animation: none; opacity: 0; }
}

/* Sub reveal: smaller line-height tweak */
.hero-sub .lm-line {
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero-sub .lm-ghost .lm-ghost-stack { max-width: 520px; }
.hero-sub .lm-stack { max-width: 520px; }

/* Variant indicator (small dots under hero) */
.hero-dots {
  display: flex; gap: 6px;
  margin-top: 28px;
  align-items: center;
}
.hero-dot {
  width: 24px; height: 4px;
  border-radius: 2px;
  background: var(--ink-200);
  cursor: pointer;
  transition: background .25s, width .25s;
  border: none;
  padding: 0;
}
.hero-dot:hover { background: var(--ink-300); }
.hero-dot.active {
  background: var(--green-700);
  width: 36px;
}
.hero-dot-pause {
  margin-left: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--ink-400);
  display: grid; place-items: center;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.hero-dot-pause:hover { color: var(--green-800); background: var(--ink-50); }

/* ===== Share popover ===== */
.share-wrap {
  position: relative;
}
.share-pop {
  position: absolute;
  top: calc(100% + 12px); right: 0;
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  padding: 18px;
  min-width: 320px;
  z-index: 60;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.share-pop.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.share-pop::before {
  content: "";
  position: absolute;
  top: -6px; right: 26px;
  width: 12px; height: 12px;
  background: var(--bg-card);
  border-top: 1px solid var(--ink-100);
  border-left: 1px solid var(--ink-100);
  transform: rotate(45deg);
}
.share-pop h5 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.share-pop p {
  font-size: 12px;
  color: var(--ink-500);
  margin: 0 0 14px;
  line-height: 1.45;
}
.share-form {
  display: flex; gap: 6px;
  margin-bottom: 14px;
  background: var(--bg-cream);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  align-items: center;
  transition: border-color .15s;
}
.share-form:focus-within { border-color: var(--green-400); }
.share-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 8px 0;
  outline: none;
  color: var(--ink-900);
  min-width: 0;
}
.share-form input::placeholder { color: var(--ink-400); }
.share-form button {
  background: var(--green-800);
  color: white;
  border: none;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.share-form button:hover { background: var(--green-900); }

.share-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 12px 0;
}
.share-divider::before, .share-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-100);
}

.share-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.share-channel {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg-cream);
  border: 1px solid transparent;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-900);
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, border-color .12s;
}
.share-channel:hover { background: white; border-color: var(--ink-100); }
.share-channel .ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.share-channel.whatsapp .ic { background: #25D366; }
.share-channel.sms .ic { background: var(--green-700); }
.share-channel.copy .ic { background: var(--ink-700); }
.share-channel.native .ic { background: var(--warm-orange); }
.share-channel.x .ic { background: #1A1A1A; }
.share-channel.linkedin .ic { background: #0A66C2; }

.share-success {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 10px;
}

/* Nav button when share is open */
.nav-cta.is-share {
  background: var(--ink-900);
}
.nav-cta.is-share:hover { background: var(--ink-700); }

/* ===== Toast / success ===== */
.toast {
  position: fixed;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--green-800);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }

@media (max-width: 1000px) {
  .hero-card { padding: 40px 28px; }
  .hero-grid, .problem-grid, .pros-grid, .features-grid, .feature-row-2 { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 40px; }
  .section-title { font-size: 30px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pros-card, .final-cta { padding: 48px 28px; }
  .hero-visual { height: 360px; }
}

@media (max-width: 768px) {
  .site-wrap { padding: 0 16px; }

  .site-nav-inner { padding: 12px 16px; }
  .nav-links { display: none; }

  .hero { padding: 32px 0 40px; }
  .hero-card { padding: 32px 20px; border-radius: 24px; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.5rem); margin: 0 0 16px; }
  .hero-sub { font-size: 15px; margin: 0 0 24px; }
  .hero-form { flex-direction: column; padding: 12px; border-radius: 20px; gap: 10px; }
  .hero-form input { width: 100%; padding: 10px 14px; }
  .hero-form button { width: 100%; justify-content: center; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-visual { display: none; }

  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.75rem, 6vw, 2rem); }
  .section-sub { font-size: 15px; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 24px; }

  .feature-tile { padding: 28px 24px; }

  .pros-card { padding: 36px 24px; border-radius: 24px; }
  .pros-card h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .security-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sec-card { padding: 18px; }

  .final-cta { padding: 48px 24px; border-radius: 24px; }
  .final-cta h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .final-cta .hero-form { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 0; }
  .footer-trust { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-brand .name { font-size: 16px; }

  .hero-card { padding: 24px 16px; }
  .hero-title { font-size: clamp(1.75rem, 9vw, 2.25rem); }

  .section { padding: 44px 0; }

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

  .stat-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stat-row .v { font-size: 28px; }
}
