:root {
  --ink: #171717;
  --muted: #5c6269;
  --paper: #f8f6f0;
  --panel: #ffffff;
  --line: #ded8cc;
  --primary: #006b68;
  --brand: #2457c5;
  --accent: #f2a83b;
  --cta: #101216;
  --surface-dark: #101216;
  --surface-ink: #171f26;
  --surface-tint: #eef7f4;
  --glow: 0 28px 80px rgba(0, 107, 104, 0.24);
  --icon: #006b68;
  --teal: #087c78;
  --blue: #2e65bd;
  --green: #658a32;
  --amber: #b87917;
  --red: #b64b3f;
  --dark: #151515;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.13);
  --radius: 8px;
  --max: 1360px;
  --content: 1120px;
  --font: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 4%, rgba(0, 107, 104, 0.11), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(36, 87, 197, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(20, 20, 20, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, #fbfaf7 0%, #f1ede4 42%, #f8f6f0 100%);
  line-height: 1.56;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; }
p { margin: 0; color: var(--muted); }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--icon);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  border-bottom: 1px solid rgba(222, 216, 204, 0.9);
  background: rgba(248, 246, 240, 0.94);
  box-shadow: 0 16px 40px rgba(16, 18, 22, 0.08);
}

.brand,
.main-nav,
.header-cta,
.btn,
.floating-cta {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: conic-gradient(from 180deg, var(--primary), var(--brand), var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 124, 120, 0.22);
}

.main-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #3f4449;
  font-size: 14px;
}

.main-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover { border-color: currentColor; }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 7px;
  font-weight: 800;
  border: 1px solid var(--dark);
  white-space: nowrap;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--cta), #26313a);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 18, 22, 0.22);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.btn,
.header-cta,
.floating-cta,
.card,
.channel,
.wide-card,
.check-card,
.price-grid article,
.risk-grid article,
.glossary article,
.metric-grid article,
.task-grid article,
.brief-grid article,
.faq-list details,
.integration-panel div,
.compare-table > div,
.check-list li,
.timeline article,
.video-frame {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.header-cta:hover,
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(16, 18, 22, 0.24), 0 0 0 4px rgba(242, 168, 59, 0.1);
}

.section {
  padding: 72px 24px;
  display: flex;
  justify-content: center;
  position: relative;
}

.section-inner {
  width: min(var(--max), 100%);
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  align-items: stretch;
}

.hero.section {
  padding-top: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(36, 87, 197, 0.32), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(0, 107, 104, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(16, 18, 22, 0.08), rgba(247, 243, 234, 0.52) 58%, rgba(242, 168, 59, 0.08));
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(23, 23, 23, 0.03) 1px, transparent 1px) 0 0 / 54px 54px;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(248, 246, 240, 0.94));
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 42px;
}

.hero-inner > * {
  max-width: 560px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  top: 92px;
  width: min(700px, 48vw);
  min-height: 590px;
  padding: 18px;
  border: 1px solid rgba(214, 204, 190, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(16, 18, 22, 0.72)),
    #101216;
  box-shadow: 0 34px 110px rgba(16, 18, 22, 0.3), var(--glow);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 38%, rgba(16, 18, 22, 0.86) 100%),
    radial-gradient(circle at 82% 16%, rgba(242, 168, 59, 0.18), transparent 30%);
  pointer-events: none;
}

.visual-top {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(238, 247, 244, 0.9);
  color: #143d3a;
  font-weight: 800;
  font-size: 13px;
}

.hero-image-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-motion-layer {
  position: absolute;
  inset: 36px 16px 146px;
  z-index: 2;
  pointer-events: none;
}

.data-trace {
  position: absolute;
  left: 13%;
  width: 78%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(77, 218, 224, 0.2), rgba(77, 218, 224, 0.92), rgba(242, 168, 59, 0.72), transparent);
  opacity: 0.78;
  transform-origin: left center;
  animation: dataTrace 9.5s linear infinite;
}

