*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #100907;
  --bg-2: #18100d;
  --bg-3: #231510;
  --gold: #c7a343;
  --gold-border: rgba(199, 163, 67, 0.3);
  --cream: #f4e8d5;
  --cream-2: #dcc7a7;
  --text: #f5e9d8;
  --text-dim: rgba(245, 233, 216, 0.72);
  --text-muted: rgba(245, 233, 216, 0.48);
  --ink: #1c120d;
  --ink-dim: rgba(28, 18, 13, 0.68);
  --border: rgba(245, 233, 216, 0.1);
  --border-soft: rgba(245, 233, 216, 0.06);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    radial-gradient(circle at top, rgba(109, 41, 19, 0.35) 0%, rgba(109, 41, 19, 0) 34%),
    linear-gradient(180deg, #150c09 0%, #100907 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

.shell {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(12, 7, 5, 0.72);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(199, 163, 67, 0.2);
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 58px);
  background-image: url('/assets/banner.webp');
  background-size: cover;
  background-position: center center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 9, 7, 0.92) 0%,
      rgba(16, 9, 7, 0.78) 28%,
      rgba(16, 9, 7, 0.36) 56%,
      rgba(16, 9, 7, 0.64) 76%,
      rgba(16, 9, 7, 0.84) 100%
    ),
    linear-gradient(180deg, rgba(16, 9, 7, 0.14) 0%, rgba(16, 9, 7, 0.68) 100%);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(16, 9, 7, 0) 0%, rgba(16, 9, 7, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 58px);
  padding-block: clamp(72px, 10vw, 126px);
}

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

.hero-copy-top {
  display: grid;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  background: rgba(199, 163, 67, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  max-width: 34ch;
  margin-bottom: 34px;
  color: var(--text-dim);
  font-size: 1.06rem;
  line-height: 1.7;
  text-wrap: balance;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(199, 163, 67, 0.18);
}

.btn-gold:hover {
  box-shadow: 0 22px 48px rgba(199, 163, 67, 0.24);
}

.btn-outline {
  border: 1px solid rgba(245, 233, 216, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(245, 233, 216, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(245, 233, 216, 0.08);
}

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

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-meta span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 163, 67, 0.12);
}

.hero-actions {
  display: grid;
  gap: 18px;
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 132px) 0;
  scroll-margin-top: 86px;
}

.section-intro {
  max-width: 560px;
}

.section-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-sub {
  max-width: 42ch;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
}

.proof-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 163, 67, 0.1) 0%, rgba(199, 163, 67, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.proof-list {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.proof-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-dim);
}

.proof-list span {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-gallery {
  position: relative;
  min-height: 760px;
}

.proof-gallery::before {
  content: '';
  position: absolute;
  inset: 12% 16% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 163, 67, 0.18) 0%, rgba(199, 163, 67, 0) 70%);
  filter: blur(18px);
}

.phone-shot {
  position: absolute;
  width: clamp(185px, 22vw, 250px);
  overflow: hidden;
  border: 1px solid rgba(199, 163, 67, 0.22);
  border-radius: 32px;
  background: #1c120d;
  box-shadow: var(--shadow);
}

.phone-shot-a {
  top: 54px;
  left: 0;
  transform: rotate(-9deg);
  animation: phoneA 8s ease-in-out infinite;
}

.phone-shot-b {
  top: 0;
  right: 30px;
  z-index: 2;
  transform: translateY(34px);
  animation: phoneB 8s ease-in-out infinite 1.6s;
}

.phone-shot-c {
  bottom: 0;
  left: 24%;
  z-index: 3;
  transform: rotate(7deg);
  animation: phoneC 8s ease-in-out infinite 3.2s;
}

