:root {
  --bg: #f7f4ee;
  --ink: #16130e;
  --muted: #5e564c;
  --signal: #f0b429;
  --signal-ink: #1a1406;
  --card: #fffdf8;
  --line: #e6dece;
  --dark: #12100c;
  --hot: #c83b2f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 17px/1.5 "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; }
img { max-width: 100%; }
.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  background: #0e0c09;
  color: #f6f1e4;
  border-bottom: 1px solid #2a2418;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.brand img { width: 28px; height: 28px; display: block; }
.nav strong, .lead .wordmark {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.nav strong { font-size: 1.3rem; }
.lead .wordmark { color: #f6f1e4; font-size: 1.05em; }
.nav nav { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; counter-reset: item; }
.nav nav a:not(.go)::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  margin-right: 0.45em;
  font-size: 0.72em;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0.55;
}
.nav nav a.on::before,
.nav nav a:hover::before { opacity: 1; }
.nav a { color: #f6f1e4; text-decoration: none; font-weight: 650; font-size: 0.95rem; }
.nav a.on, .nav a:hover { color: var(--signal); }
.nav .go {
  background: var(--signal);
  color: var(--signal-ink);
  border-radius: 999px;
  padding: 8px 14px;
}
.nav .go:hover { color: var(--signal-ink); }
.nav.on-photo {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav.on-photo a:not(.go) { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65); }
.nav.on-photo.scrolled {
  background: rgba(14, 12, 9, 0.94);
  border-bottom-color: #2a2418;
  backdrop-filter: blur(10px);
}
.nav.on-photo.scrolled a:not(.go) { text-shadow: none; }
.hero-wrap.cover { min-height: 100svh; }
.hero-wrap {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  background: #1c140c;
  perspective: 900px;
  color: #f6f1e4;
}
.hero-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.lie {
  position: absolute;
  z-index: 2;
  right: 16%;
  top: 16%;
  width: 250px;
  height: 500px;
  transform: rotateX(42deg) rotateZ(-12deg);
  transform-origin: center center;
  filter: drop-shadow(0 28px 18px rgba(0, 0, 0, 0.55));
}
.phone {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(160deg, #4a4a4a, #141414 40%, #0a0a0a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.screen {
  height: 100%;
  border-radius: 28px;
  background: #070605;
  color: #f6f1e4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px 18px;
  overflow: hidden;
}
.ring-time { margin: 0; font-size: 11px; color: #cbbfa8; font-weight: 700; }
.ring-avatar {
  width: 46px;
  height: 46px;
  margin-top: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5c518;
  color: #1a1406;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.7);
  animation: ring-pulse 1.4s ease-out infinite;
}
@keyframes ring-pulse {
  70% { box-shadow: 0 0 0 12px rgba(245, 197, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0); }
}
.ring-name {
  margin: 6px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ring-sub { margin: 4px 0 0; color: #d9c7a2; font-size: 12px; }
.ring-actions { display: flex; gap: 18px; margin-top: auto; }
.ring-actions span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
}
.ring-actions .no { background: #e24b4b; color: white; }
.ring-actions .yes { background: #3dae6a; color: white; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 16, 10, 0.82) 0%, rgba(28, 16, 10, 0.45) 42%, rgba(28, 16, 10, 0.12) 100%);
}
.hero, .explore { position: relative; z-index: 1; }
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 28px 12px;
}
.explore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: center;
  margin-bottom: 18px;
  color: #f5c518;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.explore svg {
  animation: decroche-bob 1.5s ease-in-out infinite;
}
@keyframes decroche-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
#suite { scroll-margin-top: 76px; }
.kicker {
  margin: 0;
  color: #f0b429;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 14px 0 16px;
  max-width: 11ch;
}
.hero h1 em {
  font-style: normal;
  color: #f5c518;
}
.lead { font-size: 1.15rem; max-width: 28rem; margin: 0; color: #d9d0c0; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero .actions { max-width: 22rem; }
.btn {
  display: inline-block;
  background: #f5c518;
  color: #1a1406;
  text-decoration: none;
  font-weight: 780;
  padding: 14px 18px;
  border-radius: 12px;
}
.btn.alt {
  background: transparent;
  color: #f6f1e4;
  border: 1px solid #4a4336;
}
.checks { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.checks li {
  border: 1px solid #3a3428;
  border-radius: 999px;
  padding: 6px 10px;
  color: #cbbfa8;
  font-size: 0.85rem;
}
.stage { width: min(100%, 400px); margin-left: auto; }
.stage-caption { margin: 0 0 12px; color: #f5c518; font-size: 1rem; min-height: 2.6em; }
.device {
  position: relative;
  height: 520px;
  border-radius: 36px;
  padding: 18px 18px 28px;
  background: linear-gradient(180deg, #2a241c, #14110e);
  border: 1px solid #5a4a38;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.device::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 108px;
  height: 4px;
  margin-left: -54px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.device-bar { display: flex; justify-content: space-between; color: #8d8270; font-size: 0.75rem; letter-spacing: 0.08em; }
.scene { position: absolute; inset: 48px 16px 18px; opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
.stage[data-step="0"] .scene-call,
.stage[data-step="1"] .scene-miss,
.stage[data-step="2"] .scene-sms,
.stage[data-step="3"] .scene-form,
.stage[data-step="4"] .scene-list { opacity: 1; transform: none; }
.who { margin: 28px 0 0; font-size: 2rem; font-weight: 750; letter-spacing: -0.03em; }
.meta, .from, .link { color: #b3a78f; }
.miss { margin: 8px 0 0; color: #ff6b5a; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.state { color: #d7ffe8; }
.ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid #f5c518;
  box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.6);
  animation: pulse 1.4s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 16px rgba(245, 197, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0); }
}
.bubble, .field, .card-line, .new {
  background: #2a2418;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 8px 0 0;
}
.new { display: inline-block; background: #f5c518; color: #1a1406; font-weight: 800; }
.dots { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.dots i { width: 6px; height: 6px; border-radius: 50%; background: #4a4336; display: block; }
.stage[data-step="0"] .dots i:nth-child(1),
.stage[data-step="1"] .dots i:nth-child(2),
.stage[data-step="2"] .dots i:nth-child(3),
.stage[data-step="3"] .dots i:nth-child(4),
.stage[data-step="4"] .dots i:nth-child(5) { background: #f5c518; }
.sms p { margin: 0; }
.formish {
  margin-top: 12px;
  background: #fffdf8;
  color: var(--ink);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 8px;
}
.formish span {
  display: block;
  background: #f3efe4;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.9rem;
}
.section { max-width: 1100px; margin: 0 auto; padding: 64px 28px 8px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.04em; line-height: 1.05; margin: 0 0 8px; }
.page { max-width: 1100px; margin: 0 auto; padding: 56px 28px 8px; }
.term {
  max-width: 720px;
  margin-top: 8px;
  background: #14110e;
  color: #f6f1e4;
  border-radius: 22px;
  border: 1px solid #3a3426;
  box-shadow: 0 24px 60px rgba(20, 16, 8, 0.18);
  overflow: hidden;
}
.term-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #2a2418;
  color: #f5c518;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.term-log {
  min-height: 220px;
  max-height: 320px;
  overflow: auto;
  padding: 16px 18px 8px;
  font-family: "Cascadia Mono", "Segoe UI Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  line-height: 1.55;
}
.term-log p { margin: 0 0 10px; }
.term-log .cmd { color: #f5c518; }
.term-log .ans { color: #f6f1e4; }
.term-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 18px;
  padding: 10px 0 14px;
  border-top: 1px solid #2a2418;
  font-family: "Cascadia Mono", "Segoe UI Mono", ui-monospace, monospace;
}
.term-line .prompt { color: #f5c518; font-weight: 700; }
.term-line input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #f6f1e4;
  font: inherit;
  outline: none;
}
.term-line input::placeholder { color: #6f6556; }
.term-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}
.term-keys button {
  display: flex;
  gap: 8px;
  align-items: baseline;
  border: 1px solid #3a3426;
  background: transparent;
  color: #f6f1e4;
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  cursor: pointer;
}
.term-keys b {
  color: #f5c518;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.term-keys button:hover { border-color: #f5c518; }
.page h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 12px 0 14px;
  max-width: 18ch;
}
.page h2 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin: 1.4rem 0 0.35rem;
}
.page .lead, .section .lead { color: var(--muted); max-width: 38rem; }
.offers .grid.three { align-items: stretch; padding-top: 18px; }
.card.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 20px;
  background: #fff;
  border: 2px solid #16140f;
  border-radius: 22px;
  box-shadow: 5px 5px 0 #16140f;
}
.card.offer.fit {
  background: #fff8df;
  border-color: #16140f;
}
.card.offer .badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 4px 12px;
  background: #f5c518;
  color: #16140f;
  border: 2px solid #16140f;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.card.offer .plan {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card.offer .amount {
  margin: 6px 0 0;
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-weight: 800;
}
.card.offer .amount span {
  margin-left: 0.15em;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  color: #6d655b;
}
.card.offer .pitch { margin: 12px 0 0; color: #5e564c; }
.card.offer .plus { margin: 16px 0 0; font-weight: 800; color: #8a6410; }
.card.offer ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.card.offer li {
  position: relative;
  padding-left: 1.7em;
  line-height: 1.35;
}
.card.offer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  background: #f5c518;
  color: #16140f;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.card.offer li em { font-style: italic; }
.card.offer .pick {
  display: block;
  margin-top: auto;
  padding: 12px 14px;
  border: 2px solid #16140f;
  border-radius: 14px;
  background: #fff;
  color: #16140f;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.card.offer.fit .pick {
  background: #f5c518;
  box-shadow: 3px 3px 0 #16140f;
}
.card.offer .pick:hover { filter: brightness(0.97); }
.walk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: center;
}
.walk-steps {
  list-style: none;
  position: relative;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.walk-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: #e4dccb;
}
.walk-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 0 0 20px;
}
.walk-steps li:last-child { padding-bottom: 0; }
.walk-steps b {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16140f;
  color: #f5c518;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}
.walk-steps h3 { margin: 4px 0 0; font-size: 1.05rem; }
.walk-steps p { margin: 4px 0 0; color: var(--muted); }
.walk-more { margin: 18px 0 0 46px; }
.walk-more a { color: #8a6410; font-weight: 750; text-underline-offset: 3px; }
.phone {
  margin: 0;
  width: min(100%, 340px);
  justify-self: end;
  background: #f6f1e6;
  border: 2px solid #16140f;
  border-radius: 32px;
  box-shadow: 8px 8px 0 #16140f;
  padding: 16px 16px 14px;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.phone-glyphs { display: flex; align-items: center; gap: 6px; }
.sig, .bat { display: block; }
.sig {
  width: 14px;
  height: 10px;
  background:
    linear-gradient(#16140f, #16140f) 0 6px / 2px 4px no-repeat,
    linear-gradient(#16140f, #16140f) 4px 4px / 2px 6px no-repeat,
    linear-gradient(#16140f, #16140f) 8px 2px / 2px 8px no-repeat,
    linear-gradient(#16140f, #16140f) 12px 0 / 2px 10px no-repeat;
}
.bat {
  position: relative;
  width: 18px;
  height: 9px;
  border: 1.5px solid #16140f;
  border-radius: 2px;
}
.bat::before {
  content: "";
  position: absolute;
  inset: 1px 3px 1px 1px;
  background: #16140f;
}
.bat::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 1.5px;
  height: 3px;
  background: #16140f;
}
.phone-title {
  margin: 14px 0 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.phone-label {
  margin: 16px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6410;
}
.thread-who, .notice p, .bubble, .phone figcaption { margin: 0; }
.thread-who { margin-top: 8px; color: #5e564c; font-size: 0.86rem; }
.bubble {
  margin-top: 8px;
  margin-left: 28px;
  background: #fff;
  border: 1px solid #e4dccb;
  border-radius: 16px 16px 4px 16px;
  padding: 10px 12px;
  line-height: 1.35;
}
.bubble.link {
  display: inline-block;
  margin-left: 28px;
  padding: 7px 12px;
  background: #16140f;
  color: #f5c518;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.86rem;
}
.notice {
  margin-top: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 12px 10px 14px;
  box-shadow: inset 3px 0 0 #f5c518;
}
.notice-k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6410;
}
.notice-name { margin-top: 4px; font-weight: 800; }
.notice-time { margin-top: 8px; color: #8d8270; font-size: 0.78rem; }
.phone figcaption {
  margin-top: 14px;
  color: #6d655b;
  font-size: 0.78rem;
  line-height: 1.4;
}
.page .kicker, .section .kicker { color: #8a6410; }
.band { max-width: 1100px; margin: 28px auto 0; padding: 0 28px; }
.band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background:
    radial-gradient(520px 180px at 100% 0%, rgba(245, 197, 24, 0.16), transparent 60%),
    #14120c;
  color: #f6f1e4;
  border-radius: 22px;
  padding: 28px;
}
.band-inner p { margin: 8px 0 0; color: #d9d0c0; max-width: 36rem; }
.band-inner .actions { margin-top: 0; }
.btn.quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid #cfc6b4;
}
.band .btn.quiet, .hero .btn.alt { color: #f6f1e4; border-color: #4a4336; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid #f5c518;
  outline-offset: 3px;
}
.steps, .grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); margin-top: 16px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.card .n {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--signal);
  font-weight: 800;
  margin-bottom: 8px;
}
.card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.card p, .note p { margin: 0; }
.note {
  background: var(--dark);
  color: #f6f1e4;
  border-radius: 18px;
  padding: 18px 20px;
  margin: 22px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}
.mini {
  margin: 14px 0;
  background: #14120c;
  color: #f6f1e4;
  border-radius: 16px;
  padding: 14px;
}
.mini p { margin: 0; }
.mini .who { margin-top: 8px; color: #b3a78f; font-size: 0.85rem; }
.list-preview { display: grid; gap: 8px; }
.row {
  display: grid;
  gap: 2px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}
.tag {
  justify-self: start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--hot);
  color: white;
  border-radius: 999px;
  padding: 2px 8px;
}
.tag.done { background: #6d7b66; }
.sees {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}
.sees-who {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6410;
}
.sms-card, .board {
  background: #f6f1e6;
  border: 2px solid #16140f;
  border-radius: 22px;
  box-shadow: 6px 6px 0 #16140f;
}
.sms-card { padding: 18px 18px 16px; }
.sms-from { margin: 0; color: #5e564c; font-size: 0.88rem; }
.sms-body {
  margin: 12px 0 0 18px;
  background: #fff;
  border: 1px solid #e4dccb;
  border-radius: 16px 16px 4px 16px;
  padding: 12px 14px;
  line-height: 1.4;
}
.sms-go {
  display: inline-block;
  margin: 12px 0 0 18px;
  background: #16140f;
  color: #f5c518;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 750;
  font-size: 0.9rem;
  text-decoration: none;
}
.board { padding: 8px; background: #fff; }
.board.evening { max-width: 560px; }
.hero-note {
  margin: 14px 0 0;
  max-width: 34rem;
  color: #1c140c;
  font-size: 0.92rem;
}
.price-link {
  margin: 18px 0 0;
  color: var(--muted);
}
.price-link a { color: #8a6410; font-weight: 750; }
.client-page { padding-top: 36px; }
.client-page .bubble { margin: 14px 0 0; }
.client-page .kicker { margin-bottom: 8px; }
.plan-picks { display: grid; gap: 10px; margin-top: 18px; max-width: 520px; }
.plan-picks[hidden], .ask-card[hidden] { display: none; }
.plan-picks a {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid #16140f;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 4px 4px 0 #16140f;
}
.plan-picks b { font-size: 1.05rem; }
.plan-picks span { color: var(--muted); font-size: 0.92rem; }
.ask-card {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 8px;
}
.ask-card label { display: grid; gap: 6px; font-weight: 650; }
.ask-card input {
  font: inherit;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.hero-wait { margin: 14px 0 0; color: var(--muted); max-width: 36rem; }
.start.aside { display: block; padding-top: 8px; }
.start.aside .calc { max-width: 560px; }
.fiche-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 10px;
}
.fiche-row + .fiche-row { border-top: 1px solid var(--line); }
.fiche-row strong, .fiche-row div span { display: block; }
.fiche-row div span { color: var(--muted); font-size: 0.88rem; margin-top: 2px; }
.fiche-row.done strong { color: #6d655b; }
.sees-note { margin: 10px 0 0; color: var(--muted); font-size: 0.9rem; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  background: #fff;
  border: 2px solid #16140f;
  border-radius: 22px;
  box-shadow: 6px 6px 0 #16140f;
}
.facts article { padding: 22px 20px; }
.facts article + article { border-left: 1px solid var(--line); }
.facts h3 { margin: 0 0 8px; font-size: 1.08rem; }
.facts p { margin: 0; color: var(--muted); }
.start {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 28px 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.start h1, .start h2 { margin: 0 0 8px; letter-spacing: -0.03em; }
.start .hint { margin: 0 0 8px; color: var(--muted); }
.start label { display: grid; gap: 6px; margin: 16px 0 0; font-weight: 650; }
.start select, .start input[type="text"], .start input[type="email"], .start input[type="tel"] {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.start input[type="range"] { width: 100%; accent-color: #c9a227; }
.start .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
}
.start .calc .row strong { color: #f5c518; white-space: nowrap; flex: none; }
.start .figure {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.start .figure strong {
  display: block;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.start .figure span { color: var(--muted); }
.start .year { margin: 6px 0 0; font-size: 1.15rem; }
.start .assume { margin: 14px 0 0; color: var(--muted); font-size: 0.92rem; }
.start .btn { border: 0; cursor: pointer; margin-top: 16px; width: 100%; text-align: center; }
.start .ok { margin-top: 12px; }
.start .calc {
  background: #14120c;
  color: #f6f1e4;
  border-color: #2c261c;
  padding: 26px 24px 22px;
}
.start .calc .hint,
.start .calc .figure span,
.start .calc .assume,
.start .calc .year { color: #b3a78f; }
.start .calc .figure { border-top-color: #3a3428; }
.start .calc .figure strong,
.start .calc .year strong { color: #f5c518; }
.start .calc select {
  background: #1c1914;
  color: #f6f1e4;
  border-color: #3a3428;
}
.start.price { align-items: stretch; }
.start .sum {
  padding: 26px 24px 22px;
}
.start .eq,
.bill .eq {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.start .eq li,
.bill .eq li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.start .eq span,
.bill .eq span { min-width: 0; }
.start .eq b,
.bill .eq b {
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  white-space: nowrap;
}
.bill {
  max-width: 640px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 22px;
}
.bill .figure {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.bill .figure strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.bill .figure span,
.bill .assume { color: var(--muted); }
.bill .assume { margin: 14px 0 0; font-size: 0.92rem; }
.start .sum .figure strong {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}
.film {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
  margin-top: 10px;
}
.film-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}
.film-steps::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: #e3dac8;
}
.film-steps button {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 9px 0;
  font: inherit;
  color: #8d8270;
  cursor: pointer;
}
.film-steps button i {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: #e3dac8;
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 1;
}
.film-steps button.on { color: var(--ink); }
.film-steps button.on span { font-weight: 650; }
.film-steps button.on i { background: #f5c518; }
.replay {
  margin: 14px 0 0 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8d8270;
  font: inherit;
  font-weight: 650;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.replay.ready { color: #1a1406; }
.film-stage { display: grid; justify-items: center; gap: 10px; }
.film-caption { margin: 0; min-height: 1.3em; color: var(--muted); font-size: 0.92rem; }
.handset {
  width: 320px;
  height: 640px;
  border-radius: 38px;
  background: #100e0b;
  border: 3px solid #2a2418;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
  color: #f6f1e4;
}
.handset::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 104px;
  height: 4px;
  margin-left: -52px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
}
.handset.lightbar::after { background: rgba(22, 19, 14, 0.35); }
.shotslot, .shot { height: 100%; }
.shot {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 22px;
  box-sizing: border-box;
}
.shot.light { background: #f6f3ec; color: #16130e; }
.osbar { display: flex; justify-content: space-between; font-size: 12px; font-weight: 750; }
.callmid { margin: auto 0; text-align: center; }
.avatar {
  width: 74px; height: 74px; margin: 0 auto 14px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #f5c518; color: #1a1406;
  font-size: 1.8rem; font-weight: 800;
}
.callname { margin: 0; font-size: 1.45rem; font-weight: 750; letter-spacing: -0.03em; }
.callstate { margin: 6px 0 0; color: #b3a78f; }
.hang, .fsend, .eveacts i {
  align-self: center;
  background: #c83b2f;
  color: white;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 750;
  font-style: normal;
}
.silent {
  align-self: center;
  margin: 18px 0 0;
  border: 1px solid #3a3428;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b3a78f;
}
.missed-k { margin: 0 0 8px; color: #ff6b5a; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.apphead { margin: 22px 0 0; font-size: 1.35rem; font-weight: 750; letter-spacing: -0.03em; }
.appfrom { margin: 4px 0 12px; color: #5e564c; font-size: 0.92rem; }
.smsbubble {
  background: #fff;
  border: 1px solid #e6dece;
  border-radius: 16px 16px 16px 6px;
  padding: 12px 14px;
}
.smslink {
  margin: 10px 0 0;
  color: #8a6410;
  font-weight: 750;
}
.smstime { margin: 8px 0 0; color: #8d8270; font-size: 0.8rem; }
.flab { display: grid; gap: 4px; margin: 10px 0 0; font-size: 0.75rem; font-weight: 750; letter-spacing: 0.04em; text-transform: uppercase; color: #5e564c; }
.fval {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 650;
  color: #16130e;
  background: #fff;
  border: 1px solid #e6dece;
  border-radius: 10px;
  padding: 8px 10px;
}
.caret {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 1px;
  background: #16130e;
  vertical-align: text-bottom;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.fsend { margin-top: 16px; background: #f5c518; color: #1a1406; }
.locktime { margin: 48px 0 0; text-align: center; font-size: 3.2rem; font-weight: 700; letter-spacing: -0.04em; }
.locksub { margin: 0; text-align: center; color: #b3a78f; }
.notecard {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #3a3428;
  border-radius: 18px;
  padding: 14px;
}
.notecard p { margin: 4px 0 0; }
.notesub { color: #b3a78f; }
.evehead, .everow, .eveacts { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.evehead { margin-top: 14px; }
.evehello { margin: 8px 0 0; font-size: 1.15rem; font-weight: 750; }
.evek { margin: 12px 0 4px; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: #5e564c; font-weight: 750; }
.evek b { color: #1a1406; }
.everow {
  background: #fff;
  border: 1px solid #e6dece;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.86rem;
}
.everow.on { border-color: #f5c518; }
.everow em { font-style: normal; color: #8a6410; }
.evedetail {
  margin-top: 10px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6dece;
  padding: 10px;
}
.evedetail p { margin: 0 0 6px; font-size: 0.92rem; }
.evedetail span { display: block; font-size: 0.68rem; letter-spacing: 0.06em; color: #8d8270; }
.eveacts { margin-top: 4px; }
.eveacts i { background: #f5c518; color: #1a1406; padding: 7px 10px; font-size: 0.78rem; }
.eveacts i + i { background: transparent; color: #16130e; border: 1px solid #e6dece; }
.film-dots { display: flex; gap: 6px; }
.film-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d9d0c0; display: block; cursor: pointer; }
.film-dots i.on { background: #f5c518; }
.nav .ask-nav {
  border: 0;
  background: #f5c518;
  color: #1a1406;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}
.ask { position: fixed; right: 18px; bottom: 36px; z-index: 80; }
body[data-assistant] { margin: 0; background: var(--bg); }
body[data-assistant] .assistant-note { max-width: 640px; margin: 0 auto; padding: 28px 22px 0; }
body[data-assistant] .assistant-note h1 { font-size: 1.8rem; letter-spacing: -0.03em; margin: 0; }
body[data-assistant] .assistant-note p { color: var(--muted); }
body[data-assistant] .ask { position: static; display: block; max-width: 640px; margin: 18px auto 28px; padding: 0 22px; }
body[data-assistant] .ask-btn,
body[data-assistant] .ask-x { display: none; }
body[data-assistant] .ask-panel {
  position: static;
  display: flex;
  width: 100%;
  height: min(640px, calc(100svh - 220px));
  box-shadow: none;
}
.ask-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px 10px 10px;
  background: #f5c518;
  color: #1a1406;
  font: 800 1rem/1 "Segoe UI", system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  animation: ask-in 1.8s ease-in-out 4;
}
.ask-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a1406;
  color: #f5c518;
  font-size: 1.05rem;
}
@keyframes ask-in {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.ask-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100vw - 36px));
  height: min(480px, calc(100svh - 110px));
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.ask-panel[hidden] { display: none; }
.ask-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #14120c;
  color: #f6f1e4;
}
.ask-x {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}
.ask-log { flex: 1; overflow: auto; padding: 12px; display: grid; align-content: start; gap: 8px; }
.ask-log p { margin: 0; padding: 10px 12px; border-radius: 14px; max-width: 92%; }
.ask-log .bot { background: #fff; border: 1px solid var(--line); }
.ask-log .me { justify-self: end; background: #f5c518; color: #1a1406; }
.ask-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ask-chips button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.ask-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); }
.ask-form input {
  flex: 1;
  min-width: 0;
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.ask-form .btn { border: 0; cursor: pointer; }
footer.site {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 28px 96px;
  color: var(--muted);
  font-size: 0.92rem;
}
footer.site.legal {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.legal-links,
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.legal-links a,
.legal-links button,
.legal-meta span {
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  padding: 0 0.15rem 0 0;
}
.legal-links > * + *::before,
.legal-meta > * + *::before {
  content: "·";
  margin: 0 0.7rem 0 0.45rem;
  color: #b7ad9c;
  font-weight: 400;
}
.legal-note {
  margin: 2px 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}
.legal-meta { margin: 0; }
.legal-meta span {
  color: var(--muted);
  font-weight: 550;
  font-size: 0.82rem;
  cursor: default;
}
.legal-meta a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .legal-links > * + *::before,
  .legal-meta > * + *::before { content: none; margin: 0; }
  .legal-links, .legal-meta { gap: 6px 14px; }
}
footer.site.legal a { color: inherit; }
.legal-links a:hover,
.legal-links button:hover,
.legal-meta a:hover { color: #8a6410; }
.cookie-panel {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 108px;
  z-index: 90;
  max-width: 420px;
  margin: 0 auto;
  background: #12100c;
  color: #f6f1e4;
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.cookie-panel p { margin: 0; }
.cookie-actions { display: flex; gap: 8px; margin-top: 12px; }
.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  background: var(--signal);
  color: var(--signal-ink);
}
.cookie-actions button[data-cookie-close] {
  background: transparent;
  color: #f6f1e4;
}
@media (min-width: 720px) {
  footer.site:not(.legal) { padding-right: max(28px, calc(220px - max(0px, (100vw - 1100px) / 2))); }
}
@media (min-width: 861px) {
  .band-inner > .btn,
  .band-inner > .actions {
    margin-right: max(0px, calc(168px - max(0px, (100vw - 1100px) / 2)));
  }
}
@media (min-width: 861px) and (max-width: 970px) {
  /* Le menu passe sur deux lignes : le hero ne doit pas pousser Explorer sous l’écran. */
  .hero-wrap.cover { min-height: 100svh; }
  .nav { align-items: flex-start; }
}
@media (max-width: 860px) {
  .hero, .steps, .grid, .grid.three, .split, .start, .band-inner, .film, .walk, .sees, .facts { grid-template-columns: 1fr; }
  .facts article + article { border-left: 0; border-top: 1px solid var(--line); }
  .phone { justify-self: center; }
  .start .sum { order: -1; }
  .handset { height: 560px; }
  /* Sinon le nom, centré dans le téléphone, tombe sous la pastille. */
  .shot .callmid { margin: 22px 0 0; }
  .film-stage { order: -1; }
  .band-inner { display: grid; }
  .hero-wrap.cover { min-height: 0; background: #1c140c; }
  .hero-wrap.cover .hero-shade { display: none; }
  .hero-wrap.cover .hero-film {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: 58vw;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    order: 2;
  }
  .hero-wrap.cover .hero { order: 1; padding: 96px 22px 0; gap: 8px; }
  .hero-wrap.cover .hero h1 { font-size: 2.15rem; }
  .hero .btn.alt, .checks { display: none; }
  .hero-note { color: #f3ecdf; }
  .hero-wrap.cover .hero-film { height: 72vw; min-height: 260px; object-position: 62% center; }
  .ask { left: 14px; right: auto; bottom: 40px; }
  .hero-wrap.cover .explore { order: 3; align-self: flex-end; margin: 8px 18px 18px; }
  .nav.on-photo .go { display: none; }
  .nav.on-photo { flex-direction: row; align-items: center; gap: 14px; padding: 12px 16px; }
  .nav.on-photo nav { gap: 10px; }
  .nav.on-photo a { font-size: 0.86rem; }
  .hero h1 { max-width: none; font-size: 2.55rem; }
  .actions { margin-top: 16px; }
  .checks { margin-top: 14px; }
  .explore { margin-bottom: 12px; }
  .nav { align-items: flex-start; flex-direction: column; gap: 10px; }
}
.sheet { max-width: 440px; margin: 28px auto 80px; padding: 0 16px; }
.sheet label, .sheet fieldset { display: grid; gap: 6px; margin: 14px 0; font-weight: 650; }
.sheet input[type="text"], .sheet input:not([type="file"]):not([type="checkbox"]) {
  font: inherit;
  font-weight: 500;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.sheet legend { font-weight: 750; }
.sheet h1 { font-size: 2rem; letter-spacing: -0.04em; line-height: 1.05; margin: 8px 0; }
.choices { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.choices button, .states button, .switch button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.choices button.on, .states button.on, .switch button.on {
  background: #f5c518;
  border-color: #f5c518;
  color: #1a1406;
}
.fiche {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin: 12px 0;
}
.fiche header { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.fiche .tag {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a6410;
}
.fiche .porte-photo { width: 100%; height: auto; max-height: 220px; object-fit: cover; border-radius: 12px; margin-top: 10px; display: block; }
.fiche .links { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.fiche .links a { font-weight: 700; }
.states { display: flex; flex-wrap: wrap; gap: 6px; }
.switch { display: flex; gap: 8px; margin: 8px 0 16px; }
.desk { max-width: 720px; margin: 0 auto; padding: 28px 22px 96px; }
.glass .scene { inset: 0; padding: 8px; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .explore svg, .ring, .ring-avatar, .caret, .ask-btn { animation: none; }

  .glass .scene { transition: none; }
}
