@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}

:root {
  --bg: #f3f2ee;
  --surface: #ffffff;
  --ink: #0b0b0b;
  --muted: #686868;
  --line: #d7d5cf;
  --dark: #0b0b0b;
  --accent: #e6ff2a;
  --max: 600px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid #2f5cff; outline-offset: 3px; }

.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(243, 242, 238, 0.88);
  border-bottom: 1px solid rgba(11, 11, 11, 0.09);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
}

.page { padding: 48px 0 64px; }
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 16px;
}
h2 { font-size: 24px; letter-spacing: -0.02em; font-weight: 600; margin: 0 0 12px; }
h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; }
.lede { font-size: 18px; color: var(--muted); margin: 0; }
.hero { margin-bottom: 32px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.country-menu input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}
.field input:focus { border-color: var(--ink); background: var(--surface); }
.field input[aria-invalid="true"] { border-color: #c0392b; }

.phone { display: flex; gap: 8px; }
.phone input[type="tel"] { flex: 1; min-width: 0; }
.country { position: relative; }
.country-btn {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.country-btn:hover { border-color: var(--ink); }
.country-btn span:first-child { font-size: 20px; line-height: 1; }
.country-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  width: 300px;
  max-width: calc(100vw - 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(11, 11, 11, 0.12);
}
.country-menu input { min-height: 44px; margin-bottom: 6px; }
.country-menu ul { max-height: 260px; overflow-y: auto; }
.country-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}
.country-menu li:hover, .country-menu li[aria-selected="true"] { background: var(--bg); }
.country-menu li .dial { margin-left: auto; color: var(--muted); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }
.btn-secondary { background: transparent; color: var(--ink); margin-top: 12px; }

.consent { font-size: 12px; color: var(--muted); margin: 14px 0 0; }
.consent a { text-decoration: underline; }
.error { color: #c0392b; font-size: 14px; margin: 12px 0 0; }

.delivered .body-read { margin-top: 8px; }
.delivered iframe, .delivered video { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 12px; }
.body { margin-top: 32px; color: var(--ink); }
.body p { margin: 0 0 14px; }
.body ul { padding-left: 18px; list-style: disc; margin: 0 0 14px; }
.body a { text-decoration: underline; }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 40px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 480px) {
  .card { padding: 20px; border-radius: 16px; }
  .country-btn { padding: 0 10px; }
}

/* --- reference layout: badge, promise, delivered steps, switch, global blocks ---- */
.announcement { background: var(--ink); color: #fff; font-size: 14px; text-align: center; padding: 10px 0; }
.announcement p { margin: 0; }
.announcement a { text-decoration: underline; }
.hero-video { margin: 0 0 28px; }
.hero-video iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 16px; background: #000; }
.hero { text-align: center; margin-bottom: 28px; }
.hero h1 { font-size: clamp(28px, 5vw, 38px); }
.hero .lede { max-width: 48ch; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; margin: 0 0 18px; padding: 6px 14px;
  border: 1px solid var(--ink); border-radius: 999px; background: var(--accent);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
}
.card-lede { margin: 0 0 20px; text-align: center; color: var(--muted); font-size: 14px; }
.field input::placeholder { color: #a3a29d; }
.consent { text-align: center; }
.promise { margin-top: 32px; }
.promise h2 { font-size: 20px; }
.delivered { margin-top: 0; }
.delivered h2 { margin-bottom: 18px; }
.body h2, .body h3, .body h4 { margin: 26px 0 8px; }
.body h2 { font-size: 22px; }
.body h3 { font-size: 18px; }
.body h4 { font-size: 16px; }
.body ol { padding-left: 0; margin: 0 0 14px; list-style: none; counter-reset: step; }
.body ol li {
  position: relative; padding: 0 0 0 44px; margin: 0 0 14px; counter-increment: step;
}
.body ol li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 600;
}
.body code { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 13px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; }
.btn-pdf { margin-top: 20px; }
.switch { margin-top: 28px; text-align: center; font-size: 14px; color: var(--muted); }
.switch summary { cursor: pointer; list-style: none; text-decoration: underline; }
.switch summary::-webkit-details-marker { display: none; }
.switch-form { display: flex; gap: 8px; margin-top: 12px; }
.switch-form input { flex: 1; min-width: 0; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); text-transform: uppercase; }
.switch-form .btn { width: auto; min-height: 48px; margin: 0; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.foot { flex-direction: column; align-items: stretch; }
.foot-md { color: var(--muted); }
.foot-md p { margin: 0 0 8px; }
.foot-row { display: flex; justify-content: space-between; gap: 16px; }
