/* polery.com premium direction: soft structuralism + asymmetrical bento */

:root {
  --paper: #f6f3ee;
  --paper-soft: #fbfaf7;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-deep: #f0ede7;
  --ink: #111827;
  --ink-soft: #4b5563;
  --ink-muted: #8b929e;
  --line: rgba(17, 24, 39, 0.09);
  --line-strong: rgba(17, 24, 39, 0.16);
  --blue: #2656ff;
  --blue-deep: #1437c8;
  --blue-soft: rgba(38, 86, 255, 0.1);
  --sage: #8da99b;
  --sage-soft: rgba(141, 169, 155, 0.16);
  --gold: #b8955c;
  --green: #0f9f73;
  --red: #d94d4d;
  --sans: "Geist", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Plus Jakarta Sans", "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1220px;
  --container-narrow: 920px;
  --gutter-d: 64px;
  --gutter-m: 20px;
  --section-pad-d: 128px;
  --section-pad-m: 72px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.19, 1, 0.22, 1);
  --shadow-ambient: 0 42px 90px -48px rgba(17, 24, 39, 0.46);
  --shadow-float: 0 26px 72px -42px rgba(17, 24, 39, 0.62);
}

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ol, ul, li, table, th, td, figure { margin: 0; padding: 0; }
ol, ul { list-style: none; }
table { border-collapse: collapse; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
[hidden] { display: none !important; }

::selection { background: var(--ink); color: #fff; }

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  min-width: 320px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(38, 86, 255, 0.12), transparent 31rem),
    radial-gradient(circle at 88% 10%, rgba(141, 169, 155, 0.2), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, #f4f1eb 52%, #fbfaf7 100%);
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.5) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

:focus-visible {
  outline: 3px solid rgba(38, 86, 255, 0.38);
  outline-offset: 4px;
}

strong { font-weight: 800; color: var(--ink); }

.section-inner,
.header-inner,
.footer-inner,
.footer-meta,
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter-d);
  padding-right: var(--gutter-d);
}

.section-inner.narrow { max-width: var(--container-narrow); }

main > section {
  position: relative;
  padding-top: var(--section-pad-d);
  padding-bottom: var(--section-pad-d);
}

.section-head {
  margin-bottom: 64px;
}

.section-head-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow,
.badge,
.pricing-badge,
.pricing-coming-badge,
.feature-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08), 0 12px 34px -28px rgba(17, 24, 39, 0.65);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-eyebrow::before,
.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(38, 86, 255, 0.09);
}

.section-head-center .section-eyebrow,
.industries-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-title,
.problem-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: var(--ink);
}

.section-sub,
.problem-body {
  margin-top: 22px;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.75;
}

.section-head-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  --btn-bg: rgba(255, 255, 255, 0.78);
  --btn-fg: var(--ink);
  --btn-ring: rgba(17, 24, 39, 0.11);
  --btn-icon-bg: rgba(17, 24, 39, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  padding: 6px 8px 6px 22px;
  border-radius: 999px;
  background: var(--btn-bg);
  box-shadow: inset 0 0 0 1px var(--btn-ring), inset 0 1px 1px rgba(255, 255, 255, 0.72), 0 18px 36px -30px rgba(17, 24, 39, 0.7);
  color: var(--btn-fg);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft), background 180ms var(--ease-soft), color 180ms var(--ease-soft);
}

.btn::after {
  content: "->";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--btn-icon-bg);
  font-size: 13px;
  letter-spacing: -0.08em;
  transition: transform 160ms var(--ease-soft), background 180ms var(--ease-soft), color 180ms var(--ease-soft);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--btn-ring), inset 0 1px 1px rgba(255, 255, 255, 0.78), 0 30px 64px -38px rgba(17, 24, 39, 0.82);
}

