:root {
  --bg: #f7f5ef;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #141414;
  --muted: #65615a;
  --muted-2: #8a8479;
  --line: #ded9cf;
  --line-strong: #cfc7ba;
  --brand: #ff7a1a;
  --brand-2: #ff9a3c;
  --brand-dark: #d85f00;
  --charcoal: #1b1b1b;
  --green: #1f7a55;
  --blue: #2b65f6;
  --purple: #6e52ff;
  --shadow: 0 24px 80px rgba(31, 27, 18, 0.12);
  --shadow-soft: 0 12px 40px rgba(31, 27, 18, 0.08);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(255, 191, 112, 0.20), transparent 26rem),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 55%, #f3efe6 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-shell {
  min-height: 100vh;
  position: relative;
}

.grid-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), transparent 72%);
  z-index: -2;
}

.noise::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  z-index: -1;
}

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

.announce {
  background: #171717;
  color: #fff7ed;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.announce .container {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 9px 0;
}
.announce strong {
  color: #ffd5b3;
  font-weight: 700;
}
.announce a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 239, 0.78);
  border-bottom: 1px solid rgba(222, 217, 207, 0.72);
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 148px;
}
.logo-link img {
  height: 27px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: #494640;
  font-size: 14px;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255, 122, 26, 0.10);
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
  position: relative;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 11px;
  top: 20px;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-toggle span::before { top: -6px; left: 0; }
.mobile-toggle span::after { top: 6px; left: 0; }
body.nav-open .mobile-toggle span { background: transparent; }
body.nav-open .mobile-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .mobile-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--brand), #ff6612);
  box-shadow: 0 14px 32px rgba(255, 122, 26, .28);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(255, 122, 26, .34); }
.btn-dark {
  background: var(--charcoal);
  color: white;
  box-shadow: 0 14px 28px rgba(20,20,20,.14);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.76);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--line-strong); background: #fff; }
.btn-small { padding: 9px 13px; font-size: 13px; }

