:root {
  --bg-paper: #fbf7f1;
  --bg-surface: #ffffff;
  --ink-900: #1a202e;
  --ink-700: #364154;
  --ink-500: #5b677e;
  --line-soft: #d8deea;
  --line-strong: #afb8cb;
  --brand-1: #ff6b35;
  --brand-2: #0f7c90;
  --brand-3: #ffb703;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 20px 50px rgba(15, 36, 64, 0.12);
  --shadow-line: 0 1px 0 rgba(20, 34, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Avenir Next', sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 124, 144, 0.22), transparent 42%),
    radial-gradient(circle at 88% 20%, rgba(255, 107, 53, 0.18), transparent 38%),
    linear-gradient(175deg, #fcf6ec 0%, #f5fbff 50%, #fff8ec 100%);
}

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

a {
  color: inherit;
}

main {
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 124, 144, 0.25);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  color: var(--ink-700);
  backdrop-filter: blur(8px);
}

.pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-1);
  box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 241, 0.72);
  border-bottom: 1px solid rgba(175, 184, 203, 0.35);
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 36, 64, 0.18);
}

.brand-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--ink-700);
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(15, 124, 144, 0.12);
  color: var(--ink-900);
  outline: none;
}

.header-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(30, 41, 59, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  cursor: pointer;
}

.header-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: 72px 0;
}

.hero {
  padding: 76px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 16px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(35px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-subhead {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 56ch;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.hero-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-800);
  font-size: 16px;
  line-height: 1.5;
}

.hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #12704a;
  font-weight: 700;
}

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

.hero-reassurance {
  margin: 4px 0 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.5;
}

.hero-notes {
  margin: 2px 0 0;
  color: var(--ink-500);
  font-size: 14px;
}

.hero-compatibility-requirement {
  display: block;
  margin-top: 4px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(120deg, #ff6b35 0%, #d94a0a 100%);
  box-shadow: 0 14px 24px rgba(217, 74, 10, 0.28);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(217, 74, 10, 0.34);
}

.button-secondary {
  color: var(--ink-900);
  border-color: rgba(15, 36, 64, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 36, 64, 0.12);
}

.button-ghost {
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(175, 184, 203, 0.75);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.88);
}

.button.is-disabled,
.button[aria-disabled='true'] {
  opacity: 0.55;
  cursor: not-allowed;
}

.hero-panel {
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.94), rgba(250, 254, 255, 0.74));
  border: 1px solid rgba(175, 184, 203, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-panel-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  font-weight: 700;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: -40% -22% auto;
  height: 56%;
  background: linear-gradient(120deg, rgba(255, 183, 3, 0.35), rgba(15, 124, 144, 0.18));
  transform: rotate(-3deg);
}

.mock-window {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(33, 45, 70, 0.15);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 36, 64, 0.18);
}

.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(175, 184, 203, 0.55);
  background: #f8fbff;
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd166;
}

.mock-dot:nth-child(1) {
  background: #ff6b6b;
}

.mock-dot:nth-child(2) {
  background: #ffd166;
}

.mock-dot:nth-child(3) {
  background: #06d6a0;
}

.mock-content {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.mock-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #1f2f43;
  background: rgba(15, 124, 144, 0.12);
}

.mock-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9e8ef 0%, #f0f6fa 100%);
}

.mock-line.short {
  width: 58%;
}

.mock-line.mid {
  width: 76%;
}

.mock-line.long {
  width: 93%;
}

.hero-panel-caption {
  margin: 12px 0 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.5;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  color: #1f2f43;
  border: 1px solid rgba(15, 124, 144, 0.24);
  background: rgba(15, 124, 144, 0.1);
}

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(175, 184, 203, 0.55);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-line);
  padding: 20px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.card p,
.card li {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.card-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.card-list li {
  position: relative;
  padding-left: 20px;
}

.card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--brand-2);
  font-weight: 700;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.015em;
}

.section-head p {
  margin: 0;
  color: var(--ink-700);
  max-width: 68ch;
  line-height: 1.7;
}

.video-shell {
  border-radius: 24px;
  border: 1px solid rgba(175, 184, 203, 0.6);
  background: linear-gradient(145deg, #ffffff 0%, #eef5fb 100%);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.video-frame {
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #0e1625;
  display: none;
}

.video-local {
  width: 100%;
  display: none;
  border-radius: 14px;
  background: #0e1625;
}

.video-placeholder {
  min-height: 260px;
  border-radius: 14px;
  border: 1px dashed rgba(55, 74, 112, 0.32);
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.78) 12px,
    rgba(240, 247, 255, 0.72) 12px,
    rgba(240, 247, 255, 0.72) 24px
  );
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  color: var(--ink-700);
  line-height: 1.6;
}

.video-placeholder strong {
  color: var(--ink-900);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

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

.pricing-shell {
  display: grid;
  gap: 12px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(175, 184, 203, 0.62);
  background: rgba(255, 255, 255, 0.86);
  margin: 0 auto 2px;
}

.billing-option {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.billing-option:hover,
.billing-option:focus-visible {
  background: rgba(15, 124, 144, 0.12);
  color: var(--ink-900);
  outline: none;
}

.billing-option.is-active {
  background: #ffffff;
  border-color: rgba(15, 124, 144, 0.32);
  color: var(--ink-900);
  box-shadow: 0 2px 8px rgba(15, 36, 64, 0.08);
}

.billing-option-badge {
  display: inline-flex;
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  color: #12704a;
  background: rgba(6, 214, 160, 0.18);
}

.pricing-hint {
  margin: 0 auto 10px;
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  min-height: 20px;
}

.pricing-compliance {
  margin: 6px auto 0;
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-compliance a {
  color: var(--ink-900);
  font-weight: 600;
}

.pricing-compliance a:hover,
.pricing-compliance a:focus-visible {
  color: var(--brand-2);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.price-card-head {
  display: grid;
  gap: 7px;
}

.price-pill {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-700);
  background: rgba(15, 124, 144, 0.1);
  border: 1px solid rgba(15, 124, 144, 0.16);
}

.price-card .price-tag {
  margin: 6px 0 4px;
}

.price-card .card-list {
  margin-top: 4px;
}

.price-card .table-links {
  margin-top: auto;
}

.price-context {
  display: grid;
  gap: 6px;
  min-height: 68px;
}

.price-subtext {
  margin: 0;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.5;
}

.price-savings-note {
  margin: 0;
  color: #12704a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.price-card.is-featured {
  position: relative;
  border-color: rgba(255, 107, 53, 0.38);
  box-shadow: 0 22px 36px rgba(217, 74, 10, 0.14);
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 243, 0.92));
}

.price-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, #ff6b35 0%, #d94a0a 100%);
  box-shadow: 0 8px 16px rgba(217, 74, 10, 0.28);
}