.data-trace-a { top: 24%; }
.data-trace-b {
  top: 45%;
  left: 12%;
  width: 80%;
  animation-delay: -3.1s;
}
.data-trace-c {
  top: 66%;
  left: 14%;
  width: 76%;
  animation-delay: -6.2s;
}

.data-packet {
  --packet-mid: 314px;
  --packet-distance: 560px;
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(16, 18, 22, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), 0 0 24px rgba(77, 218, 224, 0.2);
  animation: packetTravel 9.5s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

@supports (width: min(1px, 1px)) {
  .data-packet {
    --packet-mid: min(32vw, 314px);
    --packet-distance: min(58vw, 560px);
  }
}

.packet-a {
  top: 18%;
  left: 8%;
}

.packet-b {
  top: 39%;
  left: 7%;
  animation-delay: -3.1s;
}

.packet-c {
  top: 60%;
  left: 8%;
  animation-delay: -6.2s;
}

.control-pulse {
  position: absolute;
  left: 56%;
  top: 34%;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(242, 168, 59, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 168, 59, 0.22), rgba(36, 87, 197, 0.04) 58%, transparent 68%);
  box-shadow: 0 0 44px rgba(242, 168, 59, 0.28);
  animation: controlPulse 3.8s ease-in-out infinite;
}

.hero-overlay-panels {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(101, 138, 50, 0.18);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  gap: 10px;
}

.visual-node {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.visual-node.primary {
  border-color: rgba(0, 107, 104, 0.48);
  box-shadow: inset 0 0 0 1px rgba(0, 107, 104, 0.18), 0 18px 46px rgba(0, 0, 0, 0.22);
}

.visual-node.accent {
  border-color: rgba(242, 168, 59, 0.52);
  box-shadow: inset 0 0 0 1px rgba(242, 168, 59, 0.16), 0 18px 46px rgba(0, 0, 0, 0.22);
}

.visual-node b {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.visual-node span,
.visual-node small {
  color: var(--muted);
}

.visual-arrow {
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--brand), var(--accent));
  position: relative;
}

.visual-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.visual-metrics div {
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 18, 22, 0.76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.visual-metrics strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 7px;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #31464a;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 58px;
  max-width: 700px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 20px;
}

.hero-lead {
  margin-top: 22px;
  font-size: 21px;
  color: #3c4046;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 560px;
}

.hero-proof article {
  min-height: 114px;
  padding: 14px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-head h2 {
  max-width: 720px;
}

.section-head p {
  font-size: 17px;
}

.muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(238, 247, 244, 0.48)),
    rgba(255, 255, 255, 0.48);
}

.intro,
#scenarios,
#brief-to-tz,
#metrics,
#faq {
  background:
    linear-gradient(90deg, rgba(36, 87, 197, 0.045) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(180deg, rgba(0, 107, 104, 0.06), rgba(255, 255, 255, 0.62));
}

#platforms,
#tools,
#brief-language,
#glossary {
  background:
    repeating-linear-gradient(110deg, rgba(36, 87, 197, 0.07) 0 1px, transparent 1px 44px),
    linear-gradient(135deg, #eef7f4 0%, #edf3fb 48%, #f8f6f0 100%);
}

#task-map,
#price,
#checklist {
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.04) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(135deg, rgba(36, 87, 197, 0.1), rgba(0, 107, 104, 0.08) 42%, rgba(242, 168, 59, 0.06));
}

#integrations {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 56px),
    linear-gradient(135deg, #0f1318 0%, #132033 48%, #0f2f33 100%);
  color: #fff;
}

#integrations p,
#integrations .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

#integrations .eyebrow::before {
  background: var(--accent);
}

