/* Nexora Labs - original design system (Auralogics Labs). Not derived from third-party theme CSS. */
@import url("enhanced.css");
@import url("launch.css");
@import url("premium.css");
@import url("typography.css");

:root {
  --accent: #f39a09;
  --accent-hover: #e08d08;
  --accent-soft: #f4f4f5;
  --accent-glow: rgba(15, 23, 42, 0.06);
  --shadow-accent: 0 2px 12px rgba(0, 82, 255, 0.2);
  --shadow-accent-hover: 0 6px 20px rgba(0, 82, 255, 0.24);
  --blue: #0052ff;
  --blue-hover: #0047e6;
  --blue-soft: #e8f0ff;
  --ink: #0a0a0a;
  --heading: #0a0a0a;
  --text: rgb(71, 85, 105);
  --text-body: rgb(71, 85, 105);
  --muted: #71717a;
  --line: #e4e4e7;
  --cream: #f9f8f6;
  --dark: #141414;
  --dark-card: #232323;
  --dark-border: #333;
  --white: #fff;
  --green: #16a34a;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 64px rgba(0, 82, 255, 0.12), 0 8px 28px rgba(0, 0, 0, 0.08);
  --font: "Lora", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --font-ui: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --container: 1400px;
  --gutter: clamp(20px, 4.5vw, 48px);
  --section-y: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
h1, h2, h3, h4, h5, h6, .section-title, .brand-text strong { font-family: var(--font); }

/* UI chrome uses DM Sans */
.btn,
.header-nav > a,
.nav-dropdown-toggle,
.mobile-nav-label,
.mobile-nav-sublink,
.header-link,
.hero-eyebrow,
.section-kicker,
.badge-soon,
.chip,
.feature-card__tag,
.hero-trust,
.footer-col a,
.footer-bottom,
.article-meta-bar,
.search-panel-label,
.category-nav a,
.link-arrow,
.trust-track span,
.product-tab,
.product-feature-tab,
.dropdown-item strong,
.dropdown-item-desc,
.step-card-v2__num,
.step-icon,
.int-logo,
input, select, textarea, label {
  font-family: var(--font-ui);
}

/* Lora adjustments — override enhanced.css hardcoded values */
.step-card-v2 p,
.step-card p,
.bento-card p,
.int-card p,
.int-card-v2__body p,
.feature-card p,
.cta-mini-card p { line-height: 1.7; }

.step-card-v2 h3,
.step-card h3,
.bento-card h3,
.feature-card h3 {
  letter-spacing: -0.01em;
  line-height: 1.25;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - var(--gutter))); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 60px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-transform: capitalize;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              transform 0.25s var(--ease-out);
              
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--heading);
  color: var(--white);
  border-color: var(--heading);

}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-hover);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary,
.btn-outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--heading);
  background: var(--heading);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--cream); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(0, 82, 255, 0.3);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.4);
}
.btn-blue:active { transform: translateY(0); }
.btn-sm { min-height: 40px; padding: 0 20px; font-size: 13.5px; border-radius: 60px; }
.btn-block { width: 100%; }
.btn-icon { flex-shrink: 0; }
button.btn { appearance: none; }

