/* Rather.ai — design system
   Type: Inter (UI) + JetBrains Mono (code/labels)
   Color: navy #0a2540 primary · green #00b464 accent · warm off-white #fafaf6
   No gradients. Generous whitespace. Structured hairlines. */

:root {
  --ink: #0a2540;
  --ink-2: #1a2a44;
  --body: #36425a;
  --muted: #6b7280;
  --hair: #e6e3dc;
  --paper: #fafaf6;
  --paper-2: #f2efe7;
  --card: #ffffff;
  --green: #00b464;
  --green-soft: #d7f0e1;
  --green-ink: #007a44;
  --pink: #ffd6d6;
  --peach: #ffe8c9;
  --sky: #d7e9ff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 0 rgba(10,37,64,0.04), 0 4px 12px rgba(10,37,64,0.04);
  --shadow-md: 0 2px 0 rgba(10,37,64,0.04), 0 18px 40px rgba(10,37,64,0.08);
  --shadow-lift: 0 30px 60px rgba(10,37,64,0.14);

  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 40px; }
body {
  font-family: var(--f-sans);
  color: var(--body);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; font-weight: 800; color: var(--green-ink); letter-spacing: -0.02em; }

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.02em; }
.muted { color: var(--muted); }
.down { color: var(--green-ink); font-weight: 600; }

