/* DokaanDM static landing — matches client design system + product showcase */

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

:root {
  --bg: 250 250 250;
  --surface: 255 255 255;
  --surface-2: 244 244 245;
  --surface-3: 228 228 231;
  --overlay: 9 9 11;
  --border: 228 228 231;
  --border-strong: 212 212 216;
  --text: 24 24 27;
  --text-2: 82 82 91;
  --text-3: 161 161 170;
  --brand: 37 99 235;
  --brand-hover: 29 78 216;
  --brand-active: 30 64 175;
  --brand-fg: 255 255 255;
  --brand-soft: 239 246 255;
  --success: 22 163 74;
  --success-soft: 240 253 244;
  --warning: 217 119 6;
  --danger: 220 38 38;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --font: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --max: 72rem;
  color-scheme: light;
}

html.dark {
  --bg: 9 9 11;
  --surface: 24 24 27;
  --surface-2: 39 39 42;
  --surface-3: 63 63 70;
  --border: 39 39 42;
  --border-strong: 63 63 70;
  --text: 250 250 250;
  --text-2: 161 161 170;
  --text-3: 113 113 122;
  --brand: 59 130 246;
  --brand-hover: 96 165 250;
  --brand-active: 37 99 235;
  --brand-soft: 23 37 84;
  --success: 34 197 94;
  --success-soft: 20 40 28;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(var(--text));
  background: rgb(var(--bg));
  min-height: 100vh;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(var(--bg)), 0 0 0 4px rgb(var(--brand) / 0.5);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgb(var(--brand));
  color: rgb(var(--brand-fg));
  flex-shrink: 0;
}

.logo-mark svg {
  width: 66%;
  height: 66%;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--text));
}

.logo-text span {
  color: rgb(var(--brand));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background-color 0.1s, color 0.1s, border-color 0.1s;
  white-space: nowrap;
  user-select: none;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-md {
  height: 2.25rem;
  padding-inline: 0.875rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 2.5rem;
  padding-inline: 1.5rem;
  font-size: 0.9375rem;
  min-width: 10.5rem;
}

.btn-primary {
  background: rgb(var(--brand));
  color: rgb(var(--brand-fg));
}

.btn-primary:hover {
  background: rgb(var(--brand-hover));
}

.btn-secondary {
  background: rgb(var(--surface));
  color: rgb(var(--text));
  border: 1px solid rgb(var(--border));
}

.btn-secondary:hover {
  background: rgb(var(--surface-2));
}

.btn-ghost {
  color: rgb(var(--text-2));
}

.btn-ghost:hover {
  background: rgb(var(--surface-2));
  color: rgb(var(--text));
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 0.5rem;
  color: rgb(var(--text-2));
}

.btn-icon:hover {
  background: rgb(var(--surface-2));
  color: rgb(var(--text));
}

.btn-white {
  background: #fff;
  color: rgb(37 99 235);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 4rem;
  border-bottom: 1px solid transparent;
  background: rgb(var(--bg) / 0.8);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: rgb(var(--border));
  background: rgb(var(--surface) / 0.9);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-desktop a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--text-2));
}

.nav-desktop a:hover {
  color: rgb(var(--text));
  background: rgb(var(--surface-2));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions .btn-signin,
.header-actions .btn-cta {
  display: none;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  padding: 1rem;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-panel nav a {
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--text-2));
}

.mobile-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(var(--border));
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .header-actions .btn-signin,
  .header-actions .btn-cta {
    display: inline-flex;
  }
  #menu-toggle {
    display: none;
  }
  .mobile-panel,
  .mobile-panel.is-open {
    display: none !important;
  }
}

/* Sections */
.section {
  padding-block: 4rem;
  border-bottom: 1px solid rgb(var(--border));
}

@media (min-width: 640px) {
  .section {
    padding-block: 5rem;
  }
}

.section-surface {
  background: rgb(var(--surface));
}

.section-head {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(var(--brand));
}

.section-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: rgb(var(--text));
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-lead {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgb(var(--border));
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(to right, rgb(var(--border) / 0.65) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(var(--border) / 0.65) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 10%, transparent 72%);
}

html.dark .hero-grid {
  opacity: 0.22;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 56rem);
  height: 480px;
  transform: translateX(-50%);
  border-radius: 100%;
  background: rgb(var(--brand) / 0.07);
  filter: blur(64px);
}