.video-showcase {
  display: flex;
  justify-content: center;
  padding: 66px 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(135deg, #0f1318 0%, #14223a 54%, #101216 100%);
  color: #fff;
}

.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(77, 218, 224, 0.12) 18% 19%, transparent 19% 43%, rgba(242, 168, 59, 0.1) 43% 44%, transparent 44% 100%);
  pointer-events: none;
}

.video-showcase-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.video-copy strong {
  display: block;
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.08;
}

.video-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.video-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(155, 210, 199, 0.26);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 107, 104, 0.24), rgba(36, 87, 197, 0.18)),
    #080b10;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(242, 168, 59, 0.08);
  overflow: hidden;
}

.video-frame::before {
  content: "видео";
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.video-frame.is-video-error::before {
  content: "видео временно недоступно";
  background: rgba(182, 75, 63, 0.88);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(77, 218, 224, 0.82), rgba(242, 168, 59, 0.68), transparent);
  background-size: 220px 100%;
  opacity: 0.7;
  pointer-events: none;
  animation: electricSweep 5.2s linear infinite;
}

.automation-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0f1318;
}

.dark {
  background:
    radial-gradient(circle at 82% 8%, rgba(36, 87, 197, 0.26), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(0, 107, 104, 0.24), transparent 34%),
    var(--surface-dark);
  color: #fff;
}

.dark p,
.dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.dark .eyebrow::before {
  background: #9bd2c7;
}

.bento,
.channel-grid,
.check-grid,
.price-grid,
.risk-grid,
.glossary,
.metric-grid,
.task-grid,
.brief-grid {
  display: grid;
  gap: 14px;
}

.bento.three,
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.channel-grid,
.check-grid,
.risk-grid,
.glossary,
.metric-grid,
.task-grid,
.brief-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.channel,
.wide-card,
.check-card,
.price-grid article,
.risk-grid article,
.glossary article,
.metric-grid article,
.task-grid article,
.brief-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 244, 0.78)),
    var(--panel);
  padding: 20px;
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
  position: relative;
  overflow: hidden;
}

.card::before,
.channel::before,
.check-card::before,
.price-grid article::before,
.glossary article::before,
.metric-grid article::before,
.task-grid article::before,
.brief-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--brand), var(--accent));
  opacity: 0.82;
  background-size: 180% 100%;
  transition: opacity 180ms ease, background-position 420ms ease;
}

.card::after,
.channel::after,
.check-card::after,
.task-grid article::after,
.brief-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(36, 87, 197, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 87, 197, 0.1), transparent 66%);
  pointer-events: none;
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.card:hover,
.channel:hover,
.wide-card:hover,
.check-card:hover,
.price-grid article:hover,
.risk-grid article:hover,
.glossary article:hover,
.metric-grid article:hover,
.task-grid article:hover,
.brief-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 104, 0.3);
  box-shadow: 0 22px 58px rgba(16, 18, 22, 0.12);
}

.card:hover::before,
.channel:hover::before,
.check-card:hover::before,
.price-grid article:hover::before,
.glossary article:hover::before,
.metric-grid article:hover::before,
.task-grid article:hover::before,
.brief-grid article:hover::before {
  opacity: 1;
  background-position: 100% 0;
}

.card:hover::after,
.channel:hover::after,
.check-card:hover::after,
.task-grid article:hover::after,
.brief-grid article:hover::after {
  opacity: 0.92;
  transform: translate(-8px, -8px) scale(1.08);
  border-color: rgba(77, 218, 224, 0.28);
}

.card:hover .icon,
.channel:hover .icon,
.wide-card:hover .icon {
  transform: translateY(-2px);
  border-color: rgba(77, 218, 224, 0.34);
  box-shadow: 0 0 0 5px rgba(77, 218, 224, 0.08), 0 12px 28px rgba(36, 87, 197, 0.12);
}

#platforms .channel:nth-child(2n),
#task-map .task-grid article:nth-child(3n),
#brief-language .brief-grid article:nth-child(2n),
#glossary .glossary article:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 251, 0.86)),
    #fff;
}

