:root {
  --background: #09090b;
  --surface: #111114;
  --surface-raised: #16161a;
  --foreground: #fafafa;
  --muted: #a1a1aa;
  --muted-strong: #c5c5cc;
  --border: #28282e;
  --border-bright: #3b3b43;
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --green: #22c55e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--background); }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--amber); color: #171106; }
.site-shell { min-height: 100vh; overflow: hidden; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--amber);
  color: #171106;
  font-weight: 700;
  padding: 8px 14px;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-brand { justify-self: start; }
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.brand-logo { width: 30px; height: 30px; border-radius: 7px; object-fit: contain; }
.brand-lockup--compact .brand-logo { width: 25px; height: 25px; }
.site-header nav { display: flex; gap: 8px; justify-self: center; }
.site-header nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 540;
  padding: 7px 11px;
  transition: background 160ms ease, color 160ms ease;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--foreground);
  outline: none;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 13px;
  transition: border-color 160ms ease, background 160ms ease;
}
.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 2px;
}
.lang-switch a {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 34px;
  padding: 6px 8px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.lang-switch a:hover,
.lang-switch a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--foreground);
  outline: none;
}
.lang-switch a[aria-pressed="true"],
.lang-switch a[aria-current="page"] {
  background: var(--amber-soft);
  color: var(--amber-bright);
}
.hero { position: relative; min-height: 1040px; padding: 104px 24px 128px; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  left: 50%;
  top: -260px;
  width: 920px;
  height: 680px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.17), rgba(245, 158, 11, 0.04) 44%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--amber-bright);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.07);
  padding: 7px 12px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}
