:root {
  --ink: #101210;
  --black: #090b0a;
  --paper: #f5f7f3;
  --white: #ffffff;
  --mist: #e6e9e5;
  --line: #d8ddd7;
  --muted: #626861;
  --lime: #c8ff3d;
  --lime-deep: #9ad300;
  --lavender: #e5dfff;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(14, 20, 14, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 3%, rgba(200, 255, 61, 0.13), transparent 23rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--lime);
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #794cff;
  outline-offset: 4px;
}

.section-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 18, 16, 0.1);
  background: rgba(245, 247, 243, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1440px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--black);
  color: var(--lime);
  font-size: 17px;
  font-weight: 900;
  transform: rotate(-4deg);
}

.brand-name {
  font-size: 17px;
}

.brand-name span {
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: #484d48;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--lime-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-note {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.mobile-languages {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(9, 11, 10, 0.2);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(154, 211, 0, 0.2);
}

.button-lime:hover {
  box-shadow: 0 16px 36px rgba(154, 211, 0, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.button-outline {
  border-color: rgba(16, 18, 16, 0.16);
  background: transparent;
}

.button-full {
  width: 100%;
}

.arrow {
  position: relative;
  display: inline-grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0;
}

.arrow::before,
.inline-arrow::before {
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
}

.arrow::after,
.inline-arrow::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.arrow::after {
  top: 7px;
  right: 7px;
}

.inline-arrow {
  position: relative;
  display: inline-grid;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  place-items: center;
  color: currentColor;
  font-style: normal;
}

.inline-arrow::after {
  top: 1px;
  right: 1px;
}

.arrow-dark {
  background: var(--black);
  color: var(--lime);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  top: 78px;
  right: 0;
  left: 0;
  z-index: 99;
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: rgba(245, 247, 243, 0.98);
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease,
    visibility 0.2s ease,
    box-shadow 0.2s ease;
}

.mobile-menu.is-open {
  max-height: calc(100dvh - 78px);
  overflow-y: auto;
  border-bottom-color: var(--line);
  opacity: 1;
  visibility: visible;
  box-shadow: 0 24px 70px rgba(16, 18, 16, 0.14);
}

.mobile-menu nav {
  display: grid;
  width: min(100% - 32px, 680px);
  margin: 0 auto;
  padding: 16px 0 calc(24px + env(safe-area-inset-bottom));
}

.mobile-menu nav > a.is-active:not(.button) {
  color: var(--ink);
}

.mobile-menu nav > a.is-active:not(.button) span {
  color: var(--lime-deep);
}

.mobile-menu nav > a:not(.button) {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 14px 2px;
  font-size: 18px;
  font-weight: 800;
}

.mobile-menu nav > a span {
  color: var(--muted);
  font-size: 11px;
}

.mobile-menu .button {
  margin-top: 18px;
}

.hero {
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(440px, 0.96fr) minmax(560px, 1.04fr);
  align-items: center;
  gap: clamp(40px, 4vw, 64px);
  padding: 86px 0 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 4px;
  border-radius: 9px;
  background: var(--lime-deep);
}

.eyebrow-light {
  color: #b6beb7;
}

.hero h1,
.section-heading h2,
.demo-copy h2,
.ai-intro h2,
.platforms-head h2,
.pricing-head h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 80px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.75vw, 74px);
}

h1 em,
h2 em {
  display: inline-block;
  border-radius: 18px;
  background: var(--lavender);
  padding: 0.04em 0.2em 0.1em;
  color: inherit;
  font-style: normal;
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.43;
}

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

.audience-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.audience-avatars {
  display: flex;
}

.audience-avatars span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}

.audience-avatars span:first-child {
  margin-left: 0;
  background: var(--lime);
  color: var(--ink);
}

.audience-avatars span:last-child {
  background: var(--lavender);
  color: var(--ink);
}

.audience-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.hero-board {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.03fr 0.97fr;
  grid-template-rows: 0.94fr 1.06fr;
  gap: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card-report {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  padding: 26px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-deep);
  content: "";
}