.workflow-section {
  background: linear-gradient(180deg, rgba(35, 21, 16, 0.88) 0%, rgba(17, 10, 7, 1) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.workflow-intro .section-heading {
  max-width: 10ch;
}

.workflow-list {
  margin-top: 48px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.workflow-item:last-child {
  border-bottom: 1px solid var(--border);
}

.workflow-number {
  padding-top: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.workflow-title {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.workflow-desc {
  max-width: 38ch;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.7;
}

.workflow-note {
  justify-self: end;
  padding-top: 10px;
  color: var(--cream-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.78;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(24, 16, 13, 1) 0%, rgba(16, 9, 7, 1) 100%);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.pricing-board {
  padding: 30px;
  border: 1px solid rgba(28, 18, 13, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(244, 232, 213, 0.98) 0%, rgba(228, 213, 190, 0.94) 100%);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.pricing-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(28, 18, 13, 0.12);
}

.pricing-tier {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-tier-pro {
  padding-left: 14px;
  border-left: 1px solid rgba(28, 18, 13, 0.1);
}

.pricing-tier-name,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-tier-name {
  background: rgba(28, 18, 13, 0.06);
  color: var(--ink);
}

.pricing-badge {
  background: rgba(199, 163, 67, 0.18);
  color: #7c5f10;
}

.pricing-tier-price {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-tier-price small {
  margin-left: 4px;
  color: var(--ink-dim);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-tier-copy {
  max-width: 24ch;
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pricing-rows {
  margin-top: 18px;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(28, 18, 13, 0.08);
}

.pricing-row span {
  color: var(--ink-dim);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pricing-row strong {
  justify-self: center;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.cta-copy .section-heading {
  max-width: 11ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.platform-link:hover,
.platform-link.active {
  color: var(--text);
  border-color: var(--gold-border);
  background: rgba(199, 163, 67, 0.08);
}

.platform-link.is-muted {
  cursor: default;
  opacity: 0.56;
}

.footer {
  padding: 50px 0 32px;
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-brand-block {
  max-width: 260px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 14px 22px;
  align-content: flex-start;
  flex-wrap: wrap;
  max-width: 560px;
  justify-content: flex-end;
}

.footer-links a,
.footer-legal a {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@keyframes phoneA {
  0%,
  100% {
    transform: rotate(-9deg) translateY(0);
  }
  50% {
    transform: rotate(-9deg) translateY(-10px);
  }
}

@keyframes phoneB {
  0%,
  100% {
    transform: translateY(34px);
  }
  50% {
    transform: translateY(24px);
  }
}

@keyframes phoneC {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-12px);
  }
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay='1'] {
  transition-delay: 0.1s;
}

.reveal[data-delay='2'] {
  transition-delay: 0.2s;
}

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

  .proof-layout,
  .pricing-layout {
    gap: 42px;
  }

  .proof-gallery {
    min-height: 680px;
    max-width: 620px;
    margin-inline: auto;
  }

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

  .workflow-note {
    grid-column: 2;
    justify-self: start;
    padding-top: 0;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    min-height: 54px;
  }

  .brand {
    gap: 8px;
    font-size: 0.92rem;
  }

  .nav-links .nav-link:nth-child(n + 3) {
    display: none;
  }

  .hero-section {
    min-height: calc(100svh - 54px);
    background-position: 64% 44%;
    background-size: auto 118%;
  }

  .hero-section::before {
    background:
      linear-gradient(
        90deg,
        rgba(16, 9, 7, 0.95) 0%,
        rgba(16, 9, 7, 0.88) 42%,
        rgba(16, 9, 7, 0.56) 72%,
        rgba(16, 9, 7, 0.7) 100%
      ),
      linear-gradient(180deg, rgba(16, 9, 7, 0.2) 0%, rgba(16, 9, 7, 0.7) 100%);
  }

  .hero-section::after {
    height: 20%;
    background: linear-gradient(180deg, rgba(16, 9, 7, 0) 0%, rgba(16, 9, 7, 0.64) 100%);
  }

  .hero-inner {
    min-height: calc(100svh - 54px);
    align-items: flex-start;
    padding-block: 56px 48px;
  }

  .hero-copy {
    max-width: 100%;
    width: 100%;
    min-height: calc(100svh - 54px - 104px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-h1 {
    max-width: 9.8ch;
    font-size: clamp(2.55rem, 12.8vw, 3.85rem);
    line-height: 0.92;
  }

  .hero-break {
    display: none;
  }

  .hero-sub {
    max-width: 26ch;
    margin-bottom: 0;
    font-size: 0.98rem;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 19rem);
  }

  .hero-meta {
    gap: 8px 14px;
    margin-top: 0;
  }

  .hero-meta span {
    font-size: 0.78rem;
  }

  .section {
    padding: 72px 0;
  }

  .proof-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-gallery {
    display: flex;
    gap: 12px;
    min-height: 0;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .proof-gallery::before {
    display: none;
  }

  .proof-gallery::-webkit-scrollbar {
    display: none;
  }

  .phone-shot {
    position: relative;
    width: auto;
    max-width: 228px;
    flex: 0 0 68%;
    animation: none;
    inset: auto;
    transform: none;
    scroll-snap-align: start;
  }

  .phone-shot-c {
    width: auto;
    justify-self: auto;
  }

  .workflow-list {
    margin-top: 32px;
  }

  .workflow-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .workflow-note {
    grid-column: auto;
    justify-self: start;
    padding-top: 0;
    text-align: left;
  }

  .workflow-number {
    padding-top: 0;
    font-size: 0.74rem;
  }

  .workflow-title {
    margin-bottom: 6px;
    font-size: clamp(1.22rem, 6vw, 1.7rem);
  }

  .workflow-desc {
    max-width: none;
    font-size: 0.92rem;
  }

  .pricing-board {
    padding: 20px;
    border-radius: 24px;
  }

  .pricing-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 18px;
  }

  .pricing-tier-pro {
    padding-top: 8px;
    padding-left: 0;
    border-top: 1px solid rgba(28, 18, 13, 0.1);
    border-left: 0;
  }

  .pricing-tier-price {
    font-size: 2.3rem;
  }

  .pricing-tier-copy {
    font-size: 0.88rem;
  }

  .pricing-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 10px;
    padding: 12px 0;
  }

  .pricing-row span,
  .pricing-row strong {
    font-size: 0.86rem;
  }

  .pricing-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .pricing-actions .btn {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-panel {
    gap: 24px;
    padding: 28px 0 36px;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 20px, 1120px);
  }

  .nav-links .nav-link {
    display: none;
  }

  .nav-inner {
    min-height: 52px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .hero-brandline {
    display: none;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 5px 10px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .hero-section {
    min-height: calc(100svh - 52px);
    background-position: 64% 40%;
    background-size: auto 120%;
  }

  .hero-inner {
    min-height: calc(100svh - 52px);
    padding-block: 40px 28px;
  }

  .hero-h1 {
    max-width: 8.8ch;
    margin-bottom: 14px;
    font-size: clamp(2.45rem, 13.2vw, 3.45rem);
    letter-spacing: -0.05em;
  }

  .hero-sub {
    max-width: 24ch;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hero-copy {
    min-height: calc(100svh - 52px - 68px);
  }

  .cta-row {
    gap: 10px;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-actions .btn {
    width: min(100%, 18.9rem);
  }

  .hero-meta {
    display: none;
  }

  .section {
    padding: 56px 0;
    scroll-margin-top: 68px;
  }

  .section-heading {
    max-width: 11ch;
    font-size: clamp(1.9rem, 10.5vw, 2.55rem);
  }

  .section-sub {
    font-size: 0.92rem;
  }

  .proof-layout,
  .pricing-layout {
    gap: 20px;
  }

  .proof-list {
    margin-top: 22px;
  }

  .proof-list li {
    padding: 14px 0;
  }

  .proof-gallery {
    gap: 10px;
    margin-right: -12px;
    padding-right: 12px;
  }

  .phone-shot {
    max-width: 212px;
    flex-basis: 72%;
    border-radius: 24px;
  }

  .workflow-list {
    margin-top: 28px;
  }

  .workflow-title {
    font-size: 1.16rem;
  }

  .workflow-number,
  .workflow-note {
    padding-top: 0;
  }

  .workflow-note {
    grid-column: auto;
  }

  .pricing-board {
    padding: 16px;
    border-radius: 20px;
  }

  .pricing-row {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 8px;
  }

  .pricing-row span,
  .pricing-row strong {
    font-size: 0.8rem;
  }

  .platform-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .platform-row,
  .footer-links,
  .footer-legal {
    gap: 10px 12px;
  }

  .footer {
    padding-top: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
