/* CarpSync Next — dark mode · green accent */
:root {
  --bg-page: #000000;
  --bg-hero: #0c0c0c;
  --bg-card: #161616;
  --bg-subtle: #1f1f1f;
  --bg-elevated: #161616;
  --ink: #fafafa;
  --ink-soft: #e5e5e5;
  --accent: #5ce65c;
  --accent-strong: #2db82d;
  --accent-light: #c8ff6a;
  --accent-pale: rgba(92, 230, 92, 0.1);
  --accent-line: rgba(92, 230, 92, 0.28);
  --text: var(--ink);
  --muted: #8e8e93;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --radius: 10px;
  --radius-sm: 8px;
  --font-sans: "Inter", "Outfit", system-ui, sans-serif;
  --font-display: "Inter", "Outfit", system-ui, sans-serif;
  --max: 1060px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gradient: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-strong) 100%);
  /* legacy names → green accent system */
  --gold: var(--accent);
  --gold-mid: var(--accent-strong);
  --gold-bright: var(--accent-light);
  --gold-pale: var(--accent-pale);
  --gold-line: var(--accent-line);
  --gold-glow: rgba(92, 230, 92, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--bg-page);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

a:hover {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Dark backdrop with green glow */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 50% -15%, rgba(92, 230, 92, 0.08), transparent 52%),
    linear-gradient(180deg, #000000 0%, var(--bg-page) 40%, #0c0c0c 100%);
}

.bg-mesh::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.022;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.1);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
}

.lang-switch__btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 9px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.lang-switch__btn:hover {
  color: var(--ink);
  background: var(--bg-card);
}

.lang-switch__btn.is-active {
  color: var(--ink);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  height: clamp(36px, 4vw, 44px);
  width: auto;
}

.logo-mark {
  display: none;
}

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

.nav-main a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 10px;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--ink);
  background: var(--accent-pale);
}

.nav-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
}

