:root {
  --ink: #101413;
  --muted: #62706b;
  --line: #dce5df;
  --paper: #ffffff;
  --wash: #f5f8f6;
  --deep: #17221e;
  --deep-2: #24342e;
  --accent: #1fb878;
  --accent-dark: #128257;
  --gold: #c9912f;
  --shadow: 0 24px 70px rgba(21, 37, 31, 0.14);
  --hero-shadow: 0 34px 96px rgba(18, 32, 28, 0.22);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(220, 229, 223, 0.8);
  backdrop-filter: blur(22px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #9ddebd, var(--gold));
  box-shadow: 0 0 18px rgba(31, 184, 120, 0.28);
}

.brand,
.nav,
.hero-actions,
.hero-points,
.ui-heading,
.file-flow,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  font-size: 18px;
}

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

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.nav a:not(.nav-download):hover {
  transform: translateY(-1px);
}

.nav-download {
  padding: 0 14px;
  color: var(--accent-dark);
  background: rgba(31, 184, 120, 0.12);
  box-shadow: inset 0 0 0 1px rgba(31, 184, 120, 0.2);
}

.nav-download:hover {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 28px rgba(31, 184, 120, 0.22);
  transform: translateY(-1px);
}

.language-switcher {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(220, 229, 223, 0.96);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(18, 32, 28, 0.05);
}

.language-switcher button {
  min-width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: #5d6b65;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switcher button.is-active {
  color: white;
  background: var(--deep);
  box-shadow: 0 8px 18px rgba(18, 32, 28, 0.14);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  color: white;
  background: var(--deep);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(720px, calc(82vh - 72px), 920px);
  display: grid;
  grid-template-columns: minmax(480px, 0.74fr) minmax(700px, 1.26fr);
  gap: clamp(34px, 4vw, 76px);
  align-items: center;
  padding: clamp(30px, 3.6vw, 52px) clamp(22px, 5vw, 76px) 32px;
  background:
    radial-gradient(circle at 79% 18%, rgba(31, 184, 120, 0.16), transparent 28%),
    radial-gradient(circle at 42% 88%, rgba(201, 145, 47, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(31, 184, 120, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 54px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 184, 120, 0.26), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  right: clamp(22px, 5vw, 76px);
  bottom: 0;
  height: 52px;
  background:
    linear-gradient(90deg, rgba(31, 184, 120, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 184, 120, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  opacity: 0.55;
}

.hero-copy,
.product-stage {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 7.6vw, 116px);
  line-height: 0.86;
  font-weight: 850;
  letter-spacing: 0;
  animation: rise-in 720ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(22px, 2.15vw, 32px);
  line-height: 1.18;
  color: #29332f;
  font-weight: 620;
  animation: rise-in 720ms 80ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-actions {
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
  animation: rise-in 720ms 160ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 30px rgba(31, 184, 120, 0.28);
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.button,
.floating-chip,
.menu-popover {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary:hover {
  box-shadow: 0 18px 42px rgba(31, 184, 120, 0.34);
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-ready .section.reveal-on-scroll {
  transform: translate3d(0, 36px, 0);
}

.reveal-ready .section.reveal-on-scroll.is-visible {
  transform: translate3d(0, 0, 0);
}

.hero-points {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  padding: 0;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.45;
  list-style: none;
  animation: rise-in 720ms 240ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.product-stage {
  position: relative;
  min-width: 0;
  perspective: 1400px;
  width: 103%;
  margin-left: 1%;
  animation: screenshot-in 900ms 120ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.stage-glow {
  position: absolute;
  inset: -14% -8% 8% 6%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 52% 34%, rgba(31, 184, 120, 0.24), transparent 34%),
    radial-gradient(circle at 78% 70%, rgba(201, 145, 47, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(23, 34, 30, 0.08), transparent);
  filter: blur(4px);
  opacity: 0.9;
}

.hero-screenshot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--hero-shadow), 0 0 0 1px rgba(23, 34, 30, 0.12);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-origin: center left;
}

.hero-screenshot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 18%, transparent 74%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.hero-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 640px;
  margin-top: 14px;
  animation: rise-in 720ms 320ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 24px;
  animation: rise-in 720ms 300ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-metrics div {
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 229, 223, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 38px rgba(18, 32, 28, 0.06);
}

.hero-metrics strong {
  display: block;
  color: var(--accent-dark);
  font-size: 26px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: #53645d;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
}

.hero-proof span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 229, 223, 0.92);
  border-radius: 8px;
  color: #3b4b44;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.menu-popover {
  position: absolute;
  right: -12px;
  bottom: -24px;
  display: flex;
  gap: 13px;
  align-items: center;
  width: min(340px, 62%);
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(18, 32, 28, 0.18);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: float-soft 4.8s ease-in-out infinite;
}

.menu-popover img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.menu-popover strong {
  display: block;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 229, 223, 0.86);
  border-radius: 12px;
  color: #23302b;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(18, 32, 28, 0.14);
  backdrop-filter: blur(18px);
}

.floating-chip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.floating-chip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.chip-preview {
  left: 6%;
  top: -96px;
  animation: float-soft 5.2s 400ms ease-in-out infinite;
}

.chip-ai {
  right: 7%;
  top: -72px;
  animation: float-soft 5.6s 900ms ease-in-out infinite;
}

.section {
  padding: clamp(58px, 7vw, 104px) clamp(22px, 5vw, 76px);
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.problem {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(58px, 6vw, 88px);
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 184, 120, 0.12), transparent 28%),
    linear-gradient(180deg, #f3f8f5, #ffffff 58%, #f6f9f7);
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 18px clamp(22px, 5vw, 76px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 184, 120, 0.24), transparent);
}

.problem::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31, 184, 120, 0.08);
  filter: blur(12px);
}

.problem-intro,
.problem-system {
  position: relative;
  z-index: 1;
}

.problem-intro p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.problem-system {
  display: grid;
  gap: 16px;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

.compare-card,
.file-pipeline,
.control-rail {
  border: 1px solid rgba(220, 229, 223, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(18, 32, 28, 0.08);
  backdrop-filter: blur(18px);
}

.compare-card {
  min-height: 260px;
  padding: 24px;
}

.compare-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 860;
}

.before .compare-icon {
  color: #a9483e;
  background: rgba(226, 84, 72, 0.12);
}

.after .compare-icon {
  color: var(--accent-dark);
  background: rgba(31, 184, 120, 0.14);
}

.compare-card h3 {
  margin: 24px 0 14px;
  font-size: 25px;
}

.compare-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 18px;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.compare-arrow {
  align-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: white;
  background: var(--deep);
  box-shadow: 0 16px 38px rgba(18, 32, 28, 0.16);
  font-size: 22px;
}

.file-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  overflow: hidden;
}

.file-pipeline::before,
.file-pipeline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 112px);
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 184, 120, 0), rgba(31, 184, 120, 0.34));
  transform: translateY(-50%);
}

