/* ============================================================
   Calenbooking — Landing page styles
   Tokens & base components come from /style.css
   Only page-specific styles here.
   ============================================================ */

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,250,0.72);
  backdrop-filter: saturate(1.8) blur(14px);
  -webkit-backdrop-filter: saturate(1.8) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
}
.nav-links a:hover { background: rgba(0,0,0,0.04); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-signin { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 8px 12px; }
.lang-switch { display: inline-flex; gap: 2px; margin-left: 4px; font-size: 13px; color: var(--muted); }
.lang-switch a { padding: 4px 8px; border-radius: 6px; }
.lang-switch a.active { color: var(--ink); font-weight: 600; background: rgba(0,0,0,0.05); }
@media (max-width: 780px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -100px 0 0 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(37,162,68,0.06), transparent 70%),
    radial-gradient(800px 400px at 50% 10%, rgba(10,10,10,0.04), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero h1 { margin-top: 22px; }
.hero .sub {
  margin: 22px auto 0; max-width: 600px;
  font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.55; color: var(--muted);
}
.hero-ctas {
  margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.hero-meta {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap; justify-content: center;
}
.hero-meta .check { color: var(--accent); }
.hero-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- Mockup: browser chrome + site context + real widget ---------- */
.cal-stage {
  position: relative;
  margin: 56px auto 0;
  max-width: 1040px;
  padding: 0 8px;
}
.cal-stage::after {
  content: "";
  position: absolute; left: 10%; right: 10%; bottom: -30px; height: 80px;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.18), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.cal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfbfb);
}
.cal-head .dots { display: flex; gap: 6px; }
.cal-head .dots i { width: 10px; height: 10px; border-radius: 50%; background: #e2e2e2; }
.cal-head .dots i:nth-child(1) { background: #fc6259; }
.cal-head .dots i:nth-child(2) { background: #fdbe3b; }
.cal-head .dots i:nth-child(3) { background: #28c940; }
.cal-head .url {
  flex: 0 1 420px;
  background: #f2f2f2;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.cal-head .tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted);
}
.cal-head .tag .live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,162,68,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(37,162,68,0.22); }
  50% { box-shadow: 0 0 0 6px rgba(37,162,68,0.08); }
}

/* Gîte website mock inside browser chrome */
.site-body { background: #fff; }

.site-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line-2);
}
.site-logo { font-weight: 700; font-size: 15px; letter-spacing: 0; color: var(--ink); }
.site-menu { display: flex; gap: 22px; font-size: 13.5px; color: var(--muted); }
.site-menu span.active { color: var(--ink); font-weight: 500; }

.site-hero-block {
  padding: 36px 24px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid var(--line-2);
}
.site-hero-block h3 { font-size: 22px; margin-bottom: 6px; letter-spacing: 0; }
.site-hero-block p { font-size: 14px; color: var(--muted); }

/* The actual embed widget mockup — matches the real /embed widget */
.widget-mock {
  margin: 22px auto;
  max-width: 680px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.widget-row-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px; gap: 10px; flex-wrap: wrap;
}
.widget-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.widget-tab {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.widget-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.widget-lang { display: flex; gap: 4px; flex-shrink: 0; }
.lg-pill {
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight: 500; color: var(--muted);
}
.lg-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.widget-month {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.widget-month-title { font-size: 15px; font-weight: 700; letter-spacing: 0; color: var(--ink); }
.widget-month-title .year { color: var(--muted-2); font-weight: 500; margin-left: 4px; }
.widget-nav { display: flex; gap: 5px; }
.widget-nav button {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 12px;
  color: var(--ink-2);
  display: inline-grid; place-items: center;
}

.widget-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.widget-dow span {
  font-size: 10px; font-weight: 600; color: var(--muted);
  text-align: center; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 2px 0;
}

.widget-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 12px; }
.widget-day {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  min-height: 24px;
}
.widget-day.empty { background: transparent; border-color: transparent; }
.widget-day.past {
  color: var(--muted-2);
  background: #fafafa;
  border-color: var(--line-2);
}
.widget-day.blocked {
  background: repeating-linear-gradient(135deg, #eeeeee 0 6px, #f6f6f6 6px 12px);
  color: var(--muted-2);
  border-color: #e6e6e6;
  text-decoration: line-through;
}
.widget-day.range-start, .widget-day.range-end {
  background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 600;
}
.widget-day.range-mid { background: var(--ink-2); color: #fff; border-color: var(--ink-2); border-radius: 0; }
.widget-day.range-start { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.widget-day.range-end { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.widget-day.today::after {
  content: ""; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
.widget-day.range-mid.today::after,
.widget-day.range-start.today::after,
.widget-day.range-end.today::after { background: #fff; }

.widget-legend {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  font-size: 11px; color: var(--muted);
  margin-bottom: 10px;
}
.widget-legend .legend-item { display: inline-flex; align-items: center; gap: 5px; }
.widget-legend .lg-swatch {
  width: 13px; height: 13px;
  border-radius: 3px;
  border: 1px solid var(--line);
  display: inline-block;
}
.widget-legend .lg-swatch.avail { background: #fff; }
.widget-legend .lg-swatch.blocked {
  background: repeating-linear-gradient(135deg, #eeeeee 0 4px, #f6f6f6 4px 8px);
}
.widget-legend .lg-swatch.selected { background: var(--ink); border-color: var(--ink); }

.widget-cta-bar {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.widget-sel-info { font-size: 12.5px; color: var(--muted); flex: 1; min-width: 160px; }
.widget-sel-info strong { color: var(--ink); font-weight: 600; }
.widget-cta-btn {
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600;
  cursor: default;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .cal-head .url { display: none; }
  .site-menu { display: none; }
  .site-hero-block { padding: 24px 16px 16px; }
  .widget-mock { margin: 16px; padding: 14px; }
}

/* ---------- Trust logos ---------- */
.trust { padding: 70px 0 40px; text-align: center; }
.trust p {
  font-size: 13px; color: var(--muted); letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 500;
}
.trust-row {
  margin-top: 22px; display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap; opacity: 0.85;
}
.logo-word {
  font-size: 22px; font-weight: 700; letter-spacing: 0; color: #2a2a2a;
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-word .d { color: var(--accent); }
.trust-sub {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
}

/* ---------- Section shared ---------- */
section.pad { padding: 96px 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head .section-kicker { display: block; margin-bottom: 14px; }
.sec-head p { margin-top: 16px; font-size: 17px; }

/* ---------- Features ---------- */
.features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feat {
  background: #fff;
  padding: 34px;
  display: flex; gap: 18px;
  transition: background .2s ease;
}
.feat:hover { background: #fbfbfb; }
.feat .ic {
  flex: 0 0 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-size: 20px;
}
.feat h3 { font-size: 18px; margin-bottom: 6px; font-weight: 600; letter-spacing: 0; }
.feat p { font-size: 14.5px; line-height: 1.55; }
@media (max-width: 780px) { .features { grid-template-columns: 1fr; } .feat { padding: 26px; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  min-width: 0;
}
.step .num {
  position: absolute; top: 20px; right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted-2);
  letter-spacing: 0.1em;
}
.step .ic-step {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-soft); display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--ink);
}
.step h3 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.step p { font-size: 14.5px; overflow-wrap: break-word; }
.step .demo {
  margin-top: 18px; padding: 12px 14px;
  background: #0e0e0e; color: #d4d4d4;
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.step .demo .k { color: #8bc8ff; }
.step .demo .g { color: #8fd4a3; }
.step .demo .cmt { color: #7a7a7a; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  /* On mobile, wrap demo content instead of horizontal scroll */
  .step .demo {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    overflow-x: visible;
  }
}

/* ---------- Pricing — Lifetime hero card ---------- */
.pricing-lifetime {
  max-width: 520px; margin: 0 auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
}
.pricing-lifetime .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-lifetime .name {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.pricing-lifetime .amt {
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
  margin-bottom: 8px;
}
.pricing-lifetime .amt .val {
  font-size: 64px; font-weight: 800; letter-spacing: 0; line-height: 1;
  color: var(--ink);
}
.pricing-lifetime .amt .unit { font-size: 14px; color: var(--muted); }
.pricing-lifetime .desc { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.pricing-lifetime ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.pricing-lifetime ul li {
  display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2);
}
.pricing-lifetime ul li .ch { color: var(--accent); flex-shrink: 0; margin-top: 2px; font-weight: 700; }

.founder-note {
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--accent-soft);
  border: 1px solid #bfe4ca;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #1f7a35;
  text-align: center;
  line-height: 1.5;
}
.founder-note strong { font-weight: 700; }

.pricing-note {
  text-align: center; margin-top: 28px; font-size: 13.5px; color: var(--muted);
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ---------- Sites offer ---------- */
.sites-section {
  background: linear-gradient(180deg, transparent, #f4f4f4 30%, transparent);
}
.sites-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.sites-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
}
.sites-grid h2 { margin-bottom: 16px; }
.sites-grid p { font-size: 16px; margin-bottom: 20px; }
.sites-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  font-size: 14.5px;
}
.sites-table th {
  background: var(--bg-soft);
  text-align: left; padding: 14px 16px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line);
}
.sites-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
}
.sites-table tr:last-child td { border-bottom: 0; }
.sites-table td.price { font-weight: 700; color: var(--ink); }
.sites-options {
  display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}
.sites-options .opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--bg-soft); border-radius: var(--radius-pill);
}
@media (max-width: 900px) {
  .sites-wrap { padding: 28px; }
  .sites-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Testimonial ---------- */
.testi {
  padding: 96px 0;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(37,162,68,0.05), transparent 60%),
    var(--bg);
}
.quote-box { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 64px; line-height: 0.6;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.quote-box blockquote {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--ink);
}
.quote-author {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #d8b388, #b68a66);
  color: #fff; font-weight: 600; font-size: 14px;
  display: inline-grid; place-items: center;
}
.quote-author b { color: var(--ink-2); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0; }
.faq summary {
  list-style: none;
  padding: 24px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 17px; font-weight: 500; color: var(--ink-2);
  cursor: pointer;
  letter-spacing: 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-grid; place-items: center;
  font-size: 14px; color: var(--ink-2);
  transition: transform .25s ease, background .15s ease;
  flex-shrink: 0;
}
.faq details[open] summary .pm {
  transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink);
}
.faq .ans {
  padding: 0 4px 24px;
  font-size: 15px; line-height: 1.6; color: var(--muted);
  max-width: 680px;
}

/* ---------- Final CTA ---------- */
.final { padding: 96px 0 96px; }
.final-card {
  background: #0a0a0a;
  color: #fff;
  border-radius: 28px;
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 100%);
}
.final-card::after {
  content: ""; position: absolute; left: 50%; top: -120px;
  width: 600px; height: 600px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37,162,68,0.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.final-card > * { position: relative; z-index: 1; }
.final-card h2 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 60px);
  letter-spacing: 0;
}
.final-card p {
  color: rgba(255,255,255,0.66); margin: 18px auto 0;
  max-width: 520px; font-size: 17px;
}
.final-card .cta-row {
  margin-top: 34px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f2f2f2; }
.btn-ghost {
  color: #fff; border: 1px solid rgba(255,255,255,0.22); background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* ---------- Footer ---------- */
footer { padding: 56px 0 40px; border-top: 1px solid var(--line); }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 6px; flex-wrap: wrap; }
.foot-links a { font-size: 14px; color: var(--muted); padding: 6px 10px; border-radius: 6px; }
.foot-links a:hover { color: var(--ink); }
.foot-cr { font-size: 13px; color: var(--muted); }
.foot-cr .heart { color: #e04545; }

/* ---------- Waitlist modal ---------- */
.waitlist-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s ease;
}
.waitlist-overlay.open { display: flex; opacity: 1; }
.waitlist-modal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  padding: 36px 32px 32px;
  position: relative;
  text-align: center;
  animation: waitlist-in .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes waitlist-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.waitlist-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-grid; place-items: center;
  font-size: 16px; color: var(--ink-2);
  cursor: pointer;
  line-height: 1;
}
.waitlist-close:hover { background: var(--bg-soft); }
.waitlist-modal h3 {
  font-size: 22px;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: var(--ink);
}
.waitlist-modal .waitlist-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}
.waitlist-modal input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.waitlist-modal input[type="email"]:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.waitlist-error {
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 10px;
  text-align: left;
}
.waitlist-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.waitlist-actions .btn { width: 100%; }
.waitlist-fine {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.waitlist-success-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 24px;
  font-weight: 700;
}
.waitlist-modal .waitlist-success-msg {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}
.waitlist-modal .waitlist-success-msg strong { color: var(--ink); font-weight: 600; }
@media (max-width: 480px) {
  .waitlist-modal { padding: 32px 22px 24px; }
  .waitlist-modal h3 { font-size: 20px; }
}

/* === Honest proof — replaces fake testimonial === */
.honest-proof {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, transparent, #f9f9f9 50%, transparent);
}
.honest-proof .proof-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.honest-proof .proof-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.honest-proof .proof-num {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Onest', sans-serif;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1;
}
.honest-proof .proof-label {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.honest-proof .proof-divider {
  width: 1px;
  height: 32px;
  background: var(--muted-2);
  opacity: 0.3;
}
.honest-proof .proof-honest {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-2);
  font-style: italic;
  margin: 32px auto 0;
  max-width: 680px;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .honest-proof .proof-row { grid-template-columns: 1fr; }
  .honest-proof .proof-divider { width: 32px; height: 1px; }
}

/* === Competitive anchoring in pricing === */
.pricing-vs {
  max-width: 580px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.pricing-vs-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin: 0 0 16px;
  text-align: center;
}
.pricing-vs-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-vs .vs-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.pricing-vs .vs-row-comp {
  background: transparent;
  color: var(--ink-2);
}
.pricing-vs .vs-row-self {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}
.pricing-vs .vs-name { text-align: left; }
.pricing-vs .vs-price { text-align: center; font-variant-numeric: tabular-nums; }
.pricing-vs .vs-cumul { text-align: right; font-size: 13px; color: var(--ink-2); }
.pricing-vs-note {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 16px 0 0;
  text-align: center;
}
@media (max-width: 560px) {
  .pricing-vs .vs-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .pricing-vs .vs-cumul {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 4px;
  }
}

/* === Product switcher (nav) === */
.product-switcher {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 2px;
}
.product-switcher .ps-tab {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.product-switcher .ps-tab:hover { color: var(--ink); }
.product-switcher .ps-tab.active {
  background: #ffffff;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1080px) {
  .product-switcher .ps-tab { font-size: 12px; padding: 5px 11px; }
}
@media (max-width: 920px) {
  /* Hide nav-links to keep room for switcher and lang/CTA */
  .nav-links { display: none; }
}

/* === Mobile burger menu === */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease;
}
.nav-burger:hover { background: var(--bg-soft); }
.nav-burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.nav-burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.nav-burger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed; inset: 0;
  background: rgba(250,250,250,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 90;
  padding: 88px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  overflow-y: auto;
}
.nav-mobile-menu.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-menu .product-switcher {
  width: 100%;
  display: flex;
  padding: 6px;
}
.nav-mobile-menu .product-switcher .ps-tab {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 14.5px;
}
.nav-mobile-menu .nav-links {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu .nav-links a {
  padding: 14px 16px;
  font-size: 17px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--line-2);
}
.nav-mobile-menu .nav-links a:last-child { border-bottom: 0; }
.nav-mobile-menu .lang-switch {
  display: inline-flex !important;
  margin: 0;
  font-size: 14px;
  align-self: flex-start;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 4px;
}
.nav-mobile-menu .lang-switch a {
  padding: 8px 16px;
  font-size: 13.5px;
}
.nav-mobile-menu .nav-mobile-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-menu .nav-mobile-cta .btn { width: 100%; }
body.nav-menu-open { overflow: hidden; }

@media (max-width: 720px) {
  /* Hide desktop product switcher, lang switch, CTA — burger menu replaces them */
  .nav-inner > .product-switcher { display: none; }
  .nav-inner > .nav-cta .lang-switch { display: none; }
  .nav-inner > .nav-cta .btn-sm { padding: 0 12px; font-size: 13.5px; }
  .nav-burger { display: inline-block; }
  .nav-inner { gap: 10px; padding: 12px 16px; }
  .nav-inner > .logo img { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile-menu, .nav-burger span { transition: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   Early access section (Calenbooking Widget — opening fall 2026)
   ============================================================ */
.early-access-section {
  background: linear-gradient(180deg, transparent, var(--bg-soft) 30%, transparent);
  padding-top: 80px;
  padding-bottom: 80px;
}
.early-access-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow);
  max-width: 1100px;
  margin: 0 auto;
}
.early-access-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.early-access-copy h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: var(--ink);
}
.early-access-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.early-access-copy p strong { color: var(--ink); font-weight: 600; }
.early-access-copy .btn { margin-bottom: 14px; }
.early-access-fine {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.early-access-visual {
  display: flex;
  justify-content: center;
}
/* Compact widget mockup for the early access visual */
.cal-compact {
  max-width: 380px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cal-compact .cal-head { padding: 10px 14px; }
.cal-compact .cal-head .url { font-size: 12px; }
.cal-compact .cal-head .tag { font-size: 11.5px; }
.cal-compact .site-body { background: #fff; padding: 0; }
.cal-compact .widget-mock { padding: 14px; }
.cal-compact .widget-month { margin-bottom: 8px; }
.cal-compact .widget-month-title { font-size: 13.5px; }
.cal-compact .widget-dow span { font-size: 10.5px; padding: 4px 0; }
.cal-compact .widget-grid { gap: 3px; margin-bottom: 0; }
.cal-compact .widget-day { font-size: 12px; padding: 4px 0; min-height: 28px; }

@media (max-width: 880px) {
  .early-access-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .early-access-copy h2 { font-size: 26px; }
  .early-access-visual { order: -1; }
}
@media (max-width: 520px) {
  .early-access-section { padding-top: 50px; padding-bottom: 50px; }
  .early-access-card { padding: 24px; }
  .early-access-copy h2 { font-size: 22px; }
}