.btn:hover::after { transform: translate(4px, -1px) scale(1.05); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-sm { min-height: 40px; padding: 5px 7px 5px 16px; font-size: 13px; }
.btn-sm::after { width: 28px; height: 28px; font-size: 12px; }
.btn-lg { min-height: 58px; padding: 7px 9px 7px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--ink) 0%, #1c2535 48%, #2749db 100%);
  --btn-fg: #fff;
  --btn-ring: rgba(255, 255, 255, 0.18);
  --btn-icon-bg: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.btn-ghost {
  --btn-bg: rgba(255, 255, 255, 0.72);
  --btn-fg: var(--ink);
}

/* Floating island header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 22px;
  pointer-events: none;
}

.header-inner {
  width: min(calc(100% - 32px), 940px);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06), 0 26px 70px -50px rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
  transition: transform 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft), background 220ms var(--ease-soft);
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08), 0 32px 76px -44px rgba(17, 24, 39, 0.78);
  transform: translateY(-4px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-left: 12px;
}

.logo img { flex: 0 0 auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.035);
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(17, 24, 39, 0.66);
  font-size: 13px;
  font-weight: 750;
  transition: color 180ms var(--ease-soft), background 180ms var(--ease-soft), transform 180ms var(--ease-soft);
}

.header-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-1px);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.07);
  transition: transform 180ms var(--ease-soft), background 180ms var(--ease-soft);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms var(--ease-soft);
}

.menu-toggle span:first-child { transform: translateY(-4.5px); }
.menu-toggle span:last-child { transform: translateY(4.5px); }
body.menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 29;
  display: grid;
  place-items: center;
  padding: 92px 24px 24px;
  background: rgba(246, 243, 238, 0.78);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}

body.menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-panel {
  width: min(100%, 420px);
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08), 0 34px 90px -52px rgba(17, 24, 39, 0.9);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.035);
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 240ms var(--ease-soft), transform 240ms var(--ease-soft), background 180ms var(--ease-soft);
}

body.menu-open .mobile-menu-panel a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu-panel a:nth-child(1) { transition-delay: 80ms; }
body.menu-open .mobile-menu-panel a:nth-child(2) { transition-delay: 130ms; }
body.menu-open .mobile-menu-panel a:nth-child(3) { transition-delay: 180ms; }
body.menu-open .mobile-menu-panel a:nth-child(4) { transition-delay: 230ms; }
body.menu-open .mobile-menu-panel a:nth-child(5) { transition-delay: 280ms; }

/* Hero */
.hero {
  min-height: min(760px, calc(100dvh - 84px));
  padding-top: 56px !important;
  padding-bottom: 24px !important;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: min(980px, 78vw);
  height: min(560px, 58vw);
  border-radius: 999px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86), transparent 64%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 1.02fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.badge { margin-bottom: 26px; }

.hero-title {
  max-width: 13.5ch;
  font-family: var(--display);
  font-size: clamp(3rem, 5.1vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 900;
  color: var(--ink);
}

.hero-title em {
  display: block;
  margin-top: 0.08em;
  font-style: normal;
  color: var(--blue-deep);
}

.hero-sub {
  max-width: 45ch;
  margin-top: 28px;
  color: rgba(17, 24, 39, 0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  max-width: 46ch;
  margin-top: 20px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.65;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.68);
  font-size: 12px;
  font-weight: 750;
}

.hero-proof-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--green);
}

.hero-mockup {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 6% 4% 2% 8%;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(38, 86, 255, 0.12), rgba(141, 169, 155, 0.16));
  transform: rotate(-4deg);
  box-shadow: 0 50px 110px -70px rgba(17, 24, 39, 0.9);
}

.mockup-desktop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 7px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(17, 24, 39, 0.06));
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9), var(--shadow-float);
  overflow: hidden;
  transform: rotate(1.4deg);
}

.mockup-chrome {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 27px 27px 12px 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.mockup-chrome .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(17, 24, 39, 0.22);
}

