:root {
  --ink: #111820;
  --ink-2: #18212a;
  --ink-3: #24303a;
  --paper: #f5f6f5;
  --paper-2: #e9eeee;
  --surface: #ffffff;
  --line: #d9e1e2;
  --muted: #5d6975;
  --accent: #b33a3a;
  --accent-strong: #8e2d2d;
  --deep: #111820;
  --deep-2: #18212a;
  --footer-bg: #0d1116;
  --visual-bg: #ecefef;
  --visual-shadow: rgba(17, 24, 32, 0.18);
  --max: 1180px;
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Segoe UI", Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #edf3f3;
    --ink-2: #dce6e7;
    --ink-3: #cbd7dc;
    --paper: #101418;
    --paper-2: #171d21;
    --surface: #1d2428;
    --line: #334047;
    --muted: #aebbc3;
    --accent: #e06a6a;
    --accent-strong: #f08888;
    --deep: #0d1116;
    --deep-2: #12191e;
    --footer-bg: #080b0e;
    --visual-bg: #171d21;
    --visual-shadow: rgba(0, 0, 0, 0.42);
  }
}

img,
picture {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(246, 248, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 850;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #2f3944;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
}

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

.icon,
.button-icon,
.meta-icon,
.list-icon,
.summary-icon {
  flex: 0 0 auto;
  color: currentColor;
}

.button-with-icon {
  gap: 8px;
}

.button-icon {
  width: 18px;
  height: 18px;
}

.meta-icon {
  width: 18px;
  height: 18px;
  color: #656a70;
}

.list-icon {
  width: 18px;
  height: 18px;
  color: #656a70;
}

.button-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-strong);
}

.button-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.language {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 86px 20px;
}

.section-compact {
  padding: 56px 20px;
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.section-band {
  background: var(--paper-2);
}

.use-cases {
  background: var(--deep-2);
  color: #fff;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(620px, 48vw, 760px);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.hero-bg {
  display: grid;
  align-items: center;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 0 0 46%);
  pointer-events: none;
}

.hero-bg-media .product-picture,
.hero-bg-media img {
  width: 100%;
  height: 100%;
}

.hero-bg-media img {
  object-fit: contain;
  object-position: center;
}

.hero-image-desktop img {
  object-fit: contain;
  object-position: center bottom;
}

.hero-bg-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-backdrop,
.hero-bg-backdrop img {
  width: 100%;
  height: 100%;
}

.hero-bg-backdrop img {
  object-fit: cover;
  object-position: center;
}

.hero.hero-bg-image {
  background-color: var(--paper);
}

.hero-image-desktop,
.hero-image-mobile {
  width: 100%;
  height: 100%;
}

.hero-image-mobile {
  display: none;
}

.hero.hero-bg-image-theme {
  color: #111820;
  background-color: #f5f6f5;
}

.hero.hero-bg-image-theme .eyebrow {
  color: #52606b;
}

.hero.hero-bg-image-theme .lead {
  color: #34434e;
}

.hero.hero-bg-image-theme .button-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: #111820;
  border-color: rgba(17, 24, 32, 0.38);
}

@media (prefers-color-scheme: dark) {
  .hero.hero-bg-image-theme {
    color: #edf3f3;
    background-color: #101418;
  }

  .hero.hero-bg-image-theme .eyebrow,
  .hero.hero-bg-image-theme .lead {
    color: #dce5e8;
  }

  .hero.hero-bg-image-theme .button-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #edf3f3;
    border-color: rgba(237, 243, 243, 0.58);
  }
}

.hero-content,
.hero-grid,
.hero-stack {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px 20px 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 38px;
  align-items: center;
}

.hero-stack {
  display: grid;
  gap: 38px;
}

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

.hero-copy h1 {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  font-size: clamp(40px, 5.8vw, 64px);
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  max-width: 860px;
}

h3 {
  font-size: 23px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 680px;
  color: #d9e2e6;
  font-size: 20px;
}

.hero .eyebrow {
  color: #52606b;
}

.hero .lead {
  color: #34434e;
}

.hero .button-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border-color: rgba(17, 24, 32, 0.38);
}

