:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-deep: #0a0a0a;
  --surface: #111111;
  --surface-2: #161616;
  --surface-3: #1a1a1a;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-soft: #d4d4d8;
  --text-muted: #a1a1aa;
  --text-faint: #71717a;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: #60a5fa;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  font-family: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -1;
}

img,
svg {
  display: block;
}

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

button,
summary {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__logo,
.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand__name,
.footer-brand span {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.header-link,
.site-footer a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.header-link:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.section-band,
.section {
  width: 100%;
}

.hero {
  min-height: calc(100svh - 68px);
  padding: 64px max(20px, calc((100vw - var(--max)) / 2)) 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.workflow-copy p,
.engine-panel p,
.privacy-grid > div > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--blue);
  color: white;
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--border-strong);
  color: var(--text);
}

.button--full {
  width: 100%;
}

.hero-facts,
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts {
  margin-top: 22px;
}

.hero-facts span,
.hero-strip span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.028);
  font-size: 12px;
}

.hero-strip {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.hero-visual {
  min-width: 0;
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.app-window--hero {
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
}

.window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: #101010;
}

.traffic {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.traffic--red {
  background: #ff5f57;
}

.traffic--yellow {
  background: #febc2e;
}

.traffic--green {
  background: #28c840;
}

.window-title {
  margin-left: 8px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
}

.app-shell {
  min-height: 500px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  background: var(--bg);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--bg-deep);
  border-right: 1px solid var(--border);
}

.app-logo-mini,
.side-dot {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.app-logo-mini {
  margin-bottom: 16px;
  background: var(--blue);
  color: white;
}

.app-logo-mini svg,
.status-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-dot {
  background: transparent;
  position: relative;
}

.side-dot::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.side-dot--active {
  background: rgba(59, 130, 246, 0.16);
}

.side-dot--active::before {
  border-color: var(--blue);
}

.side-dot--pro::before {
  border-color: var(--green);
}

.side-spacer {
  flex: 1;
}

.app-main {
  min-width: 0;
}

.app-topbar {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.app-topbar strong {
  font-size: 15px;
}

.app-topbar span {
  color: var(--text-faint);
  font-size: 12px;
}

.import-panel {
  width: min(78%, 520px);
  min-height: 200px;
  margin: 54px auto 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  border: 1.5px solid rgba(59, 130, 246, 0.32);
  border-radius: 12px;
  background: var(--surface);
}

.import-icon,
.feature-icon,
.status-icon,
.file-chip {
  display: grid;
  place-items: center;
}

.import-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
}

.import-icon svg,
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.import-panel h2 {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.2;
}

.import-panel p {
  margin-bottom: 17px;
  color: var(--text-faint);
  font-size: 11px;
}

.mini-button {
  height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.task-stack {
  width: min(78%, 520px);
  margin: 0 auto 38px;
  display: grid;
  gap: 10px;
}

.task-card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.task-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.file-chip,
.status-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.file-chip {
  background: rgba(59, 130, 246, 0.1);
}

.file-chip img {
  width: 18px;
  height: 18px;
}

.status-icon {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
}

.task-head strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-head small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--text-faint);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-percent,
.saved-badge {
  font-size: 11px;
  font-weight: 800;
}

.task-percent {
  color: var(--blue-light);
}

.saved-badge {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}

.progress-track {
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.progress-track span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
  transition: width 500ms ease;
}

.section {
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
}

.section--tight {
  padding-top: 72px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.timeline-item,
.pricing-card,
.settings-mock,
.policy-list article,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.86);
}

.feature-card {
  min-height: 214px;
  padding: 22px;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.38);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue-light);
  background: rgba(59, 130, 246, 0.1);
}

.feature-card p,
.timeline-item p,
.pricing-card p,
.policy-list p,
.faq-list p,
.screenshot-frame figcaption,
.metric-grid dd {
  color: var(--text-muted);
  line-height: 1.62;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.screenshot-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.screenshot-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--border);
  background: #111;
}