.button-block {
  width: 100%;
}

.price-tag {
  margin: 10px 0 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.price-tag small {
  font-family: 'Space Grotesk', 'Avenir Next', sans-serif;
  font-size: 16px;
  color: var(--ink-500);
}

.price-note {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 14px;
}

.table-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

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

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(175, 184, 203, 0.62);
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--brand-2);
  font-size: 21px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item .answer {
  padding: 0 16px 15px;
  color: var(--ink-700);
  line-height: 1.65;
}

.faq-item .answer p {
  margin: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-entry {
  border-left: 3px solid rgba(15, 124, 144, 0.4);
  padding: 8px 0 8px 14px;
}

.timeline-entry h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.timeline-meta {
  margin-top: 3px;
  font-size: 13px;
  color: var(--ink-500);
}

.timeline-entry p {
  margin: 8px 0 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.timeline-entry ul {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--ink-700);
}

.timeline-entry li {
  line-height: 1.6;
}

.tip-list {
  display: grid;
  gap: 12px;
}

.tip-item {
  border-radius: 14px;
  border: 1px solid rgba(175, 184, 203, 0.58);
  padding: 14px;
  background: rgba(255, 255, 255, 0.85);
}

.tip-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.tip-item p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.tip-item ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--ink-700);
}

.tip-item li {
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  padding: 22px 24px;
}

.contact-form-card {
  margin-top: 8px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field > span {
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(175, 184, 203, 0.9);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #7a8598;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: 2px solid rgba(15, 124, 144, 0.5);
  outline-offset: 1px;
  border-color: rgba(15, 124, 144, 0.9);
  box-shadow: 0 0 0 3px rgba(15, 124, 144, 0.12);
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: rgba(186, 45, 11, 0.8);
  background: #fff6f2;
  box-shadow: 0 0 0 3px rgba(186, 45, 11, 0.1);
}

.contact-field input.is-invalid:focus-visible,
.contact-field textarea.is-invalid:focus-visible {
  outline-color: rgba(186, 45, 11, 0.45);
  border-color: rgba(186, 45, 11, 0.9);
  box-shadow: 0 0 0 3px rgba(186, 45, 11, 0.16);
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-status {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  color: var(--ink-700);
}

.contact-status.is-pending {
  color: var(--ink-500);
}

.contact-status.is-success {
  color: #12704a;
}

.contact-status.is-error {
  color: #ba2d0b;
}

#benefits {
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 255, 0.86));
}

#how-it-works.section-soft::before,
#contact.section-soft::before {
  display: none;
}

#pricing {
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(79, 141, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(244, 249, 255, 0.84), rgba(236, 244, 255, 0.94));
}

#contact {
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 252, 255, 0.92));
  padding-bottom: 48px;
}

.site-footer {
  border-top: 1px solid rgba(175, 184, 203, 0.54);
  padding: 24px 0 36px;
  background: rgba(255, 255, 255, 0.5);
}

.site-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-700);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink-900);
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  z-index: 120;
  border-radius: 16px;
  border: 1px solid rgba(15, 36, 64, 0.2);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  padding: 16px;
  display: grid;
  gap: 12px;
}

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

.cookie-consent p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
  font-size: 14px;
}

.cookie-consent a {
  color: var(--ink-900);
  font-weight: 600;
}

.cookie-consent a:hover,
.cookie-consent a:focus-visible {
  color: var(--brand-2);
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent .button {
  min-height: 40px;
  padding: 0 14px;
}

.legal-shell {
  display: grid;
  gap: 12px;
}

.legal-shell .card {
  padding: 16px 18px;
}

.legal-shell h3 {
  margin: 0 0 8px;
}

.legal-shell p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.legal-shell ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--ink-700);
}

.legal-meta {
  margin: 0;
  color: var(--ink-500);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: lift 0.6s forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.48s;
}

.hero-copy > *:nth-child(7) {
  animation-delay: 0.56s;
}

@keyframes lift {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .billing-option-badge {
    display: none;
  }

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

  .contact-form-card {
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .site-header-row {
    padding: 12px 0;
  }

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

  .main-nav {
    gap: 6px;
  }

  .main-nav a {
    padding: 6px 8px;
    font-size: 13px;
  }

  .hero {
    padding: 50px 0 24px;
  }

  .section {
    padding: 52px 0;
  }

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

  .site-footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent .button {
    width: 100%;
  }
}

/* Landing V4 */
:root {
  --landing-bg: #f7f2e8;
  --landing-surface: rgba(255, 255, 255, 0.84);
  --landing-surface-strong: #fffdfa;
  --landing-ink: #15161a;
  --landing-muted: #626774;
  --landing-line: rgba(24, 33, 53, 0.12);
  --landing-blue: #2e6bff;
  --landing-blue-deep: #2054d8;
  --landing-green: #117a68;
  --landing-shadow: 0 24px 70px rgba(17, 22, 36, 0.12);
}

body {
  color: var(--landing-ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 107, 255, 0.12), transparent 32%),
    radial-gradient(circle at 100% 18%, rgba(17, 122, 104, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--landing-bg) 54%, #f9f5ee 100%);
}

.site-header {
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 242, 0.78);
  border-bottom: 1px solid rgba(24, 33, 53, 0.08);
}

