/* ==========================================================================
   LAST MINUTE BOOKINGS — COMPONENT LAYER
   ==========================================================================

   This file is the design system: every component class the Elementor build
   applies via Advanced > CSS Classes.

   It does NOT define the brand tokens. Those live in the child theme's
   style.css, where three of them are bridged to Elementor's Global Colors so
   they stay editable from Site Settings. Do not add a :root block here.

   THE GOLDEN RULE
   Any Elementor element carrying a class from this file must have its Style
   tab left alone. Elementor writes per-widget CSS as .elementor-element-{id}
   at the same specificity as these classes, and it loads later, so anything
   set in the Style tab silently wins. Set the class, leave the styling here.
   ========================================================================== */

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* clears the sticky nav on anchor jumps */
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* Keyboard focus — visible everywhere, never removed */
:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -200%);
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Sections use a class, not a bare element selector, so page-specific
   spacing overrides never fight the base rule. */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 64px 0; }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: var(--bg-tint);
  border-bottom: 0.5px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.022em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 500; }

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; }

/* Mobile drawer trigger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: background 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  display: none;
  border-top: 0.5px solid var(--line);
  background: var(--bg);
  padding: 8px var(--gutter) 24px;
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  border-bottom: 0.5px solid var(--line);
}
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   5. TYPE PATTERNS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.h1 .accent {
  background: linear-gradient(180deg, #1d1d1f 0%, #6e6e73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 40px;
  letter-spacing: -0.012em;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-align: center;
  margin-bottom: 20px;
}
.section-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.45;
  letter-spacing: -0.012em;
}
.section-sub--last { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-row--left { justify-content: flex-start; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  letter-spacing: -0.01em;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { color: var(--ink-soft); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f0f0f3; }
.btn-sm { font-size: 14px; padding: 10px 20px; }

.btn-arrow::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(3px); }

/* Inline text link with the underline the nav links don't get */
.link {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.link:hover { border-color: var(--ink); }

/* --------------------------------------------------------------------------
   7. HERO — HOMEPAGE
   -------------------------------------------------------------------------- */
.hero { padding: 88px 0 88px; text-align: center; }

.hero-visual {
  margin-top: 48px;
  position: relative;
  padding: 0 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
}
/* Vertical overhang only. A negative horizontal inset here pushed the glow
   past the viewport on narrow screens and produced a horizontal scrollbar,
   which body { overflow-x: hidden } does not suppress. The gradient
   originates at the top, so nothing is lost visually. */
.glass-card-bg {
  position: absolute;
  inset: -40px 0;
  background: radial-gradient(ellipse at top, rgba(255, 0, 0, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* Openings list — used in the hero and on the client page */
.slot-list { display: flex; flex-direction: column; gap: 10px; position: relative; }
.slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--line);
  text-align: left;
  transition: transform 0.3s ease;
}
.slot:hover { transform: translateY(-1px); }
.slot-left { display: flex; align-items: center; gap: 14px; }
.slot-time {
  font-size: 14px; font-weight: 600; color: var(--ink);
  min-width: 64px; letter-spacing: -0.01em;
}
.slot-info { display: flex; flex-direction: column; gap: 2px; }
.slot-name { font-size: 14px; font-weight: 500; }
.slot-meta { font-size: 12px; color: var(--ink-faint); }
.slot-right { display: flex; align-items: center; gap: 12px; }
.slot-price { font-size: 14px; font-weight: 600; color: var(--ink); }
.slot-badge {
  font-size: 11px; font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-live     { background: var(--live-bg);     color: var(--live-ink); }
.badge-filled   { background: var(--filled-bg);   color: var(--filled-ink); }
.badge-discount { background: var(--discount-bg); color: var(--discount-ink); }

/* --------------------------------------------------------------------------
   8. PAGE HERO — INTERIOR PAGES
   -------------------------------------------------------------------------- */
.page-hero { padding: 72px 0 56px; text-align: center; }
.page-hero .h1 { font-size: clamp(36px, 5.6vw, 60px); }
.page-hero .hero-sub { margin-bottom: 32px; }
.page-hero--plain .hero-sub { margin-bottom: 0; }

.breadcrumbs {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { margin: 0 6px; }

/* --------------------------------------------------------------------------
   9. STEPS
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.steps::before {
  content: "";
  position: absolute;
  top: 5px; left: 12%; right: 12%;
  height: 1px;
  background: var(--line-strong);
}
.step { position: relative; padding-top: 32px; text-align: left; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--bg);
}
.section--soft .step::before {
  border-color: var(--bg-soft);
  box-shadow: 0 0 0 3px var(--bg-soft);
}
.step-title {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}
.step-body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* --------------------------------------------------------------------------
   10. AUDIENCE FORK — HOMEPAGE
   -------------------------------------------------------------------------- */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fork-card {
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fork-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.16);
}
.fork-kicker {
  font-size: 13px; font-weight: 600;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.fork-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.024em;
  margin-bottom: 14px;
}
.fork-body {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.55; margin-bottom: 24px;
}
.fork-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.fork-list li {
  font-size: 15px; color: var(--ink-soft);
  padding-left: 22px; position: relative;
}
.fork-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--filled-ink);
  font-size: 13px; font-weight: 700;
}
.fork-card .btn { margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------------------
   11. CALCULATOR
   -------------------------------------------------------------------------- */
.calc {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.calc-inputs {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  border: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-field { display: flex; flex-direction: column; gap: 10px; }
.calc-field label {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft); letter-spacing: -0.005em;
}
.calc-input-wrap {
  display: flex; align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0 16px; height: 52px;
  transition: background 0.2s ease;
}
.calc-input-wrap:focus-within { background: #eeeef0; }
.calc-prefix, .calc-suffix {
  font-size: 20px; font-weight: 500;
  color: var(--ink-faint); letter-spacing: -0.01em;
}
.calc-prefix { margin-right: 4px; }
.calc-suffix { margin-left: 6px; font-size: 15px; }
.calc-input-wrap input[type="number"] {
  flex: 1; border: none; background: transparent;
  font-size: 22px; font-weight: 600; font-family: inherit;
  color: var(--ink); letter-spacing: -0.02em;
  outline: none; width: 100%; min-width: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.calc-input-wrap input[type="number"]::-webkit-outer-spin-button,
.calc-input-wrap input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: #d2d2d7; border-radius: 4px;
  outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  background: var(--ink); border-radius: 50%;
  cursor: pointer; transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--ink); border-radius: 50%;
  cursor: pointer; border: none;
}

.calc-result {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: flex;
}
.calc-result::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent-glow), transparent 55%);
  pointer-events: none;
}
.calc-result-inner {
  position: relative; width: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-row {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: 14px 0;
}
.calc-row-big {
  padding: 22px 0 18px;
  flex-direction: column; align-items: flex-start; gap: 4px;
}
.calc-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); letter-spacing: -0.005em; }
.calc-label-big {
  font-size: 13px; color: #ff5a5a;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.calc-value { font-weight: 600; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.calc-small { font-size: 18px; color: rgba(255, 255, 255, 0.75); }
.calc-mid { font-size: 24px; }
.calc-big {
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(255, 0, 0, 0.45);
  font-weight: 700;
}
.calc-divider { height: 0.5px; background: rgba(255, 255, 255, 0.12); }
.calc-caption {
  font-size: 14px; color: rgba(255, 255, 255, 0.55);
  margin: 14px 0 24px; line-height: 1.5;
}
.calc-cta {
  background: #fff; color: var(--ink);
  align-self: flex-start; text-align: left; line-height: 1.3;
}
.calc-cta:hover { background: #f0f0f3; }
.calc-footnote {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 13px;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. HOW IT WORKS ILLUSTRATION
   -------------------------------------------------------------------------- */
.how-illustration {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
  margin: 0 auto;
  border: 2px solid var(--ink);
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   13. STAGES
   -------------------------------------------------------------------------- */
.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stage {
  padding: 32px 28px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-md);
}
.stage-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.tag-new  { background: var(--tag-new-bg);  color: var(--tag-new-ink); }
.tag-grow { background: var(--tag-grow-bg); color: var(--tag-grow-ink); }
.tag-est  { background: var(--tag-est-bg);  color: var(--tag-est-ink); }
.stage-title {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.018em; margin-bottom: 10px;
}
.stage-body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* --------------------------------------------------------------------------
   14. FEATURE GRID
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  padding: 30px 28px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-md);
}
.section--soft .feature { background: #fff; }
.feature-title {
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.016em; margin-bottom: 8px;
}
.feature-body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* Problem list — two columns of plain statements, no statistics */
.problems { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.problem-col {
  padding: 36px 32px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
}
.problem-col h3 {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.018em; margin-bottom: 20px;
}
.problem-col li {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.5;
  padding: 14px 0 14px 24px;
  border-bottom: 0.5px solid var(--line);
  position: relative;
}
.problem-col li:last-child { border-bottom: none; padding-bottom: 0; }
.problem-col li::before {
  content: "\2014";
  position: absolute; left: 0; top: 14px;
  color: var(--accent-text);
}

/* --------------------------------------------------------------------------
   15. CATEGORY CHIPS
   -------------------------------------------------------------------------- */
.categories {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  max-width: 780px; margin: 0 auto;
}
.category {
  font-size: 15px; font-weight: 500;
  padding: 10px 20px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.category--muted { color: var(--ink-faint); background: transparent; border-style: dashed; }

/* --------------------------------------------------------------------------
   16. PHONE MOCKUPS
   -------------------------------------------------------------------------- */
.phones {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.phones--4 { grid-template-columns: repeat(4, 1fr); }
.phones--3 { grid-template-columns: repeat(3, 1fr); max-width: 780px; }

.phone-step { display: flex; flex-direction: column; gap: 16px; }
.phone {
  border: 7px solid var(--ink);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.28);
}
.phone-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 12px 4px;
  font-size: 9px; font-weight: 600;
  color: var(--ink);
}
.phone-bar span:last-child { letter-spacing: 0.06em; }
.phone-head {
  padding: 6px 12px 10px;
  border-bottom: 0.5px solid var(--line);
  font-size: 11px; font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  position: relative;
}
.phone-head .phone-back {
  position: absolute; left: 12px; top: 6px;
  color: var(--ink-faint); font-weight: 400;
}
.phone-screen { padding: 12px; display: flex; flex-direction: column; gap: 9px; }

.p-filters { display: flex; gap: 5px; }
.p-chip {
  font-size: 8.5px; font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.p-chip.is-on { background: var(--ink); color: #fff; }

.p-label {
  font-size: 8.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink-faint);
}
.p-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  border: 0.5px solid var(--line);
  border-radius: 9px;
}
.p-row-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.p-title { font-size: 10px; font-weight: 600; letter-spacing: -0.01em; }
.p-meta { font-size: 8.5px; color: var(--ink-faint); }
.p-price { font-size: 10px; font-weight: 600; white-space: nowrap; }
.p-badge {
  font-size: 7.5px; font-weight: 700;
  padding: 2px 6px; border-radius: var(--radius-pill);
  letter-spacing: 0.03em; white-space: nowrap;
}
.p-btn {
  display: block; text-align: center;
  font-size: 10px; font-weight: 600;
  padding: 9px; border-radius: 9px;
  background: var(--ink); color: #fff;
}
.p-btn--quiet { background: var(--bg-soft); color: var(--ink); }
.p-hero {
  text-align: center;
  padding: 6px 0 2px;
}
.p-hero-amount {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.03em;
}
.p-hero-note { font-size: 8.5px; color: var(--ink-faint); margin-top: 2px; }
.p-check {
  width: 30px; height: 30px;
  margin: 6px auto 2px;
  border-radius: 50%;
  border: 1.5px solid var(--filled-ink);
  color: var(--filled-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.p-divider { height: 0.5px; background: var(--line); }
.p-kv { display: flex; justify-content: space-between; font-size: 9px; }
.p-kv span:first-child { color: var(--ink-faint); }
.p-kv span:last-child { font-weight: 600; }
.p-menu li {
  font-size: 10px; font-weight: 500;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--line);
  display: flex; justify-content: space-between;
}
.p-menu li:last-child { border-bottom: none; }
.p-menu li::after { content: "\203A"; color: var(--ink-faint); }

.phone-caption { text-align: left; }
.phone-caption strong {
  display: block;
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.016em; margin-bottom: 5px;
}
.phone-caption span { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* --------------------------------------------------------------------------
   17. WAITLIST PANEL
   -------------------------------------------------------------------------- */
.waitlist {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 0, 0, 0.28), transparent 50%);
  pointer-events: none;
}
.waitlist-eyebrow {
  font-size: 13px; font-weight: 600;
  color: #ff5a5a;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px; position: relative;
}
.waitlist-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.028em;
  margin-bottom: 16px; position: relative;
}
.waitlist-sub {
  font-size: 17px; color: rgba(255, 255, 255, 0.7);
  max-width: 500px; margin: 0 auto 36px;
  line-height: 1.5; position: relative;
}
.form-row {
  display: flex; gap: 10px;
  max-width: 460px; margin: 0 auto;
  position: relative;
}
.form-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 15px; font-family: inherit;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  outline: none;
  transition: background 0.2s ease;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.form-input:focus { background: rgba(255, 255, 255, 0.18); }
.form-btn {
  padding: 14px 24px;
  background: #fff; color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.form-btn:hover { transform: scale(1.03); }
.form-fine {
  margin-top: 18px; font-size: 13px;
  color: rgba(255, 255, 255, 0.5); position: relative;
}
.form-fine a { color: rgba(255, 255, 255, 0.75); text-decoration: underline; }

/* --------------------------------------------------------------------------
   18. BLOG
   -------------------------------------------------------------------------- */
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 48px;
}
.chip {
  font-size: 14px; font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.chip:hover { color: var(--ink); }
.chip.is-on { background: var(--ink); color: #fff; }

.post-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.post-featured:hover { box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.2); }
.post-thumb {
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
  min-height: 300px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.post-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(255, 0, 0, 0.08), transparent 60%);
}
.post-thumb-note {
  font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative;
}
.post-featured-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.post-meta {
  font-size: 13px; color: var(--ink-faint);
  margin-bottom: 14px; letter-spacing: -0.005em;
}
.post-meta .post-cat { color: var(--accent-text); font-weight: 600; }
.post-featured-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.026em; margin-bottom: 14px;
}
.post-excerpt {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.55; margin-bottom: 24px;
}

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  display: flex; flex-direction: column;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -26px rgba(0, 0, 0, 0.18); }
.post-card .post-thumb { min-height: 168px; }
.post-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card-title {
  font-size: 18px; font-weight: 600;
  line-height: 1.25; letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.post-card-excerpt {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.55; margin-bottom: 18px;
}
.post-card-more {
  margin-top: auto; font-size: 14px; font-weight: 500;
  color: var(--ink);
}

.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 56px;
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  border: 0.5px solid var(--line);
  padding: 0 14px;
}
.pagination .is-current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .is-disabled { color: var(--ink-faint); border-color: transparent; }