@media (max-width: 860px) {
  .header-end {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 22px 22px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav-main.is-open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

/* Buttons — minimal rectangular (no pill / gold gradient) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.3;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gradient);
  color: #000000;
  border-color: rgba(92, 230, 92, 0.85);
  box-shadow: 0 0 24px rgba(92, 230, 92, 0.18);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, #fff 12%);
  border-color: var(--accent);
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(92, 230, 92, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--accent-pale);
  border-color: var(--accent-line);
  color: var(--ink);
}

/* Text-style CTA (optional) */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border: none;
  background: none;
  border-bottom: 1.5px solid rgba(22, 21, 19, 0.25);
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-text:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Karp Studio credit */
.studio-line {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.studio-line strong {
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.footer-studio {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 8px;
  margin-top: 8px;
}

.footer-studio p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.45);
}

.footer-studio strong {
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.2em;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

/* Hero — dark brand band with green accent */
.hero {
  padding: 36px 0 72px;
  text-align: center;
  position: relative;
  background: linear-gradient(
    165deg,
    #0c0c0c 0%,
    #000000 42%,
    #0c0c0c 100%
  );
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(520px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 6px;
  margin-bottom: 0;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px auto 18px;
  max-width: 14ch;
  color: var(--ink);
  text-shadow: none;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.hero-meta strong {
  color: var(--ink);
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* Cards & grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.icon-dot {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent-pale), var(--bg-card));
  border: 1px solid var(--accent-line);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: var(--accent);
}

/* Section titles */
.section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split-visual {
  background: linear-gradient(165deg, var(--bg-subtle) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.mock-ui {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.mock-ui .line {
  margin-bottom: 8px;
}

.mock-ui .accent {
  color: var(--accent);
}

/* CTA band */
.cta-band {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 22px 28px;
  margin-top: 40px;
  background: linear-gradient(180deg, var(--bg-hero) 0%, var(--bg-page) 100%);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  max-width: 300px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250, 250, 250, 0.45);
  margin: 0 0 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 450;
}

.footer-col a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.8rem;
  color: rgba(250, 250, 250, 0.48);
  letter-spacing: 0.03em;
}

/* Page hero */
.page-hero {
  padding: 40px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

.feature-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.check {
  color: var(--gold);
  font-weight: 700;
}

/* Pricing */
.price-card {
  text-align: center;
  padding: 40px 28px;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--gold);
  margin: 8px 0;
}

.price-card .period {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Contact form */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 480px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Timeline */
.timeline {
  border-left: 1px solid var(--gold-line);
  margin-left: 14px;
  padding-left: 32px;
}

.timeline-step {
  position: relative;
  padding-bottom: 36px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3b82f6, var(--accent));
  box-shadow:
    0 0 0 3px var(--bg-page),
    0 2px 10px rgba(37, 99, 235, 0.22);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* France · bilingual panel */
.section-fr {
  padding: 56px 0;
}

.fr-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 28px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .fr-panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

.fr-flag {
  flex-shrink: 0;
}

.fr-flag svg {
  display: block;
  width: 56px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(22, 21, 19, 0.08);
}

.fr-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.fr-content h3.fr-subhead {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-top: 1.35rem;
  margin-bottom: 10px;
}

.fr-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.fr-lead-fr {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-style: italic;
}

.fr-lead-en {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.fr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fr-list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.fr-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Pricing vs SaaS */
.section-pricing {
  padding: 56px 0 48px;
}

.price-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .price-compare {
    grid-template-columns: 1fr;
  }
}

.price-col {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.price-col--muted {
  background: var(--bg-subtle);
  opacity: 0.95;
}

.price-col h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.price-col p,
.price-col li {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-col ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
}

.price-col--highlight {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-md);
  background: linear-gradient(165deg, var(--bg-subtle) 0%, var(--bg-card) 100%);
}

.price-col--highlight h3 {
  color: var(--ink);
}

.price-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

/* V2 roadmap strip */
.v2-strip {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px dashed var(--accent-line);
  background: rgba(37, 99, 235, 0.04);
}

.v2-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: center;
  text-align: center;
}

.v2-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg-card);
}

.v2-strip p {
  margin: 0;
  flex: 1;
  min-width: 240px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.v2-strip strong {
  color: var(--ink);
  font-weight: 600;
}

/* Entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero-badge,
  .studio-line,
  .hero h1,
  .hero-lead,
  .hero-cta {
    animation: rise 0.9s var(--ease) backwards;
  }

  .studio-line {
    animation-delay: 0.05s;
  }

  .hero-badge {
    animation-delay: 0.1s;
  }

  .hero h1 {
    animation-delay: 0.18s;
  }

  .hero-lead {
    animation-delay: 0.28s;
  }

  .hero-cta {
    animation-delay: 0.38s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Coming soon landing */
.coming-soon-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-header .coming-soon-header-inner {
  justify-content: space-between;
}

.coming-soon-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 32px 0 48px;
}

.coming-soon-shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.coming-soon-hero {
  width: 100%;
  max-width: 26rem;
  margin: 0;
  text-align: center;
}

.coming-soon-hero .coming-soon-studio,
.coming-soon-hero .studio-line {
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.coming-soon-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.coming-soon-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.coming-soon-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.coming-soon-hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-footer {
  padding: 18px 22px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: auto;
  background: rgba(22, 22, 22, 0.5);
  width: 100%;
  box-sizing: border-box;
}

.coming-soon-footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(250, 250, 250, 0.45);
  text-align: center;
  width: 100%;
}

/* Phase 2 — homepage availability strip */
.availability-strip-section {
  padding-top: 0;
}

.availability-strip__lead {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 52ch;
}

.availability-strip.card {
  padding: 1.35rem 1.5rem;
}

.availability-strip__meta {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.availability-strip__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.availability-strip__cta {
  margin-top: 0.25rem;
}

.demo-calendar--loading .demo-calendar__head {
  margin-bottom: 14px;
}

.demo-calendar--ready {
  animation: demo-calendar-fade 0.35s ease-out both;
}

@keyframes demo-calendar-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-calendar--ready {
    animation: none;
  }

  .demo-calendar__skeleton-line,
  .demo-calendar__skeleton-btn {
    animation: none;
  }
}

.demo-calendar__skeleton-line {
  margin: 0;
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--ink) 6%, transparent),
    color-mix(in srgb, var(--ink) 12%, transparent),
    color-mix(in srgb, var(--ink) 6%, transparent)
  );
  background-size: 200% 100%;
  animation: demo-calendar-shimmer 1.8s ease-in-out infinite;
}

.demo-calendar__skeleton-line--short {
  width: 72%;
  height: 12px;
}

.demo-calendar__skeleton-line--tiny {
  width: 48%;
  height: 10px;
  margin-top: 8px;
}

.demo-calendar__skeleton-line--head {
  width: min(320px, 70%);
  height: 16px;
}

.demo-calendar__skeleton-btn {
  display: inline-block;
  width: 168px;
  height: 38px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  animation: demo-calendar-shimmer 1.8s ease-in-out infinite;
}

@keyframes demo-calendar-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.demo-calendar__card--skeleton {
  pointer-events: none;
}

.demo-calendar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.demo-calendar__head p {
  margin: 0;
  color: var(--muted);
}

.demo-calendar__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.demo-calendar__card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  padding: 12px;
}

.demo-calendar__week {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
}

.demo-calendar__meta {
  margin: 4px 0 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.demo-calendar__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--bg-subtle);
  overflow: hidden;
}

.demo-calendar__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--ink) 22%, transparent),
    color-mix(in srgb, var(--accent) 42%, transparent)
  );
}

.demo-calendar__status {
  margin: 8px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}