.site-header-row {
  gap: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header-download {
  white-space: nowrap;
}

.button {
  min-height: 48px;
  border-radius: 14px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--landing-blue) 0%, var(--landing-blue-deep) 100%);
  box-shadow: 0 16px 30px rgba(32, 84, 216, 0.24);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(32, 84, 216, 0.28);
}

.button-secondary {
  border-color: rgba(24, 33, 53, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.landing-v4 .section {
  padding: 100px 0;
}

.landing-section-kicker,
.landing-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(46, 107, 255, 0.08);
  color: var(--landing-blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero {
  padding: 40px 0 72px;
}

.landing-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.landing-hero-copy h1 {
  margin: 14px 0 16px;
  max-width: 10ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(54px, 6.4vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.landing-subhead {
  margin: 0;
  max-width: 42ch;
  color: var(--landing-muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.landing-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-shortcuts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.landing-shortcut {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.landing-shortcut strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(21, 22, 26, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.landing-shortcut span {
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.5;
}

.landing-hero-visual {
  position: relative;
  min-height: 780px;
}

.landing-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(24, 33, 53, 0.1);
  background: #17191d;
  box-shadow: var(--landing-shadow);
}

.landing-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-shot-main {
  width: min(100%, 520px);
}

.landing-shot-summary {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 420px;
  z-index: 2;
}

.workflow-v3 {
  position: relative;
}

.workflow-v3::before {
  content: '';
  position: absolute;
  inset: 40px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.16));
  border-top: 1px solid rgba(24, 33, 53, 0.05);
  border-bottom: 1px solid rgba(24, 33, 53, 0.05);
}

.workflow-v3 .container {
  position: relative;
}

.landing-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.landing-section-head h2 {
  margin: 0;
  max-width: 13ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-section-head p {
  margin: 0;
  max-width: 54ch;
  color: var(--landing-muted);
  line-height: 1.7;
}

.landing-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 18px;
}

.landing-proof-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--landing-shadow);
}

.landing-proof-card-large {
  grid-row: span 2;
}

.landing-proof-copy {
  display: grid;
  gap: 10px;
}

.landing-proof-step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(46, 107, 255, 0.1);
  color: var(--landing-blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-proof-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.landing-proof-copy p {
  margin: 0;
  max-width: 40ch;
  color: var(--landing-muted);
  line-height: 1.65;
}

.landing-proof-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #17191d;
}

.landing-proof-media img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-proof-media-compact img {
  aspect-ratio: 926 / 790;
  object-fit: cover;
  object-position: top center;
}

.landing-proof-media-settings img {
  aspect-ratio: 1280 / 938;
  object-fit: cover;
  object-position: top left;
}

.landing-vault {
  padding-top: 36px;
}

.landing-vault-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(20, 22, 28, 0.98), rgba(21, 23, 28, 0.98));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.landing-vault-copy {
  color: #fff;
  padding-top: 6px;
}

.landing-vault-copy .landing-section-kicker {
  color: #c0d1ff;
  background: rgba(46, 107, 255, 0.14);
}

.landing-vault-copy h2 {
  margin: 14px 0;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-vault-copy p,
.landing-vault-list {
  color: rgba(229, 231, 235, 0.86);
}

.landing-vault-copy p {
  margin: 0;
  line-height: 1.7;
  max-width: 42ch;
}

.landing-vault-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.landing-vault-main,
.landing-vault-mini {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #141519;
}

.landing-vault-main img,
.landing-vault-mini img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-vault-main img {
  aspect-ratio: 710 / 1100;
  object-fit: cover;
  object-position: top center;
}

.landing-vault-side {
  display: grid;
  gap: 16px;
}

.landing-features {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28));
}

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

.landing-feature-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.landing-feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.landing-feature-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.65;
}

.landing-pricing-shell {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--landing-shadow);
}

.landing-support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: 24px;
  align-items: start;
}

.landing-support-copy h2 {
  margin: 14px 0;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.landing-support-copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--landing-muted);
  line-height: 1.7;
}

.landing-final {
  padding-top: 24px;
  padding-bottom: 112px;
}

.landing-final-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 30px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--landing-shadow);
}

.landing-final-shell h2 {
  margin: 14px 0 0;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--landing-line);
  box-shadow: var(--landing-shadow);
}