.hero h1 {
  margin: 0;
  font-size: clamp(62px, 9.5vw, 124px);
  font-weight: 690;
  letter-spacing: -0.075em;
  line-height: 0.86;
}
.hero h1 span {
  display: inline-block;
  padding-right: 0.06em;
  background: linear-gradient(115deg, #fff6d6 2%, var(--amber-bright) 44%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-description {
  max-width: 650px;
  margin: 32px auto 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 43px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 650;
  padding: 10px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button--primary {
  background: var(--amber);
  color: #171106;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 8px 30px rgba(245, 158, 11, 0.13);
}
.button--primary:hover, .button--primary:focus-visible {
  background: var(--amber-bright);
  box-shadow: 0 10px 38px rgba(245, 158, 11, 0.22);
}
.button--secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
}
.button--secondary:hover, .button--secondary:focus-visible {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.07);
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: #777780;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-notes span:not(:first-child)::before { content: "·"; margin-right: 18px; color: var(--amber); }

.product-preview {
  position: relative;
  z-index: 3;
  width: min(1060px, calc(100% - 40px));
  margin: 94px auto 0;
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  background: #0c0c0f;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  text-align: left;
}
.product-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 8%;
  border-radius: 22px;
  background: rgba(245, 158, 11, 0.09);
  filter: blur(48px);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  border-bottom: 1px solid var(--border);
  padding: 0 14px;
}
.window-dot { width: 7px; height: 7px; border-radius: 50%; background: #3c3c43; }
.window-address {
  margin: 0 auto;
  color: #73737d;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  transform: translateX(-15px);
}
.app-shell { display: grid; grid-template-columns: 190px 1fr; min-height: 520px; }
.preview-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: #101013;
  padding: 19px 15px;
}
.preview-sidebar .brand-lockup { font-size: 14px; }
.preview-sidebar .brand-logo { width: 25px; height: 25px; }
.preview-nav { display: grid; gap: 5px; margin-top: 32px; }
.preview-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: #81818b;
  font-size: 11px;
  font-weight: 560;
  padding: 9px 10px;
}
.preview-nav-item--active { background: var(--amber-soft); color: var(--amber-bright); }
.nav-icon { position: relative; width: 12px; height: 12px; opacity: 0.9; }
.nav-icon--grid {
  border: 1px solid currentColor;
  border-radius: 2px;
  box-shadow: 4px 0 0 -3px currentColor inset, 0 4px 0 -3px currentColor inset;
}
.nav-icon--file { border: 1px solid currentColor; border-radius: 2px; }
.nav-icon--file::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 -3px currentColor;
}
.preview-user {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.preview-user .avatar {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #27272d;
  color: #d5d5da;
  font-size: 8px;
  font-weight: 700;
}
.preview-user > span:last-child { display: grid; line-height: 1.25; }
.preview-user strong { font-size: 10px; font-weight: 600; }
.preview-user small { color: #686870; font-size: 8px; }

.preview-main { min-width: 0; padding: 28px 30px 32px; }
.preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.preview-header p { margin: 0 0 3px; color: #66666f; font-size: 9px; }
.preview-header .preview-title { margin: 0; color: inherit; font-size: 21px; font-weight: 640; letter-spacing: -0.035em; }
.preview-header button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 33px;
  border: 0;
  border-radius: 6px;
  background: var(--amber);
  color: #171106;
  font-family: inherit;
  font-size: 10px;
  font-weight: 650;
  padding: 0 13px;
}
.preview-header button span { font-size: 14px; line-height: 1; }
.mobile-preview-mark { display: none; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 24px; }
.stat-card {
  display: grid;
  min-height: 105px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #121216;
  padding: 14px 15px;
}
.stat-card > span { color: #84848d; font-size: 9px; font-weight: 520; }
.stat-card strong {
  align-self: end;
  font-size: 23px;
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-card small { margin-top: 6px; color: #73737b; font-size: 8px; }
.stat-card .status-complete { color: var(--green); }
.amber-text { color: var(--amber-bright); }

.document-table {
  margin-top: 17px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #101013;
}
.table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 49px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 600;
}
.table-filter {
  border: 1px solid var(--border);
  border-radius: 5px;
  color: #85858d;
  font-size: 8px;
  font-weight: 500;
  padding: 5px 8px;
}
.table-row {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 0.7fr;
  align-items: center;
  min-height: 51px;
  border-top: 1px solid var(--border);
  color: #a4a4ac;
  font-size: 9px;
  padding: 0 16px;
}
.table-labels {
  min-height: 29px;
  background: #141418;
  color: #62626a;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}
.file-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #e9e9ec;
  font-weight: 540;
}
.file-cell > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-cell i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #34343a;
  border-radius: 5px;
  background: #1b1b20;
  color: #8f8f98;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 6px;
  font-style: normal;
}
.status-pill {
  justify-self: start;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 650;
  padding: 3px 7px;
}
.status-pill--complete {
  border-color: rgba(34, 197, 94, 0.23);
  background: rgba(34, 197, 94, 0.08);
  color: #4ade80;
}
.status-pill--processing, .status-pill--review {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.09);
  color: var(--amber-bright);
}

.automation-badge {
  position: absolute;
  right: -27px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #3a3a41;
  border-radius: 8px;
  background: rgba(20, 20, 24, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.44);
  padding: 10px 13px;
}
.automation-badge > span:last-child {
  display: grid;
  color: #d5d5da;
  font-size: 9px;
  font-weight: 550;
  line-height: 1.35;
}
.automation-badge small { color: #777780; font-size: 7px; font-weight: 500; }
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.1);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1); }
  50% { box-shadow: 0 0 0 9px rgba(245, 158, 11, 0); }
}

.section, .compare-section, .workflow-section, .pricing-section, .faq-section, .final-cta, footer {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.section { padding: 128px 0; }
.feature-section { border-top: 1px solid var(--border); }
.section-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 70px;
  align-items: end;
}
.section-intro .section-kicker { grid-column: 1 / -1; }
.section-intro h2,
.compare-heading h2,
.workflow-heading h2,
.pricing-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 58px; }
.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(145deg, #151519, #101013);
  padding: 24px;
  transition: border-color 220ms ease, transform 220ms ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}