.mockup-url {
  margin-left: auto;
  margin-right: auto;
  max-width: 64%;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.045);
  color: rgba(17, 24, 39, 0.52);
  font-size: 11px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-content {
  height: calc(100% - 40px);
  margin-top: 6px;
  border-radius: 12px 12px 27px 27px;
  background: var(--panel-deep);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.mockup-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mockup-fallback-text { display: none; }
.mockup-content.mockup-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #ece8df);
}
.mockup-content.mockup-fallback .mockup-fallback-text {
  display: block;
  color: var(--ink-muted);
  font-weight: 900;
  font-size: 28px;
}

.mockup-mobile {
  position: absolute;
  right: -16px;
  bottom: -4px;
  width: min(152px, 28%);
  aspect-ratio: 9 / 19;
  padding: 6px;
  border-radius: 30px;
  background: #151a24;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 34px 80px -46px rgba(17, 24, 39, 0.9);
  transform: rotate(-5deg);
}

.mockup-mobile-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--panel-deep);
  overflow: hidden;
}

.mockup-mobile-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Demo engine */
.demo-engine {
  margin-top: -24px;
  padding-top: 14px !important;
  padding-bottom: 42px !important;
  z-index: 1;
}

.demo-engine-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54)) padding-box,
    linear-gradient(145deg, rgba(17, 24, 39, 0.13), rgba(38, 86, 255, 0.16), rgba(141, 169, 155, 0.18)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-ambient);
}

.demo-engine-copy .section-eyebrow { margin-bottom: 16px; }

.demo-engine-title {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.demo-engine-sub {
  max-width: 52ch;
  margin-top: 20px;
  color: rgba(17, 24, 39, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.demo-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.demo-proof-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 12px 12px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(17, 24, 39, 0.07),
    0 22px 52px -42px rgba(17, 24, 39, 0.85);
  text-decoration: none;
  transition:
    transform 520ms var(--ease),
    box-shadow 520ms var(--ease);
}

.demo-proof-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(38, 86, 255, 0.16),
    0 34px 70px -44px rgba(17, 24, 39, 0.92);
}

.demo-proof-card:active {
  transform: translateY(-3px);
}

.demo-proof-visual {
  position: relative;
  height: 168px;
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.09);
}

.demo-proof-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 21px;
  z-index: 2;
  background:
    radial-gradient(circle 3px at 12px 11px, #e3655b 96%, transparent 100%),
    radial-gradient(circle 3px at 24px 11px, #e6b04a 96%, transparent 100%),
    radial-gradient(circle 3px at 36px 11px, #5bb98c 96%, transparent 100%),
    linear-gradient(180deg, #fdfdfd, #f0efeb);
  box-shadow: inset 0 -1px 0 rgba(17, 24, 39, 0.07);
}

.demo-proof-visual img {
  position: absolute;
  top: 21px;
  left: 0;
  width: 100%;
  height: calc(100% - 21px);
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms var(--ease);
}

.demo-proof-card:hover .demo-proof-visual img {
  transform: scale(1.05);
}

.demo-proof-label {
  position: absolute;
  top: 36px;
  left: 20px;
  z-index: 3;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 4px 8px 3px;
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  backdrop-filter: blur(4px);
}

.demo-proof-card strong {
  display: block;
  margin-top: 1px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.demo-proof-meta {
  display: block;
  color: rgba(17, 24, 39, 0.52);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
}

/* Proof */
.proof-band {
  padding-top: 0 !important;
  padding-bottom: 44px !important;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 7px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.07);
}

.proof-card {
  min-height: 128px;
  padding: 24px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.07), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.proof-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.proof-card span {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

/* Industries */
.industries {
  padding-top: 56px !important;
}

.industry-grid {
  max-width: 980px;
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.68);
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms var(--ease-soft), background 180ms var(--ease-soft), color 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft);
}

.industry-chip:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(38, 86, 255, 0.18), 0 18px 36px -32px rgba(17, 24, 39, 0.78);
}

.ind-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--blue);
}