#scenarios .wide-card,
#brief-to-tz .wide-card {
  border-color: rgba(36, 87, 197, 0.18);
  background:
    linear-gradient(90deg, rgba(36, 87, 197, 0.1), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef7f4);
}

#integrations .integration-panel div {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.16);
}

#integrations .integration-panel span {
  color: rgba(255, 255, 255, 0.72);
}

#integrations .integration-panel div:hover {
  border-color: rgba(155, 210, 199, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.card .icon,
.channel .icon,
.wide-card .icon {
  margin-bottom: 14px;
  padding: 6px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 107, 104, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 107, 104, 0.1), rgba(36, 87, 197, 0.08));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.dark .risk-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.card-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #33505b;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.card h3,
.channel h3,
.wide-card h3,
.check-card h3,
.price-grid h3,
.risk-grid h3,
.glossary h3,
.task-grid h3,
.brief-grid h3 {
  margin-bottom: 10px;
}

.scenario-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.scenario-layout.addition {
  margin-top: 16px;
}

.wide-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  position: relative;
}

.wide-card > .icon {
  grid-column: 1;
  grid-row: 1;
}

.wide-card > .icon + h3 {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-top: 54px;
}

.wide-card > .icon + h3 + p {
  grid-column: 2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.timeline article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 168, 59, 0.62), transparent);
}

.timeline article:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 210, 199, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  color: #b8ddd6;
  font-weight: 900;
}

.motion-strip-section {
  display: flex;
  justify-content: center;
  padding: 0 24px 54px;
  background:
    radial-gradient(circle at 70% 20%, rgba(91, 83, 190, 0.2), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(0, 107, 104, 0.22), transparent 34%),
    linear-gradient(180deg, var(--surface-dark), #121a22 58%, #f8f6f0 58%);
}

.motion-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(110px, 0.7fr) 44px minmax(110px, 0.7fr) 44px minmax(118px, 0.78fr) 44px minmax(118px, 0.78fr) minmax(170px, 0.85fr);
  gap: 10px;
  align-items: center;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, #111820, #171f2a 54%, #0f1318);
  color: #fff;
  box-shadow: 0 30px 90px rgba(16, 18, 22, 0.34);
  overflow: hidden;
}

.motion-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 44px 44px;
  pointer-events: none;
}

.motion-strip::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(77, 218, 224, 0.24), rgba(242, 168, 59, 0.78), rgba(77, 218, 224, 0.18), transparent);
  background-size: 220px 100%;
  opacity: 0.62;
  pointer-events: none;
  transform: translateY(-50%);
  animation: electricSweep 5.8s linear infinite;
}

.motion-copy,
.route-stage,
.route-link,
.route-kpi {
  position: relative;
  z-index: 1;
}

.motion-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9bd2c7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.motion-copy p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.route-stage {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.route-stage.is-active {
  transform: translateY(-4px);
  border-color: rgba(242, 168, 59, 0.52);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(242, 168, 59, 0.12);
}

.route-stage-accent {
  background: linear-gradient(145deg, rgba(0, 107, 104, 0.22), rgba(36, 87, 197, 0.16));
}

.route-stage b {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.route-stage small,
.route-kpi span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.route-link {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.route-link span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--brand), var(--accent));
  animation: routeFlow 2.4s ease-in-out infinite;
}

.route-kpi {
  display: grid;
  gap: 8px;
}

.route-kpi span {
  min-height: 32px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.route-kpi span:first-child {
  color: #fff;
  border-color: rgba(155, 210, 199, 0.36);
  background: rgba(0, 107, 104, 0.22);
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7f3ea);
  box-shadow: var(--shadow);
}

.compare-table > div {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 0;
}

.compare-table > div:not(.compare-head):hover {
  background: linear-gradient(90deg, rgba(77, 218, 224, 0.08), rgba(242, 168, 59, 0.05));
}

