/* Table Works — base landing system (theme via separate CSS) */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ── Nav ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: var(--nav-scroll-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.on-dark.scrolled {
  background: rgba(20, 28, 25, 0.92);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  transition: opacity 0.2s var(--ease);
}

.logo:hover { opacity: 0.88; }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--logo-gradient);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.logo:hover .logo-mark {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.logo-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.14rem;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

.logo-table {
  font-weight: 500;
  color: var(--ink);
}

.logo-works {
  font-weight: 700;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-footer .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.site-footer .logo-icon {
  width: 16px;
  height: 16px;
}

.site-footer .logo-wordmark {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--btn-shadow);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover { background: var(--bg-elevated); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-light:hover { background: rgba(255,255,255,0.18); }

/* ── Typography ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow-light { color: var(--sage-muted); }
.eyebrow-light::before { background: rgba(255,255,255,0.5); }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  max-width: 14em;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 600;
  max-width: 18ch;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 20px;
}

.section { padding: clamp(72px, 10vw, 120px) 0; }

.section-header {
  margin-bottom: 56px;
}

.section-header.center { text-align: center; }
.section-header.center .lead { margin-inline: auto; }

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 64px;
  position: relative;
  overflow-x: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--hero-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}

.hero-grid > * { min-width: 0; }

.hero-copy .lead { margin-top: 14px; }

.hero-tagline {
  margin-top: 20px;
  font-size: clamp(1.15rem, 2.3vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  max-width: 48ch;
  letter-spacing: -0.01em;
}

.hero-copy .lead {
  font-size: clamp(1.02rem, 1.9vw, 1.15rem);
  line-height: 1.65;
  max-width: 48ch;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  max-width: 48ch;
}

.hero-highlight {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: border-color 0.2s var(--ease);
}

.hero-highlight:hover {
  border-color: var(--line-strong);
}

.hero-highlight strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}

.hero-highlight span {
  display: block;
  margin-top: 2px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-meta dt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage);
}

.hero-meta dd {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ── UI Mock ── */
.ui-mock {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-ui);
  overflow: hidden;
  isolation: isolate;
}

.ui-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #fafaf8;
  border-bottom: 1px solid var(--line);
}

.ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.ui-dot.r { background: #e8a598; }
.ui-dot.y { background: #e8d498; }
.ui-dot.g { background: #98c4a8; }

.ui-mock-title {
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.ui-mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
  padding-bottom: 72px;
}

.ui-sidebar {
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  background: #fbfbfa;
}

.ui-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.ui-sidebar-item.active {
  background: var(--sage-soft);
  color: var(--sage);
}

.ui-sidebar-item .icon {
  width: 18px;
  text-align: center;
  opacity: 0.7;
}

.ui-main { padding: 20px; }

.ui-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ui-main-header h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

.ui-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.ui-week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.ui-day {
  background: #f5f4f1;
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  font-size: 0.72rem;
}

.ui-day strong {
  display: block;
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.ui-day span {
  display: block;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.ui-day.highlight {
  background: var(--sage-soft);
  border: 1px solid rgba(61, 95, 82, 0.2);
}

.ui-pipeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fafaf8;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.ui-row-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ui-row-status.ok { background: #5a9a72; }
.ui-row-status.wait { background: #d4a24a; }
.ui-row-status.done { background: var(--sage); }

.ui-row-text { flex: 1; }
.ui-row-text strong { font-weight: 600; display: block; }
.ui-row-text span { color: var(--ink-muted); font-size: 0.75rem; }

.ui-row-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: #eef2f0;
  color: var(--sage);
}

.ui-float-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.ui-float-card .check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.ui-float-card p {
  font-size: 0.82rem;
  font-weight: 600;
}

.ui-float-card span {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Problem cards ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.problem-comment {
  margin-top: 40px;
  padding: 24px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-elevated) 100%);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.problem-comment p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}

.problem-comment strong {
  color: var(--ink);
  font-weight: 600;
}

.problem-comment em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

/* ── Flow ── */
.flow-section {
  background: var(--bg-dark);
  color: #fff;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.flow-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.35), rgba(255,255,255,0.1));
}

.flow-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.flow-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-dark-soft);
  border: 2px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.flow-step.active .flow-num {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--flow-glow);
}

.flow-step h3 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ── Module cards ── */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.module-card:hover {
  border-color: var(--module-hover-border);
  box-shadow: var(--shadow-md);
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage);
  display: grid;
  place-items: center;
}

.module-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex: 1;
  line-height: 1.5;
}

.module-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Roles ── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.role-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.role-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-soft), var(--accent-soft));
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sage);
}