.ind-icon svg { width: 100%; height: 100%; display: block; }

.industry-chip:hover .ind-icon { color: var(--blue-deep); }

/* Problem / who */
.problem {
  text-align: center;
}

.problem-title {
  max-width: 12ch;
  margin: 0 auto;
}

.problem-title em {
  display: block;
  font-style: normal;
  color: var(--blue-deep);
}

.problem-body {
  margin-left: auto;
  margin-right: auto;
}

.who-for-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.who-for-list li {
  position: relative;
  padding: 22px 24px 22px 60px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08), 0 18px 54px -44px rgba(17, 24, 39, 0.7);
  color: rgba(17, 24, 39, 0.78);
  font-weight: 700;
}

.who-for-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--sage-soft);
  box-shadow: inset 0 0 0 1px rgba(141, 169, 155, 0.38);
}

.who-for-list li::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--sage);
}

/* Feature cards */
.what-you-get,
.compare,
.faq,
.stats {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.pricing-card,
.featured-card,
.stat-card,
.intake-form,
.legal-doc {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(17, 24, 39, 0.12)) border-box;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92), var(--shadow-ambient);
}

.feature-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: transform 850ms var(--ease), box-shadow 850ms var(--ease), background 850ms var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92), 0 44px 96px -58px rgba(17, 24, 39, 0.92);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 17px;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(38, 86, 255, 0.1), rgba(141, 169, 155, 0.11));
  box-shadow: inset 0 0 0 1px rgba(38, 86, 255, 0.12);
}

.feature-icon svg { width: 23px; height: 23px; }
.feature-icon svg * { stroke-width: 1.25; }

.feature-card h3,
.pricing-tier,
.featured-meta h3,
.how-step h3 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.feature-card p,
.featured-meta p,
.how-step p,
.pricing-tagline {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.feature-card-coming {
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) padding-box,
    linear-gradient(145deg, rgba(141, 169, 155, 0.3), rgba(17, 24, 39, 0.1)) border-box;
}

.feature-coming-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--sage);
}

/* How */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.how-step {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.045);
  color: var(--blue);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.how-step h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

/* Featured bento */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

.featured-card {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 850ms var(--ease), box-shadow 850ms var(--ease);
}

.featured-card:first-child {
  grid-column: span 8;
  grid-row: span 2;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92), 0 46px 96px -58px rgba(17, 24, 39, 0.95);
}

.featured-screenshot {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 7px 7px 0;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background: var(--panel-deep);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.featured-card:first-child .featured-screenshot { aspect-ratio: 16 / 8.2; }

.featured-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 900ms var(--ease-soft);
}

.featured-card:hover .featured-screenshot img { transform: scale(1.035); }

.screenshot-fallback-label { display: none; }
.featured-screenshot.screenshot-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #ece8df);
}
.featured-screenshot.screenshot-fallback .screenshot-fallback-label {
  display: block;
  color: var(--ink-muted);
  font-family: var(--display);
  font-weight: 900;
}

.featured-meta {
  flex: 1;
  padding: 24px 26px 28px;
}

.featured-meta h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.featured-tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.045);
  color: rgba(17, 24, 39, 0.54);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Compare */