.file-pipeline::before {
  left: 26%;
}

.file-pipeline::after {
  right: 26%;
  transform: translateY(-50%) rotate(180deg);
}

.incoming-stack,
.organized-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.incoming-stack small,
.organized-stack small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.incoming-stack span,
.organized-stack span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #475850;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 229, 223, 0.92);
  box-shadow: 0 12px 30px rgba(18, 32, 28, 0.05);
  font-size: 14px;
  font-weight: 760;
}

.organized-stack span {
  color: #184a35;
  background: linear-gradient(135deg, rgba(31, 184, 120, 0.13), rgba(255, 255, 255, 0.82));
  border-color: rgba(31, 184, 120, 0.2);
}

.automation-core {
  position: relative;
  z-index: 2;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 184, 120, 0.42), transparent 58%),
    var(--deep);
  box-shadow: 0 22px 54px rgba(18, 32, 28, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.automation-core img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.automation-core strong,
.automation-core small {
  display: block;
}

.automation-core small {
  color: #a9bbb3;
  margin-top: 4px;
}

.control-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.control-rail div {
  min-height: 106px;
  padding: 20px;
  border-right: 1px solid rgba(220, 229, 223, 0.92);
}

.control-rail div:last-child {
  border-right: 0;
}

.control-rail strong {
  display: block;
  color: #17221e;
  font-size: 18px;
}

.control-rail span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.42;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading p,
.privacy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.features {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff, #f7faf8 62%, #ffffff);
}

.feature-showcase {
  display: grid;
  gap: 16px;
}

.feature-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(31, 184, 120, 0.35), transparent 30%),
    linear-gradient(135deg, #121b18, #24342e);
  box-shadow: 0 28px 82px rgba(18, 32, 28, 0.2);
  overflow: hidden;
}

.feature-card-copy {
  max-width: 620px;
}

.feature-card-copy .icon {
  color: #dff8ec;
  background: rgba(31, 184, 120, 0.22);
}

.feature-card-copy h3 {
  margin: 28px 0 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
}

.feature-card-copy p {
  color: #c7d8d0;
  font-size: 19px;
  line-height: 1.5;
}

.rule-builder-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.builder-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.builder-row.active,
.builder-row.action {
  background: rgba(31, 184, 120, 0.16);
  border-color: rgba(31, 184, 120, 0.32);
}