.feature-card:hover::after { opacity: 0.75; }
.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65656e;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.feature-symbol { position: relative; width: 148px; height: 118px; margin: 40px auto 34px; }
.feature-symbol span {
  position: absolute;
  display: block;
  width: 88px;
  height: 62px;
  border: 1px solid #3b3b42;
  border-radius: 7px;
  background: #1b1b20;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.feature-symbol span::before,
.feature-symbol span::after {
  content: "";
  position: absolute;
  left: 13px;
  height: 3px;
  border-radius: 2px;
  background: #3e3e45;
}
.feature-symbol span::before { top: 16px; width: 42px; }
.feature-symbol span::after { top: 25px; width: 58px; }
.feature-symbol span:nth-child(1) { left: 0; top: 42px; transform: rotate(-9deg); }
.feature-symbol span:nth-child(2) { right: 0; top: 42px; transform: rotate(9deg); }
.feature-symbol span:nth-child(3) {
  left: 30px;
  top: 13px;
  border-color: rgba(245, 158, 11, 0.38);
  background: #201b12;
}
.feature-symbol span:nth-child(3)::before { background: var(--amber); }
.feature-card h3 {
  max-width: 300px;
  margin: 0;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
.feature-card > p { margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.compare-section {
  border-top: 1px solid var(--border);
  padding: 128px 0;
}
.compare-heading { max-width: 710px; }
.compare-heading > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.compare-slider {
  position: relative;
  margin-top: 58px;
  user-select: none;
  touch-action: pan-y;
}
.compare-frame {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0c0c0f;
}
.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
.compare-img--before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 2;
  width: 44px;
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-handle-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}
.compare-handle-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 3px;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(17, 17, 20, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: var(--amber-bright);
}
.compare-handle-knob span {
  width: 0;
  height: 0;
  border-style: solid;
}
.compare-handle-knob span:first-child {
  border-width: 5px 7px 5px 0;
  border-color: transparent currentColor transparent transparent;
}
.compare-handle-knob span:last-child {
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent currentColor;
}
.compare-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 12, 15, 0.72);
  backdrop-filter: blur(8px);
  color: #e8e8ec;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 7px 10px;
  pointer-events: none;
  text-transform: uppercase;
}
.compare-label--before { left: 14px; }
.compare-label--after { right: 14px; }
.compare-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  background: transparent;
}
.compare-range:focus-visible {
  opacity: 1;
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

.workflow-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 128px 0;
}
.workflow-heading { max-width: 710px; }
.workflow-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; }
.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  border-left: 1px solid var(--border);
  padding: 6px 28px 8px 22px;
}
.step-number {
  display: grid;
  place-items: center;
  align-self: start;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 7px;
  background: var(--amber-soft);
  color: var(--amber-bright);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 700;
}
.workflow-step h3 { margin: 2px 0 4px; font-size: 15px; font-weight: 620; }
.workflow-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.step-arrow {
  position: absolute;
  right: -7px;
  top: 10px;
  z-index: 1;
  color: #4a4a52;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.pricing-section {
  border-top: 1px solid var(--border);
  padding: 128px 0;
}
.pricing-heading { max-width: 710px; }
.pricing-heading > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}
.pricing-plan {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(145deg, #151519, #101013);
  padding: 28px 26px 24px;
}
.pricing-plan--featured {
  border-color: rgba(245, 158, 11, 0.38);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), transparent 42%),
    linear-gradient(145deg, #19160f, #101013);
}
.pricing-plan-name {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 0;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}
.pricing-plan-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-limits,
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-limits {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.pricing-limits li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}
.pricing-limits strong {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}
.pricing-features {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.pricing-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
}
.pricing-features li::before {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.pricing-features li.is-included::before {
  content: "✓";
  color: var(--green);
}
.pricing-features li.is-excluded {
  color: #6a6a73;
}
.pricing-features li.is-excluded::before {
  content: "–";
  color: #52525b;
}
.pricing-support {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  padding-top: 18px;
}
.pricing-support strong {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 600;
}
.pricing-plan--featured .pricing-support strong { color: var(--amber-bright); }
.pricing-note {
  margin: 28px 0 0;
  color: #777780;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  border-top: 1px solid var(--border);
  padding: 128px 0;
}
.faq-heading h2 { font-size: clamp(38px, 4.5vw, 58px); }
.faq-list { border-bottom: 1px solid var(--border); }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 570;
  padding: 22px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .faq-toggle {
  color: var(--amber);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}
.faq-list details[open] summary .faq-toggle { transform: rotate(45deg); }
.faq-list details p {
  max-width: 620px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.faq-list summary:focus-visible { color: var(--amber-bright); outline: none; }

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 56px;
  min-height: 520px;
  margin-bottom: 80px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: radial-gradient(circle at 75% 50%, rgba(245, 158, 11, 0.1), transparent 34%), #111114;
  padding: 68px 58px 68px 70px;
}
.final-cta-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 610px;
}
.final-cta h2 {
  max-width: 610px;
  font-size: clamp(42px, 4.6vw, 68px);
  text-wrap: balance;
}
.final-cta-copy > p:not(.section-kicker) {
  max-width: 530px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 15px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}