.compare-table-wrap {
  padding: 7px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 860px;
  overflow: hidden;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.075);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(17, 24, 39, 0.04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.th-sub {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.compare-table tbody td { color: var(--ink-soft); }
.compare-table tbody td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.compare-self {
  background: rgba(38, 86, 255, 0.07);
  color: var(--ink) !important;
  font-weight: 850;
}

.compare-table thead th.compare-self {
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: #fff !important;
}

.compare-table thead th.compare-self .th-sub { color: rgba(255, 255, 255, 0.66); }
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* Pricing */
.pricing {
  padding-top: 96px !important;
}

.pricing .section-head {
  margin-bottom: 28px;
}

.pricing-decision-strip {
  max-width: 820px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 7px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.pricing-decision-strip > span,
.pricing-strip-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.pricing-decision-strip strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-strip-link {
  justify-content: center;
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 18px 44px -28px rgba(17, 24, 39, 0.76);
  transition: transform 180ms var(--ease-soft), background 180ms var(--ease-soft);
}

.pricing-strip-link:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.founding-callout {
  max-width: 940px;
  margin: 0 auto 34px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 7px;
  border-radius: 30px;
  background: rgba(17, 24, 39, 0.055);
}

.founding-callout-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.founding-callout-body {
  flex: 1;
  min-height: 90px;
  padding: 18px 18px 18px 0;
}

.founding-callout-body strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.founding-callout-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 34px 30px 30px;
  border-radius: var(--radius-xl);
}

.pricing-card-featured {
  transform: translateY(-18px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) padding-box,
    linear-gradient(145deg, rgba(38, 86, 255, 0.62), rgba(141, 169, 155, 0.22)) border-box;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92), 0 54px 105px -62px rgba(38, 86, 255, 0.86);
}

.pricing-badge,
.pricing-coming-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--blue);
}

.pricing-coming-badge { color: var(--sage); }

.pricing-tier {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 34px;
}

.pricing-tagline { margin-bottom: 28px; }
.pricing-price { margin-bottom: 28px; }

.pricing-price .anchor,
.video-addon-price .anchor {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(217, 77, 77, 0.82);
  text-decoration-thickness: 2px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-row .dollar {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.price-row .amount {
  color: var(--ink);
  font-family: var(--display);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.discount-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 159, 115, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-features {
  flex: 1;
  margin-bottom: 26px;
}

.pricing-features li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 159, 115, 0.1);
}

.pricing-features li.feature-emphasized {
  padding-left: 0;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.pricing-features li.feature-emphasized::before { display: none; }
.pricing-card .btn-block + .btn-block { margin-top: 10px; }

.payment-note {
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.payment-note + .btn-block { margin-top: 0; }

.pricing-card-coming {
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)) padding-box,
    linear-gradient(145deg, rgba(141, 169, 155, 0.36), rgba(17, 24, 39, 0.08)) border-box;
}

.pricing-card-coming .pricing-tier,
.pricing-card-coming .pricing-tagline,
.pricing-card-coming .pricing-features { opacity: 0.78; }

.pricing-price-coming {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.coming-label {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.pricing-card-coming .discount-badge {
  color: var(--sage);
  background: rgba(141, 169, 155, 0.14);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Video-only add-on — landscape card, deliberately distinct from the 3 site tiers */
.video-addon {
  position: relative;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(184, 149, 92, 0.55), rgba(17, 24, 39, 0.1)) border-box;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.92), var(--shadow-ambient);
}

.video-addon-lead {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(184, 149, 92, 0.1), rgba(184, 149, 92, 0.03));
}

.video-addon-eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-addon-title {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ink);
}

.video-addon-sub {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.video-addon-price { margin-top: auto; }

.video-addon-body {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
}

.video-addon-body .pricing-features {
  flex: 0 0 auto;
  margin-bottom: 16px;
}

.video-addon-note {
  margin-bottom: 16px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: rgba(17, 24, 39, 0.05);
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.6;
}

.video-addon-note strong { color: var(--ink); }

.pricing-fineprint {
  max-width: 780px;
  margin: 34px auto 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.pricing-fineprint-legal a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list li {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

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

.faq-q {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.055);
  color: var(--ink-soft);
  transition: transform 180ms var(--ease-soft), background 180ms var(--ease-soft);
}

.faq-toggle::before { content: "+"; font-size: 22px; line-height: 1; }
details[open] .faq-toggle { transform: rotate(45deg); background: rgba(38, 86, 255, 0.1); color: var(--blue); }

.faq-list details > p {
  max-width: 68ch;
  padding: 0 22px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* Intake */
.intake { background: rgba(255, 255, 255, 0.16); }

.intake-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 7px;
  border-radius: var(--radius-xl);
}

.intake-form > * {
  margin-left: 25px;
  margin-right: 25px;
}

.intake-form > *:first-child { margin-top: 25px; }
.intake-form > *:last-child { margin-bottom: 25px; }
.intake-form > .intake-row { margin-left: 25px; margin-right: 25px; }

.intake-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intake-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-field span {
  color: rgba(17, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-field input,
.intake-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: 500 15px/1.5 var(--sans);
  padding: 14px 16px;
  resize: vertical;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.82);
  transition: border-color 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft), background 180ms var(--ease-soft);
}

.intake-field input::placeholder,
.intake-field textarea::placeholder { color: rgba(17, 24, 39, 0.36); }

.intake-field input:focus,
.intake-field textarea:focus {
  outline: 0;
  border-color: rgba(38, 86, 255, 0.44);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.88), 0 0 0 5px rgba(38, 86, 255, 0.1);
}

