:root {
  --ta-ink: #07111f;
  --ta-ink-2: #0c1930;
  --ta-paper: #ffffff;
  --ta-surface: #f4f7fb;
  --ta-surface-2: #edf2f8;
  --ta-text: #172235;
  --ta-muted: #65748a;
  --ta-border: rgba(20, 36, 61, .10);
  --ta-blue: #2864f0;
  --ta-blue-hover: #1e52d2;
  --ta-mint: #38d6a2;
  --ta-amber: #f1a93b;
  --ta-radius-card: 22px;
  --ta-radius-media: 28px;
  --ta-shadow: 0 18px 52px rgba(8, 23, 44, .09);
  --ta-container: min(1280px, calc(100vw - 48px));
  --ink-950: var(--ta-ink);
  --ink-900: var(--ta-ink-2);
  --ink-800: #14213a;
  --text: var(--ta-text);
  --muted: var(--ta-muted);
  --line: #dce4f0;
  --surface: var(--ta-paper);
  --surface-soft: var(--ta-surface);
  --blue: var(--ta-blue);
  --blue-hover: var(--ta-blue-hover);
  --cyan: #22d3ee;
  --mint: #17a85b;
  --amber: var(--ta-amber);
  --coral: #e64848;
  --container: 1280px;
  --shadow: 0 32px 100px rgba(3, 12, 30, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section[id],
#demo,
#pricing,
#faq,
#features,
#workflow,
#industries,
#market,
#monitoring,
#ai,
#team,
#sources,
#roles,
#search,
#watch { scroll-margin-top: 96px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 800; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-dark { color: #65b8ff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.02em; }
h1 { margin-bottom: 18px; font-size: clamp(42px, 5.2vw, 68px); line-height: 1.05; font-weight: 750; }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; font-weight: 700; }
h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.3; font-weight: 700; }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 16px; line-height: 1.55; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(7, 17, 31, .84); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(18px); }
.header-row { display: flex; align-items: center; min-height: 84px; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; font-size: 19px; font-weight: 800; letter-spacing: -.025em; }
.brand.brand-lockup { align-items: center; text-decoration: none; }
.brand-mark { display: block; flex-shrink: 0; border-radius: 10px; }
.brand-wordmark { display: flex; flex-direction: column; min-width: 0; line-height: 1.05; }
.brand-name { display: flex; flex-direction: column; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.brand-name-tender,
.brand-name-analyzer { font-size: 13px; line-height: 1.05; }
.brand-tagline { margin-top: 5px; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.brand-on-dark .brand-name-tender { color: #fff; }
.brand-on-dark .brand-name-analyzer { color: #5EEAD4; }
.brand-on-dark .brand-tagline { color: rgba(255,255,255,.62); }
.site-nav { display: flex; justify-content: center; gap: 24px; margin-left: auto; }
.site-nav a, .login-link { color: rgba(255,255,255,.76); font-size: 14px; font-weight: 650; transition: color .16s ease; }
.site-nav a:hover, .login-link:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(34, 211, 238, .45); outline-offset: 3px; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 38px rgba(40, 100, 240, .3); }
.button-primary:hover { background: var(--blue-hover); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255,255,255,.11); }
.button-light { color: var(--ink-950); background: #fff; }
.button-small { min-height: 44px; padding-inline: 18px; border-radius: 12px; font-size: 14px; }
.button-outline { border-color: var(--line); background: #fff; }
.button-outline:hover { border-color: #aab9cf; }
.button-wide { width: 100%; }

.hero {
  position: relative;
  min-height: 0;
  padding: 132px 0 36px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 42%, rgba(40,100,240,.24), transparent 36%),
    linear-gradient(125deg, #06101e 0%, #071425 52%, #0a1b35 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000 0, transparent 85%); }
.hero-art { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,31,.98) 0%, rgba(7,17,31,.83) 36%, rgba(7,17,31,.14) 76%), url("../landing/images/generated/hero-data-core.webp") 78% 46% / cover no-repeat; opacity: .72; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); align-items: center; gap: 40px; }
.hero-copy { position: relative; z-index: 2; max-width: 560px; }
.hero h1 { max-width: 13em; }
.hero-lead { max-width: 540px; margin-bottom: 16px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.55; }
.hero-accent { max-width: 520px; margin: 0 0 24px; color: #d7e6ff; font-size: 16px; font-weight: 650; line-height: 1.45; }
.hero-cta-note { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.45; }
.hero-cta-note span { white-space: nowrap; }
.hero-caption { margin: 12px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.hero-watch-link { margin: 0 0 22px; font-size: 14px; font-weight: 650; }
.hero-watch-link a { color: #9ec8ff; text-decoration: underline; text-underline-offset: 3px; }
.hero-watch-link a:hover { color: #fff; }
.hero-badges { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.hero-badges li { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1 1 0; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.05); backdrop-filter: blur(12px); }
.hero-badges strong { font-size: 16px; }
.hero-badges span { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.3; }
.hero-product { position: relative; }
.browser-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.browser-shell > img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top left;
  transition: opacity .18s ease;
}
.browser-shell > img.switching { opacity: 0; }
.browser-bar { display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; color: #7e8ca3; background: #f6f8fc; border-bottom: 1px solid #e8edf5; font-size: 11px; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #d4dce8; }
.browser-bar span { margin-left: 8px; }
.floating-card { position: absolute; min-width: 118px; padding: 12px 14px; color: var(--text); border: 1px solid rgba(255,255,255,.75); border-radius: 14px; background: rgba(255,255,255,.95); box-shadow: 0 18px 50px rgba(3,12,30,.24); backdrop-filter: blur(14px); }
.floating-card small, .floating-card span { display: block; color: #7f8ba0; font-size: 10px; }
.floating-card strong { display: block; margin: 1px 0; font-size: 18px; }
.floating-relevance { left: -18px; top: 10%; }
.floating-relevance strong { color: var(--mint); }
.floating-score { right: -12px; bottom: 14%; }
.floating-score strong { color: var(--amber); }
.floating-deadline { right: 10%; top: -24px; }

.watch-section {
  position: relative;
  overflow-x: clip;
  padding: 8px 0 88px;
  color: #fff;
  background: #07111f;
}
.watch-section .section-heading { margin-bottom: 28px; }
.watch-section .section-heading > p:last-child { color: rgba(255,255,255,.72); }
.watch-player {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #050b14;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.watch-stage { position: relative; }
.watch-crop {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050b14;
}
.watch-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 0 0;
}
.watch-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border: 0;
  background: rgba(5,11,20,.28);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}
.watch-player.is-playing .watch-play-overlay { display: none; }
.watch-play-icon,
.watch-btn span {
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.watch-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #07111f;
  mask: none;
  -webkit-mask: none;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.watch-play-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-left: 3px;
  background: #07111f;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.watch-player.is-paused .watch-btn [data-watch-play-icon],
.watch-player:not(.is-playing) .watch-btn [data-watch-play-icon] {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}
.watch-player.is-playing .watch-btn [data-watch-play-icon] {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5h4v14H6zm8 0h4v14h-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5h4v14H6zm8 0h4v14h-4z'/%3E%3C/svg%3E");
}
.watch-player.is-muted .watch-btn [data-watch-mute-icon] {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 12c0-1.8-1-3.3-2.5-4.1v2.2l2.4 2.4c.1-.2.1-.3.1-.5zm2.5 0c0 .9-.2 1.8-.5 2.6l1.5 1.5c.6-1.2 1-2.6 1-4.1 0-4.1-2.8-7.6-6.5-8.7v2.1c2.9.9 5 3.5 5 6.6zM4.3 3 3 4.3 7.7 9H3v6h4l5 5v-6.7l4.3 4.3c-.7.5-1.5.9-2.3 1.2v2.1c1.4-.3 2.7-1 3.8-1.8L19.7 21 21 19.7 4.3 3zM12 4 9.9 6.1 12 8.2V4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 12c0-1.8-1-3.3-2.5-4.1v2.2l2.4 2.4c.1-.2.1-.3.1-.5zm2.5 0c0 .9-.2 1.8-.5 2.6l1.5 1.5c.6-1.2 1-2.6 1-4.1 0-4.1-2.8-7.6-6.5-8.7v2.1c2.9.9 5 3.5 5 6.6zM4.3 3 3 4.3 7.7 9H3v6h4l5 5v-6.7l4.3 4.3c-.7.5-1.5.9-2.3 1.2v2.1c1.4-.3 2.7-1 3.8-1.8L19.7 21 21 19.7 4.3 3zM12 4 9.9 6.1 12 8.2V4z'/%3E%3C/svg%3E");
}
.watch-btn [data-watch-mute-icon] {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.8-1-3.3-2.5-4.1v8.3c1.5-.8 2.5-2.4 2.5-4.2zM14 3.2v2.1c2.9.9 5 3.5 5 6.7s-2.1 5.8-5 6.7v2.1c4.1-1 7-4.6 7-8.8s-2.9-7.8-7-8.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.8-1-3.3-2.5-4.1v8.3c1.5-.8 2.5-2.4 2.5-4.2zM14 3.2v2.1c2.9.9 5 3.5 5 6.7s-2.1 5.8-5 6.7v2.1c4.1-1 7-4.6 7-8.8s-2.9-7.8-7-8.8z'/%3E%3C/svg%3E");
}
.watch-video::-webkit-media-controls {
  display: none !important;
}
.watch-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0b1628;
}
.watch-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.watch-btn:hover { background: rgba(255,255,255,.14); }
.watch-seek, .watch-volume {
  accent-color: var(--blue);
  cursor: pointer;
}
.watch-seek { flex: 1; min-width: 0; }
.watch-volume { width: 88px; flex: 0 0 88px; }
.watch-time {
  flex: 0 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fact-strip { position: relative; z-index: 4; margin-top: -40px; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 18px 70px rgba(12,33,66,.12); }
.facts div { padding: 22px 24px; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts strong, .facts span { display: block; }
.facts strong { margin-bottom: 3px; font-size: 14px; }
.facts span { color: var(--muted); font-size: 13px; line-height: 1.4; }

.pain-section { padding-top: 120px; background: var(--surface-soft); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pain-card { position: relative; min-height: 0; padding: 28px 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .2s ease, border-color .2s ease; }
.pain-card:hover { transform: translateY(-4px); border-color: #b8c7dd; }
.pain-card:nth-child(even) { transform: none; }
.pain-card:nth-child(even):hover { transform: translateY(-4px); }
.pain-card > img { width: 28px; height: 28px; margin: 22px 0 16px; object-fit: contain; filter: invert(37%) sepia(95%) saturate(2450%) hue-rotate(214deg) brightness(98%); }
.pain-card h3 { font-size: 17px; }
.pain-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.card-number { color: #91a0b7; font-size: 12px; font-weight: 800; letter-spacing: .09em; }

.workflow-section { background: #fff; }
.workflow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; margin: 0; padding: 0; list-style: none; }
.workflow::before { content: ""; position: absolute; left: 23px; right: 23px; top: 23px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); opacity: .35; }
.workflow li { position: relative; padding-top: 75px; }
.workflow b { position: absolute; z-index: 2; top: 0; display: grid; place-items: center; width: 46px; height: 46px; color: #fff; border: 6px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px #bcd0fa; }
.workflow h3 { font-size: 18px; }
.workflow p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.product-section { overflow: hidden; color: #fff; background: linear-gradient(145deg, #07111f, #0a1930 70%, #0b2142); }
.product-head { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 48px; }
.product-head h2 { margin-bottom: 0; max-width: 18ch; }
.product-head > p { margin-bottom: 6px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.55; }
.product-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin: 36px 0 20px; padding: 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.05); width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
.product-caption { margin: 16px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.product-frame { position: relative; aspect-ratio: 16 / 10; background: #0b1426; }
.product-panel { position: absolute; inset: 0; }
.product-panel img { width: 100%; height: 100%; object-fit: contain; object-position: top center; }
.product-tabs button { padding: 10px 16px; color: rgba(255,255,255,.6); border: 0; border-radius: 10px; background: transparent; cursor: pointer; font-size: 14px; }
.product-tabs button[aria-selected="true"] { color: #fff; background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.product-stage { position: relative; }
.product-stage::before { content: ""; position: absolute; inset: 8% 10% -25%; background: var(--blue); filter: blur(120px); opacity: .26; }
.browser-shell-large { position: relative; border-radius: 24px 24px 0 0; }
.browser-shell-large > img { aspect-ratio: auto; object-fit: contain; object-position: top; }

.features-section { background: var(--surface-soft); }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: #b5c5dc; }
.feature-card h3 { font-size: 17px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.icon-wrap {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--blue);
  border-radius: 14px;
  background: rgba(40,100,240,.09);
}
.icon-wrap img { width: 24px; height: 24px; object-fit: contain; filter: invert(37%) sepia(95%) saturate(2450%) hue-rotate(214deg) brightness(98%); }
.feature-visual {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0 0 24px;
}
.feature-visual > div {
  min-width: 0;
  padding-bottom: 24px;
}
.feature-visual > img {
  align-self: end;
  width: 100%;
  height: auto;
  max-height: 260px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-width: 1px 0 0 1px;
  border-radius: 18px 0 0;
  object-fit: cover;
  object-position: top left;
  box-shadow: -10px -8px 28px rgba(22,49,90,.06);
}
.analytics-card {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 32px;
  min-height: 0;
  padding: 24px 0 24px 24px;
}
.analytics-card > div { min-width: 0; padding-top: 8px; }
.analytics-card > img {
  width: 100%;
  height: auto;
  max-height: 360px;
  border: 1px solid var(--line);
  border-width: 1px 0 1px 1px;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
  object-position: top left;
}

.ai-section { color: #fff; background: #07111f; }
.ai-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.ai-visual { position: relative; }
.ai-visual::before { content: ""; position: absolute; inset: 16%; background: var(--blue); filter: blur(100px); opacity: .24; }
.ai-visual img {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  object-fit: contain;
}
.ai-copy > p:not(.eyebrow):not(.notice) { color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.55; }
.check-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 16px 14px 48px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.045); }
.check-list li::before { content: "✓"; position: absolute; left: 16px; top: 14px; display: grid; place-items: center; width: 21px; height: 21px; color: #07111f; border-radius: 50%; background: #4fe0ad; font-size: 12px; font-weight: 900; }
.check-list strong, .check-list span { display: block; }
.check-list strong { font-size: 15px; }
.check-list span { color: rgba(255,255,255,.55); font-size: 13px; }
.notice { padding: 14px 16px; color: rgba(255,255,255,.63); border-left: 2px solid var(--cyan); background: rgba(34,211,238,.055); font-size: 13px; line-height: 1.5; }

.industry-section { background: #fff; }
.industry-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 48px; }
.industry-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.55; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chips span { padding: 8px 12px; color: #40506b; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); font-size: 13px; font-weight: 650; }
.industry-visual img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(12,33,66,.16);
  object-fit: contain;
}

.sources-section { padding: 104px 0; color: #fff; background: linear-gradient(135deg, #07111f, #0c1b33); }
.sources-section .section-heading { margin-bottom: 42px; }
.sources-section .section-heading > p:last-child { color: rgba(255,255,255,.56); }
.source-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.source-pills span { min-width: 168px; padding: 15px 18px; text-align: center; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.045); font-size: 13px; font-weight: 700; }

.roles-section { background: var(--surface-soft); }
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.role-card { position: relative; min-height: 0; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.role-card.featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, #0d1b33, #153466); transform: none; box-shadow: 0 20px 50px rgba(7,17,31,.18); }
.role-card > img { width: 28px; height: 28px; margin: 36px 0 16px; object-fit: contain; }
.role-card.featured > img { filter: brightness(0) invert(1); }
.role-card h3 { font-size: 18px; }
.role-card p { color: var(--muted); font-size: 14px; line-height: 1.5; margin-bottom: 0; }
.role-card.featured p { color: rgba(255,255,255,.65); }
.role-index { position: absolute; top: 24px; right: 24px; color: #a7b2c3; font-size: 12px; font-weight: 800; }

.comparison-section { background: #fff; }
.comparison-table { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; }
.table-row { display: grid; grid-template-columns: .6fr 1fr 1fr; }
.table-row > * { padding: 18px 20px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.45; }
.table-row:last-child > * { border-bottom: 0; }
.table-row > :nth-child(2) { color: #7d889b; background: #fbfcfe; }
.table-row > :nth-child(3) { color: #1547a7; background: rgba(40,100,240,.045); font-weight: 650; }
.table-head > * { color: #66748c !important; background: #f4f7fb !important; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.pricing-section { background: var(--surface-soft); }
.period-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px auto 8px;
  max-width: 720px;
}
.period-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 112px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.period-chip span {
  color: var(--mint-dark, #0f7a4a);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.period-chip.is-active {
  border-color: #7da4ff;
  background: rgba(40,100,240,.08);
  box-shadow: 0 8px 20px rgba(40,100,240,.12);
}
.period-price { margin-top: 8px; }
.price-term { margin: 6px 0 0; color: var(--text); font-size: 14px; font-weight: 700; }
.price-save { margin: 6px 0 0; color: #0f7a4a; font-size: 13px; font-weight: 650; line-height: 1.4; }
.price-was { margin-right: 6px; color: #8b97ab; font-weight: 650; text-decoration: line-through; }
.pricing-block { margin-top: 48px; }
.pricing-block:first-of-type { margin-top: 8px; }
.pricing-block-head { max-width: 720px; margin: 0 auto 22px; text-align: center; }
.pricing-block-head h3 { margin: 0 0 8px; font-size: 22px; }
.pricing-block-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; min-width: 0; }
.pricing-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 0; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.price-card.recommended { border-color: #7da4ff; box-shadow: 0 20px 50px rgba(40,100,240,.14); transform: none; }
.recommend-badge { position: absolute; top: 20px; right: 20px; padding: 6px 10px; color: var(--blue); border-radius: 999px; background: rgba(40,100,240,.09); font-size: 11px; font-weight: 800; }
.plan-label { margin-bottom: 14px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 4px; font-size: 22px; }
.plan-note { color: var(--muted); font-size: 14px; }
.price { margin: 16px 0 0; font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.price small { margin-left: 4px; color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: 0; }
.price-year, .price-unit { margin: 6px 0 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.price-card ul { display: grid; gap: 10px; margin: 16px 0 24px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 26px; color: #46546c; font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 900; }
.price-card .button { margin-top: auto; }
.pricing-note { max-width: 680px; margin: 28px auto 0; color: var(--muted); text-align: center; font-size: 13px; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 56px; }
.faq-grid .section-heading { position: sticky; top: 120px; margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: inherit; }
.faq-item button { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; padding: 18px 0; border: 0; background: transparent; text-align: left; font-size: 16px; font-weight: 700; cursor: pointer; }
.faq-item button span { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-soft); transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-answer p { max-width: 720px; margin-bottom: 18px; color: var(--muted); font-size: 15px; line-height: 1.55; }

.demo-section { position: relative; overflow: hidden; padding: 96px 0; color: #fff; background: #07111f; }
.demo-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -260px; bottom: -380px; border-radius: 50%; background: var(--blue); filter: blur(140px); opacity: .32; }
.demo-art { position: absolute; inset: 0; opacity: .14; background: url("../landing/images/generated/hero-data-core.webp") 100% 50% / cover no-repeat; }
.demo-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 48px; }
.demo-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.55; }
.demo-copy ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.demo-copy li { position: relative; padding-left: 28px; color: rgba(255,255,255,.75); font-size: 15px; }
.demo-copy li::before { content: "✓"; position: absolute; left: 0; color: #4fe0ad; font-weight: 900; }
.demo-form { padding: 28px; color: var(--text); border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 30px 100px rgba(0,0,0,.38); }
.demo-form h3 { margin-bottom: 20px; font-size: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.demo-form label { display: grid; gap: 7px; margin-bottom: 16px; color: #3f4b60; font-size: 13px; font-weight: 700; }
.demo-form input, .demo-form textarea { width: 100%; padding: 13px 14px; color: var(--text); border: 1px solid #d7e0ec; border-radius: 11px; background: #fff; resize: vertical; }
.demo-form input:hover, .demo-form textarea:hover { border-color: #aab9cf; }
.demo-form .consent { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 10px; font-weight: 500; }
.consent input { width: 18px; height: 18px; margin: 0; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 72px 0; color: #fff; background: #050c17; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr .7fr; gap: 56px; }
.footer-grid > div:first-child p { max-width: 390px; margin-top: 22px; color: rgba(255,255,255,.5); }
.footer-grid h3 { margin: 8px 0 18px; color: rgba(255,255,255,.38); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a:not(.brand), .footer-grid > div > p { display: block; margin-bottom: 10px; color: rgba(255,255,255,.6); font-size: 14px; }
.footer-grid a:hover { color: #fff; }

/* Use `translate` (not `transform`) so hover lifts still work on cards. */
.reveal { opacity: 1; translate: none; }
.js-ready .reveal { opacity: 0; translate: 0 16px; transition: opacity .22s ease, translate .22s ease; }
.js-ready .reveal.visible { opacity: 1; translate: 0 0; }

@media (max-width: 1100px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 80px 0; }
  .site-nav { gap: 14px; }
  .hero { min-height: 0; padding: 120px 0 28px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-product { transform: none; }
  .hero-badges li { min-width: 0; }
  .hero h1 { max-width: none; font-size: clamp(30px, 3.2vw, 42px); }
  .floating-score { display: none; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .workflow { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .workflow::before { display: none; }
  .product-head { gap: 28px; }
  .span-4 { grid-column: span 6; }
  .span-8 { grid-column: span 12; }
  .feature-visual, .analytics-card { grid-template-columns: 1fr; gap: 20px; }
  .feature-visual, .analytics-card { padding: 24px 24px 0; }
  .analytics-card { padding-bottom: 24px; }
  .feature-visual > div, .analytics-card > div { padding: 0; }
  .feature-visual > img, .analytics-card > img {
    max-height: 260px;
    height: auto;
    border-radius: 16px;
    border-width: 1px;
    margin: 0;
    width: 100%;
  }
  .ai-grid, .industry-grid, .faq-grid, .demo-grid { grid-template-columns: 1fr; gap: 32px; }
  .industry-layout, .search-grid, .monitor-grid, .split-grid, .market-layout { grid-template-columns: 1fr; }
  .funnel-flow { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .faq-grid .section-heading { position: static; }
  .roles-grid, .pricing-grid, .pricing-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-row { min-height: 72px; }
  .menu-button { display: grid; gap: 4px; order: 3; width: 44px; height: 44px; padding: 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.06); }
  .menu-button span:not(.sr-only) { display: block; height: 2px; background: #fff; }
  .site-nav { position: absolute; inset: 72px 20px auto; display: none; flex-direction: column; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(7,17,31,.98); box-shadow: 0 28px 80px rgba(0,0,0,.35); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .header-actions { margin-left: auto; }
  .login-link { display: none; }
  .hero { min-height: auto; padding: 110px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: none; }
  .hero-art { opacity: .55; background-position: 72% 42%; }
  .hero-product { max-width: 100%; margin-inline: auto; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-head, .ai-grid, .industry-grid, .faq-grid, .demo-grid { grid-template-columns: 1fr; }
  .product-head { align-items: start; }
  .product-head > p { max-width: 700px; }
  .ai-copy { order: -1; }
  .industry-copy { max-width: 720px; }
  .roles-grid, .pricing-grid, .pricing-grid.cols-3, .pain-grid, .workflow { grid-template-columns: 1fr; }
  .role-card.featured, .price-card.recommended { transform: none; }
  .role-card { min-height: 0; }
  .span-4, .span-8, .span-12 { grid-column: 1 / -1; }
  .comparison-table { border: 0; border-radius: 0; display: grid; gap: 14px; }
  .table-row { grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
  .table-row > :first-child { grid-column: 1 / -1; padding: 14px 18px; background: var(--surface-soft); border-bottom: 1px solid var(--line); }
  .table-row > :nth-child(2), .table-row > :nth-child(3) { padding: 16px 18px; border-bottom: 0; font-size: 14px; }
  .table-head { display: none; }
  .faq-grid .section-heading { position: static; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 40px); }
  .section { padding: 64px 0; }
  h1 { font-size: 28px; line-height: 1.18; }
  h2 { font-size: 24px; line-height: 1.22; }
  .section-heading { margin-bottom: 32px; }
  .header-actions .button { min-height: 40px; padding-inline: 13px; font-size: 12px; }
  .brand .brand-wordmark { display: none; }
  .hero { padding-top: 100px; }
  .hero-lead { font-size: 15px; }
  .hero-buttons { display: grid; }
  .watch-bar { flex-wrap: wrap; gap: 8px; }
  .watch-seek { flex: 1 1 100%; order: -1; }
  .watch-volume { width: 72px; flex-basis: 72px; }
  .watch-time { font-size: 11px; }
  .hero-badges { flex-wrap: wrap; }
  .hero-badges li { flex: 1 1 140px; }
  .floating-card { min-width: 0; padding: 10px 12px; }
  .floating-deadline { right: 8px; top: -16px; }
  .fact-strip { margin-top: -28px; }
  .facts { grid-template-columns: 1fr; }
  .facts div { padding: 18px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .facts div:last-child { border-bottom: 0; }
  .pain-section { padding-top: 88px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card, .pain-card:nth-child(even) { min-height: 0; transform: none; }
  .pain-card > img { margin: 16px 0 12px; }
  .workflow { grid-template-columns: 1fr; gap: 22px; }
  .workflow li { min-height: 0; padding: 0 0 0 60px; }
  .workflow b { left: 0; }
  .workflow::before { display: block; left: 22px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .product-tabs { display: flex; overflow-x: auto; max-width: 100%; }
  .product-tabs button { flex: 0 0 auto; }
  .browser-shell-large { overflow: hidden; }
  .browser-shell-large > img { width: 100%; max-width: 100%; height: auto; }
  .bento { display: grid; grid-template-columns: 1fr; }
  .span-4, .span-8, .span-12 { grid-column: 1; }
  .feature-visual, .analytics-card { grid-template-columns: 1fr; gap: 18px; padding: 24px 24px 0; }
  .analytics-card { padding-bottom: 24px; }
  .feature-visual > div, .analytics-card > div { padding: 0; }
  .feature-visual > img, .analytics-card > img {
    width: 100%;
    max-height: 220px;
    height: auto;
    margin: 0;
    border-radius: 16px;
  }
  .analytics-card { min-height: 0; }
  .source-pills span { min-width: 0; flex: 1 1 138px; }
  .table-row { grid-template-columns: 1fr; }
  .table-row > :first-child { grid-column: 1; }
  .table-row > :nth-child(2), .table-row > :nth-child(3) { position: relative; padding-top: 36px; }
  .table-row > :nth-child(2)::before { content: "Вручную"; }
  .table-row > :nth-child(3)::before { content: "Tender Analyzer"; }
  .table-row > :nth-child(2)::before,
  .table-row > :nth-child(3)::before {
    position: absolute; top: 12px; left: 18px; color: #8b98aa;
    font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .demo-form { padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:last-child { grid-column: 1; }
  .footer-grid .brand .brand-wordmark { display: flex; }
}

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

.field-error {
  display: block;
  margin-top: 6px;
  color: var(--coral);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}
.form-status-error { color: var(--coral) !important; }
.microcopy {
  margin: 12px 0 0;
  color: #62708a;
  font-size: 12px;
  line-height: 1.45;
}
.industry-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.consent a { color: var(--blue); text-decoration: underline; }
.demo-form .consent a { color: var(--blue); }

.check-list.light li { border-color: var(--line); background: #fff; }
.check-list.light li::before { background: var(--ta-mint); color: #07111f; }
.check-list.light span { color: var(--muted); }

.industry-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: stretch; }
.industry-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--ta-radius-media); box-shadow: var(--ta-shadow); }
.industry-config { display: grid; gap: 16px; }
.industry-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.industry-tabs button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--text); font-size: 14px; font-weight: 650; cursor: pointer; }
.industry-tabs button[aria-selected="true"] { color: #fff; background: var(--blue); border-color: var(--blue); }
.industry-preview { padding: 24px; border: 1px solid var(--line); border-radius: var(--ta-radius-card); background: #fff; box-shadow: var(--ta-shadow); }
.industry-preview h3 { margin-bottom: 16px; }
.industry-preview dl { display: grid; gap: 14px; margin: 0; }
.industry-preview dl > div { padding: 12px 14px; border-radius: 14px; background: var(--ta-surface); }
.industry-preview dt { margin-bottom: 4px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.industry-preview dd { margin: 0; color: var(--text); font-size: 15px; line-height: 1.45; }

.search-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.relevance-demo { padding: 24px; border: 1px solid var(--line); border-radius: var(--ta-radius-card); background: #fff; box-shadow: var(--ta-shadow); }
.demo-kicker { margin: 0 0 10px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-query { margin: 0 0 16px; }
.relevance-demo ol { display: grid; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; }
.relevance-demo li { display: grid; gap: 4px; padding: 12px 14px; border-radius: 14px; font-size: 15px; }
.relevance-demo li span { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.match-in { background: rgba(23,168,91,.08); }
.match-in span { color: #147a45; }
.match-out { background: rgba(230,72,72,.08); }
.match-out span { color: #c13b3b; }
.match-review { background: rgba(241,169,59,.12); }
.match-review span { color: #9a6a12; }
.relevance-demo img { border-radius: 16px; border: 1px solid var(--line); }

.ai-visual { display: grid; gap: 16px; }
.ai-atmosphere { opacity: .9; }
.criteria-table-wrap { overflow-x: auto; margin: 24px 0; max-width: 100%; }
.criteria-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.criteria-table th, .criteria-table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; vertical-align: top; overflow-wrap: break-word; word-break: normal; hyphens: none; }
.criteria-table th { color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.tone-good { color: #7ef0c4; }
.tone-check { color: #f1c56a; }
.tone-risk { color: #ff8d8d; }
.tone-unknown { color: #b8c4d8; }

.monitor-grid, .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.thesis-list { display: grid; gap: 12px; margin: 20px 0; padding: 0; list-style: none; }
.thesis-list li { padding-left: 0; color: var(--text); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.timeline li { padding: 12px 14px; border-radius: 14px; background: var(--ta-surface); font-weight: 700; font-size: 14px; }
.media-card img { width: 100%; border-radius: var(--ta-radius-media); border: 1px solid var(--line); box-shadow: var(--ta-shadow); object-fit: contain; }

.market-section { position: relative; overflow: hidden; color: #fff; background: #07111f; }
.market-art { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,31,.92), rgba(7,17,31,.45)), url("../landing/images/visuals/market-intelligence.webp") center / cover no-repeat; opacity: .55; }
.market-section .container { position: relative; z-index: 1; }
.market-section .section-heading > p:last-child { color: rgba(255,255,255,.72); }
.market-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.market-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.market-cards article { padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.05); }
.market-cards h3 { margin: 12px 0 8px; font-size: 16px; }
.market-cards p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.market-cards img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.media-card-dark img { border-color: rgba(255,255,255,.12); }

.funnel-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.funnel-flow li { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.funnel-flow strong, .funnel-flow span { display: block; }
.funnel-flow span { margin-top: 6px; color: var(--muted); font-size: 14px; }

.split-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--ta-radius-card); background: #fff; }
.split-card img { margin-top: 18px; border-radius: 18px; border: 1px solid var(--line); }

.ai-copy, .ai-visual, .ai-grid, .industry-layout, .search-grid, .monitor-grid, .split-grid, .market-layout { min-width: 0; }
.product-section, .ai-section, .pricing-section { overflow-x: clip; }

.btn-label-short { display: none; }
h1, h2, .faq-item button, .price-card li, .funnel-flow span, .industry-preview dd {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: pretty;
}
@media (max-width: 860px) {
  h1 { font-size: clamp(32px, 8vw, 42px); }
  h2 { font-size: clamp(26px, 6vw, 34px); }
  .product-tabs { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .product-tabs button { flex: 0 0 auto; scroll-snap-align: start; }
  .funnel-flow, .market-cards { grid-template-columns: 1fr; }
  .pricing-grid { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 8px; max-width: 100%; }
  .price-card { flex: 0 0 min(320px, calc(100vw - 48px)); scroll-snap-align: start; }
  .period-chip { min-width: calc(50% - 8px); }
  .floating-relevance { left: 8px; }
  .floating-deadline { right: 8px; }
  .header-actions .btn-label-full { display: none; }
  .header-actions .btn-label-short { display: inline; }
  html { scroll-padding-top: 112px; }
  .section[id], #demo, #pricing, #faq, #features, #workflow, #industries, #market, #monitoring, #ai, #team, #sources, #roles, #search, #watch, .faq-item {
    scroll-margin-top: 112px;
  }
  .criteria-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .criteria-table,
  .criteria-table tbody,
  .criteria-table tr,
  .criteria-table td {
    display: block;
    width: 100%;
  }
  .criteria-table tr {
    margin: 0 0 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
  }
  .criteria-table td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
    border: 0;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .criteria-table td::before {
    content: attr(data-label);
    color: rgba(255,255,255,.48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

/* Later unscoped grids re-apply 2–3 columns and would override the
   stacking rules above. Re-assert mobile columns at the end of the file. */
@media (max-width: 1100px) {
  .industry-layout,
  .search-grid,
  .monitor-grid,
  .split-grid,
  .market-layout,
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-footer {
    padding-bottom: 120px;
  }
  .funnel-flow,
  .market-cards {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .price-card {
    flex: none;
    width: auto;
  }
  .table-row > * {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }
}