.hero {
  padding: 78px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 122, 26, 0.22);
  background: rgba(255, 122, 26, 0.09);
  color: #8d3d00;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255,122,26,.12);
}
.hero h1, .page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(46px, 7.2vw, 88px);
  line-height: .93;
  letter-spacing: -0.075em;
  max-width: 850px;
}
.hero h1 .accent, .page-hero h1 .accent {
  color: var(--brand);
}
.hero-copy {
  max-width: 650px;
  color: #4e4a43;
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.micro-proof li {
  border: 1px solid rgba(222, 217, 207, .85);
  background: rgba(255,255,255,.58);
  border-radius: 999px;
  padding: 8px 11px;
  color: #4d4941;
  font-size: 13px;
  font-weight: 700;
}

.browser-card {
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(215, 207, 195, .82);
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.browser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.browser-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(222,217,207,.75);
  background: rgba(255,255,255,.58);
}
.traffic { display: flex; gap: 7px; }
.traffic span { width: 10px; height: 10px; border-radius: 999px; display: block; background: #ded8cd; }
.traffic span:nth-child(1) { background: #ff6a3d; }
.traffic span:nth-child(2) { background: #ffbd4a; }
.traffic span:nth-child(3) { background: #2fc06b; }
.browser-title {
  color: #69635a;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  flex: 1;
}
.browser-state {
  color: var(--green);
  background: rgba(31,122,85,.09);
  padding: 5px 9px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}
.workflow-demo {
  padding: 20px;
}
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
}
.document-card, .schema-card, .json-card, .review-card, .mini-card {
  border: 1px solid rgba(222,217,207,.8);
  background: rgba(255,255,255,.72);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(31,27,18,.06);
}
.document-card {
  padding: 16px;
  position: relative;
  min-height: 155px;
}
.doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.doc-name { font-weight: 850; }
.doc-meta { color: var(--muted-2); font-size: 12px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255,122,26,.10);
  color: #8d3d00;
  font-size: 12px;
  font-weight: 850;
}
.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
}
.doc-lines { display: grid; gap: 8px; }
.doc-lines span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: #ebe5d9;
}
.doc-lines span:nth-child(1) { width: 92%; }
.doc-lines span:nth-child(2) { width: 74%; }
.doc-lines span:nth-child(3) { width: 86%; }
.doc-lines span:nth-child(4) { width: 58%; }
.field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.field-tags span {
  background: #171717;
  color: #fff8ef;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}
.side-metrics { display: grid; gap: 10px; }
.metric {
  padding: 13px;
  border-radius: 18px;
  background: #191919;
  color: white;
}
.metric strong { display: block; font-size: 24px; line-height: 1; letter-spacing: -0.04em; }
.metric span { color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; }
.metric.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.metric.light span { color: var(--muted); }
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0;
  position: relative;
}
.pipeline-step {
  padding: 12px 10px;
  border: 1px solid rgba(222,217,207,.9);
  background: #fff;
  border-radius: 16px;
  min-height: 86px;
  position: relative;
}
.pipeline-step .icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,122,26,.12);
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 8px;
}
.pipeline-step strong { display: block; font-size: 13px; }
.pipeline-step span { color: var(--muted); font-size: 11px; }
.json-card {
  padding: 15px;
  background: #111;
  color: #f9f1e8;
}
.json-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bcb3a6;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}
.json-card button {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: 5px 9px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
pre {
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
}
.code-key { color: #ffb46f; }
.code-string { color: #b9f6ca; }
.code-number { color: #9ecbff; }

.logo-cloud {
  padding: 20px 0 56px;
}
.logo-cloud-card {
  border: 1px solid rgba(222,217,207,.78);
  background: rgba(255,255,255,.62);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.cloud-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.integration-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.integration-badge, .partner-card .partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
  color: #2d2b28;
  box-shadow: 0 8px 20px rgba(31,27,18,.04);
}
.integration-badge .mark, .partner-logo .mark {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 950;
  color: white;
  background: var(--brand);
}
.mark.zapier { background: #ff4f00; }
.mark.make { background: #6a35ff; }
.mark.n8n { background: #ea4b71; }
.mark.activepieces { background: #15a362; }
.mark.sheets { background: #16a765; }
.mark.airtable { background: #f4b400; color: #1c1c1c; }
.mark.slack { background: #4a154b; }
.mark.hubspot { background: #ff7a59; }
.mark.salesforce { background: #00a1e0; }
.mark.notion { background: #111; }
.mark.api { background: #111827; }
.mark.drive { background: #2c7be5; }
.mark.quickbooks { background: #2ca01c; }
.mark.workato { background: #226cf5; }
.mark.pipedream { background: #6747ed; }
.mark.relay { background: #111827; }
.mark.xero { background: #13b5ea; }
.mark.bigquery { background: #4285f4; }
.mark.snowflake { background: #29b5e8; }
.mark.postgres { background: #336791; }
.mark.s3 { background: #ff9900; color: #111; }

.section {
  padding: 82px 0;
}
.section.tight { padding: 52px 0; }
.section.dark {
  background: #151515;
  color: #fff8ee;
  border-radius: 42px;
  margin: 40px auto;
  width: min(calc(100% - 28px), 1420px);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}
.section.dark .muted, .section.dark .section-copy { color: rgba(255,248,238,.68); }
.section.dark .section-kicker { color: #ffbc83; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}
.section-kicker {
  margin: 0 0 10px;
  color: #8d3d00;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -0.055em;
}
.section-copy {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}
.muted { color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card, .step-card, .case-card, .partner-card, .pricing-card, .faq-item, .table-card, .module-card, .security-card {
  border: 1px solid rgba(222,217,207,.86);
  background: rgba(255,253,248,.78);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.feature-card::before, .module-card::before, .security-card::before, .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgba(255,122,26,0));
  opacity: .85;
}
.feature-icon, .step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #171717;
  color: #fff8ef;
  font-weight: 950;
  margin-bottom: 18px;
}
.feature-card h3, .step-card h3, .case-card h3, .partner-card h3, .pricing-card h3, .module-card h3, .security-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.feature-card p, .step-card p, .case-card p, .partner-card p, .pricing-card p, .module-card p, .security-card p {
  margin: 0;
  color: var(--muted);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: #8d3d00;
  font-weight: 850;
}

.steps {
  counter-reset: step;
}
.step-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.step-number {
  background: rgba(255,122,26,.12);
  color: var(--brand-dark);
}
.step-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.step-list li {
  display: flex;
  gap: 9px;
  color: #4d4941;
  font-weight: 650;
  font-size: 14px;
}
.step-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--brand);
}

.split-panel {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 18px;
  align-items: stretch;
}
.large-panel {
  border: 1px solid rgba(222,217,207,.82);
  background: rgba(255,255,255,.66);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.workflow-canvas {
  min-height: 460px;
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(222,217,207,.75);
  background:
    linear-gradient(rgba(20,20,20,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,20,.05) 1px, transparent 1px),
    #fffdf8;
  background-size: 26px 26px;
  overflow: hidden;
  padding: 26px;
}
.node {
  position: relative;
  width: min(100%, 250px);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 12px 28px rgba(31,27,18,.08);
  margin-bottom: 22px;
}
.node:nth-child(2) { margin-left: auto; }
.node:nth-child(3) { margin-left: 38px; }
.node:nth-child(4) { margin-left: auto; margin-bottom: 0; }
.node small {
  color: var(--muted-2);
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.node strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}
.node p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.connector {
  position: absolute;
  width: 2px;
  background: linear-gradient(var(--brand), transparent);
  height: 32px;
  left: 48%;
  top: 113px;
  opacity: .7;
}

.review-card {
  padding: 18px;
}
.review-card h4 { margin: 0 0 14px; }
.review-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.review-row:first-of-type { border-top: 0; padding-top: 0; }
.confidence {
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(31,122,85,.11);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}
.confidence.warn { background: rgba(255,122,26,.12); color: #8d3d00; }

.table-card { padding: 0; overflow: hidden; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th, .comparison-table td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.comparison-table th {
  background: #fff;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.comparison-table tr:last-child td { border-bottom: 0; }
.check { color: var(--green); font-weight: 950; }
.warn { color: #8d3d00; font-weight: 950; }

.integration-section .partner-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner-card .partner-logo {
  align-self: start;
  min-height: 42px;
  border-radius: 15px;
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  color: #494640;
}
.filter-btn.active {
  background: #171717;
  color: white;
  border-color: #171717;
}

.page-hero {
  padding: 72px 0 46px;
}
.page-hero p {
  max-width: 760px;
  color: #4e4a43;
  font-size: 20px;
}
.page-hero-row {
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 32px;
  align-items: end;
}
.page-stat-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.page-stat-card strong {
  display: block;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.page-stat-card span { color: var(--muted); font-weight: 700; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card.featured {
  background: #171717;
  color: #fff8ef;
  border-color: rgba(255,122,26,.5);
  transform: translateY(-8px);
}
.pricing-card.featured p, .pricing-card.featured li { color: rgba(255,248,239,.72); }
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 16px;
}
.price strong { font-size: 42px; letter-spacing: -0.06em; }
.price span { color: var(--muted); }
.pricing-card.featured .price span { color: rgba(255,248,239,.64); }
.pricing-list {
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
  display: grid;
  gap: 11px;
}
.pricing-list li {
  display: flex;
  gap: 10px;
  color: #4d4941;
  font-weight: 650;
}
.pricing-list li::before { content: "✓"; color: var(--brand); font-weight: 950; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}
.faq-item { padding: 0; }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 850;
  font-size: 17px;
  color: var(--ink);
}
.faq-question span:last-child {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.cta-band {
  border: 1px solid rgba(255,122,26,.26);
  background:
    radial-gradient(circle at top right, rgba(255,122,26,.22), transparent 22rem),
    #171717;
  color: #fff8ef;
  border-radius: 38px;
  padding: 42px;
  box-shadow: 0 28px 80px rgba(31,27,18,.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -0.06em;
}
.cta-band p { margin: 0; color: rgba(255,248,239,.72); max-width: 650px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.footer {
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.footer-brand img { height: 28px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); max-width: 320px; }
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3e3b35;
}
.footer-col a {
  display: block;
  color: var(--muted);
  margin: 9px 0;
  font-weight: 650;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted-2);
  font-size: 13px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
}
.footer-bottom a { color: var(--muted); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .page-hero-row, .split-panel, .cta-band { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .nav-actions .btn-ghost { display: none; }
  .card-grid, .card-grid.two, .card-grid.four, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .mobile-toggle { display: inline-flex; }
  .nav-inner { height: 68px; }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 110px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(255,253,248,.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  body.nav-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 13px 14px; }
  .hero h1, .page-hero h1 { letter-spacing: -0.055em; }
  .hero-copy, .page-hero p { font-size: 18px; }
  .demo-layout, .pipeline { grid-template-columns: 1fr; }
  .side-metrics { grid-template-columns: repeat(2, 1fr); }
  .browser-card { border-radius: 24px; }
  .workflow-demo { padding: 14px; }
  .card-grid, .card-grid.two, .card-grid.four, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .section { padding: 62px 0; }
  .section.dark { border-radius: 28px; width: calc(100% - 16px); }
  .large-panel { padding: 18px; border-radius: 26px; }
  .workflow-canvas { min-height: auto; padding: 18px; }
  .node, .node:nth-child(2), .node:nth-child(3), .node:nth-child(4) { margin-left: 0; width: 100%; }
  .cta-band { padding: 28px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: start; }
}

@media (max-width: 480px) {
  .announce .container { justify-content: start; }
  .logo-link img { height: 24px; }
  .nav-actions .btn-primary { display: none; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .cloud-label { flex-direction: column; }
}