.builder-row span {
  color: #9fb1aa;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.builder-row strong {
  color: #f4fbf7;
  font-size: 18px;
}

.builder-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 18px;
  color: #9ddebd;
  background: rgba(31, 184, 120, 0.1);
  font-weight: 760;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article,
.plan,
.purchase-row div,
details {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.feature-grid article {
  padding: 24px;
  min-height: 300px;
  box-shadow: 0 20px 58px rgba(18, 32, 28, 0.06);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--accent-dark);
  background: rgba(31, 184, 120, 0.12);
  font-size: 22px;
  font-weight: 800;
}

.feature-grid h3 {
  margin: 26px 0 12px;
  font-size: 21px;
}

.feature-grid p,
.steps p,
.purchase-row p,
.plan li,
details p {
  color: var(--muted);
  line-height: 1.52;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.capability-strip div {
  min-height: 110px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.capability-strip span {
  display: block;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.capability-strip strong {
  display: block;
  margin-top: 10px;
  color: #21302a;
  font-size: 18px;
  line-height: 1.28;
}

.workflow {
  background: var(--deep);
}

.workflow-panel {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.12);
}

.steps div {
  padding: 30px;
  background: var(--deep);
}

.steps span,
.purchase-row span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 820;
}

.steps strong,
.purchase-row strong {
  display: block;
  font-size: 23px;
}

.steps p {
  color: #b9c8c1;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(58px, 6vw, 88px);
  background:
    radial-gradient(circle at 18% 28%, rgba(31, 184, 120, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6faf8);
}

.privacy-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 82% 0%, rgba(31, 184, 120, 0.28), transparent 34%),
    linear-gradient(145deg, #111a17, #25352f);
  box-shadow: 0 28px 82px rgba(18, 32, 28, 0.22);
  overflow: hidden;
}

.privacy-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% 22%;
  height: 220px;
  background: radial-gradient(circle, rgba(31, 184, 120, 0.2), transparent 62%);
}

.privacy-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-panel-head img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.privacy-panel-head strong,
.privacy-panel-head span {
  display: block;
}

.privacy-panel-head strong {
  font-size: 24px;
}

.privacy-panel-head span {
  margin-top: 3px;
  color: #a9bbb3;
  font-weight: 650;
}

.privacy-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.privacy-flow div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-flow span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #9ddebd;
  background: rgba(31, 184, 120, 0.16);
  font-weight: 860;
}

.privacy-flow strong {
  font-size: 20px;
}

.privacy-flow small {
  color: #a9bbb3;
  font-size: 14px;
}

.privacy-callout {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 8px;
  color: #173429;
  background: #dff8ec;
}

.privacy-callout strong,
.privacy-callout span {
  display: block;
}

.privacy-callout span {
  margin-top: 5px;
  color: #3d5a4e;
  line-height: 1.4;
}

.privacy-copy {
  position: relative;
  z-index: 1;
}

.check-list {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: #2e3934;
  font-weight: 650;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.privacy-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(18, 32, 28, 0.06);
}

.privacy-grid span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 860;
}

.privacy-grid h3 {
  margin: 22px 0 10px;
  font-size: 21px;
  line-height: 1.12;
}

.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.gallery {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(46px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(31, 184, 120, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f7fbf9);
  background-size: 52px 52px, auto;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.58fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  margin-bottom: 20px;
}

.gallery-heading h2 {
  margin: 0;
}

.gallery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.54fr));
  gap: 14px;
  align-items: stretch;
}

.gallery-main,
.gallery-shot {
  position: relative;
  overflow: hidden;
  appearance: none;
  cursor: zoom-in;
  border: 1px solid rgba(205, 221, 212, 0.9);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 32, 28, 0.08);
  text-align: left;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-main {
  min-height: 300px;
}

.gallery-main img,
.gallery-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-main img {
  object-position: center;
}

.gallery-caption,
.gallery-shot strong {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 12px;
  color: #111a17;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 32px rgba(18, 32, 28, 0.16);
  backdrop-filter: blur(16px);
}

.gallery-main strong,
.gallery-main span {
  display: block;
}

.gallery-main strong {
  font-size: 18px;
}

.gallery-main span {
  margin-top: 5px;
  color: var(--muted);
}

.gallery-shot {
  min-height: 300px;
}

.gallery-shot strong {
  right: auto;
  width: calc(100% - 24px);
  font-size: 15px;
}