.compare-table span {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.compare-table span:last-child {
  border-right: 0;
}

.compare-table > div:last-child span {
  border-bottom: 0;
}

.compare-head {
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-ink));
  color: #fff;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.split p + p {
  margin-top: 16px;
}

.integration-panel {
  display: grid;
  gap: 12px;
}

.integration-panel div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f4fbf8);
  position: relative;
  overflow: hidden;
}

.integration-panel div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(77, 218, 224, 0.86), rgba(242, 168, 59, 0.74));
  background-size: 220px 100%;
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 180ms ease;
}

.integration-panel div:hover {
  transform: translateX(4px);
  border-color: rgba(77, 218, 224, 0.28);
  box-shadow: 0 18px 46px rgba(16, 18, 22, 0.1);
}

.integration-panel div:hover::after {
  opacity: 1;
  animation: electricSweep 1.6s ease;
}

.integration-panel strong {
  font-size: 22px;
  white-space: nowrap;
}

.integration-panel span {
  min-width: 0;
  color: var(--muted);
}

.metric-grid article {
  min-height: 150px;
  border-color: rgba(36, 87, 197, 0.18);
  background:
    linear-gradient(145deg, rgba(16, 18, 22, 0.94), rgba(19, 32, 51, 0.92)),
    var(--surface-dark);
  color: #fff;
}

.metric-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 32px;
  color: #fff;
  text-shadow: 0 0 22px rgba(77, 218, 224, 0.24);
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.checklist-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.92fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(36, 87, 197, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 247, 244, 0.62)),
    linear-gradient(90deg, rgba(36, 87, 197, 0.08), transparent);
  box-shadow: 0 24px 70px rgba(16, 18, 22, 0.11);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(36, 87, 197, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 251, 0.82)),
    #fff;
}

.check-list li:hover {
  transform: translateX(4px);
  border-color: rgba(0, 107, 104, 0.28);
  box-shadow: 0 14px 34px rgba(16, 18, 22, 0.08);
}

.check-list li::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-top: 4px;
  border-radius: 4px;
  background: var(--primary);
  box-shadow: inset 0 0 0 4px #dff0ed;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 251, 0.78)),
    #fff;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-list details[open] {
  border-color: rgba(36, 87, 197, 0.28);
  box-shadow: 0 18px 44px rgba(16, 18, 22, 0.1), inset 3px 0 0 var(--brand);
}

.faq-list details:hover {
  border-color: rgba(0, 107, 104, 0.24);
  box-shadow: 0 14px 34px rgba(16, 18, 22, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  list-style: none;
  font-weight: 850;
  position: relative;
  padding-right: 48px;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

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

.faq-list p {
  padding: 0 18px 18px;
}

.final-cta {
  padding-top: 42px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 18, 22, 0.92), rgba(0, 107, 104, 0.86)),
    var(--surface-dark);
  color: #fff;
  box-shadow: 0 30px 86px rgba(16, 18, 22, 0.24);
}

.cta-panel p,
.cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  background: linear-gradient(135deg, #101216, #172026);
  color: #fff;
  padding: 42px 24px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
}

.footer-inner p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-inner a {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), var(--brand));
  color: #fff;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 6px;
  z-index: 70;
  width: min(860px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 5px 7px 5px 10px;
  border: 1px solid rgba(242, 168, 59, 0.34);
  border-radius: var(--radius);
  background: rgba(16, 18, 22, 0.96);
  color: #fff;
  box-shadow: 0 18px 54px rgba(16, 18, 22, 0.32);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10.5px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookie-notice a {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.cookie-notice__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-left: 6px;
}

.cookie-notice__button {
  flex: 0 0 auto;
  min-height: 26px;
  padding: 4px 9px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.cookie-notice:not([hidden]) ~ .floating-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@keyframes dataTrace {
  0% {
    opacity: 0;
    transform: translateX(-8%) scaleX(0.06);
  }
  14% {
    opacity: 0.92;
  }
  62% {
    opacity: 0.92;
    transform: translateX(0) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(18%) scaleX(0.16);
  }
}

@keyframes packetTravel {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(0.96);
  }
  12% {
    opacity: 1;
  }
  42% {
    opacity: 1;
    transform: translate3d(var(--packet-mid), -4px, 0) scale(1);
  }
  72% {
    opacity: 1;
    transform: translate3d(var(--packet-distance), 3px, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--packet-distance) + 72px), 0, 0) scale(0.98);
  }
}