.section .lead,
.section-compact .lead {
  color: var(--muted);
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 24px;
  color: #34434e;
  font-size: 14px;
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-line span:not(:last-child)::after {
  content: "/";
  margin: 0 11px;
  color: #74808a;
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 64px;
  padding: 14px 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.trust-bar-item:first-child {
  border-left: 0;
}

.hero-media {
  align-self: center;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0f151c;
}

.hero-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.product-frame {
  position: relative;
  overflow: visible;
  padding: clamp(10px, 1.5vw, 18px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--visual-bg);
  box-shadow:
    0 28px 72px var(--visual-shadow),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  transform: perspective(1100px) rotateX(0.7deg) rotateY(-1deg);
  transform-origin: center;
}

.product-frame img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.visual-section {
  display: grid;
  gap: 24px;
}

.setup-intro {
  align-items: center;
}

.setup-intro-copy {
  display: grid;
  gap: 22px;
}

.setup-intro-copy .section-head {
  display: block;
  margin-bottom: 0;
}

.setup-intro-copy .section-head p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 520px;
}

.setup-intro-copy .cta-row {
  margin-top: 0;
}

.compact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.compact-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  background: var(--surface);
}

.compact-step > span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 850;
}

.compact-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.compact-step p {
  color: var(--muted);
  font-size: 14px;
}

.visual-section-media {
  justify-self: end;
  max-width: 560px;
  overflow: visible;
  padding: clamp(10px, 1.5vw, 18px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--visual-bg);
  box-shadow:
    0 26px 66px var(--visual-shadow),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  transform: perspective(1100px) rotateX(0.7deg) rotateY(1deg);
  transform-origin: center;
}

.visual-section-media img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.transparent-visual,
.transparent-visual img {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.transparent-visual {
  padding: 0;
  overflow: visible;
}

.transparent-visual img {
  border: 0;
}

.hero .product-frame {
  min-height: 380px;
}

.hero .product-frame img {
  height: 100%;
  object-fit: cover;
}

.mobile-only {
  display: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 36px auto 0;
  max-width: var(--max);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #c8d3d8;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 430px;
  color: var(--muted);
}

.section-head-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-head-centered p {
  max-width: 620px;
}

.section-head-centered > p {
  margin-top: -12px;
}

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

.step,
.card,
.price-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step {
  padding: 22px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: var(--deep);
  color: var(--accent);
  font-size: 15px;
  font-weight: 850;
}

.step p,
.card p,
.price-card p,
.faq-item p,
.legal-text p,
.legal-text li {
  color: var(--muted);
}

.feature-rows {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 24px;
  background: var(--surface);
}

.feature-row strong {
  font-size: 18px;
}

.proof-section {
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 0;
}

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

.proof-item p {
  color: var(--muted);
}

.pricing-layout {
  display: grid;
  gap: 14px;
}

.trial-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(130px, 0.45fr) minmax(320px, 1.35fr) auto;
  gap: 28px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
}

.trial-card .eyebrow {
  color: #cdd7dc;
}

.trial-card h3 {
  margin-bottom: 8px;
}

.trial-card p,
.trial-card li {
  color: #cdd7dc;
}

.trial-card .list-icon {
  color: #fff;
}

.trial-card-price {
  min-width: 130px;
}

.trial-card-price span {
  display: block;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.trial-card-price small {
  display: block;
  margin-top: 6px;
  color: #b7c2c8;
  font-weight: 750;
}

.trial-card .button {
  min-width: 132px;
}

.trial-card .button-light {
  background: #fff;
  color: #111820;
  border-color: #fff;
}

.trial-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

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

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

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: 30px minmax(98px, auto) auto 1fr auto;
  min-height: 100%;
  padding: 24px;
  gap: 0;
}

.price-card.featured {
  border-color: var(--accent-strong);
  box-shadow:
    inset 0 4px 0 var(--accent),
    0 18px 44px rgba(17, 24, 32, 0.1);
}

