:root {
  --ink: #080b0f;
  --ink-2: #2f3a46;
  --muted: #687582;
  --line: #dce5ec;
  --paper: #ffffff;
  --paper-2: #f3f8fc;
  --navy: #081722;
  --brand: #0b7fd3;
  --brand-2: #68bdf2;
  --brand-soft: #eaf6fe;
  --accent: #0b7fd3;
  --accent-soft: #eaf6fe;
  --shadow: 0 20px 70px rgba(8, 23, 34, 0.14);
  --shadow-sm: 0 10px 34px rgba(8, 23, 34, 0.10);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid #0b7fd3;
  outline: 3px solid color-mix(in srgb, var(--brand) 72%, white);
  outline-offset: 4px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
}

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; border-radius: 99px; background: currentColor; }
.section { padding: 96px 0; }
.section-soft { background: var(--paper-2); }
.section-dark { color: #fff; background: var(--navy); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2, .split-copy h2 { margin: 0 0 16px; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -0.055em; }
.section-head p, .split-copy > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-head p, .section-dark .split-copy > p { color: #aebbd1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223,229,237,.8);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
}
body.admin-bar .site-header { top: 32px; }
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 650; font-size: 1.25rem; letter-spacing: -0.045em; }
.logo-master { min-width: 148px; }
.logo-wordmark { width: 142px; height: auto; }
.logo-footer img { width: 38px; height: 38px; border-radius: 50%; }
.logo-footer span { color: #fff; font-family: "Century Gothic", "Avenir Next", Arial, sans-serif; font-size: 1.45rem; font-weight: 500; letter-spacing: -.08em; }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--ink-2); font-size: .95rem; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login-menu { position: relative; color: var(--ink-2); font-weight: 700; font-size: .94rem; }
.nav-login-menu summary { padding: 9px 2px; cursor: pointer; list-style: none; }
.nav-login-menu summary::-webkit-details-marker { display: none; }
.nav-login-menu summary::after { content: "▾"; margin-left: 7px; color: var(--muted); font-size: .72rem; }
.nav-login-menu[open] summary::after { content: "▴"; }
.nav-login-options { position: absolute; top: calc(100% + 10px); right: 0; z-index: 60; display: grid; width: 255px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.nav-login-options a { display: grid; gap: 2px; padding: 11px 12px; border-radius: 9px; }
.nav-login-options a:hover { background: var(--brand-soft); }
.nav-login-options strong { color: var(--ink); }
.nav-login-options span { color: var(--muted); font-size: .78rem; font-weight: 500; }
.mobile-toggle { display: none; border: 0; background: transparent; padding: 8px; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--brand); box-shadow: 0 10px 26px rgba(11,127,211,.26); }
.button-primary:hover { background: #086caf; }
.button-dark { color: #fff; background: var(--navy); box-shadow: var(--shadow-sm); }
.button-light { color: var(--ink); background: #fff; border-color: var(--line); }
.button-ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.button-arrow::after { content: "→"; font-size: 1.05em; }
.button-sm { min-height: 40px; padding: 0 15px; border-radius: 10px; font-size: .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 83% 18%, rgba(104,189,242,.28), transparent 27%),
    radial-gradient(circle at 4% 92%, rgba(11,127,211,.12), transparent 31%),
    linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}
.hero::after { content: ""; position: absolute; inset: auto -10% -200px; height: 360px; background: radial-gradient(ellipse, rgba(11,127,211,.09), transparent 64%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); gap: 70px; align-items: center; position: relative; z-index: 1; }
.hero-grid > *, .product-hero-grid > * { min-width: 0; }
.hero h1 { margin: 0 0 24px; max-width: 750px; font-size: clamp(3.1rem, 6.8vw, 6.2rem); line-height: .92; letter-spacing: -0.075em; }
.hero h1 .highlight { color: var(--brand); }
.hero-copy > p { max-width: 650px; margin: 0 0 28px; color: var(--ink-2); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.microproof { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: .88rem; font-weight: 650; }
.microproof span { display: inline-flex; align-items: center; gap: 7px; }
.microproof span::before { content: "✓"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: #086caf; background: var(--brand-soft); font-size: .72rem; font-weight: 900; }

.app-shell {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  background: var(--navy);
  box-shadow: 0 34px 90px rgba(13,24,48,.24);
  transform: perspective(1300px) rotateY(-4deg) rotateX(2deg);
}
.app-top { height: 52px; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.app-top i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); }
.app-main { display: grid; grid-template-columns: 92px 1fr; min-height: 428px; }
.app-side { padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.1); }
.app-side b { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 20px; border-radius: 50%; background: #fff; overflow: hidden; }
.app-side b img { width: 100%; height: 100%; object-fit: cover; }
.app-side span { display: block; width: 42px; height: 8px; margin: 18px auto; border-radius: 10px; background: rgba(255,255,255,.12); }
.app-content { min-width: 0; padding: 24px; }
.app-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; color: #fff; }
.app-title strong { font-size: 1.08rem; }
.app-title em { width: 92px; height: 30px; border-radius: 9px; background: var(--brand); }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.stat { padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.055); }
.stat small { display: block; color: #9fb0ca; font-size: .72rem; }
.stat strong { color: #fff; font-size: 1.45rem; }
.chart { height: 150px; padding: 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.05); }
.chart-bars { height: 100%; display: flex; align-items: flex-end; gap: 10px; }
.chart-bars span { flex: 1; min-height: 14%; border-radius: 7px 7px 2px 2px; background: linear-gradient(180deg, var(--brand-2), rgba(104,189,242,.24)); }
.app-list { display: grid; gap: 10px; margin-top: 14px; }
.app-list div { display: grid; grid-template-columns: 32px 1fr 50px; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.045); }
.app-list i { width: 28px; height: 28px; border-radius: 8px; background: rgba(104,189,242,.22); }
.app-list span { height: 7px; border-radius: 8px; background: rgba(255,255,255,.15); }
.app-list b { height: 7px; border-radius: 8px; background: rgba(255,255,255,.09); }
.float-card { position: absolute; right: -12px; bottom: 28px; width: 205px; padding: 16px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); transform: rotate(2deg); }
.float-card small { display: block; color: var(--muted); font-weight: 700; }
.float-card strong { display: block; margin: 4px 0 8px; font-size: 1.1rem; }
.progress { height: 7px; border-radius: 99px; background: #edf1f5; overflow: hidden; }
.progress span { display: block; width: 68%; height: 100%; border-radius: 99px; background: var(--brand); }

.logo-strip { padding: 24px 0; border-block: 1px solid var(--line); background: #fff; }
.logo-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 40px; color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.logo-strip strong { color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 1px 0 rgba(13,24,48,.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -80px; top: -80px; border-radius: 50%; background: var(--card-soft); }
.product-card:hover { transform: translateY(-6px); border-color: var(--card-accent); box-shadow: var(--shadow-sm); }
.product-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 34px; border-radius: 50%; color: var(--card-accent); background: var(--card-soft); }
.product-icon img { width: 30px; height: 30px; }
.product-card h3 { margin: 0 0 9px; font-size: 1.45rem; letter-spacing: -.035em; }
.product-card p { margin: 0 0 22px; color: var(--muted); }
.product-card .learn { color: var(--card-accent); font-weight: 850; }
.product-card .learn::after { content: " →"; }

.integration { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.flow-board { position: relative; min-height: 650px; border-radius: var(--radius-xl); background: linear-gradient(145deg, #12203c, #081326); box-shadow: var(--shadow); }
.flow-line { position: absolute; left: 50%; top: 12%; bottom: 12%; width: 2px; background: linear-gradient(var(--brand-2), rgba(104,189,242,.08)); }
.flow-node { position: absolute; z-index: 2; display: flex; align-items: center; gap: 14px; width: 196px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); box-shadow: 0 12px 34px rgba(0,0,0,.17); }
.flow-node img { width: 28px; height: 28px; }
.flow-node small { display: block; color: #9fb0ca; }
.flow-node strong { font-size: .92rem; }
.flow-node:nth-child(2) { left: 5%; top: 5%; }
.flow-node:nth-child(3) { right: 5%; top: 16%; }
.flow-node:nth-child(4) { left: 7%; top: 29%; }
.flow-node:nth-child(5) { right: 7%; top: 42%; }
.flow-node:nth-child(6) { left: 8%; top: 55%; }
.flow-node:nth-child(7) { right: 5%; top: 68%; }
.flow-node:nth-child(8) { left: 10%; bottom: 4%; }
.flow-core { position: absolute; z-index: 3; left: 50%; top: 50%; display: grid; place-items: center; width: 108px; height: 108px; border-radius: 50%; color: var(--navy); background: var(--brand-2); box-shadow: 0 0 0 14px rgba(104,189,242,.10), 0 0 60px rgba(104,189,242,.24); transform: translate(-50%,-50%); }
.flow-core img { width: 76px; height: 76px; border-radius: 50%; }
.check-list { display: grid; gap: 18px; margin: 30px 0 34px; }
.check-item { display: grid; grid-template-columns: 30px 1fr; gap: 13px; }
.check-item i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: #086caf; background: var(--brand-soft); font-style: normal; font-weight: 900; }
.check-item strong { display: block; margin-bottom: 3px; }
.check-item p { margin: 0; color: var(--muted); font-size: .95rem; }

.pricing-highlight { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.pricing-highlight-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.pricing-highlight h3 { margin: 0 0 12px; font-size: clamp(2rem,4vw,3.3rem); line-height: 1; letter-spacing: -.05em; }
.pricing-highlight p { color: var(--muted); }
.tier-pills { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.tier-pill { padding: 16px 10px; text-align: center; border-radius: 13px; background: var(--paper-2); }
.tier-pill strong { display: block; font-size: .9rem; }
.tier-pill small { color: var(--muted); font-size: .7rem; }
.tier-pill:first-child { color: #086caf; background: var(--brand-soft); }
.free-rule { display: flex; gap: 13px; margin-top: 20px; padding: 16px; border-radius: 14px; color: #25465d; background: var(--brand-soft); font-size: .9rem; }
.free-rule strong { color: #086caf; }

.cta-band { position: relative; overflow: hidden; padding: 76px 0; color: #fff; background: var(--navy); }
.cta-band::before { content: ""; position: absolute; width: 480px; height: 480px; right: -110px; top: -230px; border-radius: 50%; background: rgba(104,189,242,.14); }
.cta-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-row h2 { margin: 0 0 10px; font-size: clamp(2rem,5vw,3.8rem); letter-spacing: -.055em; line-height: 1; }
.cta-row p { margin: 0; color: #aebbd1; }
.cta-row .button-primary { background: var(--brand-2); color: var(--navy); }

.site-footer { padding: 66px 0 32px; background: #081222; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 50px; }
.footer-brand p { max-width: 330px; color: #93a2b9; }
.footer-col h2, .footer-col h4 { margin: 0 0 16px; font-size: .83rem; text-transform: uppercase; letter-spacing: .11em; color: #dce6f4; }
.footer-col a { display: block; margin: 10px 0; color: #93a2b9; font-size: .93rem; }
.footer-col a:hover { color: var(--brand-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #77879f; font-size: .83rem; }

/* WordPress-managed content */
.content-hero {
  padding: 74px 0 38px;
  background: linear-gradient(180deg, #f3f9fd, #fff);
}
.content-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.content-shell { padding: 38px 0 90px; }
.prose { max-width: 820px; color: var(--ink-2); font-size: 1.04rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3 { color: var(--ink); line-height: 1.1; letter-spacing: -.035em; }
.prose h2 { margin-top: 2.2em; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.prose h3 { margin-top: 1.8em; font-size: 1.35rem; }
.prose a { color: #086caf; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose img { height: auto; border-radius: 16px; }
.prose blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--brand); color: var(--muted); }

/* Legal documents */
.legal-hero {
  padding: 64px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 15%, rgba(104,189,242,.22), transparent 28%),
    linear-gradient(180deg, #f3f9fd, #fff);
}
.legal-breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 34px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.legal-breadcrumbs a:hover { color: var(--brand); }
.legal-hero h1 { max-width: 900px; margin: 0 0 20px; font-size: clamp(3rem,7vw,5.5rem); line-height: .94; letter-spacing: -.07em; }
.legal-lead { max-width: 760px; margin: 0; color: var(--ink-2); font-size: clamp(1.08rem,2vw,1.25rem); }
.legal-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 26px; color: var(--muted); font-size: .86rem; font-weight: 650; }
.legal-meta time { margin-left: 4px; color: var(--ink-2); }
.legal-meta a { color: #086caf; text-decoration: underline; text-underline-offset: 3px; }
.legal-shell { padding: 66px 0 104px; }
.legal-layout { display: grid; grid-template-columns: minmax(210px,250px) minmax(0,820px); justify-content: space-between; gap: 64px; align-items: start; }
.legal-sidebar { position: sticky; top: 106px; display: grid; gap: 16px; }
.legal-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.legal-card h2 { margin: 0 0 14px; color: var(--ink); font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; }
.legal-card ol { max-height: 42vh; margin: 0; padding: 0; overflow: auto; list-style: none; }
.legal-card li + li { border-top: 1px solid #edf1f5; }
.legal-card li a { display: block; padding: 10px 0; color: var(--muted); font-size: .86rem; line-height: 1.35; }
.legal-card li a:hover, .legal-card li a:focus-visible { color: #086caf; }
.legal-print { width: 100%; margin-top: 15px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-2); background: var(--paper-2); font-size: .82rem; font-weight: 750; }
.legal-print:hover { color: #086caf; border-color: #9bcfed; background: var(--brand-soft); }
.legal-help { background: linear-gradient(145deg, var(--brand-soft), #fff); box-shadow: none; }
.legal-help p { margin: 0 0 13px; color: var(--muted); font-size: .86rem; }
.legal-help > a { color: #086caf; font-size: .86rem; font-weight: 800; }
.legal-document { max-width: none; }
.legal-document h2, .legal-document h3 { scroll-margin-top: 112px; }
.legal-document > p, .legal-document > ul, .legal-document > ol { max-width: 760px; }
.legal-document li { margin: .5em 0; }
.legal-document table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: .92rem; }
.legal-document th, .legal-document td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-document th { color: var(--ink); background: var(--paper-2); }
.legal-contact { margin-top: 64px; padding: 30px; border: 1px solid #b9dcf4; border-radius: 18px; background: var(--brand-soft); }
.legal-contact h2 { margin: 0 0 10px; font-size: 1.55rem; }
.legal-contact p { margin: 0; }

.post-list { display: grid; gap: 18px; }
.post-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.post-card h2 { margin: 0 0 10px; }
.post-card p { color: var(--muted); }
.pagination { margin-top: 34px; }
.empty-state { padding: 40px; border-radius: var(--radius-lg); background: var(--paper-2); }

/* Product pages */
.product-hero { --accent: var(--product-accent); --accent-soft: var(--product-soft); padding: 84px 0 74px; background: radial-gradient(circle at 84% 15%, var(--product-soft), transparent 28%), linear-gradient(180deg,#fbfcff,#fff); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.product-lockup { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 23px; color: var(--product-accent); font-weight: 850; }
.product-lockup .product-icon { width: 46px; height: 46px; margin: 0; border-radius: 14px; color: var(--product-accent); background: var(--product-soft); }
.product-lockup .product-icon img { width: 25px; }
.product-hero h1 { margin: 0 0 20px; font-size: clamp(3rem,6vw,5.7rem); line-height: .94; letter-spacing: -.07em; }
.product-hero h1 span { color: var(--product-accent); }
.product-hero p { max-width: 640px; margin: 0 0 28px; color: var(--ink-2); font-size: 1.18rem; }
.product-visual { position: relative; min-height: 500px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.product-visual-top { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line); }
.product-visual-top .dots { display: flex; gap: 6px; }
.product-visual-top i { width: 7px; height: 7px; border-radius: 50%; background: #d5dce6; }
.product-visual-top b { width: 74px; height: 27px; border-radius: 9px; background: var(--product-soft); }
.product-visual-body { display: grid; grid-template-columns: 120px 1fr; min-height: 448px; }
.product-visual-side { padding: 20px 14px; background: #f8fafc; border-right: 1px solid var(--line); }
.product-visual-side strong { display: block; height: 34px; margin-bottom: 20px; border-radius: 10px; background: var(--product-accent); opacity: .9; }
.product-visual-side span { display: block; height: 8px; margin: 18px 6px; border-radius: 8px; background: #dfe5ed; }
.product-visual-main { padding: 24px; }
.mock-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mock-heading strong { font-size: 1.08rem; }
.mock-heading b { width: 96px; height: 32px; border-radius: 10px; background: var(--product-accent); }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mock-card { min-height: 92px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; }
.mock-card small { display: block; color: var(--muted); }
.mock-card strong { display: block; margin-top: 7px; font-size: 1.35rem; }
.mock-panel { margin-top: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; }
.mock-row { display: grid; grid-template-columns: 32px 1fr 80px; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid #edf0f4; }
.mock-row:last-child { border: 0; }
.mock-row i { width: 30px; height: 30px; border-radius: 9px; background: var(--product-soft); }
.mock-row span, .mock-row b { height: 8px; border-radius: 8px; background: #e2e7ee; }
.mock-row b { background: var(--product-soft); }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.feature-number { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 36px; border-radius: 10px; color: var(--product-accent); background: var(--product-soft); font-size: .8rem; font-weight: 900; }
.feature h3 { margin: 0 0 8px; font-size: 1.25rem; letter-spacing: -.025em; }
.feature p { margin: 0; color: var(--muted); }

.api-panel { display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; border-radius: var(--radius-xl); background: var(--navy); box-shadow: var(--shadow); }
.api-copy { padding: 58px; color: #fff; }
.api-copy h2 { margin: 0 0 16px; font-size: clamp(2rem,4vw,3.4rem); line-height: 1; letter-spacing: -.05em; }
.api-copy p { color: #aebbd1; }
.code-window { margin: 34px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: #07101f; color: #b8c7dc; font: 0.86rem/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; overflow: auto; }
.code-window .c-key { color: #83e7c0; }
.code-window .c-str { color: #f4bd77; }
.code-window .c-comment { color: #63748e; }

.pricing-page-hero { padding: 76px 0 54px; text-align: center; background: linear-gradient(180deg,#f3f9fd,#fff); }
.pricing-page-hero h1 { max-width: 880px; margin: 0 auto 18px; font-size: clamp(3rem,6vw,5.4rem); line-height: .95; letter-spacing: -.07em; }
.pricing-page-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.15rem; }
.product-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 32px; }
.product-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-weight: 750; color: var(--ink-2); }
.product-tab img { width: 21px; height: 21px; }
.product-tab.active { color: var(--tab-accent); border-color: var(--tab-accent); background: var(--tab-soft); }
.product-tab[aria-selected="true"] { color: var(--tab-accent); border-color: var(--tab-accent); background: var(--tab-soft); }
.pricing-shell { padding: 30px 0 96px; }
.pricing-header { max-width: 720px; margin: 0 0 28px; }
.pricing-header h2 { margin: 0 0 8px; font-size: 2.1rem; letter-spacing: -.045em; }
.pricing-header p { margin: 0; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.price-card.featured { border: 2px solid var(--product-accent); box-shadow: var(--shadow-sm); transform: translateY(-8px); }
.price-card .badge { position: absolute; top: -13px; left: 50%; padding: 5px 11px; border-radius: 99px; color: #fff; background: var(--product-accent); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; transform: translateX(-50%); white-space: nowrap; }
.price-card h3 { margin: 0 0 14px; font-size: 1rem; }
.price { min-height: 60px; margin-bottom: 14px; }
.price strong { font-size: 2rem; letter-spacing: -.06em; }
.price span { color: var(--muted); font-size: .8rem; }
.price-card > p { min-height: 48px; margin: 0 0 16px; color: var(--muted); font-size: .83rem; }
.price-card ul { flex: 1; margin: 18px 0 24px; padding: 0; list-style: none; }
.price-card li { position: relative; margin: 10px 0; padding-left: 20px; color: var(--ink-2); font-size: .82rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--product-accent); font-weight: 900; }
.price-card .button { width: 100%; font-size: .82rem; }
.pricing-note { margin-top: 22px; padding: 17px 20px; border-radius: 14px; color: #25465d; background: var(--product-soft); font-size: .9rem; }

.platform-hero { padding: 90px 0 70px; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(104,189,242,.25), transparent 34%); }
.platform-hero h1 { max-width: 900px; margin: 0 auto 20px; font-size: clamp(3rem,7vw,6.2rem); line-height: .92; letter-spacing: -.075em; }
.platform-hero p { max-width: 760px; margin: 0 auto 30px; color: var(--ink-2); font-size: 1.18rem; }
.platform-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.platform-card { min-height: 310px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.platform-card.large { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.platform-card h3 { margin: 0 0 10px; font-size: 1.65rem; letter-spacing: -.04em; }
.platform-card p { color: var(--muted); }
.platform-mark { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 52px; border-radius: 16px; color: var(--brand); background: var(--brand-soft); font-size: 1.35rem; font-weight: 900; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.metric { padding: 20px; border-radius: 14px; background: var(--paper-2); }
.metric strong { display: block; font-size: 1.4rem; }
.metric small { color: var(--muted); }

.faq { max-width: 880px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-size: 1.4rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 740px; margin: -4px 0 22px; color: var(--muted); }

@media (max-width: 1020px) {
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 70px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
  .nav-links.open { display: grid; gap: 16px; }
  .mobile-toggle { display: block; }
  .nav-login-menu { display: block; }
  .nav-login-options { position: fixed; top: 70px; right: 20px; left: 20px; width: auto; }
  .hero-grid, .product-hero-grid, .integration, .pricing-highlight-grid { grid-template-columns: minmax(0,1fr); }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .microproof { justify-content: center; }
  .app-shell { max-width: 690px; margin: 0 auto; transform: none; }
  .product-grid, .feature-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(3,1fr); }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2; }
  .product-visual { max-width: 680px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(2.7rem,12.5vw,3.6rem); }
  .nav-actions .button { display: none; }
  .app-main { grid-template-columns: 62px 1fr; }
  .app-content { padding: 17px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat:nth-child(n+2) { display: none; }
  .float-card { display: none; }
  .product-grid, .feature-grid, .pricing-grid, .platform-grid, .platform-card.large, .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { gap: 14px; }
  .price-card { min-height: auto; }
  .flow-board { min-height: 720px; }
  .flow-node { width: 166px; padding: 10px; }
  .flow-node:nth-child(2) { left: 2%; top: 4%; }
  .flow-node:nth-child(3) { right: 2%; top: 17%; }
  .flow-node:nth-child(4) { left: 2%; top: 30%; }
  .flow-node:nth-child(5) { right: 2%; top: 43%; }
  .flow-node:nth-child(6) { left: 2%; top: 56%; }
  .flow-node:nth-child(7) { right: 2%; top: 69%; }
  .flow-node:nth-child(8) { left: 2%; bottom: 3%; }
  .tier-pills { grid-template-columns: repeat(2,1fr); }
  .tier-pill:last-child { grid-column: 1 / -1; }
  .cta-row { display: block; text-align: center; }
  .cta-row .button { margin-top: 24px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .product-visual-body { grid-template-columns: 72px 1fr; }
  .product-visual-side { padding: 18px 9px; }
  .mock-cards { grid-template-columns: 1fr; }
  .mock-card:nth-child(n+2) { display: none; }
  .api-panel { grid-template-columns: 1fr; }
  .api-copy { padding: 36px; }
  .code-window { margin: 0 20px 24px; }
  .platform-card.large { display: block; }
  .metric-row { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .legal-card ol { max-height: none; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 560px) {
  .legal-hero { padding: 44px 0; }
  .legal-breadcrumbs { margin-bottom: 26px; }
  .legal-sidebar { grid-template-columns: 1fr; }
  .legal-shell { padding: 42px 0 78px; }
  .legal-contact { padding: 22px; }
  .legal-document table { display: block; overflow-x: auto; }
}

@media print {
  .site-header, .site-footer, .legal-sidebar, .legal-breadcrumbs, .legal-meta a { display: none !important; }
  .legal-hero { padding: 0 0 24px; border-bottom: 1px solid #aaa; background: #fff; }
  .legal-hero h1 { font-size: 34pt; }
  .legal-shell { padding: 24px 0; }
  .legal-layout { display: block; }
  .legal-document { max-width: none; color: #111; font-size: 10.5pt; }
  .legal-document h2, .legal-document h3 { break-after: avoid; }
  .legal-document p, .legal-document li, .legal-document table { break-inside: avoid; }
  .legal-contact { border-color: #aaa; background: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Brand guide */
.brand-hero { padding: 82px 0 60px; background: linear-gradient(180deg,#f2f9fe,#fff); }
.brand-hero h1 { margin: 0 0 18px; font-size: clamp(3rem,7vw,5.8rem); line-height: .94; letter-spacing: -.07em; }
.brand-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.15rem; }
.brand-logo-board { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.brand-tile { display: flex; min-height: 240px; align-items: center; justify-content: center; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.brand-tile.dark { background: var(--navy); }
.brand-tile.dark .brand-wordmark { filter: brightness(0) invert(1); }
.brand-lockups { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.brand-lockup { display: grid; place-items: center; min-height: 150px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.brand-lockup img { width: min(100%, 270px); }
.swatch-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.swatch { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.swatch-color { height: 120px; background: var(--swatch); }
.swatch-copy { padding: 16px; }
.swatch-copy strong, .swatch-copy small { display: block; }
.swatch-copy small { margin-top: 4px; color: var(--muted); font-family: ui-monospace,monospace; }
.type-specimen { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.type-display { margin: 0 0 20px; font-size: clamp(3rem,7vw,6rem); line-height: .9; letter-spacing: -.075em; font-weight: 850; }
.type-body { max-width: 740px; margin: 0; color: var(--muted); font-size: 1.15rem; }
.component-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
@media (max-width: 720px) { .brand-logo-board, .brand-lockups, .swatch-grid { grid-template-columns: 1fr; } }

/* Official Feradel logo treatments */
.brand-wordmark { width: min(100%, 320px); height: auto; }
.brand-mark { width: 108px; height: 108px; border-radius: 50%; }
.brand-source { margin-top: 16px; color: var(--muted); font-size: .86rem; }
.hero-brand-mark { position: absolute; right: 26px; top: 18px; width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,.18); }

@media (max-width: 720px) {
  .logo-master { min-width: 126px; }
  .logo-wordmark { width: 122px; }
}