.intake-tier-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(38, 86, 255, 0.1);
  color: var(--blue);
}

.intake-tier-banner[hidden] { display: none; }
.intake-tier-banner-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.intake-tier-banner-name {
  flex: 1;
  color: var(--ink);
  font-weight: 900;
}
.intake-tier-banner-clear {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue);
  font-size: 20px;
}

.intake-form button[type="submit"] { margin-top: 8px; }
.intake-form button[type="submit"]:disabled {
  cursor: progress;
  opacity: 0.72;
}

.intake-status {
  margin-top: -2px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.intake-status.is-pending {
  background: rgba(38, 86, 255, 0.09);
  color: var(--blue-deep);
}

.intake-status.is-success {
  background: rgba(15, 159, 115, 0.1);
  color: var(--green);
}

.intake-status.is-error {
  background: rgba(217, 77, 77, 0.1);
  color: #b93f32;
}

.intake-meta {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 86px 0 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(38, 86, 255, 0.28), transparent 32rem),
    linear-gradient(180deg, #111827 0%, #070a10 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 2.2fr);
  gap: 72px;
  padding-bottom: 60px;
}

.footer-tagline {
  max-width: 33ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer-col-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col .lang-btn {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: color 180ms var(--ease-soft), transform 180ms var(--ease-soft);
}

.footer-col a:hover,
.footer-col .lang-btn:hover {
  color: #fff;
  transform: translateX(3px);
}

.lang-btn-soon { color: rgba(255, 255, 255, 0.36) !important; }

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-sep { color: rgba(255, 255, 255, 0.25); }

.whatsapp-row {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.whatsapp-row > a { margin-bottom: 0 !important; }

.whatsapp-qr-popover {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 228px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px -38px rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms var(--ease-soft), transform 180ms var(--ease-soft), visibility 180ms var(--ease-soft);
  z-index: 35;
}

.whatsapp-qr-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 24px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

.whatsapp-qr-popover img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
}

.whatsapp-qr-popover p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.whatsapp-row:hover .whatsapp-qr-popover,
.whatsapp-row:focus-within .whatsapp-qr-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   FLOATING CONTACT WIDGET (site-wide FAB, bottom-right)
   Add a new .contact-fab-item <a> to extend with more channels.
   ============================================================ */
.contact-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  transition: opacity 220ms var(--ease-soft), visibility 220ms var(--ease-soft);
}

.contact-fab-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-float), 0 6px 18px -6px rgba(38, 86, 255, 0.55);
  transition: transform 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}
.contact-fab-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-float), 0 10px 24px -6px rgba(38, 86, 255, 0.6); }
.contact-fab-toggle:active { transform: translateY(0); }
.contact-fab-toggle:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.85); outline-offset: 2px; }

