:root {
  --ink: #10282d;
  --muted: #587078;
  --teal-950: #082f35;
  --teal-900: #0a4149;
  --teal-800: #0f5660;
  --teal-700: #16717a;
  --cyan: #19d5e6;
  --cyan-2: #33eef4;
  --aqua-soft: #e8f8f8;
  --line: #dbe7e8;
  --surface: #f6fafa;
  --white: #fff;
  --violet: #7657f5;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(10, 65, 73, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
h1, h2, h3, p, a, span { overflow-wrap: break-word; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  min-height: 70px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 48, 54, .9);
  box-shadow: 0 12px 40px rgba(4, 38, 43, .2);
  backdrop-filter: blur(18px);
}
.brand img { width: 150px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a, .login-link { color: #cae0e2; font-size: 14px; transition: color .2s ease; }
.desktop-nav a:hover, .login-link:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-button { display: none; color: white; background: none; border: 0; padding: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #05353b;
  background: linear-gradient(135deg, var(--cyan-2), #18b9c7);
  box-shadow: 0 14px 28px rgba(22, 190, 202, .25);
}
.button-light { color: var(--teal-950); background: #fff; }
.button-small { min-height: 46px; padding: 0 18px; border-radius: 12px; font-size: 14px; }

.hero {
  position: relative;
  min-height: 1080px;
  padding: 178px max(24px, calc((100vw - 1180px)/2)) 84px;
  color: #fff;
  background:
    radial-gradient(circle at 48% 12%, rgba(15, 111, 122, .6), transparent 32%),
    linear-gradient(145deg, #072c31 0%, #093f47 52%, #062a30 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -390px;
  top: 30px;
  border: 1px solid rgba(60, 235, 243, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(33, 218, 230, .025), 0 0 0 160px rgba(33, 218, 230, .02);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }
.hero-glow-one { width: 300px; height: 300px; background: rgba(33, 218, 230, .14); left: -100px; top: 300px; }
.hero-glow-two { width: 250px; height: 250px; background: rgba(118, 87, 245, .12); right: 8%; bottom: 160px; }
.hero-copy { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7ddce2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { padding: 8px 12px; border: 1px solid rgba(125,220,226,.22); border-radius: 999px; background: rgba(255,255,255,.04); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
h1 {
  margin: 28px 0 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #fff 5%, #57e6ec 58%, #14c8d5 100%);
  background-clip: text;
}
.hero-lead { max-width: 760px; margin: 0 auto; color: #bed2d5; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 34px; }
.text-link { font-weight: 700; color: #d4e6e8; }
.text-link span { margin-left: 8px; color: var(--cyan); }
.hero-facts { display: flex; justify-content: center; gap: 26px; margin-top: 34px; color: #9fbabd; font-size: 13px; }
.hero-facts b { margin-right: 6px; color: var(--cyan); }
.product-stage {
  position: relative;
  z-index: 3;
  left: 50%;
  width: min(1380px, 108vw);
  margin: 72px auto 0;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 55px 120px rgba(0,0,0,.38);
  overflow: hidden;
}
.product-stage img { width: 100%; }
.stage-bar, .browser-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #63767b;
  background: #eef4f4;
  border-bottom: 1px solid #dae6e7;
  padding: 0 16px;
  font-size: 12px;
}
.stage-dots, .browser-top { position: relative; }
.stage-dots { display: flex; gap: 6px; }
.stage-dots i, .browser-top i { width: 7px; height: 7px; border-radius: 50%; background: #bdced0; }
.live-pill { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #19bd75; }
.hero-proof {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  color: #9fb9bc;
  font-size: 13px;
}
.hero-proof > span { color: #fff; font-weight: 700; }
.hero-proof > div { width: 1px; height: 18px; margin: 0 8px; background: rgba(255,255,255,.18); }
.hero-proof p { margin: 0; }
.hero-proof i { color: #3dcbd4; font-style: normal; }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 124px 0; }
.section-kicker { color: var(--teal-700); }
.intro-grid, .automation-head, .dark-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin: 22px 0 64px; }
h2 { margin: 0; font-size: clamp(38px, 4.7vw, 62px); line-height: 1.08; letter-spacing: -.045em; }
.intro-grid p, .automation-head p, .dark-head p, .product-copy > p, .early-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.audience-strip > span { margin-right: 5px; font-weight: 700; }
.audience-strip a { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--teal-700); background: #fff; font-weight: 700; }

.subpage { background: var(--surface); }
.subpage .site-header { position: absolute; }
.page-hero {
  padding: 174px max(24px, calc((100vw - 980px)/2)) 90px;
  color: #fff;
  background: radial-gradient(circle at 76% 20%, rgba(35,213,226,.18), transparent 28%), linear-gradient(145deg, #072c31, #0b4b54);
}
.breadcrumbs { margin-bottom: 28px; color: #8fb3b7; font-size: 13px; }
.breadcrumbs a { color: #bfe4e6; }
.page-hero h1 { max-width: 900px; margin: 18px 0 24px; font-size: clamp(44px, 6vw, 72px); }
.page-hero p { max-width: 760px; margin: 0; color: #bfd3d5; font-size: 20px; line-height: 1.65; }
.content-shell { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 86px 0 120px; }
.content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 80px; align-items: start; }
.prose { min-width: 0; }
.prose h2 { margin: 64px 0 18px; font-size: clamp(30px, 4vw, 44px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 10px; font-size: 22px; }
.prose p, .prose li { color: #486269; font-size: 17px; line-height: 1.75; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--teal-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.side-card { position: sticky; top: 110px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(15,86,96,.08); }
.side-card h2 { margin: 0 0 12px; font-size: 23px; letter-spacing: -.02em; }
.side-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.side-card .button { width: 100%; min-height: 48px; padding: 0 14px; font-size: 13px; }
.topic-links { display: grid; gap: 10px; margin: 28px 0 0; }
.topic-links a { padding: 13px 14px; border-radius: 10px; color: #31545a; background: #edf6f6; font-size: 13px; font-weight: 700; }
.seo-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 32px 0; }
.seo-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.seo-card b { display: block; margin-bottom: 9px; color: var(--ink); font-size: 17px; }
.seo-card p { margin: 0; font-size: 15px; }
.legal-list { margin: 0; padding: 0; list-style: none; }
.legal-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-list strong { display: block; color: var(--ink); font-size: 13px; }
.legal-list span { display: block; margin-top: 3px; }
.privacy-info { margin: 28px 0; padding: 20px 22px; border: 1px solid #b9dfe2; border-radius: 15px; color: #315b61; background: var(--aqua-soft); font-size: 15px; line-height: 1.65; }
.privacy-meta { color: #71878b; font-size: 14px; }
.related { margin-top: 70px; padding: 34px; border-radius: 22px; color: #fff; background: var(--teal-900); }
.related h2 { margin: 0 0 10px; font-size: 30px; }
.related p { margin: 0 0 20px; color: #bfd3d5; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 700; }

@media (max-width: 800px) {
  .page-hero { padding-top: 140px; }
  .content-grid { grid-template-columns: 1fr; gap: 44px; }
  .side-card { position: static; }
}
@media (max-width: 560px) {
  .page-hero { padding-left: 18px; padding-right: 18px; }
  .content-shell { width: calc(100% - 32px); }
  .seo-cards { grid-template-columns: 1fr; }
}
.feature-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: #b7d8db; box-shadow: 0 22px 50px rgba(15,86,96,.09); }
.feature-card-accent { color: #fff; background: linear-gradient(145deg, #0a4149, #0e5b64); border: 0; }
.feature-card-accent p { color: #b8d0d3; }
.feature-number { position: absolute; top: 28px; right: 28px; color: #a6b7ba; font-size: 12px; font-weight: 800; }
.feature-card-accent .feature-number { color: #6faab0; }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--teal-700); background: var(--aqua-soft); font-size: 20px; font-weight: 800; }
.feature-card-accent .feature-icon { color: #042f35; background: var(--cyan); }
.feature-card h3 { margin: 36px 0 12px; font-size: 21px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.feature-card a { position: absolute; bottom: 28px; color: var(--teal-700); font-size: 14px; font-weight: 800; }
.feature-card-accent a { color: var(--cyan-2); }

.product-section { display: grid; grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr); gap: 48px; align-items: start; width: min(1180px, calc(100% - 48px)); }
.product-copy { padding-left: 0; }
.product-copy h2 { margin: 22px 0; }
.check-list { list-style: none; padding: 0; margin: 34px 0 0; }
.check-list li { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.check-list li > span { flex: 0 0 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #07535b; background: #c9f5f4; font-weight: 800; }
.check-list b, .check-list small { display: block; }
.check-list small { margin-top: 4px; color: var(--muted); line-height: 1.5; font-size: 14px; }
.browser-frame { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.browser-top i { display: block; }
.browser-top i:nth-child(1) { background: #ff8b80; }
.browser-top i:nth-child(2) { background: #f5c14f; }
.browser-top i:nth-child(3) { background: #54c888; }
.browser-top span { margin-left: 8px; }
.product-image img { width: 100%; }

.dark-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px)/2));
  padding-right: max(24px, calc((100vw - 1180px)/2));
  color: #fff;
  background: linear-gradient(145deg, #062f35, #0b4b54);
}
.dark-head p { color: #b7ced1; }
.section-kicker-light { color: #63e1e7; }
.message-layout { position: relative; }
.browser-frame-dark { border-color: rgba(255,255,255,.18); box-shadow: 0 40px 100px rgba(0,0,0,.3); }
.ai-card {
  position: absolute;
  right: -34px;
  bottom: -54px;
  width: 350px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  color: #142931;
  background: rgba(255,255,255,.97);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}
.ai-mark { float: left; width: 44px; height: 44px; display: grid; place-items: center; margin-right: 14px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--violet), #a88cff); font-size: 22px; }
.ai-card > span { display: block; padding-top: 4px; color: var(--violet); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.ai-card h3 { margin: 18px 0 10px; clear: both; font-size: 25px; line-height: 1.2; }
.ai-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.ai-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ai-tags span { padding: 7px 10px; border-radius: 999px; color: #6044d4; background: #f0ecff; font-size: 11px; font-weight: 700; }

.automation-section { padding-top: 142px; }
.automation-head { align-items: start; }
.view-switcher { display: inline-flex; gap: 4px; margin-bottom: 20px; padding: 5px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.view-tab { border: 0; border-radius: 9px; padding: 10px 16px; color: var(--muted); background: transparent; font-weight: 700; cursor: pointer; }
.view-tab.active { color: #fff; background: var(--teal-900); box-shadow: 0 6px 14px rgba(10,65,73,.18); }
.automation-frame img { width: 100%; }
.automation-benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 28px; }
.automation-benefits div { padding-left: 18px; border-left: 2px solid #b8e9eb; }
.automation-benefits b, .automation-benefits span { display: block; }
.automation-benefits span { margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.analytics-section { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); gap: 48px; align-items: center; padding-top: 86px; }
.analytics-image img { display: block; width: 100%; }

.origin-section { padding-top: 36px; }
.origin-card {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
  padding: 70px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #062f35, #0c515a);
  overflow: hidden;
}
.origin-card::after { content:""; position:absolute; width:420px; height:420px; left:-180px; bottom:-260px; border:1px solid rgba(37,222,232,.2); border-radius:50%; box-shadow:0 0 0 70px rgba(37,222,232,.025),0 0 0 140px rgba(37,222,232,.02); }
.origin-symbol { position: relative; z-index: 1; }
.origin-symbol img { border-radius: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.origin-copy { position: relative; z-index: 1; }
.origin-copy h2 { margin: 20px 0 24px; font-size: clamp(34px, 4vw, 52px); }
.origin-copy p { color: #bad1d4; font-size: 18px; line-height: 1.7; }
.origin-copy blockquote { margin: 32px 0 0; padding-left: 24px; border-left: 2px solid var(--cyan); color: #e7f7f8; font-size: 18px; font-weight: 600; line-height: 1.55; }

.pricing-section { padding-top: 48px; }
.pricing-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.pricing-head h2 { margin-top: 20px; }
.pricing-head > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.pricing-panel { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: 0 28px 70px rgba(15,86,96,.1); }
.pricing-scale { display: grid; gap: 12px; align-content: center; padding: 42px; background: linear-gradient(145deg, #082f35, #0d515a); }
.pricing-scale > div { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 20px 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; color: #fff; background: rgba(255,255,255,.04); }
.pricing-scale > div span { grid-column: 1 / -1; margin-bottom: 8px; color: #7ddce2; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.pricing-scale > div b { font-size: 30px; letter-spacing: -.04em; }
.pricing-scale > div small { padding-bottom: 4px; color: #aac4c7; font-size: 13px; }
.pricing-scale .pricing-scale-featured { border-color: rgba(51,238,244,.55); background: rgba(25,213,230,.12); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.pricing-details { padding: 52px; background: #fff; }
.pricing-status { display: inline-flex; padding: 8px 11px; border-radius: 999px; color: var(--teal-700); background: var(--aqua-soft); font-size: 12px; font-weight: 800; }
.pricing-details h3 { margin: 22px 0 28px; font-size: clamp(30px, 3.5vw, 44px); line-height: 1.08; letter-spacing: -.04em; }
.pricing-list { margin-bottom: 26px; }
.pricing-note { margin: 0 0 28px; color: #6b8085; font-size: 13px; line-height: 1.6; }

.early-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.early-copy h2 { margin: 22px 0; }
.early-note { display: flex; gap: 12px; margin-top: 30px; padding: 18px; border-radius: 14px; color: #416168; background: var(--aqua-soft); font-size: 14px; line-height: 1.55; }
.early-note span { flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--teal-700); font-weight: 800; }
.interest-form { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: 0 24px 60px rgba(15,86,96,.08); }
.interest-form label { display: grid; gap: 8px; margin-bottom: 18px; color: #314d53; font-size: 13px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.interest-form input, .interest-form select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid #cbdadc; border-radius: 11px; color: var(--ink); background: #fff; outline: none; }
.interest-form input:focus, .interest-form select:focus { border-color: #2abfca; box-shadow: 0 0 0 3px rgba(42,191,202,.12); }
.checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.5; }
.checkbox input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--teal-700); }
.checkbox a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { width: 100%; }
.form-preview { margin: 12px 0 0; text-align: center; color: #71878b; font-size: 12px; }
.form-success { margin-top: 16px; padding: 16px; border-radius: 12px; color: #09573e; background: #e2f8ee; font-size: 14px; line-height: 1.5; }
.form-error { margin-top: 16px; padding: 16px; border-radius: 12px; color: #8a2525; background: #fdecec; font-size: 14px; line-height: 1.5; }
.form-error a { color: inherit; font-weight: 700; text-decoration: underline; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit:disabled { cursor: wait; opacity: .7; }

footer { padding: 70px max(24px, calc((100vw - 1180px)/2)) 30px; color: #fff; background: #062f35; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding-bottom: 48px; }
.footer-brand img { width: 170px; }
.footer-main p { color: #9dbabd; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: #76979b; font-size: 13px; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { color: #bcd1d3; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .login-link { display: none; }
  .menu-button { display: block; min-width: 48px; min-height: 48px; }
  .site-header.menu-open { flex-wrap: wrap; }
  .site-header.menu-open .desktop-nav { display: grid; order: 3; width: 100%; gap: 0; padding: 12px 0 4px; }
  .site-header.menu-open .desktop-nav a { min-height: 46px; display: flex; align-items: center; padding: 12px 4px; border-top: 1px solid rgba(255,255,255,.1); }
  .hero { min-height: auto; }
  .product-stage { width: 100%; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .product-section { grid-template-columns: 1fr; width: min(1180px, calc(100% - 48px)); }
  .product-copy { padding-left: 0; }
  .ai-card { position: relative; right: auto; bottom: auto; width: min(520px, 92%); margin: -30px auto 0; }
  .automation-benefits { grid-template-columns: repeat(2,1fr); }
  .analytics-section { grid-template-columns: 1fr; }
  .origin-card { grid-template-columns: .65fr 1.35fr; gap: 40px; padding: 48px; }
  .pricing-head { grid-template-columns: 1fr; gap: 24px; }
  .pricing-panel { grid-template-columns: 1fr; }
  .pricing-scale { grid-template-columns: repeat(3, 1fr); padding: 28px; }
  .pricing-scale > div { grid-template-columns: 1fr; align-items: start; }
  .early-section { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 880px) {
  .section { padding: 100px 0; }
  .intro-grid, .automation-head, .dark-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 46px; }
  .origin-card { grid-template-columns: 1fr; }
  .origin-symbol { width: min(260px, 46vw); }
  .pricing-scale { grid-template-columns: 1fr; }
  .pricing-scale > div { grid-template-columns: 1fr auto; }
}

@media (max-width: 720px) {
  .site-header { top: 10px; width: calc(100% - 24px); min-height: 62px; padding: 7px 8px 7px 16px; border-radius: 16px; }
  .brand img { width: 124px; }
  .header-actions .button { display: none; }
  .hero { padding: 126px 16px 64px; }
  h1 { font-size: clamp(42px, 13vw, 58px); line-height: 1.01; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-actions .button { width: min(100%, 360px); padding-left: 18px; padding-right: 18px; }
  .hero-facts { flex-direction: column; align-items: center; gap: 10px; }
  .product-stage { left: auto; width: 100%; margin-top: 48px; transform: none; border-radius: 14px; }
  .stage-bar, .browser-top { height: 38px; padding: 0 12px; }
  .hero-proof { flex-wrap: wrap; }
  .hero-proof > span, .hero-proof > div { display: none; }
  .section { width: min(100% - 32px, 620px); padding: 88px 0; }
  .intro-grid, .automation-head, .dark-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; padding: 26px; }
  .product-section { width: min(100% - 32px, 620px); }
  .dark-section { width: 100%; padding-left: 16px; padding-right: 16px; }
  .message-layout img, .automation-frame img, .analytics-image img { width: 100%; max-width: 100%; transform: none; }
  .ai-card { width: calc(100% - 20px); margin-top: -16px; padding: 22px; }
  .ai-card h3 { font-size: 22px; }
  .view-switcher { display: flex; width: 100%; }
  .view-tab { flex: 1; min-height: 46px; padding: 10px 8px; font-size: 13px; }
  .automation-benefits { grid-template-columns: 1fr; }
  .analytics-section { width: min(100% - 32px, 620px); }
  .origin-card { grid-template-columns: 1fr; padding: 30px; }
  .origin-symbol { width: min(210px, 62vw); margin: 0 auto; }
  .origin-copy p { font-size: 16px; }
  .pricing-scale { grid-template-columns: 1fr; padding: 20px; }
  .pricing-scale > div { grid-template-columns: 1fr auto; }
  .pricing-details { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .interest-form { padding: 24px; }
  footer { padding: 56px 16px 28px; }
  .footer-main { grid-template-columns: 1fr; justify-items: start; }
  .footer-bottom { flex-direction: column; gap: 18px; }
  .footer-bottom div { flex-wrap: wrap; gap: 16px; }
  .page-hero { padding-top: 126px; padding-bottom: 68px; }
  .page-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .page-hero p { font-size: 17px; }
  .content-shell { padding-top: 64px; padding-bottom: 88px; }
  .related { padding: 26px 22px; }
}

@media (max-width: 420px) {
  .eyebrow { font-size: 10px; letter-spacing: .1em; }
  h1 { font-size: clamp(38px, 12vw, 50px); }
  h2 { font-size: clamp(34px, 10.5vw, 44px); }
  .hero-proof { gap: 9px; font-size: 12px; }
  .hero-proof i { display: none; }
  .audience-strip { align-items: stretch; }
  .audience-strip > span { width: 100%; text-align: center; }
  .audience-strip a { flex: 1 1 100%; text-align: center; }
  .feature-card a { position: static; display: inline-block; margin-top: 24px; }
  .feature-card { min-height: 0; }
  .pricing-details { padding: 26px 20px; }
  .interest-form { padding: 20px 16px; }
  .button { width: 100%; padding-left: 16px; padding-right: 16px; }
  .footer-main .button { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