.contact-field input,
.contact-field textarea {
  background: rgba(255, 255, 255, 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

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

@media (max-width: 1180px) {
  .landing-hero-shell,
  .landing-support-shell,
  .landing-vault-shell {
    grid-template-columns: 1fr;
  }

  .landing-proof-grid,
  .landing-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-hero-visual {
    min-height: auto;
  }

  .landing-shot-summary {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

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

@media (max-width: 820px) {
  .landing-proof-grid,
  .landing-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .landing-v4 .section {
    padding: 76px 0;
  }

  .landing-hero {
    padding-top: 24px;
  }

  .landing-shortcuts,
  .landing-final-actions {
    display: flex;
    flex-direction: column;
  }

  .landing-shortcut {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-pricing-shell,
  .landing-vault-shell,
  .landing-final-shell {
    padding: 22px;
  }
}

@media (max-width: 760px) {
  .site-header .site-header-row {
    align-items: flex-start !important;
    justify-content: space-between;
    flex-direction: row !important;
    gap: 12px;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .header-menu-toggle {
    display: inline-flex !important;
    align-self: flex-start;
    margin-top: 4px !important;
    margin-left: auto;
  }

  .site-header .header-menu-toggle span {
    transition: none !important;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(1),
  .site-header.is-menu-open .header-menu-toggle span:nth-child(2),
  .site-header.is-menu-open .header-menu-toggle span:nth-child(3) {
    transform: none !important;
    opacity: 1 !important;
  }

  .site-header .header-actions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(248px, calc(100vw - 28px));
    padding: 10px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.97);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
    z-index: 50;
  }

  .site-header.is-menu-open .header-actions {
    display: grid !important;
    gap: 8px;
    justify-items: end;
  }

  .site-header .main-nav {
    display: grid;
    gap: 8px;
    width: 100%;
    justify-items: end;
  }

  .site-header .main-nav a {
    width: 100%;
    justify-content: flex-end;
    text-align: right;
    padding: 10px 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.74);
  }

  .site-header .header-download {
    width: 100%;
    min-height: 50px;
  }

  .site-header .hero-badges-row,
  .hero-badges-row {
    justify-content: center;
    gap: 8px;
  }

  .site-header .hero-badges-row span,
  .hero-badges-row span {
    justify-content: center;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header-row {
    align-items: center;
    flex-direction: row;
    position: relative;
  }

  .header-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-actions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.96);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
    z-index: 40;
  }

  .site-header.is-menu-open .header-actions {
    display: grid;
    gap: 12px;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    display: grid;
    gap: 6px;
    width: 100%;
  }

  .main-nav a {
    justify-content: center;
    padding: 10px 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.72);
  }

  .header-download {
    width: 100%;
  }

  .hero-badges-row {
    justify-content: center;
    gap: 8px;
  }

  .hero-badges-row span {
    justify-content: center;
    max-width: 100%;
  }
}

/* Carousel controls override */
.flow-carousel-viewport {
  position: relative;
}

.flow-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  gap: 18px;
}

.flow-control {
  position: static;
  transform: none;
  z-index: auto;
}

.flow-carousel-controls-dots {
  justify-content: space-between;
}

.flow-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
}

.flow-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.flow-dot.is-active {
  transform: scale(1.3);
  background: rgba(37, 99, 235, 0.9);
}

@media (max-width: 980px) {
  .flow-control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 760px) {
  .flow-carousel-controls {
    gap: 12px;
  }
}

/* Rollback layer */
:root {
  --rollback-ink: #0f172a;
  --rollback-muted: #64748b;
  --rollback-line: rgba(30, 41, 59, 0.12);
  --rollback-blue: #2563eb;
  --rollback-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

body {
  color: var(--rollback-ink);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
    radial-gradient(circle at 85% 14%, rgba(15, 118, 110, 0.09), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fd 52%, #f7fbff 100%);
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 255, 0.8);
  border-bottom: 1px solid var(--rollback-line);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-download {
  white-space: nowrap;
}

.pill {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--rollback-muted);
}

.pill::before {
  background: var(--rollback-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.14);
}

.button {
  min-height: 48px;
  border-radius: 14px;
}

.button-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 14px 28px rgba(29, 78, 216, 0.24);
}

.button-secondary {
  border-color: rgba(30, 41, 59, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 88px 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: '';
  position: absolute;
  inset: 22px 0;
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  pointer-events: none;
}

.section-soft > .container {
  position: relative;
}

#capture-steps.section-soft::before,
#product-demo.section-soft::before {
  display: none;
}

#capture-steps {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(242, 248, 255, 0.72) 100%);
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  max-width: 14ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--rollback-muted);
  line-height: 1.7;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2357dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: 92px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  max-width: 12ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-subhead {
  margin: 0;
  max-width: 46ch;
  color: var(--rollback-muted);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.65;
}

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

.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-list li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  color: var(--rollback-muted);
}

.shortcut-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.shortcut-guide-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.shortcut-guide-item p {
  margin: 10px 0 0;
  color: var(--rollback-muted);
  line-height: 1.5;
  font-size: 14px;
}

.shortcut-guide-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-compatibility {
  margin: 18px 0 0;
  color: var(--rollback-muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 52ch;
}

.hero-badges-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--rollback-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero-badge::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.hero-badge-obsidian::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%237c3aed' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M10 2.5 16 6.1 14.6 13 10 17.5 5.4 13 4 6.1 10 2.5Z'/%3E%3C/svg%3E");
}

.hero-badge-markdown::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%230f766e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3.25h6l4 4v9.5H5z'/%3E%3Cpath d='M11 3.25v4h4'/%3E%3Cpath d='M7.5 11h5'/%3E%3Cpath d='M7.5 14h5'/%3E%3C/svg%3E");
}

.hero-badge-cloudless::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%232563eb' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.25 14.5h7.5a2.7 2.7 0 0 0 .35-5.38 4.5 4.5 0 0 0-8.77 1.25A2.58 2.58 0 0 0 6.25 14.5Z'/%3E%3Cpath d='M4 4l12 12'/%3E%3C/svg%3E");
}

.hero-badge-files::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23b45309' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5.25' y='9' width='9.5' height='7.25' rx='1.75'/%3E%3Cpath d='M7.5 9V6.75A2.5 2.5 0 0 1 10 4.25a2.5 2.5 0 0 1 2.5 2.5V9'/%3E%3C/svg%3E");
}

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

.capture-steps-shell {
  position: relative;
  padding-top: 0;
}

.capture-steps-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 78px;
  height: 4px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  overflow: hidden;
  z-index: 0;
}

.capture-steps-shell .capture-step-signal {
  position: absolute;
  top: 0;
  left: -18%;
  width: 16%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 107, 255, 0), rgba(46, 107, 255, 0.95), rgba(46, 107, 255, 0));
  animation: capture-step-pulse 2.8s ease-in-out infinite;
}

.capture-step-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.capture-step-rail {
  display: none;
}

.capture-step-signal {
  position: absolute;
  top: 0;
  left: -18%;
  width: 22%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 107, 255, 0), rgba(46, 107, 255, 0.95), rgba(46, 107, 255, 0));
  animation: capture-step-pulse 2.8s ease-in-out infinite;
}

.capture-step-visual {
  margin: 0 0 16px;
  min-height: 112px;
  border-radius: 18px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.88), rgba(239, 246, 255, 0.74));
  padding: 16px;
  display: grid;
  place-items: center;
}

.capture-step-visual-select {
  align-content: center;
  justify-items: start;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.capture-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.18);
}