/* --------------------------------------------------------------------------
   19. ARTICLE / LONG FORM
   -------------------------------------------------------------------------- */
.article-head { padding: 64px 0 40px; text-align: center; }
.article-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.article-standfirst {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--ink-soft); line-height: 1.45;
  letter-spacing: -0.012em;
  max-width: 620px; margin: 0 auto 28px;
}
.article-byline {
  font-size: 14px; color: var(--ink-faint);
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.article-byline span { position: relative; }
.article-byline span + span::before { content: "\00B7"; margin-right: 10px; }

.prose { font-size: 19px; line-height: 1.65; letter-spacing: -0.01em; }
.prose > * + * { margin-top: 26px; }
.prose h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.024em;
  margin-top: 56px; margin-bottom: -6px;
}
.prose h3 {
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.018em;
  margin-top: 40px; margin-bottom: -10px;
}
.prose p { color: var(--ink); }
.prose a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.prose a:hover { border-color: var(--ink); }
.prose strong { font-weight: 600; }
.prose ul, .prose ol { padding-left: 4px; }
.prose li {
  position: relative; padding-left: 26px;
  margin-top: 12px; color: var(--ink);
}
.prose ul > li::before {
  content: "";
  position: absolute; left: 4px; top: 13px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-faint);
}
.prose ol { counter-reset: prose-ol; }
.prose ol > li { counter-increment: prose-ol; }
.prose ol > li::before {
  content: counter(prose-ol) ".";
  position: absolute; left: 0; top: 0;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}