.contact-fab-toggle-icons {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
.contact-fab-toggle-icons svg {
  position: absolute;
  inset: 0;
  transition: opacity 200ms var(--ease-soft), transform 200ms var(--ease-soft);
}
.contact-fab-icon-close { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.contact-fab.is-open .contact-fab-icon-chat { opacity: 0; transform: rotate(90deg) scale(0.6); }
.contact-fab.is-open .contact-fab-icon-close { opacity: 1; transform: rotate(0) scale(1); }

.contact-fab-panel {
  width: 272px;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 200ms var(--ease-soft), transform 200ms var(--ease-soft), visibility 200ms var(--ease-soft);
}
.contact-fab.is-open .contact-fab-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-fab-panel-title {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 8px 10px 7px;
}

.contact-fab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background 160ms var(--ease-soft);
}
.contact-fab-item:hover { background: var(--paper); }
.contact-fab-item:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; }

.contact-fab-item-icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
}
.contact-fab-item-icon--email { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); }
.contact-fab-item-icon--whatsapp { background: #25d366; }

.contact-fab-item-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-fab-item-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.25;
  color: var(--ink);
}
.contact-fab-item-value {
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* WhatsApp QR — click the QR icon in the FAB to reveal a scannable code */
.contact-fab-wa-main {
  display: flex;
  align-items: center;
}
.contact-fab-wa-main .contact-fab-item {
  flex: 1 1 auto;
  min-width: 0;
}
.contact-fab-qr-btn {
  flex: none;
  width: 42px;
  height: 42px;
  margin-right: 4px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 160ms var(--ease-soft), color 160ms var(--ease-soft), border-color 160ms var(--ease-soft);
}
.contact-fab-qr-btn:hover,
.contact-fab-qr-btn[aria-expanded="true"] {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.contact-fab-qr-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; }
.contact-fab-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px 6px;
  animation: contactQrIn 200ms var(--ease-soft);
}
.contact-fab-qr[hidden] { display: none; }
.contact-fab-qr img {
  width: 184px;
  height: 184px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.contact-fab-qr p {
  margin: 10px 4px 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: center;
}
@keyframes contactQrIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-fab-qr { animation: none; }
}