.gallery-item em {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 11px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-style: normal;
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 12px 28px rgba(31, 184, 120, 0.24);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover em,
.gallery-item:focus-visible em {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(31, 184, 120, 0.42);
  box-shadow: 0 28px 70px rgba(18, 32, 28, 0.13);
  transform: translateY(-3px);
}

.reveal-ready .gallery-item.is-visible:hover,
.reveal-ready .gallery-item.is-visible:focus-visible,
.reveal-ready .contact-card.is-visible:hover,
.reveal-ready .contact-card.is-visible:focus-visible {
  transform: translateY(-3px);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(31, 184, 120, 0.26);
  outline-offset: 4px;
}

.gallery-item img {
  transition: transform 260ms ease;
}

.shot-folders img {
  object-position: 12% 48%;
}

.shot-rules img {
  object-position: 55% 48%;
}

.shot-activity img {
  object-position: 88% 48%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(17, 26, 23, 0.74);
  backdrop-filter: blur(18px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1180px, 94vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: white;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111a17;
}

.lightbox figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  color: var(--deep);
  font-weight: 760;
  text-align: left;
}

.lightbox figcaption span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--deep);
  background: white;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.pricing {
  position: relative;
  padding-top: clamp(62px, 6vw, 92px);
  padding-bottom: clamp(56px, 6vw, 88px);
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 184, 120, 0.14), transparent 28%),
    linear-gradient(180deg, #f7faf8, #ffffff 54%, #f5f8f6);
  overflow: hidden;
}

.anchor-alias {
  position: absolute;
  top: 0;
}

.download-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 30px;
}

.download-heading h2 {
  max-width: 900px;
}

.download-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.download-trust {
  display: grid;
  gap: 8px;
}

.download-trust span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(220, 229, 223, 0.95);
  border-radius: 8px;
  padding: 0 14px;
  color: #31413a;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 820;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 22px 70px rgba(18, 32, 28, 0.08);
}

.plan.free {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 250, 0.92));
}

.plan.pro {
  color: white;
  background:
    radial-gradient(circle at 86% 8%, rgba(31, 184, 120, 0.34), transparent 30%),
    linear-gradient(145deg, #111a17, #24342e);
  border-color: var(--deep);
  box-shadow: 0 32px 90px rgba(18, 32, 28, 0.24);
}

.plan.pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(157, 222, 189, 0.22);
}

.offer-banner {
  display: flex;
  align-items: center;
  min-height: 38px;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 0 16px;
  color: #111a17;
  background: linear-gradient(135deg, #ffe08a, #9ddebd);
  font-size: 13px;
  font-weight: 860;
  box-shadow: 0 16px 34px rgba(31, 184, 120, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
}

.plan-top {
  min-height: 150px;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--accent-dark);
  background: rgba(31, 184, 120, 0.12);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.plan.pro .plan-label {
  color: #dff8ec;
  background: rgba(31, 184, 120, 0.2);
}

.plan h3 {
  margin: 18px 0 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
}

.price {
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 840;
  line-height: 1.08;
}

.plan.pro .price {
  color: #9ddebd;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.old-price {
  color: #8ea097;
  font-size: 20px;
  font-weight: 760;
  text-decoration: line-through;
}

.price-note {
  margin: 8px 0 0;
  color: #c7d8d0;
  font-size: 15px;
  font-weight: 720;
}

.plan ul {
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding-left: 20px;
  margin: 0 0 28px;
}

.plan.pro li {
  color: #d5e3dd;
}

.plan .button {
  margin-top: auto;
  width: fit-content;
}

.download-button {
  background: #fff;
}

.download-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.download-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.download-footer div:last-child {
  border-right: 0;
}

.download-footer strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: white;
  background: var(--deep);
}

.download-footer span {
  color: #31413a;
  font-weight: 760;
}

.purchase-after {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 0 clamp(22px, 5vw, 76px) clamp(52px, 5vw, 76px);
  background: #f5f8f6;
}

.purchase-after h2 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
}

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

.purchase-row div {
  min-height: 138px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 28%, rgba(31, 184, 120, 0.1), transparent 28%),
    var(--wash);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  margin: 0;
}

.faq-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(18, 32, 28, 0.05);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
}

details p {
  margin-bottom: 0;
}

.faq-card {
  padding: 22px;
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 82% 0%, rgba(31, 184, 120, 0.28), transparent 42%),
    var(--deep);
  box-shadow: 0 22px 62px rgba(18, 32, 28, 0.18);
}

.faq-card strong {
  display: block;
  font-size: 22px;
}

.faq-card p {
  color: #c7d8d0;
  line-height: 1.48;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(52px, 6vw, 84px) clamp(22px, 5vw, 76px);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 184, 120, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff, #f6faf8);
}