@keyframes controlPulse {
  0%, 100% {
    opacity: 0.54;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes routeFlow {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  34%, 68% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(170%);
  }
}

@keyframes electricSweep {
  0% {
    background-position: -220px 0;
  }
  100% {
    background-position: 220px 0;
  }
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px;
}

.legal-page h1 {
  font-size: 48px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 30px;
}

.legal-page p,
.legal-page li {
  color: #4d5359;
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero-inner {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.06;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    justify-self: start;
  }

  .hero {
    min-height: 1380px;
  }

  .hero-inner > * {
    max-width: 760px;
  }

  .hero-proof {
    max-width: 840px;
  }

  .hero-visual {
    left: 24px;
    right: 24px;
    top: 760px;
    width: auto;
    min-height: 560px;
  }

  .section-head,
  .split,
  .checklist-wrap,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .channel-grid,
  .check-grid,
  .risk-grid,
  .glossary,
  .metric-grid,
  .task-grid,
  .brief-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-showcase-inner {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: auto;
  }

  .motion-copy,
  .route-kpi {
    grid-column: 1 / -1;
  }

  .route-link {
    display: none;
  }

  .route-kpi {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 48px 18px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .hero {
    min-height: 1840px;
  }

  .hero-inner {
    padding-top: 48px;
    width: 100%;
    min-width: 0;
  }

  .hero-inner > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-visual {
    top: 620px;
    left: 18px;
    right: 18px;
    min-height: 590px;
  }

  .visual-grid,
  .visual-metrics,
  .hero-proof,
  .bento.three,
  .price-grid,
  .channel-grid,
  .check-grid,
  .risk-grid,
  .glossary,
  .metric-grid,
  .task-grid,
  .brief-grid,
  .timeline,
  .footer-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-motion-layer {
    display: none;
  }

  .motion-strip-section {
    padding: 0 18px 42px;
  }

  .motion-strip {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .video-showcase {
    padding: 46px 18px;
  }

  .video-copy strong {
    font-size: 28px;
  }

  .video-copy p {
    font-size: 15px;
  }

  .motion-copy p {
    max-width: none;
  }

  .route-kpi {
    grid-template-columns: 1fr;
  }

  .visual-arrow {
    height: 28px;
    width: 2px;
    margin: 0 auto;
  }

  .visual-arrow::after {
    right: -5px;
    top: 18px;
    transform: rotate(135deg);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: auto;
    white-space: normal;
    text-align: center;
  }

  .hero-proof {
    margin-top: 690px;
  }

  .wide-card,
  .compare-table > div,
  .integration-panel div {
    grid-template-columns: 1fr;
  }

  .wide-card > .icon,
  .wide-card > .icon + h3,
  .wide-card > .icon + h3 + p {
    grid-column: 1;
  }

  .wide-card > .icon + h3 {
    padding-top: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  h2 { font-size: 32px; }
  .hero h1,
  .hero-lead {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-lead {
    font-size: 17px;
    hyphens: auto;
  }

  .floating-cta {
    left: 18px;
    right: 18px;
  }

  .cookie-notice {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 8px;
    width: auto;
    max-width: calc(100vw - 20px);
    transform: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    align-items: center;
    padding: 6px 7px 6px 9px;
    cursor: pointer;
  }

  .cookie-notice::after {
    content: none;
  }

  .cookie-notice p {
    font-size: 9.8px;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .cookie-notice__links {
    display: inline-flex;
    gap: 4px 8px;
    margin-top: 3px;
    margin-left: 0;
  }

  .cookie-notice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 9px;
  }
}

/* ---- Pricing blocks: tariffs, popular bots, support ---- */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 244, 0.78)),
    var(--panel);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tariff-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--brand), var(--accent));
  background-size: 180% 100%;
  opacity: 0.82;
  transition: opacity 180ms ease, background-position 420ms ease;
}

