/* ================================================================
   Tewris-inspired styles — clean B2B corporate, soft pastels,
   rounded shapes, sans-serif, friendly approachable.
   ================================================================ */
:root {
  --bg: #FAFAF7;
  --bg-2: #F2F2EC;
  --paper: #FFFFFF;
  --ink: #14151A;
  --ink-2: #4A4D58;
  --ink-3: #84878F;
  --rule: #E8E8E2;
  --rule-soft: #F0F0EA;

  /* Tewris-style soft pastel accent set */
  --accent: #FF7A45;        /* warm orange */
  --accent-ink: #C24A1A;
  --pastel-green: #D8F0CE;
  --pastel-green-ink: #1F5631;
  --pastel-orange: #FFE2C7;
  --pastel-orange-ink: #8A3E12;
  --pastel-pink: #FFD9E0;
  --pastel-pink-ink: #8A2A45;
  --pastel-blue: #D4E2F7;
  --pastel-blue-ink: #1A3F87;
  --pastel-yellow: #FFF1B8;
  --pastel-yellow-ink: #735100;
  --pastel-lilac: #E5DDF7;
  --pastel-lilac-ink: #4A3399;

  --dark-bg: #14151A;
  --dark-bg-2: #1E2026;
  --dark-ink: #FFFFFF;
  --dark-ink-2: #B5B7BD;

  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Manrope", "Inter", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --gap-section: clamp(72px, 10vw, 130px);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,21,26,0.04), 0 4px 12px rgba(20,21,26,0.04);
  --shadow-md: 0 2px 4px rgba(20,21,26,0.05), 0 12px 32px rgba(20,21,26,0.06);
}