.plan-badge {
  width: fit-content;
  margin: -4px 0 0;
  padding: 5px 9px;
  border: 1px solid rgba(179, 58, 58, 0.24);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.plan-badge-slot {
  min-height: 30px;
}

.plan-copy {
  min-height: 98px;
}

.price {
  margin: 12px 0 10px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

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

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
}

.check-list li::before {
  content: none;
}

.trial-card .check-list li,
.trial-card .check-list span {
  color: #cdd7dc;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f969c;
}

.price-card .button {
  align-self: end;
}

.price-card .check-list {
  margin-bottom: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--paper-2);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 34px;
}

.use-cases .section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.use-case {
  display: grid;
  justify-items: center;
  align-content: start;
  max-width: 270px;
  margin: 0 auto;
  text-align: center;
}

.spot-picture {
  width: min(210px, 70%);
  margin-bottom: 20px;
}

.spot-picture img {
  width: 100%;
  height: auto;
}

.use-case h3 {
  font-size: 20px;
}

.use-case p {
  max-width: 320px;
  margin-top: 12px;
  color: #aebbc3;
}

.card {
  padding: 24px;
}

.card h3,
.price-card h3 {
  margin-bottom: 12px;
}

.panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.panel h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.panel .lead {
  font-size: 18px;
}

.payment-panel {
  max-width: 760px;
}

.panel-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: #161d24;
  color: #fff;
}

.panel-dark p,
.panel-dark li {
  color: #cdd7dc;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.summary-icon {
  color: #25282b;
  transition: transform 160ms ease;
}

.faq-item[open] .summary-icon {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 22px 22px;
}

.legal-text {
  display: grid;
  max-width: 860px;
}

.legal-text h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.15;
}

.legal-text > section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-text > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-text ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--muted);
}

.page-hero {
  padding: 70px 20px 58px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 4.4vw, 48px);
}

.page-hero .lead {
  max-width: 760px;
  color: var(--muted);
}

.cta-band {
  padding: 58px 20px;
  background: var(--deep-2);
  color: #fff;
}

.cta-band p {
  max-width: 640px;
  margin-top: 16px;
  color: #cdd7dc;
}

.footer {
  background: var(--footer-bg);
  color: #d9e2e6;
  padding: 54px 20px 32px;
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(140px, auto) minmax(220px, 1fr);
  column-gap: clamp(48px, 8vw, 120px);
  row-gap: 30px;
  align-items: start;
}