.capture-line-short {
  width: 56%;
}

.capture-line-mid {
  width: 72%;
}

.capture-line-highlight {
  width: 88%;
  background: linear-gradient(90deg, rgba(46, 107, 255, 0.22), rgba(46, 107, 255, 0.36));
  box-shadow: 0 0 0 1px rgba(46, 107, 255, 0.1) inset;
  min-height: 30px;
  transform-origin: left center;
  animation: capture-highlight-grow 2.8s ease-in-out infinite;
}

.capture-cursor {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath fill='%23ffffff' stroke='%230f172a' d='M5 3.5v15l4.2-4 3 6 2.2-1.1-3-6 5.6-.4L5 3.5Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.18));
  animation: capture-cursor-move 2.8s ease-in-out infinite;
}

.capture-step-visual-shortcut {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(20, 22, 28, 0.94), rgba(28, 31, 38, 0.96));
}

.capture-shortcut-key,
.capture-shortcut-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 700;
}

.capture-shortcut-key {
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.capture-shortcut-plus {
  min-width: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.capture-step-visual-popup {
  background: linear-gradient(180deg, rgba(24, 27, 33, 0.96), rgba(29, 31, 38, 0.98));
}

.capture-mini-window {
  width: 100%;
  max-width: 270px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  display: grid;
  gap: 11px;
}

.capture-mini-toolbar {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.capture-mini-title {
  height: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.capture-mini-pills {
  display: flex;
  gap: 8px;
}

.capture-mini-pills span {
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background: rgba(46, 107, 255, 0.26);
}

.capture-mini-enter {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}

.capture-step-visual-saved {
  background: linear-gradient(180deg, rgba(241, 248, 244, 0.94), rgba(233, 244, 237, 0.92));
}

.capture-saved-card {
  width: 100%;
  max-width: 270px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(17, 122, 104, 0.12);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.capture-saved-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #117a68;
  box-shadow: 0 0 0 6px rgba(17, 122, 104, 0.12);
}

.capture-saved-lines {
  display: grid;
  gap: 8px;
}

.capture-saved-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.18);
}

.capture-saved-lines span:first-child {
  width: 86%;
}

.capture-saved-lines span:last-child {
  width: 62%;
}

@keyframes capture-step-pulse {
  0% {
    left: -18%;
  }

  100% {
    left: 100%;
  }
}

@keyframes capture-highlight-grow {
  0%,
  18% {
    width: 0;
    opacity: 0.4;
  }

  36%,
  82% {
    width: 88%;
    opacity: 1;
  }

  100% {
    width: 88%;
    opacity: 0.72;
  }
}

@keyframes capture-cursor-move {
  0%,
  18% {
    left: 12px;
    top: 14px;
  }

  42%,
  100% {
    left: calc(100% - 40px);
    top: calc(100% - 42px);
  }
}

.capture-step-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.capture-step-card p {
  margin: 0;
  color: var(--rollback-muted);
  line-height: 1.58;
}

.privacy-strip .section-head {
  margin-bottom: 20px;
}

.privacy-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--rollback-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-scenarios {
  display: grid;
  gap: 16px;
}

.hero-scenario {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.hero-scenario-primary {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(239, 246, 255, 0.88));
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: var(--rollback-shadow);
}

.hero-scenario-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2357dc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scenario h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-scenario p {
  margin: 0;
  color: var(--rollback-muted);
  line-height: 1.65;
}

.flow-carousel {
  display: grid;
  gap: 18px;
}

.flow-carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--rollback-shadow);
}

.flow-carousel-track {
  display: flex;
  transition: transform 0.38s ease;
  will-change: transform;
}

.flow-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 30px;
  align-items: center;
  padding: 26px 30px;
}

.flow-slide-media {
  margin: 0;
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 12%, rgba(79, 141, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #161920 0%, #1d2028 100%);
}

.flow-slide-media-dual {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 14px;
}

.flow-slide-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 304px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 0;
  box-shadow: 0 20px 38px rgba(5, 10, 20, 0.18);
  background: transparent;
}

.flow-slide-image-app {
  border: 2px solid #202020;
  box-shadow:
    0 24px 42px rgba(5, 10, 20, 0.24),
    0 8px 18px rgba(5, 10, 20, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  filter: saturate(0.98) contrast(1.01);
}

.flow-slide-image-note {
  box-shadow: 0 18px 30px rgba(5, 10, 20, 0.14);
}

.flow-slide-image-portrait {
  max-height: 300px;
  max-width: min(100%, 228px);
}

.flow-slide-image-landscape {
  max-width: min(100%, 468px);
}

.flow-slide-image-wide {
  max-width: min(100%, 540px);
  max-height: 224px;
}

.flow-slide-image-wide-secondary {
  max-height: 212px;
}

.flow-slide-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.flow-slide-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2357dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flow-slide-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.flow-slide-copy p {
  margin: 0;
  max-width: 38ch;
  color: var(--rollback-muted);
  line-height: 1.7;
}

.flow-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.flow-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--rollback-ink);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}

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

.benefit-card,
.step-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.benefit-card h3,
.step-card h3 {
  margin: 0;
  line-height: 1.14;
}

.benefit-card p,
.step-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.benefit-number,
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2357dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

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

.price-card {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(30, 41, 59, 0.1);
  box-shadow: 0 1px 0 rgba(17, 22, 36, 0.04);
}

.price-card.is-featured {
  border-color: rgba(37, 99, 235, 0.22);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(239, 246, 255, 0.96));
  box-shadow: 0 24px 44px rgba(29, 78, 216, 0.12);
}

.price-badge {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.contact-section .contact-grid {
  align-items: start;
}

.contact-section .contact-info-card,
.contact-section .contact-form-card {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(30, 41, 59, 0.1);
  box-shadow: var(--rollback-shadow);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--rollback-shadow);
}

.cta-band h2 {
  margin: 10px 0 12px;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0;
  max-width: 50ch;
  color: var(--rollback-muted);
  line-height: 1.7;
}