.chart {
  display: flex;
  height: 130px;
  align-items: flex-end;
  gap: 9px;
  padding-top: 18px;
}

.chart span {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: var(--mist);
}

.chart span:nth-child(4),
.chart span:nth-child(5) {
  background: var(--lime);
}

.card-caption {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.hero-card-ai {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--lime);
  padding: 26px;
}

.hero-card-ai::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.2) 36%, transparent 68%);
  content: "";
}

.mini-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(16, 18, 16, 0.4);
  border-radius: 50%;
}

.mini-orbit::after {
  position: absolute;
  width: 11px;
  height: 11px;
  right: -1px;
  top: 5px;
  border-radius: 50%;
  background: var(--black);
  content: "";
}

.mini-orbit span {
  font-size: 12px;
  font-weight: 900;
}

.card-kicker {
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-card-ai h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.plus {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--lime);
}

.hero-card-metrics {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    repeating-linear-gradient(125deg, transparent 0 16px, rgba(255, 255, 255, 0.035) 16px 17px),
    var(--black);
  color: var(--white);
  padding: 28px;
}

.metric-value {
  margin: 0;
  color: var(--lime);
  font-size: clamp(74px, 7vw, 116px);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.hero-card-metrics > p:not(.metric-value) {
  max-width: 220px;
  margin: 20px 0 22px;
  color: #c6cbc6;
  font-size: 16px;
}

.metric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.metric-tags span {
  border: 1px solid #333834;
  border-radius: 99px;
  padding: 6px 9px;
  color: #bec5be;
  font-size: 10px;
}

.hero-card-focus {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mist);
  padding: 28px;
}

.focus-orb {
  width: 100%;
  height: 170px;
  border-radius: 120px 120px 24px 24px;
  background:
    radial-gradient(circle at 62% 44%, var(--lime) 0, rgba(200, 255, 61, 0.78) 18%, rgba(200, 255, 61, 0.08) 44%, transparent 60%),
    linear-gradient(135deg, #cfd3cf, #f7f8f6);
}

.hero-card-focus p {
  margin: 20px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.trust-strip div {
  padding: 19px 30px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  margin-right: 8px;
  color: var(--lime-deep);
}

.advantages {
  padding: 90px 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr minmax(240px, 400px);
  column-gap: 44px;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.demo-copy h2,
.ai-intro h2,
.platforms-head h2,
.pricing-head h2,
.final-cta h2 {
  font-size: clamp(40px, 4.25vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-heading > p:last-child,
.section-heading-wide > p:last-child,
.platforms-head > p,
.ai-intro > p:last-child {
  align-self: end;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 62px;
}

.advantage-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 16, 0.07);
  border-radius: var(--radius-md);
  padding: 24px;
}

.advantage-card:nth-child(1),
.advantage-card:nth-child(4) {
  grid-column: span 3;
}

.advantage-card:nth-child(2),
.advantage-card:nth-child(5) {
  grid-column: span 4;
}

.advantage-card:nth-child(3),
.advantage-card:nth-child(6) {
  grid-column: span 5;
}

.advantage-card:nth-child(3),
.advantage-card:nth-child(5) {
  min-height: 310px;
}

.advantage-card .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
}

.card-number {
  color: currentColor;
  font-size: 11px;
  font-weight: 850;
  opacity: 0.55;
}

.advantage-card h3 {
  max-width: 390px;
  margin: 0 0 12px;
  font-size: clamp(24px, 2.2vw, 35px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.advantage-card p {
  max-width: 390px;
  margin: 0;
  color: currentColor;
  font-size: 14px;
  opacity: 0.68;
}

.tone-light { background: var(--white); }
.tone-dark { background: var(--black); color: var(--white); }
.tone-lime { background: var(--lime); }
.tone-mist { background: var(--mist); }
.tone-lavender { background: var(--lavender); }

.demo-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 8%, rgba(200, 255, 61, 0.19), transparent 23rem),
    repeating-linear-gradient(132deg, transparent 0 20px, rgba(255, 255, 255, 0.025) 20px 21px),
    var(--black);
  color: var(--white);
  padding: 90px 0;
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(44px, 7vw, 110px);
}

.demo-copy {
  position: sticky;
  top: 120px;
}

.demo-copy h2 em,
.ai-intro h2 em,
.final-cta h2 em {
  background: var(--lime);
  color: var(--ink);
}

.demo-copy > p:not(.eyebrow),
.ai-intro > p:not(.eyebrow),
.final-cta-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 0;
  color: #aeb5ae;
  font-size: 18px;
}

.clean-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  gap: 18px;
  border-top: 1px solid #2b302c;
  padding: 15px 0;
  color: #d8ddd8;
  font-size: 14px;
}