/* Header - base; see enhanced.css for premium shell */
.site-header { position: sticky; top: 0; z-index: 200; }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  display: block;
  width: clamp(132px, 12vw, 178px);
  height: auto;
}
.site-footer .brand-logo { width: 168px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(145deg, #18181b 0%, #3f3f46 100%);
  color: #fff; font-weight: 700; font-size: 16px;
  display: grid; place-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.brand-text { font-size: 17px; color: var(--muted); font-weight: 500; letter-spacing: -0.02em; }
.brand-text strong { color: var(--ink); font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-link { font-size: 15px; font-weight: 600; color: var(--ink); }
.header-icon-btn {
  width: 44px; height: 44px; border-radius: 60px;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted);
  background: var(--white); transition: border-color .2s, color .2s, transform .2s;
}
.header-icon-btn:hover { border-color: #d4d4d8; color: var(--ink); }

/* Hero */
.hero {
  padding: 72px 0 48px;
  text-align: center;
  background: var(--white);
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 20px;
  padding: 4px 17px; border-radius: var(--radius-pill);
 color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;text-transform: uppercase;background:var(--blue-hover);
}
.hero h1 {
  margin: 0 auto;
  max-width: 880px;
}
.hero .lead {
  margin: 22px auto 0;
  max-width: 640px;
}
.hero-cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-visual {
  margin: 56px auto 0; max-width: 1100px; position: relative;
}
.hero-glow {
  position: absolute; inset: -8% -4%;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,82,255,.12), rgba(236,72,153,.08) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-shot {
  position: relative; z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--white);
}
.hero-trust {
  margin-top: 40px; display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; color: var(--muted); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust span { opacity: .45; }

/* Section common */
.section { padding: var(--section-y) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }
.section-center { text-align: center; }
.section-title {
  margin: 0 0 14px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  margin: 0 auto 48px;
  max-width: 620px;
}
.section-dark .section-sub { color: #a1a1aa; }
.section-cta { margin-top: 40px; text-align: center; }
.link-arrow { font-size: 15px; font-weight: 600; color: var(--ink); }
.link-arrow--light { color: #fff; }
.link-arrow--light:hover { color: #e4e4e7; }
.link-arrow::after { content: " ->"; }

/* How it works - 3+2 grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  grid-column: span 2;
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  text-align: left;
}
.step-card:nth-child(4) { grid-column: 2 / span 2; }
.step-card:nth-child(5) { grid-column: 4 / span 2; }
.step-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 16px;
  font-size: 13px; font-weight: 800; color: var(--blue);
  background: var(--blue-soft);
}
.step-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--ink); }
.step-card p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.55; }
.step-card .step-tag {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 600; color: var(--blue);
}

/* Bento / Key products */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--cream);
  border: 1px solid #ebebeb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.bento-card .bento-body { padding: 24px 26px 28px; }
.bento-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; color: var(--ink); }
.bento-card p { margin: 0 0 14px; font-size: 15px; color: var(--text); }
.bento-card .bento-shot {
  flex: 1; min-height: 200px;
  background: #eef2ff;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 12px 12px 0;
}
.bento-card .bento-shot img {
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-height: 220px; width: auto; max-width: 100%;
}
.bento-lg { grid-column: span 7; }
.bento-md { grid-column: span 5; }
.bento-sm { grid-column: span 4; }
.bento-wide { grid-column: span 12; }
.bento-wide .bento-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
}
.bento-wide .bento-body { display: flex; flex-direction: column; justify-content: center; }

/* Product cards (products page) */
.product-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.product-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-tile img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.product-tile .tile-body { padding: 26px; }
.product-tile h2 { margin: 0 0 8px; font-size: 22px; color: var(--ink); }
.product-tile p { margin: 0 0 16px; font-size: 15px; color: var(--text); }
.product-tile ul { margin: 0 0 20px; padding-left: 1.2rem; font-size: 14px; color: var(--text); }
.product-tile li { margin-bottom: 6px; }
.product-tile .tile-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Integrations dark grid */
.integrations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.int-card {
  display: grid; grid-template-columns: 48px 1fr; gap: 14px;
  padding: 22px; background: var(--dark-card);
  border: 1px solid var(--dark-border); border-radius: var(--radius-lg);
}
.int-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: #fff;
  letter-spacing: -.02em;
}
.int-apache { background: #d22128; }
.int-nginx { background: #009639; }
.int-iis { background: #0078d4; }
.int-elementor { background: #92003b; }
.int-divi { background: #7b2cbf; }
.int-gutenberg { background: #3858e9; }
.int-woo { background: #7f54b3; }
.int-cf7 { background: #1a73e8; }
.int-wp { background: #21759b; }
.int-card strong { display: block; font-size: 16px; color: #fff; margin-bottom: 4px; }
.int-card p { margin: 0; font-size: 14px; color: #9ca3af; line-height: 1.5; }

/* Pricing bars */
.pricing-bars { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; }
.pricing-bar {
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 24px; align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.pricing-bar.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.pricing-bar h3 { margin: 0; font-size: 20px; color: var(--ink); }
.pricing-bar ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.pricing-bar li { font-size: 14px; color: var(--text); }
.pricing-bar li::before { content: "+ "; color: var(--green); font-weight: 700; }
.pricing-note { text-align: center; margin-top: 24px; font-size: 15px; color: var(--muted); }
.pricing-note a { color: var(--accent); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 16px; font-weight: 600;
  color: var(--ink); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 8px;
  background: #e4e4e7; position: relative; flex-shrink: 0;
}
.faq-chevron::after {
  content: ""; position: absolute; top: 11px; left: 10px;
  border: 5px solid transparent; border-top-color: var(--muted);
  transform: translateY(2px);
}
.faq-item[open] .faq-chevron::after { transform: rotate(180deg) translateY(-4px); }
.faq-item p {
  margin: 0; padding: 0 24px 22px;
  font-size: 16px; color: var(--text); line-height: 1.65;
}
.faq-help {
  text-align: center; margin-top: 36px;
  font-size: 15px; color: var(--muted);
}
.faq-help a { color: var(--blue); font-weight: 600; }

/* Hero extends behind transparent header on front page + about */
body.home .hero,
body.page-about .hero--compact {
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 64px);
}

/* ── Validate band (front page CTA) ────────────────────── */
.validate-band {
  position: relative;
  overflow: hidden;
  background: #141414;
  border-radius: 24px;
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: center;
}
.validate-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(243,154,9,0.13), transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 30%, rgba(0,82,255,0.09), transparent 60%);
  pointer-events: none;
}
.validate-band__left { position: relative; z-index: 1; }
.validate-band__left .section-kicker {
  /* color: rgba(255,255,255,0.45); */
  margin-bottom: 16px;
  /* display: block; */
}
.validate-band__left h2 {
  color: #fff;
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.validate-band__left p {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}
.validate-band__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-white {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.validate-band__right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.validate-metric {
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.validate-metric__val {
  display: block;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.validate-metric__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

/* ── Stack CTA (about page) ─────────────────────────────── */
.stack-cta {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
  overflow: hidden;
}
.stack-cta__stacks {
  padding: 52px 56px;
}
.stack-cta__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 20px;
}
.stack-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-tag {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.stack-tag:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.stack-cta__divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}
.stack-cta__copy {
  padding: 52px 56px;
}
.stack-cta__copy h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.stack-cta__copy p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.stack-cta__note {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
}

/* Final CTA band */
.cta-band {
  background: var(--cream);
  border: 1px solid #ebebeb;
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: center;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  margin: 0 0 12px; font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15; letter-spacing: -.03em; color: var(--ink);
}
.cta-band p { margin: 0 0 24px; color: var(--text); font-size: 16px; }
.cta-band .cta-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.cta-mini-card {
  padding: 24px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.cta-mini-card p { margin: 0 0 12px; font-size: 15px; font-style: italic; color: var(--text); }
.cta-mini-card strong { font-size: 14px; color: var(--ink); }

/* Footer */
.site-footer {
  background: #1c1a1e;
  border-top: none;
  padding: 52px 0 32px;
}
.site-footer .brand-logo { opacity: 0.92; }

/* Footer trial CTA */
.footer-trial {
  padding: 48px 56px;
  margin: 0 0 52px;
  border-radius: 20px;
  background: #252229;
  border: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 48px;
  align-items: center;
}
.footer-trial__copy h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.footer-trial__copy p {
  color: rgba(255,255,255,0.48);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.footer-trial-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.footer-trial-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 18px;
  height: 56px;
  font-size: 15px;
  font-family: var(--font-ui);
  color: #0a0a0a;
  outline: none;
  min-width: 0;
}
.footer-trial-form input[type="email"]::placeholder { color: #9ca3af; }
.footer-trial-form .btn {
  margin: 5px;
  border-radius: 7px;
  flex-shrink: 0;
  height: 46px;
  white-space: nowrap;
}
.footer-trial-success {
  font-family: var(--font-ui);
  font-size: 15px;
  color: #fff;
  padding: 18px 24px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: 10px;
  margin: 0;
}
.footer-trial__trust {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 13px;
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.35);
}

.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px; flex-wrap: wrap; gap: 20px;
}
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.footer-social-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.footer-social-link svg { display: block; }
.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.footer-legal-inline a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
/* prose link color handled inside .prose ruleset above */
.footer-legal-inline a:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 16px; font-family: var(--font-ui); color: rgba(255,255,255,0.35); }
.hero--compact { padding: 56px 0 32px; }
.legal-prose { max-width: 800px; margin: 0 auto; text-align: left; }
.legal-prose h2 { margin-top: 2rem; font-size: 22px; }
.legal-prose p, .legal-prose li { font-size: 17px; line-height: 1.75; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.footer-col h4 { margin: 0 0 16px; font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color:var(--white); font-family: var(--font-body); }
.footer-col a {
  display: block; margin-bottom: 10px; font-size: 15px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Inner pages */
/* ── About page ─────────────────────────────────────── */
.about-trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.about-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.about-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 28px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.about-trust-item__icon {
  flex-shrink: 0;
  color: var(--accent);
  stroke: var(--accent);
}
.about-trust-item__sep {
  width: 1px;
  height: 24px;
  background: var(--line);
  flex-shrink: 0;
}

/* About grid — override h3 (was h2 in CSS) */
.about-card h3 {
  font-family: var(--font);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.about-card__num {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.about-card {
  transition: border-color 0.25s, box-shadow 0.25s;
}
.about-card:hover {
  border-color: #d4d4d8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.about-card .link-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.about-card .link-arrow::after { content: ' →'; }
.about-card .link-arrow:hover { color: var(--muted); }
.about-card--wide { grid-column: span 2; }

/* About products links (card 05) */
.about-products { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.about-product-link:hover {
  border-color: #d4d4d8;
  background: #f4f4f5;
}
.about-product-link strong {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  min-width: 130px;
}
.about-product-link span:not(.about-product-link__arrow) {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
}
.about-product-link__arrow {
  font-size: 16px;
  color: var(--muted);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.about-product-link:hover .about-product-link__arrow {
  transform: translateX(4px);
  color: var(--ink);
}

/* ── About dark CTA (combined stacks + contact) ─────── */
.about-dark-cta {
  background: #141414;
  padding: 72px 0;
}
.about-dark-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.about-dark-cta__stacks { padding: 52px 56px; }
.about-dark-cta__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 20px;
}
/* Dark-styled stack chips */
.about-dark-cta .stack-tags { gap: 8px; }
.about-dark-cta .stack-tag {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}
.about-dark-cta .stack-tag:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.about-dark-cta__divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}
.about-dark-cta__contact { padding: 52px 56px; }
.about-dark-cta__contact h2 {
  font-family: var(--font);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 14px;
}
.about-dark-cta__contact > p {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 20px 0 28px;
  max-width: 480px;
}
/* Orange accent button inside dark bg */
.about-dark-cta .btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 2px 14px rgba(243,154,9,0.28);
}
.about-dark-cta .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 22px rgba(243,154,9,0.38);
}
.about-dark-cta__email {
  margin: 18px 0 0;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
}
.about-dark-cta__email a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.about-dark-cta__email a:hover { color: #fff; }

/* ── Products page ──────────────────────────────────── */
.product-section__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-section__num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.products-bundle {
  margin-top: 80px;
  padding: 56px 64px;
  background: var(--ink);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.products-bundle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(243,154,9,0.15), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 30%, rgba(0,82,255,0.1), transparent 55%);
  pointer-events: none;
}
/* Products bundle — 2-col: copy left, product cards right */
.products-bundle {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
}
.products-bundle__inner { position: relative; z-index: 1; }
.products-bundle .section-kicker { color: rgba(255,255,255,0.45); display: block; margin-bottom: 16px; }
.products-bundle h2 {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
  margin: 0 0 16px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.products-bundle p {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.products-bundle__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.products-bundle__features {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-feature {
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transition: background 0.25s, border-color 0.25s;
}
.bundle-feature:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}
.bundle-feature__tag {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 5px;
}
.bundle-feature__desc {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.5);
}

/* Buttons inside dark band/bundle — override black primary → accent orange */
.validate-band .btn-primary,
.products-bundle .btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 2px 14px rgba(243, 154, 9, 0.3);
}
.validate-band .btn-primary:hover,
.products-bundle .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 22px rgba(243, 154, 9, 0.4);
}

/* ── Empty state ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 56px 24px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 16px;
}
.empty-state p { margin: 0 0 24px; }

.page-hero {
  padding: 64px 0 48px; text-align: center;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin: 0;
  letter-spacing: -0.03em;
}
.page-hero p {
  margin: 16px auto 0;
  max-width: 600px;
}
.page-hero .hero-eyebrow { margin-bottom: 16px; }

/* Articles / content pages */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .15s;
}
.post-card:hover { box-shadow: var(--shadow); }
.post-card-link { display: block; padding: 26px; }
.post-card h3 { margin: 12px 0 8px; font-size: 18px; color: var(--ink); line-height: 1.35; }
.post-card p { margin: 0; font-size: 15px; color: var(--muted); }
.chip {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  background: #f4f4f5; font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em;
}
.post-card-meta { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; gap: 12px; }
.category-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.category-nav a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); font-size: 14px; font-weight: 500;
}
.category-nav a.is-active, .category-nav a:hover {
  border-color: var(--ink); background: #f4f4f5; color: var(--ink);
}

/* Demo page */
.demo-block {
  padding: 56px 0; border-bottom: 1px solid var(--line);
}
.demo-block:nth-child(even) { background: var(--cream); }
.demo-block-header { margin-bottom: 28px; }
.demo-block-header h2 { margin: 0 0 8px; font-size: 28px; color: var(--ink); }
.demo-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.demo-gallery img {
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow); width: 100%;
}
.form-card {
  padding: 36px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; background: var(--white);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ── Article header ─────────────────────────────────── */
.article-header {
  padding: 52px 0 44px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.article-header__chip { margin-bottom: 20px; }
.article-header__title {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 860px;
}
.article-header__lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  color: var(--text);
  margin: 0 0 24px;
  max-width: 680px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
}
.article-meta-bar time { color: var(--muted); }
.article-meta-bar .meta-sep { color: var(--line); user-select: none; }
.article-meta-cat {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s;
}
.article-meta-cat:hover { color: var(--blue); }

/* ── Article layout ──────────────────────────────────── */
.article-page { padding: 48px 0 88px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
}

/* ── Prose — full editorial typography ──────────────── */
.prose {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text);
}
.prose h2 {
  font-family: var(--font);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 52px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 36px 0 10px;
}
.prose h4 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 28px 0 8px;
}
.prose h5,
.prose h6 {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 24px 0 8px;
}
.prose p { margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul,
.prose ol {
  margin: 0 0 20px;
  padding-left: 1.5em;
}
.prose li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.prose li:last-child { margin-bottom: 0; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose em { font-style: italic; }
.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 82, 255, 0.25);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.prose a:hover {
  color: var(--blue-hover);
  text-decoration-color: var(--blue-hover);
}
.prose code {
  font-family: 'Fira Code', 'Cascadia Code', Consolas, 'Courier New', monospace;
  font-size: 13.5px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--ink);
}
.prose pre {
  background: #0f172a;
  color: #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  overflow-x: auto;
  margin: 28px 0;
  font-size: 13.5px;
  line-height: 1.65;
  border: 1px solid rgba(255,255,255,0.05);
}
.prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
  border-radius: 0;
}
.prose blockquote {
  border-left: 3px solid var(--accent);
  margin: 28px 0;
  padding: 16px 22px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}
.prose blockquote p { margin: 0; }
.prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 44px 0;
}
.prose figure { margin: 32px 0; }
.prose figure img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.prose figcaption {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.prose th {
  background: var(--cream);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 10px 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.prose td {
  padding: 10px 16px;
  border: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.prose tr:nth-child(even) td { background: rgba(249,248,246,0.5); }

/* ── Breadcrumbs ────────────────────────────────────── */
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs li + li::before {
  content: "/";
  margin: 0 8px;
  opacity: 0.35;
}
.breadcrumbs a {
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs li[aria-current] { color: var(--muted); }

/* ── Sidebar ─────────────────────────────────────────── */
.article-sidebar { position: sticky; top: calc(var(--header-h) + 28px); }
.side-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  background: var(--white);
}
.side-card h3 {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin: 0 0 14px;
}
.side-card p { margin: 0 0 16px; font-family: var(--font-ui); font-size: 14px; line-height: 1.55; }
.side-card--cta {
  background: var(--ink);
  border-color: var(--ink);
}
.side-card--cta h3 { color: rgba(255,255,255,0.45); }
.side-card--cta p { color: rgba(255,255,255,0.72); }
.side-card--muted { background: var(--cream); border-color: var(--line); }
.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-links li {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.side-links li:first-child { padding-top: 0; }
.side-links li:last-child { border-bottom: none; padding-bottom: 0; }
.side-links a {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  display: block;
  transition: color 0.2s;
}
.side-links a:hover { color: var(--blue); }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .about-card--wide { grid-column: span 1; }
  .about-trust-item__sep { display: none; }
  .about-trust-strip__inner { gap: 4px; justify-content: flex-start; }
  .about-product-link strong { min-width: auto; }
  .about-dark-cta { padding: 48px 0; }
  .about-dark-cta__grid { grid-template-columns: 1fr; }
  .about-dark-cta__divider { width: auto; height: 1px; }
  .about-dark-cta__stacks, .about-dark-cta__contact { padding: 36px 32px; }
  .products-bundle { padding: 40px 36px; border-radius: 16px; grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; }
  .step-card, .step-card:nth-child(4), .step-card:nth-child(5) { grid-column: span 1; }
  .bento-lg, .bento-md, .bento-sm, .bento-wide { grid-column: span 12; }
  .bento-wide .bento-inner { grid-template-columns: 1fr; }
  .product-showcase, .integrations-grid, .post-grid, .demo-gallery { grid-template-columns: 1fr; }
  .pricing-bar { grid-template-columns: 1fr; text-align: left; }
  .cta-band { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-trial { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
  .validate-band { grid-template-columns: 1fr; padding: 40px 36px; gap: 36px; }
  .validate-band__right { flex-direction: row; flex-wrap: wrap; }
  .validate-metric { flex: 1; min-width: 140px; }
  .stack-cta { grid-template-columns: 1fr; }
  .stack-cta__divider { width: auto; height: 1px; }
  .stack-cta__stacks, .stack-cta__copy { padding: 36px 32px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; --section-y: 72px; }
  .about-trust-strip { padding: 16px 0; }
  .about-trust-item { padding: 8px 16px; font-size: 12.5px; }
  .about-dark-cta { padding: 36px 0; }
  .about-dark-cta__grid { border-radius: 14px; }
  .about-dark-cta__stacks, .about-dark-cta__contact { padding: 28px 24px; }
  .about-products { gap: 6px; }
  .about-product-link { flex-wrap: wrap; }
  .about-contact-strip { padding: 24px 20px; }
  .products-bundle { padding: 28px 24px; margin-top: 48px; }
  .article-header { padding: 32px 0 28px; }
  .article-page { padding: 32px 0 56px; }
  .prose pre { padding: 16px 18px; font-size: 12.5px; }
  .prose table { font-size: 13px; }
  .prose th, .prose td { padding: 8px 10px; }
  .footer-trial { padding: 28px 24px; }
  .footer-trial-form { flex-direction: column; align-items: stretch; border-radius: 10px; }
  .footer-trial-form input[type="email"] { height: 50px; }
  .footer-trial-form .btn { margin: 0 5px 5px; width: calc(100% - 10px); height: 46px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .validate-band { padding: 32px 24px; border-radius: 16px; }
  .validate-metric { flex: 1 1 100%; }
  .stack-cta__stacks, .stack-cta__copy { padding: 28px 24px; }
}