body.menu-open .contact-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 760px) {
  .contact-fab { right: 16px; bottom: 16px; gap: 12px; }
  .contact-fab-toggle { height: 50px; padding: 0 18px 0 16px; font-size: 14px; }
  .contact-fab-panel { width: 252px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab,
  .contact-fab-toggle,
  .contact-fab-panel,
  .contact-fab-toggle-icons svg { transition: none; }
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-main {
  padding: 120px var(--gutter-d);
}

.legal-doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  border-radius: var(--radius-xl);
}

.legal-doc h1 {
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.legal-updated,
.legal-muted {
  color: var(--ink-muted);
  font-size: 14px;
}

.legal-updated {
  margin-top: 16px;
  margin-bottom: 40px;
}

.legal-doc h2 {
  margin-top: 36px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-doc p {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-doc a:not(.btn) {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Optional existing stats/honest sections */
.stats {
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}

.stats-grid,
.honest-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  min-height: 180px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.stat-num,
.honest-block strong {
  display: block;
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat-label,
.honest-block span {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.honest {
  background: #101723;
  color: #fff;
}

.honest-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.honest-block strong { color: #fff; }
.honest-block-accent strong { color: #9fb4ff; }
.honest-block span { color: rgba(255, 255, 255, 0.66); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(10px);
  transition: opacity 980ms var(--ease), transform 980ms var(--ease), filter 980ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-title { max-width: 13.5ch; }
  .hero-mockup { max-width: 720px; margin: 0 auto; }
  .demo-engine-panel { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .video-addon { grid-template-columns: 1fr; max-width: 560px; margin: 22px auto 0; }
  .pricing-card-featured { transform: none; }
  .pricing-card { min-height: auto; }
  .featured-card,
  .featured-card:first-child { grid-column: span 6; grid-row: span 1; }
}

@media (max-width: 768px) {
  :root {
    --gutter-m: 18px;
    --section-pad-m: 74px;
  }

  .section-inner,
  .header-inner,
  .footer-inner,
  .footer-meta,
  .hero-inner {
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
  }

  main > section {
    padding-top: var(--section-pad-m);
    padding-bottom: var(--section-pad-m);
  }

  .site-header { padding-top: 14px; }
  .header-inner {
    width: calc(100% - 24px);
    padding: 7px;
  }

  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .logo { padding-left: 8px; }
  .logo img { max-width: 92px; }
  #header-cta { display: none; }

  .hero {
    min-height: auto;
    padding-top: 58px !important;
    padding-bottom: 52px !important;
  }

  .hero-inner {
    display: block;
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
  }

  .hero-title {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 13.5vw, 3.55rem);
  }

  .hero-sub { max-width: none; }
  .hero-cta-row { display: grid; grid-template-columns: 1fr; }
  .hero-cta-row .btn { width: 100%; justify-content: space-between; }
  .hero-proof-row { display: grid; grid-template-columns: 1fr; }
  .hero-mockup {
    min-height: 360px;
    margin-top: 54px;
  }

  .mockup-desktop { transform: none; border-radius: 28px; }
  .mockup-mobile {
    right: 12px;
    bottom: -20px;
    width: 110px;
    transform: rotate(-3deg);
  }

  .proof-grid,
  .stats-grid,
  .honest-strip {
    grid-template-columns: 1fr;
  }

  .proof-card { min-height: 104px; }
  .industry-grid { justify-content: flex-start; }
  .demo-engine { margin-top: 0; padding-top: 6px !important; }
  .demo-engine-panel { padding: 20px; border-radius: 28px; }
  .demo-engine-title { max-width: 10.5ch; }
  .demo-engine-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .demo-proof-card {
    padding: 12px 12px 16px;
    border-radius: 22px;
  }
  .demo-proof-visual {
    height: 190px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-title,
  .problem-title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    letter-spacing: -0.055em;
  }

  .card-grid-4,
  .how-timeline,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .how-step {
    min-height: auto;
    padding: 26px;
  }

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

  .featured-card,
  .featured-card:first-child {
    grid-column: 1;
  }

  .compare-table-wrap {
    overflow: visible;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table {
    display: grid;
    gap: 14px;
    background: transparent;
  }

  .compare-table thead { display: none; }
  .compare-table tr {
    padding: 7px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  }

  .compare-table td {
    border: 0;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .compare-table td:first-child {
    padding-top: 16px;
    font-size: 16px;
  }

  .compare-table td:nth-child(n+2)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .compare-table td:nth-child(2)::before { content: "DIY"; }
  .compare-table td:nth-child(3)::before { content: "Monthly DFY"; }
  .compare-table td:nth-child(4)::before { content: "Agency"; }
  .compare-table td:nth-child(5)::before { content: "Polery"; }

  .compare-self { border-radius: 18px; }

  .pricing { padding-top: 78px !important; }
  .pricing-decision-strip {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-bottom: 22px;
  }

  .pricing-decision-strip > span,
  .pricing-strip-link {
    justify-content: space-between;
  }

  .founding-callout {
    display: block;
    padding: 18px;
  }

  .founding-callout-icon { margin-bottom: 12px; }
  .founding-callout-body { min-height: 0; padding: 0; }

  .intake-form > *,
  .intake-form > .intake-row {
    margin-left: 14px;
    margin-right: 14px;
  }

  .intake-form > *:first-child { margin-top: 14px; }
  .intake-form > *:last-child { margin-bottom: 14px; }
  .intake-row { grid-template-columns: 1fr; }

  .footer-inner { gap: 44px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-meta { display: block; }
  .footer-sep { display: none; }
  .legal-main { padding: 82px var(--gutter-m); }
  .legal-doc { padding: 36px 24px; }
  .whatsapp-qr-popover { display: none; }
}

@media (max-width: 440px) {
  .btn { white-space: normal; }
  .footer-cols { grid-template-columns: 1fr; }
  .price-row .amount { font-size: 58px; }
}

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