.screenshot-frame--settings img {
  object-position: top center;
}

.screenshot-frame figcaption {
  padding: 14px 16px;
  font-size: 13px;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 96px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 24px;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 800;
}

.engine-section {
  padding-top: 40px;
}

.engine-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(11, 11, 11, 0.98));
}

.metric-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-grid div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-grid dt {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.metric-grid dd {
  margin: 0;
  font-size: 13px;
}

.download-section {
  padding-top: 36px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.14), transparent 42%),
    var(--surface);
}

.download-card h2 {
  margin-bottom: 10px;
}

.download-card p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.pro-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-card,
.settings-mock {
  padding: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(34, 197, 94, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

.settings-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.settings-title span {
  font-size: 15px;
  font-weight: 800;
}

.settings-title small {
  color: var(--text-faint);
  font-size: 12px;
}

.settings-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.settings-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.settings-row:last-child {
  border-bottom: 0;
}

.settings-row strong,
.settings-row small {
  display: block;
}

.settings-row strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.settings-row small {
  color: var(--text-faint);
  font-size: 11px;
}

.select-pill {
  max-width: 160px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--text-soft);
  background: var(--surface-2);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-pill--pro {
  color: var(--green);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
}

.policy-list {
  display: grid;
  gap: 12px;
}

.policy-list article {
  padding: 20px;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--blue-light);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 18px;
  font-size: 14px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--border);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--border);
  color: var(--text-faint);
}

.site-footer p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header {
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-2);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero__content,
  .workflow,
  .engine-panel,
  .pro-layout,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading {
    max-width: none;
  }

  .app-window--hero {
    transform: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    position: static;
  }

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

  .final-cta,
  .download-card,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-link {
    display: none;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 36px;
    gap: 36px;
  }

  .hero__content {
    gap: 32px;
  }

  .hero-lede,
  .section-heading p,
  .workflow-copy p,
  .engine-panel p,
  .privacy-grid > div > p {
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .app-shell {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 470px;
  }

  .app-sidebar {
    padding-left: 6px;
    padding-right: 6px;
  }

  .app-logo-mini,
  .side-dot {
    width: 30px;
    height: 30px;
  }

  .app-topbar {
    padding: 0 14px;
  }

  .import-panel,
  .task-stack {
    width: calc(100% - 24px);
  }

  .import-panel {
    min-height: 180px;
    margin-top: 28px;
    padding: 20px 14px;
  }

  .task-head {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .task-percent,
  .saved-badge {
    grid-column: 2;
    justify-self: start;
  }

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

  .feature-card {
    min-height: 0;
  }

  .screenshot-frame img {
    height: 260px;
  }

  .engine-panel,
  .pricing-card,
  .settings-mock {
    padding: 20px;
  }

  .settings-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .select-pill {
    justify-self: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

.privacy-page {
  padding-top: 72px;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-bottom: 96px;
}

.privacy-page-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.privacy-page-header h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.privacy-lead {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.privacy-date {
  color: var(--text-faint);
  font-size: 13px;
}

.privacy-toc {
  max-width: 680px;
  margin-bottom: 48px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.privacy-toc h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-soft);
}

.privacy-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  list-style: none;
}

.privacy-toc li {
  font-size: 14px;
}

.privacy-toc a {
  color: var(--text-muted);
  transition: color 160ms ease;
}

.privacy-toc a:hover {
  color: var(--blue-light);
}

.privacy-content {
  max-width: 800px;
  display: grid;
  gap: 32px;
}

.privacy-section {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.privacy-section h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--text);
}

.privacy-section h3 {
  margin: 20px 0 10px;
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.privacy-section p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-section a:hover {
  color: var(--blue);
}

.privacy-section ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.privacy-section li {
  margin-bottom: 6px;
}

.privacy-section strong {
  color: var(--text);
}

.contact-box {
  margin-top: 12px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-footer {
  max-width: 800px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.privacy-footer p {
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .privacy-toc ol {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