.contact-section h2 {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 0.98;
}

.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(31, 184, 120, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--accent-dark);
  background: rgba(31, 184, 120, 0.09);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.response-note > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #9ddebd;
  background: rgba(31, 184, 120, 0.13);
  font-size: 22px;
}

.response-note strong,
.response-note small {
  display: block;
}

.response-note strong {
  font-size: 17px;
}

.response-note small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

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

.contact-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(18, 32, 28, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 184, 120, 0.28);
  background: white;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--accent-dark);
  background: rgba(31, 184, 120, 0.11);
  font-size: 21px;
}

.x-icon {
  color: white;
  background: #000;
}

.contact-card strong {
  margin-top: 24px;
  font-size: 23px;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.contact-card em {
  margin-top: auto;
  color: var(--accent-dark);
  font-style: normal;
  font-size: 15px;
  font-weight: 820;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(58px, 8vw, 96px) clamp(22px, 5vw, 76px);
  color: white;
  background: var(--deep);
}

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

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  padding: clamp(38px, 5vw, 58px) clamp(22px, 5vw, 76px);
  color: var(--muted);
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 184, 120, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5f8f6);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  right: clamp(22px, 5vw, 76px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 184, 120, 0.42), transparent);
}

.footer-brand {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-tagline {
  max-width: 390px;
  margin: 18px 0 0;
  color: #3f5149;
  font-size: 18px;
  line-height: 1.45;
}

.footer-rights {
  display: block;
  margin-top: 22px;
  color: #6a7972;
  font-size: 13px;
  font-weight: 680;
}

.footer-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-col {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(220, 229, 223, 0.92);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(18, 32, 28, 0.06);
}

.footer-col-title {
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: #53645d;
  font-size: 14px;
  font-weight: 680;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--accent-dark);
  transform: translateX(3px);
}

@media (max-width: 1040px) {
  .hero,
  .problem,
  .privacy,
  .price-grid,
  .faq,
  .faq-layout,
  .gallery-heading,
  .contact-section,
  .footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 0;
  }

  .product-stage {
    max-width: 820px;
    width: 100%;
    margin-left: 0;
  }

  .hero-screenshot {
    transform: none;
  }

  .chip-preview {
    left: 12px;
  }

  .feature-grid,
  .steps,
  .purchase-row,
  .comparison,
  .file-pipeline,
  .feature-hero-card,
  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .privacy-visual {
    max-width: 720px;
  }

  .compare-arrow {
    display: none;
  }

  .automation-core {
    grid-column: 1 / -1;
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

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

  .nav-cta {
    display: none;
  }

  .hero {
    display: block;
    padding-top: 42px;
  }

  .hero-copy,
  .product-stage,
  .hero-screenshot {
    min-width: 0;
    max-width: 100%;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 20px;
    line-height: 1.25;
  }

  .hero-points {
    max-width: 340px;
  }

  .product-stage {
    margin-top: 34px;
  }

  .product-stage {
    overflow: visible;
    border-radius: 10px;
  }

  .hero-proof {
    display: none;
  }

  .hero-metrics {
    display: none;
  }

  .hero-screenshot {
    border-radius: 12px;
    transform: none;
  }

  .floating-chip {
    display: none;
  }

  .menu-popover {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .feature-grid,
  .steps,
  .purchase-row,
  .comparison,
  .file-pipeline,
  .control-rail,
  .capability-strip,
  .download-footer,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-col {
    min-height: 0;
  }

  .gallery-main {
    min-height: 280px;
  }

  .gallery-shot {
    min-height: 190px;
  }

  .gallery-main div,
  .gallery-shot strong {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

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

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .download-heading {
    margin-bottom: 22px;
  }

  .plan-top {
    min-height: auto;
    margin-bottom: 22px;
  }

  .plan ul {
    min-height: auto;
  }

  .download-footer div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .download-footer div:last-child {
    border-bottom: 0;
  }

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

  .privacy-visual {
    min-height: 420px;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-hero-card {
    min-height: 0;
    padding: 24px;
  }

  .feature-card-copy h3 {
    font-size: 34px;
  }

  .builder-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 76px;
    align-items: center;
  }

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

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

  .problem {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .compare-card {
    min-height: 0;
    padding: 20px;
  }

  .control-rail div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 229, 223, 0.92);
  }

  .control-rail div:last-child {
    border-bottom: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .purchase-after {
    grid-template-columns: 1fr;
  }
}

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

  .reveal-ready .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@keyframes rise-in {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes screenshot-in {
  from {
    transform: translateY(24px) scale(0.985);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