.cta-band-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer {
  background: rgba(255, 255, 255, 0.72);
  padding: 28px 0 42px;
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: 36px;
  align-items: start;
}

.footer-brand-block p,
.footer-brand-block small {
  margin: 8px 0 0;
  display: block;
  color: var(--rollback-muted);
  line-height: 1.6;
}

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

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 2px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rollback-muted);
}

.footer-column a {
  text-decoration: none;
  color: var(--rollback-ink);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .cta-band,
  .site-footer-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .capture-steps-grid,
  .benefit-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .flow-slide {
    grid-template-columns: 1fr;
  }

  .flow-slide-media {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .capture-steps-progress {
    display: none;
  }

  .site-header-row {
    align-items: flex-start;
    flex-direction: row;
    position: relative;
  }

  .header-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-top: 6px;
  }

  .header-actions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(286px, calc(100vw - 28px));
    padding: 12px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.96);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
    z-index: 40;
  }

  .site-header.is-menu-open .header-actions {
    display: grid;
    gap: 10px;
  }

  .main-nav {
    display: grid;
    gap: 8px;
    justify-items: end;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.72);
  }

  .header-download {
    width: 100%;
    min-height: 52px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 56px 0 24px;
  }

  .hero-copy h1,
  .section-head h2,
  .cta-band h2 {
    max-width: none;
  }

  .shortcut-guide {
    grid-template-columns: 1fr;
  }

  .hero-badges-row {
    justify-content: center;
    gap: 8px;
  }

  .hero-badges-row span {
    justify-content: center;
  }

  .flow-slide {
    padding: 14px;
  }

  .flow-slide-media {
    min-height: 240px;
  }

  .privacy-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cta-band {
    padding: 24px;
  }
}

/* Fast path sequence refinements */
.capture-steps-shell {
  --capture-step-gap: 16px;
  --capture-demo-duration: 7.2s;
  --capture-card-pad: 22px;
  --capture-visual-height: 156px;
  position: relative;
  padding-top: 0;
}

.capture-steps-grid {
  position: relative;
  grid-auto-rows: 1fr;
  gap: var(--capture-step-gap);
  align-items: stretch;
}

.capture-step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.capture-step-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.capture-step-visual {
  min-height: var(--capture-visual-height);
  margin-bottom: 18px;
  padding: 18px;
}

.capture-step-visual-select {
  overflow: hidden;
  align-content: center;
  justify-items: start;
}

.capture-selection-stack {
  width: 100%;
  display: grid;
  gap: 10px;
}

.capture-line-short-b {
  width: 48%;
}

.capture-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 26px;
}

.capture-copy-chip {
  display: block;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(106, 145, 255, 0.28), rgba(86, 147, 255, 0.52));
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.12),
    0 8px 14px rgba(79, 141, 255, 0.12);
  transform: scaleX(0.05);
  transform-origin: left center;
  opacity: 0;
}