[data-theme="dark"] {
  --bg: #14151A;
  --bg-2: #1E2026;
  --paper: #1E2026;
  --ink: #FFFFFF;
  --ink-2: #C8CAD0;
  --ink-3: #84878F;
  --rule: #2A2C33;
  --rule-soft: #22242A;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

/* ========== Layout helpers ========== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section {
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head .num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.section-head .num::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
.section-head .lede {
  color: var(--ink-2);
  max-width: 60ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
}

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a { text-decoration: none; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--bg);
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { height: 64px; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--bg);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent); filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn .arrow { width: 16px; height: 16px; }

/* ========== Hero ========== */
.hero {
  padding-top: clamp(48px, 7vw, 90px);
  padding-bottom: clamp(56px, 8vw, 110px);
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pastel-green);
  color: var(--pastel-green-ink);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .accent-mark {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0 0.18em 0.04em;
  border-radius: 14px;
  transform: rotate(-1deg);
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-meta > span {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta > span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* hero visual aside — Tewris-style soft card */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-aside {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.hero-aside::before {
  content: "";
  position: absolute;
  top: -16px; right: 24px;
  width: 64px; height: 64px;
  background: var(--pastel-orange);
  border-radius: 50%;
  z-index: -1;
}
.hero-aside .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-aside .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.hero-aside .row:last-child { border-bottom: 0; }
.hero-aside .row span { color: var(--ink-3); }
.hero-aside .row b { color: var(--ink); font-weight: 600; }

/* ========== Audience cards (Tewris-style pastel cards) ========== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-3 .card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 280px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cards-3 .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cards-3 .card.c-green  { background: var(--pastel-green); }
.cards-3 .card.c-orange { background: var(--pastel-orange); }
.cards-3 .card.c-pink   { background: var(--pastel-pink); }
.cards-3 .card.c-blue   { background: var(--pastel-blue); }
.cards-3 .card.c-yellow { background: var(--pastel-yellow); }
.cards-3 .card.c-lilac  { background: var(--pastel-lilac); }

.cards-3 .card .idx {
  width: 40px; height: 40px;
  background: rgba(20,21,26,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cards-3 .card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.cards-3 .card p {
  margin: 0;
  color: var(--ink);
  opacity: 0.78;
  font-size: 15.5px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; }
  .cards-3 .card { min-height: auto; }
}

.disqualifier {
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--bg);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.disqualifier::before {
  content: "!";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== Curriculum (timeline-ish numbered steps) ========== */
.curriculum {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.week {
  display: grid;
  grid-template-columns: 90px 240px 1fr;
  gap: 32px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  align-items: start;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.week:hover { border-color: var(--ink); box-shadow: var(--shadow-md); }
.week .step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.week.session-zero .step-num { background: var(--ink); }
.week .meta { display: flex; flex-direction: column; gap: 8px; }
.week .week-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.week h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.week .duration {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.week ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.week ul li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.5;
  font-size: 15.5px;
}
.week ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 2px;
  background: var(--ink-3);
  border-radius: 2px;
}
.week ul li.demo {
  color: var(--ink);
  font-weight: 500;
  background: var(--pastel-orange);
  padding: 12px 16px 12px 36px;
  border-radius: var(--r-sm);
  margin-top: 4px;
}
.week ul li.demo::before {
  background: var(--accent);
  width: 16px;
  height: 2px;
  left: 14px;
  top: 1.1em;
}
.week ul li.hw {
  margin-top: 8px;
  background: var(--pastel-blue);
  color: var(--pastel-blue-ink);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  padding-left: 16px;
}
.week ul li.hw::before { display: none; }
.week ul li.hw .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pastel-blue-ink);
  display: inline-block;
  margin-right: 8px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .week { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .week .step-num { width: 52px; height: 52px; font-size: 18px; }
}

/* ========== Deliverables ========== */
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.deliverable {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.deliverable:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.deliverable .check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.deliverable p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 900px) { .deliverables { grid-template-columns: 1fr; } }

/* ========== Format ========== */
.format-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.format-list .item {
  padding: 28px 22px;
  background: var(--paper);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--rule);
  transition: transform .2s ease, box-shadow .2s ease;
}
.format-list .item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.format-list .item:nth-child(1) { background: var(--pastel-green); border-color: transparent; }
.format-list .item:nth-child(2) { background: var(--pastel-orange); border-color: transparent; }
.format-list .item:nth-child(3) { background: var(--pastel-blue); border-color: transparent; }
.format-list .item:nth-child(4) { background: var(--pastel-pink); border-color: transparent; }
.format-list .item:nth-child(5) { background: var(--pastel-yellow); border-color: transparent; }

.format-list .item .big {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}
.format-list .item .desc {
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .format-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .format-list { grid-template-columns: 1fr; } }

/* ========== Differentiators — DARK SECTION (Tewris signature) ========== */
.why-section {
  background: var(--dark-bg);
  color: var(--dark-ink);
  border-radius: var(--r-lg);
  margin: 0 var(--pad);
  padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 64px);
}
.why-section .wrap { padding: 0; }
.why-section .section-head h2 { color: var(--dark-ink); }
.why-section .section-head .num { color: var(--dark-ink-2); }
.why-section .section-head .num::before { background: var(--accent); }
.why-section .section-head .lede { color: var(--dark-ink-2); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.diff {
  padding: 28px;
  background: var(--dark-bg-2);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .2s ease, background .2s ease;
}
.diff:hover { transform: translateY(-3px); background: #2A2C33; }
.diff:nth-child(4) { grid-column: span 1; }
.diff:nth-child(5) {
  grid-column: span 2;
  background: var(--accent);
  color: white;
}
.diff:nth-child(5) .ord { color: rgba(255,255,255,0.85); }
.diff:nth-child(5) p { color: rgba(255,255,255,0.92); }
.diff .ord {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.diff h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
}
.diff p { margin: 0; color: var(--dark-ink-2); font-size: 15px; line-height: 1.55; }

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff:nth-child(4), .diff:nth-child(5) { grid-column: span 1; }
}

/* ========== Exclusions ========== */
.exclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.exclusions-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  font-size: 15.5px;
  color: var(--ink);
}
.exclusions-list li .x {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-3);
  display: grid;
  place-items: center;
  margin-top: 1px;
  position: relative;
}
.exclusions-list li .x::before, .exclusions-list li .x::after {
  content: ""; position: absolute; width: 11px; height: 1.5px; background: currentColor; border-radius: 2px;
}
.exclusions-list li .x::before { transform: rotate(45deg); }
.exclusions-list li .x::after { transform: rotate(-45deg); }
@media (max-width: 700px) {
  .exclusions-list { grid-template-columns: 1fr; }
}
.exclusions-foot {
  margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.5;
  font-weight: 500;
}

/* ========== Author ========== */
.author {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.author-photo {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(
      135deg,
      var(--rule-soft) 0 14px,
      var(--bg-2) 14px 28px
    );
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.author-photo::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.author-photo .placeholder-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--paper);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  z-index: 2;
}
.author-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
  padding: 28px 32px;
  background: var(--pastel-orange);
  border-radius: var(--r-lg);
  text-wrap: pretty;
  position: relative;
}
.author-quote::before {
  content: "“";
  position: absolute;
  top: -8px; left: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
}
.author h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 36px);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.author .role {
  color: var(--ink-2);
  font-size: 16.5px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.author ul.bio {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.author ul.bio li {
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
}
.author ul.bio li b { color: var(--ink); font-weight: 700; }
@media (max-width: 800px) {
  .author { grid-template-columns: 1fr; }
  .author ul.bio li { grid-template-columns: 1fr; gap: 4px; }
}

/* ========== Pricing ========== */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tier {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.tier.featured .tier-deadline { color: rgba(255,255,255,0.7); }
.tier.featured ul { color: rgba(255,255,255,0.85); }
.tier .tier-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.tier:not(.featured) .tier-meta {
  background: var(--bg-2);
  color: var(--ink-2);
}
.tier h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  margin: 0;
}
.tier .price {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-top: 4px;
}
.tier .price small { font-size: 0.45em; color: var(--ink-3); margin-left: 6px; font-weight: 600; }
.tier.featured .price small { color: rgba(255,255,255,0.6); }
.tier .tier-deadline {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.tier ul {
  list-style: none;
  padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.tier ul li {
  display: flex; align-items: flex-start; gap: 10px;
}
.tier ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .pricing { grid-template-columns: 1fr; }
  .tier { padding: 28px; }
}

.includes-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 22px 24px;
  background: var(--bg-2);
  border-radius: var(--r-md);
  align-items: start;
}
.includes-row b { color: var(--ink); font-weight: 700; font-size: 15.5px; }
@media (max-width: 700px) {
  .includes-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: var(--display);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  line-height: 1.35;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 28px; height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background: var(--bg-2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2314151A' stroke-width='1.8'><path d='M2 6h8M6 2v8'/></svg>") center/12px no-repeat;
  transition: transform .25s ease, background .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='1.8'><path d='M2 6h8M6 2v8'/></svg>");
}
.faq-answer {
  padding: 0 56px 26px 26px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ========== Final CTA & form ========== */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 9vw, 110px) 0;
  border-radius: var(--r-lg);
  margin: 0 var(--pad) var(--pad);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(40px);
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta .section-head h2 { color: var(--bg); }
.final-cta .section-head .num { color: rgba(255,255,255,0.7); }
.final-cta .section-head .lede { color: rgba(255,255,255,0.78); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 44px;
  background: rgba(255,255,255,0.04);
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form .field.full { grid-column: span 2; }
.form label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.form label .opt {
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
  font-weight: 400;
}
.form input, .form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font: inherit;
  color: var(--bg);
  font-size: 15.5px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.4); }
.form input:focus, .form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.form .field.error input,
.form .field.error textarea { border-color: #FF6B6B; }
.form .err-msg {
  font-size: 12.5px;
  color: #FF8585;
  font-weight: 500;
}
.form-actions {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.form .btn {
  background: var(--accent);
  color: white;
}
.form .micro {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 38ch;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .form { grid-template-columns: 1fr; padding: 24px; }
  .form .field.full, .form-actions { grid-column: span 1; }
}

.success {
  margin-top: 44px;
  padding: 36px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--accent);
  color: var(--bg);
}
.success h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.success p { margin: 0; color: rgba(255,255,255,0.78); }

/* ========== Footer ========== */
.footer {
  padding: 36px 0 56px;
  font-size: 13.5px;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer a { text-decoration: none; }
.footer a:hover { color: var(--ink-2); }

/* density */
[data-density="compact"] { --gap-section: clamp(48px, 7vw, 90px); }
[data-density="airy"]    { --gap-section: clamp(96px, 14vw, 180px); }

::selection { background: var(--accent); color: white; }