.clean-list li:last-child {
  border-bottom: 1px solid #2b302c;
}

.clean-list span {
  color: var(--lime);
  font-size: 10px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px !important;
  color: #7f8980 !important;
  font-size: 11px !important;
}

.privacy-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.demo-panel {
  overflow: hidden;
  border: 1px solid #303632;
  border-radius: var(--radius-lg);
  background: #141715;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #303632;
  padding: 12px;
}

.demo-tabs button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7d867e;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.demo-tabs button.is-active {
  background: var(--lime);
  color: var(--ink);
}

.demo-form {
  padding: clamp(24px, 4vw, 48px);
}

.demo-eyebrow {
  margin: 0 0 7px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-form h3 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.upload-zone {
  display: grid;
  min-height: 190px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px dashed #464d47;
  border-radius: 20px;
  background: #1b1f1c;
  padding: 25px;
  cursor: pointer;
  text-align: center;
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.upload-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 24px;
}

.upload-zone strong {
  margin-top: 8px;
  font-size: 15px;
}

.upload-zone small {
  max-width: 340px;
  color: #7e8780;
  font-size: 11px;
}

.channel-field {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  border: 1px solid #3a403b;
  border-radius: 20px;
  background: #1b1f1c;
  padding: 0 22px;
}

.channel-field > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.channel-field input {
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  text-overflow: ellipsis;
}

.channel-field input::placeholder {
  color: #6f7770;
}

.demo-result {
  min-height: 260px;
  border-top: 1px solid #303632;
  background: #0d0f0e;
  padding: clamp(24px, 4vw, 44px);
}

.demo-result.is-ready {
  background: var(--white);
  color: var(--ink);
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #747e75;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.result-placeholder {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #586159;
}

.result-route {
  position: relative;
  display: block;
  width: 38px;
  height: 30px;
  flex: 0 0 38px;
  border-bottom: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
}

.result-route::after {
  position: absolute;
  right: -1px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--lime);
  border-right: 2px solid var(--lime);
  content: "";
  transform: rotate(45deg);
}

.result-placeholder p {
  margin: 0;
  font-size: 13px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.result-grid > div {
  display: flex;
  min-height: 105px;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 16px;
  background: var(--mist);
  padding: 16px;
}

.result-grid > div:last-child {
  background: var(--lime);
}

.result-grid span {
  color: var(--muted);
  font-size: 10px;
}

.result-grid strong {
  text-align: right;
  line-height: 1.1;
}

.demo-result > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-result > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 850;
}

.partnership {
  padding: 110px 0;
}

.partnership-heading {
  margin-bottom: 64px;
}

.partnership-heading > p:last-child {
  max-width: 640px;
  margin-top: 28px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 14px;
}

.partner-card {
  display: flex;
  min-width: 0;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 54px);
}