.capture-copy-chip-a {
  width: 76px;
  animation: capture-copy-chip-a var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-b {
  width: 42px;
  animation: capture-copy-chip-b var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-c {
  width: 44px;
  animation: capture-copy-chip-c var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-d {
  width: 62px;
  animation: capture-copy-chip-d var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-e {
  width: 34px;
  animation: capture-copy-chip-e var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-f {
  width: 58px;
  animation: capture-copy-chip-f var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-g {
  width: 46px;
  animation: capture-copy-chip-g var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-h {
  width: 34px;
  animation: capture-copy-chip-h var(--capture-demo-duration) ease-in-out infinite;
}

.capture-copy-chip-i {
  width: 40px;
  animation: capture-copy-chip-i var(--capture-demo-duration) ease-in-out infinite;
}

.capture-cursor {
  left: 16px;
  top: 18px;
  right: auto;
  bottom: auto;
  width: 36px;
  height: 36px;
  background-image: url("/assets/img/ui/cursor.svg");
  background-size: 36px 36px;
  animation: capture-cursor-travel var(--capture-demo-duration) ease-in-out infinite;
}

.capture-step-card:nth-child(2) .capture-step-visual-shortcut {
  animation: shortcut-stage var(--capture-demo-duration) ease-in-out infinite;
}

.capture-step-card:nth-child(2) .capture-shortcut-key {
  animation: shortcut-key-press var(--capture-demo-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.capture-step-card:nth-child(3) .capture-mini-window {
  animation: popup-stage var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.capture-mini-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7dd3fc;
  animation: capture-status-dot var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-status-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.74);
}

.capture-mini-title {
  transform-origin: left center;
  animation: popup-title-stage var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-pills span:first-child {
  animation: popup-pill-a var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-pills span:last-child {
  animation: popup-pill-b var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-lines {
  display: grid;
  gap: 8px;
}

.capture-mini-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(79, 141, 255, 0.42));
  transform: scaleX(0.08);
  transform-origin: left center;
  opacity: 0.24;
}

.capture-mini-line-a {
  width: 88%;
  animation: popup-line-a var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-line-b {
  width: 76%;
  animation: popup-line-b var(--capture-demo-duration) ease-in-out infinite;
}

.capture-mini-line-c {
  width: 60%;
  animation: popup-line-c var(--capture-demo-duration) ease-in-out infinite;
}

.capture-step-card:nth-child(3) .capture-mini-enter {
  animation: enter-stage var(--capture-demo-duration) ease-in-out infinite;
}

.capture-saved-lines {
  gap: 6px;
}

.capture-saved-lines strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  color: #0f5132;
  letter-spacing: -0.01em;
}

.capture-saved-lines span {
  width: 68%;
}

.capture-step-card:nth-child(4) .capture-saved-card {
  animation: saved-stage var(--capture-demo-duration) ease-in-out infinite;
}

@keyframes capture-copy-chip-a {
  0%,
  6% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  12%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes capture-copy-chip-b {
  0%,
  10% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  16%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes capture-copy-chip-c {
  0%,
  16% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  22%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-copy-chip-d {
  0%,
  20% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  26%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-copy-chip-e {
  0%,
  24% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  30%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-copy-chip-f {
  0%,
  28% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  34%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-copy-chip-g {
  0%,
  31% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  37%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-copy-chip-h {
  0%,
  13% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  19%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-copy-chip-i {
  0%,
  34% {
    transform: scaleX(0.05);
    opacity: 0;
  }

  40%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes capture-cursor-travel {
  0%,
  4% {
    left: 16px;
    top: 18px;
    opacity: 0;
  }

  8% {
    left: 18px;
    top: 36px;
    opacity: 1;
  }

  16% {
    left: calc(100% - 110px);
    top: 36px;
    opacity: 1;
  }

  20% {
    left: 28px;
    top: 70px;
  }

  28% {
    left: calc(100% - 72px);
    top: 70px;
  }

  32% {
    left: 34px;
    top: 104px;
  }

  38% {
    left: calc(100% - 90px);
    top: 104px;
    opacity: 1;
  }

  44%,
  100% {
    left: calc(100% - 50px);
    top: 104px;
    opacity: 0;
  }
}

@keyframes shortcut-stage {
  0%,
  38%,
  52%,
  100% {
    transform: scale(1);
    box-shadow: none;
    filter: none;
  }

  44% {
    transform: scale(0.992);
    box-shadow: 0 0 0 2px rgba(79, 141, 255, 0.22) inset;
    filter: brightness(1.06);
  }
}

@keyframes shortcut-key-press {
  0%,
  40%,
  52%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  }

  45% {
    transform: translateY(3px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  }
}

@keyframes popup-stage {
  0%,
  54% {
    opacity: 0.48;
    transform: translateY(8px) scale(0.98);
  }

  60%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes capture-status-dot {
  0%,
  54%,
  100% {
    opacity: 0.34;
    box-shadow: 0 0 0 0 rgba(125, 211, 252, 0);
  }

  60%,
  76% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(125, 211, 252, 0.18);
  }
}

@keyframes popup-title-stage {
  0%,
  56% {
    transform: scaleX(0.3);
    opacity: 0.2;
  }

  62%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes popup-pill-a {
  0%,
  60% {
    transform: scaleX(0.2);
    opacity: 0.16;
  }

  66%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes popup-pill-b {
  0%,
  64% {
    transform: scaleX(0.2);
    opacity: 0.16;
  }

  70%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes popup-line-a {
  0%,
  60% {
    transform: scaleX(0.08);
    opacity: 0.2;
  }

  68%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes popup-line-b {
  0%,
  64% {
    transform: scaleX(0.08);
    opacity: 0.2;
  }

  72%,
  100% {
    transform: scaleX(1);
    opacity: 0.88;
  }
}

@keyframes popup-line-c {
  0%,
  68% {
    transform: scaleX(0.08);
    opacity: 0.2;
  }

  76%,
  100% {
    transform: scaleX(1);
    opacity: 0.78;
  }
}

@keyframes enter-stage {
  0%,
  74%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }

  78%,
  82% {
    transform: scale(0.94);
    box-shadow: 0 0 0 3px rgba(79, 141, 255, 0.18);
  }
}

@keyframes saved-stage {
  0%,
  84% {
    opacity: 0.24;
    transform: translateY(10px) scale(0.97);
  }

  92%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Full homepage redesign */
.homepage-v3 .section {
  padding: 104px 0;
}

.hero-v3 {
  padding: 48px 0 72px;
}

.hero-v3-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hero-v3-copy h1 {
  margin: 12px 0 16px;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(50px, 6.2vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-v3-subhead {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-700);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.62;
}

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

.hero-v3-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-v3-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-v3-shortcuts {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.hero-v3-shortcut {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-line);
}

.hero-v3-shortcut strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-v3-shortcut span {
  color: var(--ink-700);
  line-height: 1.5;
  font-size: 14px;
}

.hero-v3-media {
  position: relative;
  min-height: 760px;
}

.hero-v3-primary,
.hero-v3-secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
  background: #16181d;
}

.hero-v3-primary {
  width: min(100%, 520px);
  position: relative;
  z-index: 2;
}

.hero-v3-primary img,
.hero-v3-secondary img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-v3-secondary {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 420px;
  z-index: 3;
}

.workflow-v3 {
  position: relative;
}

.workflow-v3::before {
  content: '';
  position: absolute;
  inset: 44px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.18));
  border-top: 1px solid rgba(30, 41, 59, 0.06);
  border-bottom: 1px solid rgba(30, 41, 59, 0.06);
}

.workflow-v3 .container {
  position: relative;
}

.workflow-v3-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.workflow-v3-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.workflow-v3-card-feature {
  grid-row: span 2;
}

.workflow-v3-copy {
  display: grid;
  gap: 10px;
}

.workflow-v3-step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-v3-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.workflow-v3-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
  max-width: 42ch;
}

.workflow-v3-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #17191d;
}

.workflow-v3-media img {
  display: block;
  width: 100%;
  height: auto;
}

.workflow-v3-media-compact img {
  width: 100%;
  aspect-ratio: 926 / 790;
  object-fit: cover;
  object-position: top center;
}

.workflow-v3-media-settings img {
  width: 100%;
  aspect-ratio: 1280 / 938;
  object-fit: cover;
  object-position: top left;
}

.vault-output-v3 {
  padding-top: 42px;
}

.vault-output-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: linear-gradient(180deg, rgba(15, 18, 26, 0.96), rgba(21, 23, 28, 0.96));
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.vault-output-copy {
  color: #fff;
  padding: 4px 6px 0 2px;
}

.vault-output-copy .section-kicker {
  color: rgba(148, 163, 184, 0.82);
}

.vault-output-copy h2 {
  margin: 12px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.vault-output-copy p {
  margin: 0;
  max-width: 44ch;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.7;
}

.vault-output-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: rgba(226, 232, 240, 0.86);
}

.vault-output-main,
.vault-output-mini {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #141519;
}

.vault-output-main img,
.vault-output-mini img {
  display: block;
  width: 100%;
  height: auto;
}

.vault-output-main img {
  aspect-ratio: 710 / 1100;
  object-fit: cover;
  object-position: top center;
}

.vault-output-side {
  display: grid;
  gap: 16px;
}

.features-v3 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34));
}

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

.features-v3-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-line);
}

.features-v3-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.features-v3-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.pricing-v3-shell {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.support-v3-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.support-v3-copy {
  padding-right: 12px;
}

.support-v3-copy h2 {
  margin: 12px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.support-v3-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
  max-width: 42ch;
}

.final-cta-v3 {
  padding-top: 28px;
  padding-bottom: 112px;
}

.final-cta-v3-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 30px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.final-cta-v3-shell h2 {
  margin: 12px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.final-cta-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  .hero-v3-shell,
  .support-v3-shell,
  .vault-output-shell,
  .final-cta-v3-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-v3-media {
    min-height: auto;
  }

  .hero-v3-secondary {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .workflow-v3-grid,
  .features-v3-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .workflow-v3-grid,
  .features-v3-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .homepage-v3 .section {
    padding: 72px 0;
  }

  .hero-v3 {
    padding-top: 20px;
  }

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

  .hero-v3-proof,
  .final-cta-v3-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-v3-shortcut {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .vault-output-shell,
  .pricing-v3-shell,
  .final-cta-v3-shell {
    padding: 22px;
  }
}

/* Landing V4 */
.landing-v4 .section {
  padding: 96px 0;
}

.landing-eyebrow,
.landing-section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(46, 107, 255, 0.08);
  color: #2357dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero {
  padding: 40px 0 72px;
}

.landing-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.landing-hero-copy h1 {
  margin: 14px 0 16px;
  max-width: 10ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(54px, 6.4vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.landing-subhead {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-700);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.66;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.landing-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-shortcuts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.landing-shortcut {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-line);
}

.landing-shortcut strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.landing-shortcut span {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.5;
}

.landing-hero-visual {
  position: relative;
  min-height: 780px;
}

.landing-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: #16181d;
  box-shadow: var(--shadow-soft);
}

.landing-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-shot-main {
  width: min(100%, 520px);
}

.landing-shot-summary {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 420px;
}

.landing-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.landing-section-head h2 {
  margin: 0;
  max-width: 13ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-section-head p {
  margin: 0;
  max-width: 54ch;
  color: var(--ink-700);
  line-height: 1.7;
}

.landing-proof {
  position: relative;
}

.landing-proof::before {
  content: '';
  position: absolute;
  inset: 40px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.16));
  border-top: 1px solid rgba(30, 41, 59, 0.05);
  border-bottom: 1px solid rgba(30, 41, 59, 0.05);
}

.landing-proof .container {
  position: relative;
}

.landing-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 18px;
}

.landing-proof-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.landing-proof-card-large {
  grid-row: span 2;
}

.landing-proof-copy {
  display: grid;
  gap: 10px;
}

.landing-proof-step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(46, 107, 255, 0.1);
  color: #2357dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-proof-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.landing-proof-copy p {
  margin: 0;
  max-width: 40ch;
  color: var(--ink-700);
  line-height: 1.65;
}

.landing-proof-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #17191d;
}

.landing-proof-media img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-proof-media-wide img {
  aspect-ratio: 926 / 790;
  object-fit: cover;
  object-position: top center;
}

.landing-proof-media-settings img {
  aspect-ratio: 1280 / 938;
  object-fit: cover;
  object-position: top left;
}

.landing-vault {
  padding-top: 36px;
}

.landing-vault-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(20, 22, 28, 0.98), rgba(21, 23, 28, 0.98));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.landing-vault-copy {
  color: #fff;
  padding-top: 6px;
}

.landing-vault-copy .landing-section-kicker {
  color: #c0d1ff;
  background: rgba(46, 107, 255, 0.14);
}

.landing-vault-copy h2 {
  margin: 14px 0;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-vault-copy p {
  margin: 0;
  line-height: 1.7;
  max-width: 42ch;
  color: rgba(229, 231, 235, 0.86);
}

.landing-vault-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: rgba(229, 231, 235, 0.86);
}

.landing-vault-main,
.landing-vault-mini {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #141519;
}

.landing-vault-main img,
.landing-vault-mini img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-vault-main img {
  aspect-ratio: 710 / 1100;
  object-fit: cover;
  object-position: top center;
}

.landing-vault-side {
  display: grid;
  gap: 16px;
}

.landing-features {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28));
}

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

.landing-feature-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-line);
}

.landing-feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.landing-feature-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.landing-pricing-shell {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.landing-support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: 24px;
  align-items: start;
}

.landing-support-copy h2 {
  margin: 14px 0;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.landing-support-copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-700);
  line-height: 1.7;
}

.landing-final {
  padding-top: 24px;
  padding-bottom: 112px;
}

.landing-final-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 30px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.landing-final-shell h2 {
  margin: 14px 0 0;
  max-width: 11ch;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(30, 41, 59, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-field input,
.contact-field textarea {
  background: rgba(255, 255, 255, 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

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

@media (max-width: 1180px) {
  .landing-hero-shell,
  .landing-support-shell,
  .landing-vault-shell {
    grid-template-columns: 1fr;
  }

  .landing-proof-grid,
  .landing-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-hero-visual {
    min-height: auto;
  }

  .landing-shot-summary {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

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

@media (max-width: 820px) {
  .landing-proof-grid,
  .landing-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .landing-v4 .section {
    padding: 76px 0;
  }

  .landing-hero {
    padding-top: 24px;
  }

  .landing-shortcuts,
  .landing-final-actions {
    display: flex;
    flex-direction: column;
  }

  .landing-shortcut {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-pricing-shell,
  .landing-vault-shell,
  .landing-final-shell {
    padding: 22px;
  }
}