.footer-mobile {
  display: none;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer h2 {
  font-size: 24px;
}

.footer-column,
.footer-group {
  display: grid;
  align-content: start;
  min-width: 0;
}

.footer-column {
  gap: 30px;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.footer-column:nth-child(2) {
  justify-self: center;
}

.footer-column:nth-child(3) {
  justify-self: end;
}

.footer-group {
  gap: 8px;
}

.footer-setup-column {
  width: min(100%, 250px);
}

.footer h3 {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer p,
.footer a {
  color: #aebbc3;
}

.footer a {
  display: block;
  text-decoration: none;
}

.footer-mobile-nav {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8d9ba4;
  font-size: 13px;
}

.sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 64px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 18px 50px rgba(16, 20, 25, 0.16);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-grid,
  .split,
  .split-reverse,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero-bg-media {
    clip-path: none;
  }

  .trial-card {
    grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.45fr);
  }

  .trial-list {
    grid-column: 1 / -1;
  }

  .trial-card .button {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 720px;
    padding: 0;
  }

  .hero .product-frame {
    min-height: 0;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .stats,
  .price-grid,
  .cards,
  .use-case-grid,
  .trust-bar-grid,
  .compact-steps,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-section-media {
    justify-self: stretch;
    max-width: none;
  }

  .trust-bar-item:nth-child(odd),
  .proof-item:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .use-cases .section-head {
    margin-bottom: 28px;
  }

  .use-cases .section-head h2 {
    max-width: 560px;
    font-size: clamp(28px, 5.2vw, 34px);
    line-height: 1.12;
  }

  .use-cases .section-head > p {
    max-width: 520px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
  }

  .use-case {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 5px 18px;
    justify-items: start;
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .spot-picture {
    grid-row: 1 / 3;
    width: 92px;
    margin: 0;
  }

  .use-case h3 {
    align-self: end;
    font-size: 18px;
  }

  .use-case p {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 820px;
  }

  .hero::after {
    inset: 0 0 auto;
    width: 100%;
    height: 64%;
  }

  .hero-content {
    padding: 42px 16px 430px;
  }

  .page-hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .hero-bg-media img {
    object-position: center bottom;
  }

  .hero.hero-bg-image {
    background-image: none !important;
  }

  .hero-bg-backdrop {
    display: none !important;
  }

  .hero.hero-bg-image-theme {
    color: var(--ink);
  }

  .hero.hero-bg-image-theme .eyebrow {
    color: #52606b;
  }

  .hero.hero-bg-image-theme .lead {
    color: #34434e;
  }

  .hero.hero-bg-image-theme .button-ghost {
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
    border-color: rgba(17, 24, 32, 0.38);
  }

  .hero-bg-image .hero-image-desktop {
    display: none;
  }

  .hero-bg-image .hero-image-mobile {
    display: block;
  }

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

  .footer-column,
  .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    justify-self: start;
  }

  .footer-setup-column {
    justify-self: stretch;
    width: auto;
  }

  .hero .trust-line {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 70px;
  }

  .nav {
    min-height: 56px;
    gap: 8px;
    padding: 0 14px;
    justify-content: space-between;
  }

  .brand {
    display: none;
  }

  .language {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 12px;
  }

  .nav-links {
    top: 58px;
    left: 14px;
    right: auto;
    width: min(280px, calc(100vw - 28px));
    text-align: left;
  }

  .section,
  .section-compact {
    padding: 58px 16px;
  }

  .hero,
  .page-hero,
  .cta-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: 800px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    padding: 30px 16px 400px;
  }

  .page-hero {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .breadcrumbs {
    margin-bottom: 14px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats,
  .steps,
  .price-grid,
  .cards,
  .use-case-grid,
  .trust-bar-grid,
  .compact-steps,
  .proof-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .trial-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: none;
  }

  .footer {
    padding: 36px 16px 28px;
  }

  .footer-mobile {
    display: grid;
    gap: 16px;
  }

  .footer h3 {
    margin-bottom: 0;
  }

  .footer-bottom {
    margin-top: 26px;
  }

  .trial-list,
  .trial-card .button {
    grid-column: auto;
  }

  .trial-list {
    grid-template-columns: 1fr;
  }

  .trust-bar-item {
    justify-content: flex-start;
    min-height: 54px;
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .trust-bar-item:first-child {
    border-top: 0;
  }

  .compact-step {
    padding: 18px;
  }

  .proof-grid {
    border-bottom: 0;
  }

  .proof-item {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .panel {
    padding: 22px;
  }

  .product-frame,
  .visual-section-media {
    transform: none;
  }

  .sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: flex;
    justify-content: center;
    width: auto;
    box-shadow: 0 10px 28px rgba(16, 20, 25, 0.24);
  }
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(17, 22, 26, 0.94);
  }

  .nav-links {
    color: #d6e0e3;
  }

  .menu-button,
  .button-light,
  .language {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
  }

  .meta-icon,
  .list-icon {
    color: #aeb3b8;
  }

  .summary-icon {
    color: #e7e8ea;
  }

  .product-frame,
  .visual-section-media {
    box-shadow:
      0 28px 72px var(--visual-shadow),
      0 1px 0 rgba(255, 255, 255, 0.08) inset;
  }

  .product-frame img,
  .visual-section-media img {
    box-shadow: none;
  }

  .transparent-visual,
  .transparent-visual img {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .hero .eyebrow,
  .hero .lead,
  .trust-line {
    color: #dce5e8;
  }

  .hero .button-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink);
    border-color: rgba(237, 243, 243, 0.58);
  }

  .trust-line span:not(:last-child)::after {
    color: #8f9da5;
  }

  .panel-dark {
    background: #151d22;
  }
}

@media (prefers-color-scheme: dark) and (max-width: 760px) {
  .hero.hero-bg-image-theme {
    color: var(--ink);
  }

  .hero.hero-bg-image-theme .eyebrow,
  .hero.hero-bg-image-theme .lead {
    color: #dce5e8;
  }

  .hero.hero-bg-image-theme .button-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink);
    border-color: rgba(237, 243, 243, 0.58);
  }
}