.partner-human {
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-ai {
  background:
    radial-gradient(circle at 78% 18%, #edffb6 0, rgba(237, 255, 182, 0.25) 24%, transparent 48%),
    var(--lime);
}

.partner-label {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-card h3 {
  max-width: 520px;
  margin: auto 0 32px;
  font-size: clamp(32px, 3.3vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-tags span {
  border: 1px solid rgba(16, 18, 16, 0.22);
  border-radius: 99px;
  padding: 7px 11px;
  font-size: 11px;
}

.partner-operator {
  position: relative;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--lime);
  box-shadow: 0 14px 38px rgba(9, 11, 10, 0.2);
  font-size: 28px;
  font-weight: 750;
  line-height: 1;
}

.partner-equals {
  grid-column: 1 / -1;
  margin: -38px auto;
}

.partner-result {
  position: relative;
  grid-column: 1 / -1;
  min-width: 0;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 30px;
  border-radius: var(--radius-md);
  background: var(--lavender);
  padding: 30px 36px;
}

.partner-result p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-result h3 {
  margin: 0;
  font-size: clamp(32px, 3.3vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.workflow {
  padding: 20px 0 150px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 62px;
}

.workflow-card {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 52px);
}

.instagram-flow {
  background: var(--lime);
}

.channel-flow {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.channel-flow .workflow-title {
  max-width: 620px;
  margin-inline: auto;
}

.workflow-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.platform-badge,
.platform-stack span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--black);
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.platform-stack {
  display: flex;
}

.platform-stack span:last-child {
  margin-left: -10px;
  background: var(--lavender);
  color: var(--ink);
}

.workflow-title p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.workflow-title h3 {
  margin: 2px 0 0;
  font-size: clamp(23px, 2.15vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.instagram-flow ol {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.instagram-flow li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(16, 18, 16, 0.2);
  padding: 19px 0;
}

.instagram-flow li > span {
  color: rgba(16, 18, 16, 0.5);
  font-size: 11px;
  font-weight: 850;
}

.instagram-flow li strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.instagram-flow li p {
  margin: 4px 0 0;
  color: rgba(16, 18, 16, 0.68);
  font-size: 13px;
}

.flow-note {
  margin: 26px 0 0;
  border-radius: 17px;
  background: var(--black);
  color: #d6ddd7;
  padding: 17px 19px;
  font-size: 12px;
}

.mock-input {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 13px;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
  padding: 10px 12px 10px 18px;
}

.mock-input > span:first-child {
  color: var(--lime-deep);
  font-size: 24px;
  font-weight: 900;
}

.mock-input p {
  margin: 0;
  color: var(--muted);
}

.mock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  border-radius: 13px;
  background: var(--black);
  color: var(--white);
  padding: 12px 15px;
  font-size: 11px;
  font-weight: 850;
}

.report-preview {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.report-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, auto);
  align-items: center;
  gap: 18px;
  border-radius: 14px;
  background: var(--mist);
  padding: 15px 17px;
  font-size: 12px;
}

.report-line strong {
  display: grid;
  min-width: 132px;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  justify-self: end;
  font-size: 11px;
}

.report-line strong::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-deep);
  content: "";
}

.one-click {
  position: relative;
  display: grid;
  margin-top: 18px;
  border-radius: 18px;
  background: var(--lavender);
  padding: 22px;
}

.one-click span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.one-click strong {
  margin-top: 4px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.one-click .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
}

.workflow-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.ai-section {
  overflow: hidden;
  background:
    repeating-linear-gradient(145deg, transparent 0 21px, rgba(255, 255, 255, 0.025) 21px 22px),
    var(--black);
  color: var(--white);
  padding: 145px 0;
}

section.final-cta.section-shell a.button.button-lime {
  margin-top: 20px;
}

.ai-intro > p:last-child {
  max-width: 720px;
  margin-top: 30px;
  color: #aeb5ae;
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 14px;
  margin-top: 64px;
}

.ai-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 50px);
}

.ai-card-index {
  color: currentColor;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  opacity: 0.62;
  text-transform: uppercase;
}

.ai-card h3 {
  margin: 80px 0 28px;
  font-size: clamp(34px, 3.5vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.ai-context {
  min-height: 420px;
  background: var(--lime);
  color: var(--ink);
}

.context-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.context-notes span {
  border: 1px solid rgba(16, 18, 16, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
}

.ai-context p {
  max-width: 420px;
  margin: 34px 0 0;
  color: rgba(16, 18, 16, 0.68);
}

.ai-question {
  min-height: 560px;
  background:
    radial-gradient(circle at 78% 23%, rgba(200, 255, 61, 0.35), transparent 19rem),
    #242825;
}

.question-bubble {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 86px 0 12px;
  margin-left: auto;
  border-radius: 22px 22px 5px 22px;
  background: var(--white);
  color: var(--ink);
  padding: 19px 22px;
  font-size: 16px;
  font-weight: 750;
}

.question-bubble-alt {
  margin: 0 auto 0 0;
  border-radius: 22px 22px 22px 5px;
  background: var(--lavender);
}

.ai-question p {
  position: absolute;
  right: 50px;
  bottom: 44px;
  left: 50px;
  z-index: 1;
  margin: 0;
  color: #aeb7af;
  font-size: 13px;
}

.ai-orb {
  position: absolute;
  right: -50px;
  bottom: -70px;
  display: grid;
  width: 250px;
  height: 250px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime), rgba(200, 255, 61, 0.08) 60%, transparent 68%);
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.ai-difference {
  grid-column: 1 / -1;
  min-height: 420px;
  background: var(--white);
  color: var(--ink);
}

.ai-difference h3 {
  margin: 38px 0;
}

.difference-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.difference-row span {
  font-weight: 850;
}

.difference-row p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.difference-row.is-product span {
  color: var(--lime-deep);
}

.custom-report {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr auto;
  align-items: end;
  gap: 36px;
  margin-top: 14px;
  border: 1px solid #343936;
  border-radius: var(--radius-lg);
  background: #181b19;
  padding: clamp(28px, 4vw, 52px);
}

.custom-report h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.custom-report > p {
  margin: 0;
  color: #929a93;
}

.platforms {
  padding: 145px 0;
}

.platforms-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px);
  align-items: end;
  gap: 40px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 60px;
}

.platform-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--mist);
  padding: 18px;
}