.prose blockquote {
  padding-left: 24px;
  border-left: 2px solid var(--accent-text);
  font-size: 22px; line-height: 1.45;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.prose hr { border: none; height: 0.5px; background: var(--line); margin: 48px 0; }
.prose figure { margin-top: 40px; }
.prose figcaption {
  font-size: 14px; color: var(--ink-faint);
  margin-top: 12px; text-align: center;
}

.article-footer {
  margin-top: 56px; padding-top: 32px;
  border-top: 0.5px solid var(--line);
  font-size: 15px; color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   20. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-switch {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.faq-switch a {
  font-size: 14px; font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
}
.faq-switch a.is-on { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

.faq-group { max-width: 760px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 56px; }
.faq-group-title {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint);
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--line);
  margin-bottom: 4px;
}
.faq-item { border-bottom: 0.5px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; text-align: left;
  padding: 22px 0;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.016em;
  color: var(--ink);
}
.faq-q:hover { color: var(--ink-soft); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative; margin-top: 3px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  background: var(--ink-soft);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 13px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 13px; transform: translate(-50%, -50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  display: none;
  padding: 0 40px 26px 0;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); letter-spacing: -0.008em;
}
.faq-a.is-open { display: block; }
.faq-a > * + * { margin-top: 14px; }
.faq-a a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.faq-a li { padding-left: 20px; position: relative; margin-top: 8px; }
.faq-a li::before {
  content: "";
  position: absolute; left: 2px; top: 11px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   21. FORMS — CONTACT
   -------------------------------------------------------------------------- */
.form-card {
  max-width: 640px; margin: 0 auto;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.field label {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft); letter-spacing: -0.005em;
}
.field .req { color: var(--accent-text); }
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit; font-size: 16px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 0.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236e6e73' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: #fff; border-color: var(--ink);
}
.field-hint { font-size: 13px; color: var(--ink-faint); }
.form-card .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 13px; color: var(--ink-faint);
  text-align: center; margin-top: 18px; line-height: 1.5;
}

.contact-aside { max-width: 640px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  padding: 26px 24px;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.contact-card h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.016em; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* --------------------------------------------------------------------------
   22. LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-notice {
  max-width: var(--container-narrow);
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: var(--discount-bg);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--discount-ink);
  line-height: 1.55;
}
.legal-toc {
  padding: 24px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  margin-bottom: 48px;
}
.legal-toc h2 {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint); margin-bottom: 14px;
}
.legal-toc li { margin-top: 8px; }
.legal-toc a { font-size: 16px; color: var(--ink); }
.legal-toc a:hover { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   23. 404
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 62vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.error-code {
  font-size: 15px; font-weight: 600;
  color: var(--accent-text);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.error-links {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 32px;
}

/* --------------------------------------------------------------------------
   24. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  padding: 64px 0 40px;
  border-top: 0.5px solid var(--line);
  background: var(--bg);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-tagline {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.55; max-width: 260px;
}
.footer-col h2 {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   25. ANIMATION
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .logo-dot { animation: none; }
}

/* --------------------------------------------------------------------------
   26. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .nav-links { gap: 20px; }
  .phones--4 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .post-featured { grid-template-columns: 1fr; }
  .post-thumb { min-height: 220px; }
  .fork { grid-template-columns: 1fr; }
  .problems { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 56px 0 40px; }
  .page-hero { padding: 48px 0 40px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .stages, .features { grid-template-columns: 1fr; }
  .waitlist { padding: 48px 28px; }
  .form-row { flex-direction: column; }
  .calc { grid-template-columns: 1fr; gap: 16px; }
  .calc-inputs, .calc-result { padding: 28px 24px; }
  .glass-card { padding: 18px; }
  .slot { padding: 12px 14px; }
  .slot-meta { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .phones--3 { grid-template-columns: 1fr; max-width: 340px; }
  .phones--4 { grid-template-columns: 1fr; max-width: 340px; }
  .post-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-card { padding: 32px 24px; }
  .contact-aside { grid-template-columns: 1fr; }
  .fork-card { padding: 32px 26px; }
  .problem-col { padding: 28px 24px; }
  .prose { font-size: 18px; }
  .article-head { padding: 40px 0 32px; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .faq-q { font-size: 17px; }
  .faq-a { padding-right: 0; }
}