.final-cta-email {
  color: var(--muted-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  transition: color 160ms ease;
}
.final-cta-email:hover,
.final-cta-email:focus-visible {
  color: var(--amber-bright);
  outline: none;
}
.cta-visual {
  position: relative;
  min-width: 0;
  min-height: 390px;
}
.cta-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(460px, 118%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 50%;
}
.cta-orbit::before, .cta-orbit::after {
  content: "";
  position: absolute;
  inset: 68px;
  border: 1px solid rgba(245, 158, 11, 0.17);
  border-radius: 50%;
}
.cta-orbit::after { inset: 140px; background: rgba(245, 158, 11, 0.035); }
.cta-orbit img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  object-fit: contain;
}
.cta-orbit > span {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 20px var(--amber);
}
.cta-orbit > span:nth-child(1) { left: 82px; top: 88px; }
.cta-orbit > span:nth-child(2) { right: 57px; top: 218px; }
.cta-orbit > span:nth-child(3) { left: 129px; bottom: 48px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: #6f6f78;
  font-size: 11px;
  padding: 28px 0 42px;
}
footer .brand-lockup { font-size: 14px; justify-self: start; }
footer .brand-logo { width: 24px; height: 24px; }
footer p {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
footer > span:last-child { justify-self: end; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 82px; }
  .app-shell { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .mobile-preview-mark { display: inline-block; margin-bottom: 14px; }
  .section-intro, .faq-section { grid-template-columns: 1fr; gap: 38px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-plans { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .feature-symbol { margin: 25px auto; }
  .workflow-list { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .final-cta {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 72px 48px 0;
    text-align: center;
  }
  .final-cta-copy { max-width: 640px; margin: 0 auto; }
  .final-cta-actions { justify-content: center; }
  .final-cta h2 { max-width: 640px; }
  .final-cta-copy > p:not(.section-kicker) { margin-left: auto; margin-right: auto; }
  .cta-visual { min-height: 420px; }
  .cta-orbit { width: min(460px, 86vw); }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 1180px);
  }
  .site-header nav { display: none; }
  .header-actions { gap: 8px; }
  .header-cta { font-size: 12px; }
  .lang-switch a { min-width: 30px; padding: 5px 7px; }
  .hero { padding: 72px 16px 92px; }
  .hero h1 { font-size: clamp(42px, 13vw, 78px); }
  .hero-description { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-notes { gap: 8px; }
  .hero-notes span:not(:first-child)::before { margin-right: 8px; }
  .hero-actions .button--secondary { display: none; }
  .product-preview { display: none; }
  .section, .compare-section, .workflow-section, .pricing-section, .faq-section, .final-cta, footer {
    width: min(100% - 32px, 1180px);
  }
  .section, .compare-section, .workflow-section, .pricing-section, .faq-section { padding: 92px 0; }
  .section-intro { gap: 24px; }
  .feature-grid { margin-top: 40px; }
  .compare-slider { margin-top: 40px; }
  .compare-frame { aspect-ratio: 4 / 3; }
  .compare-label { top: 10px; font-size: 9px; padding: 6px 8px; }
  .compare-label--before { left: 10px; }
  .compare-label--after { right: 10px; }
  .workflow-list { grid-template-columns: 1fr; margin-top: 45px; }
  .workflow-step { min-height: 80px; border-left: 1px solid var(--border); padding-left: 18px; }
  .step-arrow { display: none; }
  .final-cta { margin-bottom: 56px; padding: 58px 24px 0; }
  .final-cta h2 { font-size: clamp(40px, 13vw, 58px); }
  .cta-visual { min-height: 310px; }
  .cta-orbit { width: min(360px, 88vw); }
  footer { grid-template-columns: 1fr auto; gap: 18px; }
  footer p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(17, 17, 20, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1 1 240px; max-width: 46ch; }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}
.cookie-banner .button {
  cursor: pointer;
  color: inherit;
  font: inherit;
  font-weight: 650;
  min-height: 38px;
  padding: 8px 14px;
}
.cookie-banner .button--primary { color: #171106; }