/* ── Logo ───────────────────────────────────────────── */
.logo-mark {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--ink);
  position: relative;
  display: inline-block;
  flex: none;
}
.logo-mark::before, .logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
}
.logo-mark::before {
  background: var(--green);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.logo-mark::after {
  background: #3a7dff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.85;
}
.logo-word {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-dot { color: var(--green-ink); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--primary:hover { background: #0d2f52; }
.btn--paper { background: var(--paper-2); border-color: var(--paper-2); color: var(--ink); }
.btn--paper:hover { background: #e7e3d8; border-color: #e7e3d8; }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost-on-dark { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost-on-dark:hover { background: rgba(255,255,255,0.06); }
.btn--lg { font-size: 15px; padding: 14px 22px; }
.btn--block { width: 100%; }

/* ── Tags / Eyebrows ────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2); color: var(--ink-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tag--green { background: var(--green-soft); color: var(--green-ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-2);
  background: var(--card);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); display: inline-block; }
.dot--green { background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }

.section__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--green-ink);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.section__eyebrow--light { color: rgba(255,255,255,0.7); }
.section__title {
  font-weight: 800;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 14px;
}
.section__sub {
  font-size: 17px;
  color: var(--body);
  max-width: 640px;
  margin: 0;
}
.section__sub--aside { max-width: 380px; align-self: end; text-align: right; }
.section__head { max-width: 1040px; margin: 0 auto 40px; padding: 0 32px; }
.section__head--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  background: rgba(250, 250, 246, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__links {
  display: flex; gap: 28px; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.nav__links a:hover { color: var(--green-ink); }
.nav__cta { display: flex; gap: 10px; justify-self: end; }
.nav__mobile { display: none; justify-self: end; position: relative; }
.nav__mobile summary {
  list-style: none;
  cursor: pointer;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--card);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__mobile summary::-webkit-details-marker { display: none; }
.nav__mobile summary span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}
.nav__mobile[open] summary { background: var(--ink); }
.nav__mobile[open] summary span { background: #fff; }
.nav__mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(82vw, 320px);
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 12px;
  display: grid;
  gap: 4px;
}
.nav__mobile-panel a:not(.btn) {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 10px;
}
.nav__mobile-panel a:not(.btn):hover { background: var(--paper-2); color: var(--green-ink); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 64px 32px 56px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 18px 0 24px;
}
.hero__title em { color: var(--green-ink); font-weight: 800; }
.hero__sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--body);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__proof {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  max-width: 580px;
}
.proof__item .proof__num {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.proof__item .proof__lbl { font-size: 13px; color: var(--muted); }
.proof__divider { width: 1px; height: 32px; background: var(--hair); }

.hero__aside { position: relative; z-index: 1; }
.status-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
  position: relative;
}
.status-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.status-card__label { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.status-card__title { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 2px; }
.status-card__meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.status-card__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--hair); }
.status-card__list li {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 10px; padding: 12px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 14px; color: var(--ink);
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.check--pending { background: transparent; border: 1.5px solid var(--hair); color: var(--muted); }
.status-card__list .muted { font-size: 12px; color: var(--muted); margin-top: 2px; }
.status-card__foot {
  display: flex; justify-content: space-between;
  padding-top: 14px;
  color: var(--ink-2);
  font-size: 12px;
}
.hero__aside-caption {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 22px;
  font-family: var(--f-mono);
}

/* ── Trust strip ────────────────────────────────────── */
.trust { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--paper); }
.trust__inner {
  max-width: 1140px; margin: 0 auto;
  padding: 22px 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.trust__label { font-family: var(--f-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.trust__items { display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--ink-2); font-weight: 500; }

/* ── The System (weeks) ─────────────────────────────── */
.system {
  background: var(--paper-2);
  padding: 80px 0 60px;
}
.weeks {
  max-width: 1140px;
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 32px;
}
.week {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.week:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.week--featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.week--featured .week__num,
.week--featured .week__title { color: #fff; }
.week--featured .week__body { color: rgba(255,255,255,0.8); }
.week--featured .week__label { color: var(--green); }
.week--featured .week__list li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.1); }
.week--featured .week__list li::before { background: var(--green); }
.week__num {
  font-weight: 800; font-size: 36px; color: var(--ink);
  line-height: 1; margin-bottom: 20px; letter-spacing: -0.04em;
}
.week__label { font-family: var(--f-mono); font-size: 11px; color: var(--green-ink); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }
.week__title { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.week__body { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.week__list { list-style: none; padding: 0; margin: 0; }
.week__list li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid var(--hair);
  font-size: 13px;
  color: var(--ink-2);
}
.week__list li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 10px; height: 2px; background: var(--ink);
}

/* ── Enablement (flagship) section ─────────────────── */
.fcaio {
  background: var(--ink);
  color: #fff;
  padding: 96px 32px;
}
.fcaio__inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fcaio .section__eyebrow { color: var(--green); }
.fcaio__title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 800;
}
.fcaio__body { font-size: 17px; color: rgba(255,255,255,0.78); margin: 0 0 28px; max-width: 540px; }
.fcaio em { color: var(--green); }
.kv { display: grid; gap: 0; margin: 0 0 32px; max-width: 540px; }
.kv > div {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 16px; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: baseline;
}
.kv > div:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.kv dt { font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }
.kv dd { margin: 0; font-size: 15px; color: #fff; }
.fcaio .btn--primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.fcaio .btn--primary:hover { background: #00c870; border-color: #00c870; }
.fcaio .quote-card { background: var(--paper-2); }
.quote-card {
  background: var(--peach);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 0;
  position: relative;
}
.quote-card blockquote {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.quote-card blockquote em { color: var(--green-ink); font-weight: 800; }
.quote-card figcaption {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-2);
  padding-top: 16px;
  border-top: 1px solid rgba(10,37,64,0.1);
}

/* ── Services ───────────────────────────────────────── */
.services { padding: 80px 0 32px; max-width: 1140px; margin: 0 auto; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 32px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--ink-2); }
.svc__num {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  color: var(--green-ink); letter-spacing: 0.12em; margin-bottom: 24px;
}
.svc__title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.15;
}
.svc__body { font-size: 15px; color: var(--body); margin: 0 0 18px; min-height: 66px; }
.svc__list { list-style: none; padding: 0; margin: 0; }
.svc__list li {
  font-size: 13px; color: var(--ink-2);
  padding: 8px 0 8px 18px;
  border-top: 1px solid var(--hair);
  position: relative;
}
.svc__list li::before {
  content: "→"; position: absolute; left: 0; top: 8px;
  color: var(--green-ink); font-weight: 600;
}

/* ── Pricing ────────────────────────────────────────── */
.pricing {
  background: var(--paper-2);
  padding: 80px 0;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.pricing .section__head { position: relative; z-index: 1; }
.plans {
  max-width: 1040px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
  align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lift);
  transform: translateY(-8px);
}
.plan--featured .plan__name,
.plan--featured .plan__num { color: #fff; }
.plan--featured .plan__per,
.plan--featured .plan__desc,
.plan--featured .plan__note { color: rgba(255,255,255,0.7); }
.plan--featured .plan__list li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.1); }
.plan--featured .plan__list li::before { color: var(--green); }
.plan--featured .btn--primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.plan--featured .btn--primary:hover {
  background: #00c870;
  border-color: #00c870;
}
.plan--featured .tag { background: var(--green); color: #fff; }
.plan__badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,180,100,0.3);
}
.plan--badged {
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.plan__badge--light {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 16px rgba(10,37,64,0.18);
}
.plan__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.plan__name { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.plan__num { font-weight: 800; font-size: 48px; line-height: 1; color: var(--ink); letter-spacing: -0.04em; }
.plan__per { font-size: 15px; color: var(--muted); }
.plan__desc { font-size: 14px; line-height: 1.5; margin: 0 0 20px; min-height: 63px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan__list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--hair);
  font-size: 14px; color: var(--ink);
}
.plan__list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  color: var(--green-ink); font-weight: 700;
}
.plan__note { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 0 0; font-family: var(--f-mono); }
.pricing__foot {
  max-width: 1040px; margin: 32px auto 0;
  padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  position: relative; z-index: 1;
}
.payment-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.stripe-mark {
  font-weight: 700; color: #635bff;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.sep { color: var(--hair); }
.fyi { font-size: 14px; color: var(--body); }
.fyi a { color: var(--green-ink); font-weight: 600; border-bottom: 1.5px solid var(--green-soft); }

/* ── Doctrine ───────────────────────────────────────── */
.doctrine {
  background: var(--ink);
  color: #fff;
  padding: 96px 32px 88px;
}
.doctrine__head { max-width: 900px; margin: 0 auto 56px; }
.doctrine__title {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 20px;
}
.doctrine__sub {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  max-width: 720px;
  margin: 0;
  letter-spacing: -0.01em;
}
.principles {
  list-style: none; padding: 0;
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 0;
}
.principle {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.principle:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.principle__num {
  font-family: var(--f-mono);
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--green);
  padding-top: 4px;
}
.principle__title {
  font-size: 24px; font-weight: 700;
  color: #fff; margin: 0 0 8px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.principle p { font-size: 16px; color: rgba(255,255,255,0.75); margin: 0; max-width: 640px; }

/* ── FAQ ────────────────────────────────────────────── */
.faq { max-width: 1040px; margin: 0 auto; padding: 80px 0; }
.faq__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  padding: 0 32px;
}
.faq__item {
  border-top: 1px solid var(--hair);
  padding: 20px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--hair); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 26px;
  color: var(--green-ink);
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { font-size: 15px; color: var(--body); margin: 10px 0 0; max-width: 560px; }

/* ── Book a call ────────────────────────────────────── */
.book {
  background: var(--paper-2);
  padding: 88px 32px 96px;
  position: relative;
  overflow: hidden;
}
.book__head {
  max-width: 1040px; margin: 0 auto 48px;
  text-align: center;
  position: relative; z-index: 1;
}
.book__head .section__eyebrow { display: inline-block; white-space: nowrap; }
.cta__title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
  margin: 6px auto 18px;
}
.cta__sub { font-size: 16px; color: var(--body); max-width: 620px; margin: 0 auto; }

/* ── Calendly embed ─────────────────────────────────── */
.calendly-wrap {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--hair);
  position: relative;
  z-index: 1;
}

.book__alt {
  max-width: 1040px; margin: 24px auto 0;
  text-align: center;
  font-size: 14px; color: var(--muted);
  position: relative; z-index: 1;
}
.book__alt a { color: var(--green-ink); font-weight: 600; margin-left: 8px; border-bottom: 1.5px solid var(--green-soft); }

/* ── Footer ─────────────────────────────────────────── */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 32px 28px;
}
.foot__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot__brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.foot__brand .logo-word { color: #fff; font-size: 18px; }
.foot__brand .logo-dot { color: var(--green); }
.foot__brand .logo-mark { background: rgba(255,255,255,0.08); }
.foot__tag {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 360px;
  line-height: 1.45;
}
.foot__tag em { color: var(--green); font-weight: 700; }
.foot__contact {
  justify-self: end;
  display: flex; align-items: center; gap: 14px;
}
.foot__contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .15s ease;
}
.foot__contact a:hover { color: var(--green); }
.foot__cta {
  background: var(--green);
  color: var(--ink) !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 13px !important;
  white-space: nowrap;
}
.foot__cta:hover { background: #00d175; color: var(--ink) !important; }
.foot__legal {
  max-width: 1140px;
  margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  gap: 16px; flex-wrap: wrap;
}
.foot__legal .mono { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .weeks { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .fcaio__inner { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .foot__brand, .foot__contact { justify-self: center; }
  .foot__tag { margin: 0 auto; }
  .foot__legal { justify-content: center; text-align: center; }
}
@media (max-width: 680px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 20px;
  }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile { display: block; }
  .hero {
    padding: 48px 20px 44px;
    gap: 32px;
  }
  .hero__title { font-size: clamp(38px, 14vw, 54px); }
  .hero__ctas .btn { width: 100%; }
  .hero__proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 22px;
  }
  .proof__divider { display: none; }
  .status-card {
    padding: 20px;
    transform: none;
  }
  .status-card__foot {
    gap: 8px;
    flex-wrap: wrap;
  }
  .trust__inner {
    padding: 20px;
    gap: 10px;
  }
  .trust__items { gap: 8px; }
  .section__head {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .section__title br,
  .fcaio__title br,
  .doctrine__sub br {
    display: none;
  }
  .weeks, .services__grid { grid-template-columns: 1fr; }
  .weeks, .services__grid, .plans, .faq__grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .week, .svc, .plan { padding: 24px 22px; }
  .system { padding: 64px 0 52px; }
  .fcaio {
    padding: 72px 20px;
  }
  .fcaio__inner { gap: 36px; }
  .kv > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .quote-card { padding: 30px 24px; }
  .quote-card blockquote { font-size: 21px; }
  .quote-card figcaption {
    gap: 8px;
    flex-wrap: wrap;
  }
  .services { padding-top: 64px; }
  .svc__body { min-height: 0; }
  .pricing {
    padding: 64px 0;
    margin-top: 44px;
  }
  .pricing__foot {
    padding: 0 20px;
    align-items: flex-start;
  }
  .payment-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .doctrine { padding: 72px 20px 64px; }
  .doctrine__head { margin-bottom: 36px; }
  .doctrine__title { font-size: clamp(38px, 14vw, 56px); }
  .section__head--split { grid-template-columns: 1fr; }
  .section__sub--aside { text-align: left; }
  .principle { grid-template-columns: 1fr; gap: 8px; }
  .faq { padding: 64px 0; }
  .book { padding: 72px 20px 80px; }
  .calendly-inline-widget { min-width: 0 !important; }
  .book__alt a {
    display: inline-block;
    margin: 8px 0 0;
  }
  .foot { padding: 48px 20px 28px; }
  .foot__contact {
    width: 100%;
    flex-direction: column;
  }
  .foot__cta { width: 100%; justify-content: center; }
}