.role-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.role-card p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* ── Tags ── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  padding: 10px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── CTA band ── */
.cta-band {
  background: var(--cta-bg);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cta-glow);
  pointer-events: none;
}

.cta-band .section-title {
  max-width: none;
  margin-inline: auto;
}

.cta-band .lead {
  color: rgba(255,255,255,0.7);
  margin-inline: auto;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 32px auto 0;
  position: relative;
  z-index: 1;
}

.input {
  flex: 1;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
}

.input::placeholder { color: rgba(255,255,255,0.45); }
.input:focus { outline: 2px solid rgba(255,255,255,0.3); outline-offset: 0; }

/* ── Price · 내부자료 ── */
.price-section {
  padding-top: 48px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.04) 0%, transparent 120px);
}

.price-confidential-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 2px solid #dc2626;
  background: rgba(220, 38, 38, 0.09);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.price-confidential-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.price-confidential-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #b91c1c;
  text-transform: uppercase;
}

.price-confidential-text p {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #991b1b;
  line-height: 1.5;
}

.price-internal-wrap {
  max-width: 960px;
  margin-inline: auto;
  padding: 28px 28px 32px;
  border-radius: var(--radius-lg);
  border: 2px dashed #dc2626;
  background: var(--bg-elevated);
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.06);
}

.price-header {
  text-align: center;
  margin-bottom: 32px;
}

.price-header .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: none;
  margin-bottom: 8px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}

.price-plan {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
  background: var(--bg-elevated);
}

.price-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #dc2626;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}

.price-plan-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.price-note {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.price-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.price-row:last-child { border-bottom: none; }

.price-row dt {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}

.price-row dd {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  line-height: 1.4;
  flex-shrink: 0;
}

.price-row-main dd {
  font-size: 1.05rem;
  color: var(--accent);
}

.price-row-sub dd {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-plan { padding: 24px 20px; }
  .price-internal-wrap { padding: 20px 16px 24px; }
  .price-confidential-banner { padding: 14px 16px; }
}

/* ── Footer ── */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 12px;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ── Adoption specific ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-panel {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}

.compare-panel.before {
  background: #f0eeea;
}

.compare-panel.after {
  background: var(--bg-elevated);
  border-color: rgba(61, 95, 82, 0.25);
  box-shadow: var(--shadow-md);
}

.compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.compare-panel.after .compare-label { color: var(--sage); }

.compare-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-panel li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}

.compare-panel.before li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-muted);
}

.compare-panel.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin-inline: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 4px;
}

.timeline-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.faq-list { max-width: 720px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--sage);
  display: block;
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 6px;
  display: block;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}

.sticky-cta p {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-cta span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .feature-split { grid-template-columns: 1fr; }
  .ui-mock-body { grid-template-columns: 1fr; }
  .ui-sidebar { display: none; }
  .flow-track { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .flow-track::before { display: none; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .variant-switch { display: none; }
  .problem-grid, .compare-grid, .module-grid, .role-grid, .stat-row { grid-template-columns: 1fr; }
  .flow-track { grid-template-columns: 1fr 1fr; }
  .cta-form { flex-direction: column; }
  .ui-float-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 80px; }
}

/* ── Theme switcher ── */
.variant-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.variant-switch a {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  color: var(--ink-muted);
  transition: background 0.2s, color 0.2s;
}

.variant-switch a:hover { color: var(--ink); }

.variant-switch a.active {
  background: var(--accent);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .ui-float-card { animation: none; }
}