.tariff-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 104, 0.3);
  box-shadow: 0 22px 58px rgba(16, 18, 22, 0.12);
}

.tariff-card:hover::before {
  opacity: 1;
  background-position: 100% 0;
}

.tariff-card.is-featured {
  border-color: rgba(0, 107, 104, 0.42);
  background:
    linear-gradient(160deg, rgba(0, 107, 104, 0.08), transparent 42%),
    linear-gradient(145deg, #ffffff, #eef7f4);
  box-shadow: 0 22px 60px rgba(0, 107, 104, 0.16), var(--glow);
}

.tariff-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--brand));
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.tariff-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.tariff-name {
  font-size: 20px;
  font-weight: 850;
  color: var(--ink);
}

.tariff-tag {
  font-size: 12px;
  font-weight: 800;
  color: #33505b;
  text-transform: uppercase;
}

.tariff-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.tariff-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.tariff-price strong {
  font-size: 30px;
  line-height: 1;
  color: var(--primary);
}

.tariff-fit {
  margin-bottom: 14px;
  font-size: 14px;
}

.tariff-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 9px;
  flex: 1;
}

.tariff-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.tariff-tick {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tariff-cta {
  width: 100%;
  margin-top: auto;
}

.tariff-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

.bots-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bot-price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 244, 0.78)),
    var(--panel);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bot-price::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--brand), var(--accent));
  background-size: 180% 100%;
  opacity: 0.82;
  transition: opacity 180ms ease, background-position 420ms ease;
}

.bot-price:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 104, 0.3);
  box-shadow: 0 22px 58px rgba(16, 18, 22, 0.12);
}

.bot-price:hover::before {
  opacity: 1;
  background-position: 100% 0;
}

.bot-price .icon {
  margin-bottom: 14px;
  padding: 6px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 107, 104, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 107, 104, 0.1), rgba(36, 87, 197, 0.08));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bot-price:hover .icon {
  transform: translateY(-2px);
  border-color: rgba(77, 218, 224, 0.34);
  box-shadow: 0 0 0 5px rgba(77, 218, 224, 0.08), 0 12px 28px rgba(36, 87, 197, 0.12);
}

.bot-price h3 {
  margin-bottom: 8px;
}

.bot-price p {
  flex: 1;
  font-size: 14px;
}

.bot-price-tag {
  margin-top: 14px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 107, 104, 0.12), rgba(36, 87, 197, 0.1));
  border: 1px solid rgba(0, 107, 104, 0.2);
  color: var(--primary);
  font-size: 14px;
  font-weight: 850;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(36, 87, 197, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(36, 87, 197, 0.08), transparent 36%),
    linear-gradient(145deg, #ffffff, #eef7f4);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 104, 0.3);
  box-shadow: 0 22px 58px rgba(16, 18, 22, 0.12);
}

.support-name {
  font-size: 18px;
  font-weight: 850;
  color: var(--ink);
}

.support-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}

.support-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.support-price strong {
  font-size: 26px;
  line-height: 1;
  color: var(--primary);
}

.support-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.support-react {
  display: inline-flex;
  align-self: flex-start;
  margin: 12px 0 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.06);
  border: 1px solid var(--line);
  color: #33505b;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .tariff-grid,
  .bots-price-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tariff-grid,
  .bots-price-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}