html.dark .hero-glow {
  background: rgb(var(--brand) / 0.14);
}

.hero-content {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--text-3));
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: rgb(var(--text));
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.08;
  }
}

.hero h1 .accent {
  color: rgb(var(--brand));
}

.hero-lead {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgb(var(--text-3));
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-trust svg {
  width: 0.875rem;
  height: 0.875rem;
  color: rgb(var(--success));
}

.hero-trust .dot {
  display: none;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: rgb(var(--border-strong));
}

@media (min-width: 640px) {
  .hero-trust .dot {
    display: inline;
  }
}

.hero-shot {
  position: relative;
  margin: 3.5rem auto 0;
  max-width: 64rem;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem auto 0;
  max-width: 56rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgb(var(--border));
  text-align: center;
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
  }
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--text));
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.25rem;
  }
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgb(var(--text-3));
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Product showcase */
.shot-stage {
  position: relative;
  isolation: isolate;
}

.shot-stage::before {
  content: '';
  position: absolute;
  inset: 8% 5% 0;
  border-radius: 2rem;
  background: radial-gradient(ellipse 80% 70% at 50% 20%, rgb(var(--brand) / 0.22), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.shot-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  box-shadow:
    0 0 0 1px rgb(var(--border) / 0.5),
    0 2px 4px rgb(0 0 0 / 0.04),
    0 12px 24px rgb(0 0 0 / 0.06),
    0 32px 64px rgb(0 0 0 / 0.08);
}

html.dark .shot-frame {
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.06),
    0 2px 4px rgb(0 0 0 / 0.3),
    0 16px 40px rgb(0 0 0 / 0.45),
    0 40px 80px rgb(0 0 0 / 0.35);
}

.shot-frame--hero {
  border-radius: 1.125rem;
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgb(var(--border));
  background: rgb(var(--surface-2) / 0.85);
}

.shot-dots {
  display: flex;
  gap: 0.375rem;
}

.shot-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: rgb(var(--border-strong));
}

.shot-url {
  flex: 1;
  display: flex;
  justify-content: center;
}

.shot-url span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  font-size: 0.6875rem;
  color: rgb(var(--text-3));
}

.shot-url .live {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgb(var(--success));
  flex-shrink: 0;
}

.shot-viewport {
  position: relative;
  background: rgb(var(--bg));
  overflow: hidden;
}

.shot-viewport img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.35s ease;
}

.shot-viewport img.is-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  pointer-events: none;
}

.shot-fade {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(to top, rgb(var(--bg)), transparent);
  z-index: 2;
}

.shot-stage--tilt {
  perspective: 1400px;
}

.shot-stage--tilt .shot-frame {
  transform: rotateX(2deg) rotateY(-3deg) translateZ(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .shot-stage--tilt:hover .shot-frame {
    transform: rotateX(0) rotateY(0);
  }
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.15s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgb(var(--brand-soft));
  color: rgb(var(--brand));
}

.feature-card:hover .feature-icon {
  background: rgb(var(--brand));
  color: rgb(var(--brand-fg));
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(var(--text));
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
}

/* Product tour */
.product-blocks {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (min-width: 1024px) {
  .product-blocks {
    gap: 7rem;
  }
}

.product-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-block {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .product-block.is-reverse .product-copy {
    order: 2;
  }
}

.product-copy h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--text));
}

@media (min-width: 640px) {
  .product-copy h3 {
    font-size: 1.5rem;
  }
}

.product-copy > p {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
}

.product-bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgb(var(--text-2));
}

.bullet-check {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgb(var(--brand-soft));
  color: rgb(var(--brand));
}

.bullet-check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.catalog-strip {
  margin-top: 5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--bg));
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

@media (min-width: 640px) {
  .catalog-strip {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .catalog-strip {
    padding: 2.5rem;
  }
}

.catalog-strip .section-head {
  margin-bottom: 2rem;
}

.catalog-shot {
  max-width: 56rem;
  margin-inline: auto;
}

/* Steps */
.steps {
  position: relative;
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 16%;
    right: 16%;
    height: 1px;
    background: rgb(var(--border));
  }
}

.step {
  text-align: center;
}