.platform-card.is-live {
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 18, 16, 0.06);
}

.platform-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.platform-card.is-live .platform-mark {
  background: var(--lime);
  color: var(--ink);
}

.platform-card h3 {
  margin: auto 0 4px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.platform-card.is-live p {
  color: var(--lime-deep);
}

.pricing {
  background: var(--mist);
  padding: 135px 0;
}

.pricing-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.early-access {
  display: grid;
  min-width: 310px;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 22px;
}

.early-access span {
  width: fit-content;
  border-radius: 99px;
  background: var(--lime);
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.early-access strong {
  margin-top: 18px;
  font-size: 16px;
}

.early-access p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 55px;
}

.price-card {
  display: flex;
  min-height: 550px;
  flex-direction: column;
  border: 1px solid rgba(16, 18, 16, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 24px;
}

.price-card.is-featured {
  background: var(--black);
  color: var(--white);
  transform: translateY(-10px);
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.price-card-head p {
  margin: 0;
  font-size: 17px;
  font-weight: 850;
}

.price-card-head div > span {
  display: inline-block;
  margin-top: 7px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 55px 0 30px;
}

.price strong {
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 650;
  letter-spacing: -0.07em;
}

.price-card.is-featured .price strong {
  color: var(--lime);
}

.price span {
  color: var(--muted);
  font-size: 11px;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(98, 104, 97, 0.25);
  padding: 12px 0;
  color: var(--muted);
  font-size: 12px;
}

.price-card.is-featured li {
  color: #aeb6af;
}

.price-card li::before {
  width: 6px;
  height: 10px;
  flex: 0 0 6px;
  margin: 1px 3px 0 1px;
  border-right: 2px solid var(--lime-deep);
  border-bottom: 2px solid var(--lime-deep);
  content: "";
  transform: rotate(45deg);
}

.pricing-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.final-cta {
  padding: 120px 0;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-radius: 44px;
  background:
    repeating-linear-gradient(142deg, transparent 0 23px, rgba(255, 255, 255, 0.03) 23px 24px),
    var(--black);
  color: var(--white);
  padding: clamp(36px, 7vw, 100px);
}

.final-cta-inner > *:not(.final-orb) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 1020px;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 36px;
}

.final-orb {
  position: absolute;
  right: -90px;
  bottom: -170px;
  display: grid;
  width: 520px;
  height: 520px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime) 0, #aef112 23%, rgba(200, 255, 61, 0.18) 58%, transparent 69%);
  color: var(--ink);
}

.final-orb span {
  font-size: 48px;
  font-weight: 900;
  transform: translate(-12px, 12px);
}

.footer-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-to-top i,
.to-top-icon {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
  font-style: normal;
}

.footer-to-top i::before,
.to-top-icon::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.to-top-icon {
  height: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding: 65px 0 28px;
}

.footer-main p {
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-main > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 17px;
  font-weight: 850;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  align-content: start;
  gap: 14px 36px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.market-trust {
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(72px, 7vw, 100px) 0;
}

.market-copy h2 {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(38px, 3.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.market-copy h2 em {
  font-family: inherit;
  font-weight: inherit;
}

.market-tags {
  display: flex;
  max-width: 820px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  perspective: 1000px;
}

.market-tag {
  position: relative;
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 16, 0.12);
  border-radius: 999px;
  padding: 0 clamp(22px, 2.6vw, 38px);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(16, 18, 16, 0.07);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 650;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.market-tag-wide {
  min-width: min(100%, 420px);
}

.market-tag-accent {
  border-color: var(--lime);
  background: var(--lime);
}

.market-tag-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  letter-spacing: 0.04em;
}

.flow-summary {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-board {
    min-height: 670px;
  }

  .advantage-card:nth-child(n) {
    grid-column: span 6;
    min-height: 280px;
  }

  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.is-featured {
    transform: none;
  }

  .custom-report {
    grid-template-columns: 1fr 1fr;
  }

  .custom-report .button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .market-trust {
    grid-template-columns: 1fr;
  }

  .market-copy {
    max-width: 720px;
  }

  .market-tags {
    max-width: none;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .header-inner {
    width: min(100% - 32px, 720px);
  }

  .header-inner {
    min-height: 70px;
  }

  .mobile-menu {
    top: 70px;
  }

  .mobile-menu.is-open {
    max-height: calc(100dvh - 70px);
  }

  .desktop-cta {
    display: none;
  }

  .language-note {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 0 48px;
  }

  .hero-board {
    min-height: 600px;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .advantages {
    padding: 48px 0;
  }

  .partnership,
  .platforms {
    padding: 86px 0;
  }

  .section-heading-wide,
  .platforms-head,
  .pricing-head {
    grid-template-columns: 1fr;
  }

  .section-heading-wide > p:last-child,
  .platforms-head > p {
    max-width: 600px;
    margin-top: 26px;
  }

  .demo-section {
    padding: 56px 0 76px;
  }

  .ai-section {
    padding: 86px 0;
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-copy {
    position: static;
  }

  .demo-panel {
    margin-top: 16px;
  }

  .partnership-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .partner-plus {
    margin: -38px auto;
    z-index: 2;
  }

  .partner-equals {
    grid-column: auto;
  }

  .partner-result {
    grid-column: auto;
    grid-template-columns: 1fr auto;
  }

  .partner-result p {
    grid-column: 1 / -1;
  }

  .workflow {
    padding: 0 0 110px;
  }

  .workflow-grid,
  .ai-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ai-difference {
    grid-column: auto;
  }

  .custom-report {
    grid-template-columns: 1fr;
  }

  .custom-report .button {
    grid-column: auto;
  }

  .pricing {
    padding: 100px 0;
  }

  .early-access {
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .market-trust {
    gap: 44px;
    padding: 56px 0;
  }
}

@media (max-width: 600px) {
  .section-shell {
    width: calc(100% - 32px);
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand {
    gap: 7px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-note {
    display: none;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(42px, 11.8vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-board {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-card {
    min-height: 250px;
  }

  .hero-card-ai,
  .hero-card-report {
    min-height: 235px;
  }

  .focus-orb {
    height: 140px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .market-trust {
    gap: 34px;
    padding: 56px 0;
  }

  .market-copy h2 {
    max-width: 350px;
    font-size: clamp(36px, 10.3vw, 46px);
    line-height: 1.03;
  }

  .market-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .market-tag,
  .market-tag-wide {
    min-width: 0;
    min-height: 54px;
    padding: 0 14px;
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }

  .market-tag-wide,
  .market-tag-dark {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .demo-copy h2,
  .ai-intro h2,
  .platforms-head h2,
  .pricing-head h2,
  .final-cta h2 {
    font-size: clamp(36px, 10.3vw, 48px);
    line-height: 1.02;
  }

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

  .advantage-card:nth-child(n) {
    grid-column: auto;
    min-height: 196px;
  }

  .demo-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .partner-card {
    min-height: 305px;
  }

  .partner-card h3,
  .partner-result h3 {
    font-size: 34px;
    line-height: 1.03;
  }

  .partner-equals {
    margin: -38px auto;
  }

  .partner-result {
    grid-template-columns: 1fr;
  }

  .partner-result p,
  .partner-result h3 {
    grid-column: auto;
  }

  .workflow-card,
  .ai-card {
    border-radius: 28px;
  }

  .ai-card {
    padding: 26px;
  }

  .ai-card h3 {
    margin: 52px 0 24px;
  }

  .mock-input {
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
  }

  .channel-flow .workflow-title {
    justify-content: center;
  }

  .mock-input > span:first-child {
    flex: 0 0 auto;
  }

  .mock-input p {
    flex: 1 1 auto;
    text-align: center;
  }

  .mock-button {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .ai-context {
    min-height: 330px;
  }

  .ai-question {
    min-height: 440px;
  }

  .channel-field {
    min-height: 68px;
    gap: 10px;
    padding: 0 14px;
  }

  .channel-field > span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 11px;
  }

  .channel-field input {
    font-size: clamp(11px, 3.35vw, 13px);
  }

  .report-line {
    grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
    gap: 12px;
  }

  .report-line strong {
    min-width: 120px;
  }

  .question-bubble {
    margin-top: 60px;
    padding: 16px 18px;
    font-size: 14px;
  }

  .question-bubble-alt {
    margin-top: 0;
  }

  .ai-question p {
    right: 28px;
    bottom: 30px;
    left: 28px;
  }

  .difference-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ai-difference {
    min-height: auto;
  }

  .ai-difference h3 {
    margin: 34px 0;
  }

  .custom-report {
    gap: 24px;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-card {
    min-height: 160px;
  }

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

  .price-card {
    min-height: 0;
    padding: 22px;
  }

  .price {
    margin: 32px 0 22px;
  }

  .price-card ul {
    margin-top: 22px;
  }

  .final-cta {
    width: 100%;
    padding: 60px 16px;
  }

  .final-cta-inner {
    min-height: 560px;
    border-radius: 30px;
    padding: 34px 24px;
  }

  .final-orb {
    right: -210px;
  }

  .site-footer {
    width: calc(100% - 32px);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

h1 em,
h2 em {
  margin-top: 10px;
}

@media (max-width: 700px) {
  .hero-copy h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 34px !important;
  }
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 3px;
}

.language-switcher button {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switcher button:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-switcher button.is-active {
  background: var(--black);
  color: var(--lime);
}

.language-switcher-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.language-switcher-mobile button {
  width: 100%;
  height: 44px;
  font-size: 11px;
}

.language-switcher-footer {
  border-color: rgba(16, 18, 16, 0.1);
}

html[lang="de"] .hero h1,
html[lang="en"] .hero h1 {
  letter-spacing: -0.045em;
}

html[lang="de"] .market-copy h2,
html[lang="de"] .section-heading h2,
html[lang="de"] .ai-intro h2 {
  letter-spacing: -0.04em;
}

@media (max-width: 600px) {
  .header-actions > .language-switcher {
    gap: 0;
  }

  .header-actions > .language-switcher button {
    min-width: 30px;
    height: 34px;
    font-size: 8px;
  }

  .header-actions > .language-switcher {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .language-switcher-footer {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .language-switcher-footer button {
    min-width: 44px;
    height: 40px;
  }

  .footer-to-top {
    min-height: 44px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
}