@media (min-width: 768px) {
  .step {
    text-align: left;
  }
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  box-shadow: var(--shadow-xs);
  color: rgb(var(--brand));
}

@media (min-width: 768px) {
  .step-icon {
    margin-inline: 0;
  }
}

.step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(var(--brand));
}

.step h3 {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(var(--text));
}

.step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
}

/* Pricing */
.billing-toggle {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.toggle {
  display: inline-flex;
  padding: 0.125rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--bg));
}

.toggle button {
  padding: 0.375rem 0.875rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--text-3));
}

.toggle button.is-active {
  background: rgb(var(--surface));
  color: rgb(var(--text));
  box-shadow: var(--shadow-xs);
}

.toggle .save {
  margin-left: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(var(--brand));
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--bg));
  box-shadow: var(--shadow-xs);
}

.price-card.is-popular {
  border-color: rgb(var(--brand));
  box-shadow: var(--shadow-md), 0 0 0 2px rgb(var(--brand) / 0.15);
}

@media (min-width: 1024px) {
  .price-card.is-popular {
    margin-block: -0.25rem;
    padding-block: 1.5rem;
  }
}

.popular-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.625rem;
  border-radius: 0.375rem;
  background: rgb(var(--brand));
  color: rgb(var(--brand-fg));
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.popular-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.plan-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--text));
}

.price-main {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--text));
}

.price-sub {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgb(var(--text-3));
}

.price-features {
  margin-top: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgb(var(--text-2));
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.price-features li svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: rgb(var(--brand));
}

.price-card .btn {
  margin-top: 1.5rem;
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgb(var(--text-3));
}

/* Proof */
.proof-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .proof-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.quote-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  box-shadow: var(--shadow-xs);
}

.quote-card > svg {
  width: 2rem;
  height: 2rem;
  color: rgb(var(--brand) / 0.3);
}

.quote-card blockquote {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.5;
  color: rgb(var(--text));
}

@media (min-width: 640px) {
  .quote-card blockquote {
    font-size: 1.5rem;
  }
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quote-avatar {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgb(var(--brand));
  color: rgb(var(--brand-fg));
  font-size: 0.875rem;
  font-weight: 600;
}

.quote-author strong {
  display: block;
  font-size: 0.875rem;
  color: rgb(var(--text));
}

.quote-author span {
  font-size: 0.75rem;
  color: rgb(var(--text-3));
}

.proof-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .proof-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.proof-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--surface));
  box-shadow: var(--shadow-xs);
}

.proof-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(var(--brand));
}

.proof-card h3 {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--text));
}

.proof-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgb(var(--text-2));
}

/* FAQ */
.faq-list {
  margin-top: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border));
  background: rgb(var(--bg));
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgb(var(--border));
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--text));
}

@media (min-width: 640px) {
  .faq-trigger {
    font-size: 1rem;
  }
}

.faq-trigger svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: rgb(var(--text-3));
  transition: transform 0.2s;
}

.faq-item.is-open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  border-bottom: 1px solid rgb(var(--border));
}

@media (min-width: 640px) {
  .final-cta {
    padding-block: 5rem;
  }
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: rgb(var(--brand));
}

html.dark .final-cta-bg {
  background: rgb(37 99 235);
}

.final-cta-shine {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    radial-gradient(circle at 20% 50%, white 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, white 0%, transparent 35%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}

@media (min-width: 640px) {
  .final-cta h2 {
    font-size: 1.875rem;
  }
}

.final-cta p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .final-cta-actions {
    flex-direction: row;
  }
}

/* Footer */
.site-footer {
  background: rgb(var(--surface));
  padding-block: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(var(--text-2));
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  color: #fff;
}

.social-btn svg {
  width: 1rem;
  height: 1rem;
}

.social-btn.fb {
  background: #1877f2;
}

.social-btn.ig {
  background: #e1306c;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(var(--text-3));
}

.footer-col ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(var(--text-2));
}

.footer-col a:hover {
  color: rgb(var(--text));
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(var(--border));
  font-size: 0.75rem;
  color: rgb(var(--text-3));
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .shot-stage--tilt .shot-frame,
  .shot-stage--tilt:hover .shot-frame {
    transform: none;
  }
  .shot-viewport img {
    transition: none;
  }
}
