﻿:root {
  --black: #0c0d0f;
  --ink: #0c0d0f;
  --surface: #16171a;
  --surface-2: #202227;
  --graphite: #2a2c32;
  --lime: #A8FF35;
  --teal: #00c3a2;
  --orange: #FF6B3D;
  --off: #f4f5f3;
  --white: #ffffff;
  --muted: #9a9ca3;
  --soft: #62646c;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(22, 23, 26, 0.72);
  --blur: blur(24px);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--off);
  background:
    radial-gradient(circle at 70% 0%, rgba(168, 255, 53, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 24%, rgba(0, 195, 162, 0.08), transparent 28rem),
    linear-gradient(180deg, #08090a 0%, var(--black) 38%, #08090a 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}
h1 { max-width: 10.5ch; font-size: clamp(3rem, 8.2vw, 6.6rem); }
h2 { max-width: 12ch; font-size: clamp(2.05rem, 5.2vw, 4.35rem); }
h3 { font-size: 1.12rem; }
p { margin: 0; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(8, 10, 12, 0.72);
  border-bottom: 1px solid rgba(43, 47, 54, 0.72);
  backdrop-filter: blur(18px);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand img, .footer-brand img { width: 34px; height: 34px; object-fit: contain; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #c6ced9;
  font-size: 0.9rem;
  font-weight: 650;
}
.desktop-nav a, .footer a { transition: color 180ms ease; }
.desktop-nav a:hover, .footer a:hover { color: var(--lime); }

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--lime);
  color: #0c0d0f;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(168, 255, 53, 0.22);
}
.menu-toggle, .mobile-nav { display: none; }

.section, .section-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  min-height: 100svh;
  padding-top: 128px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 46px;
}

.hero-copy p {
  max-width: 660px;
  margin: 26px 0;
  color: #c5ccd6;
  font-size: 1.12rem;
}
.hero-copy small {
  display: block;
  margin-top: 14px;
  color: var(--soft);
  font-weight: 650;
}
.hero-copy .hero-line {
  display: block;
  margin: 0 0 26px;
  color: var(--off);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(168, 255, 53, 0.32);
  border-radius: 999px;
  background: rgba(168, 255, 53, 0.08);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(168, 255, 53, 0.38);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(180deg, #d9f57f, var(--lime));
  color: #0c0d0f;
  box-shadow: 0 0 40px rgba(168, 255, 53, 0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
}
.btn-secondary {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  color: var(--off);
}
.btn-secondary:hover { border-color: rgba(168, 255, 53, 0.28); }
.btn-whatsapp {
  width: 100%;
  border-color: rgba(0, 195, 162, 0.36);
  background: rgba(0, 195, 162, 0.08);
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px 12px 46px;
  z-index: -2;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(20, 26, 33, 0.2), rgba(20, 26, 33, 0.72)),
    url("./assets/hero-welcome.png") center / cover;
  opacity: 0.76;
  box-shadow: var(--shadow);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 255, 53,0.24), transparent 66%);
  filter: blur(16px);
}
.athlete { display: none; }
.route-line {
  position: absolute;
  width: min(520px, 80%);
  height: 390px;
  border: 1px solid rgba(168, 255, 53, 0.28);
  border-left: 0;
  border-bottom: 0;
  border-radius: 46% 24% 48% 0;
  transform: rotate(-13deg);
}

.phone {
  position: relative;
  width: 270px;
  height: 552px;
  padding: 16px;
  border: 9px solid #050608;
  border-radius: 44px;
  background: #07090b;
  box-shadow:
    0 42px 120px rgba(0,0,0,0.58),
    0 0 0 1px rgba(255,255,255,0.09),
    0 0 90px rgba(168, 255, 53,0.15);
}
.hero-phone { z-index: 2; transform: rotate(-2.5deg); }
.phone-speaker {
  width: 72px;
  height: 6px;
  margin: 0 auto 15px;
  border-radius: 99px;
  background: #242a32;
}
.app-screen {
  height: 100%;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 255, 53,0.18), transparent 12rem),
    linear-gradient(180deg, #121820, #0d1116);
}
.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cbd2dc;
  font-weight: 850;
}
.screen-top img { width: 32px; }
.progress-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  margin: 26px auto;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 76%, #2a323c 0);
  text-align: center;
}
.progress-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: #10161d;
}
.progress-ring strong, .progress-ring span { position: relative; z-index: 1; display: block; }
.progress-ring strong { color: var(--white); font-size: 1.55rem; }
.progress-ring span { color: #97a1af; font-size: 0.72rem; }
.screen-card {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: #9fa8b6;
  font-size: 0.78rem;
}
.screen-card b { display: block; margin-top: 3px; color: var(--off); }
.screen-card.strong {
  border-color: rgba(168, 255, 53,0.36);
  background: rgba(168, 255, 53,0.09);
}
.habit-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #a4adba;
  font-size: 0.78rem;
}
.habit-row span { margin-right: auto; }
.habit-row i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--lime);
}
.habit-row i.off { background: #303944; }

.float-card {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border: 1px solid rgba(168, 255, 53, 0.27);
  border-radius: 18px;
  background: rgba(12, 16, 21, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 54px rgba(0,0,0,0.38);
  color: #eef3f8;
  font-weight: 900;
}
.float-a { top: 92px; left: 36px; }
.float-b { top: 232px; right: 0; }
.float-c { bottom: 136px; left: 18px; }
.float-d { right: 56px; bottom: 62px; }
.float-card.teal { border-color: rgba(0,195,162,0.38); }
.float-card.orange { border-color: rgba(255,107,61,0.38); }

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}
.section-heading p { max-width: 720px; font-size: 1.04rem; }

.pain-grid, .pillar-grid, .feature-grid, .check-grid, .compare-grid, .pricing-grid {
  display: grid;
  gap: 18px;
}
.pain-grid { grid-template-columns: repeat(4, 1fr); align-items: start; }
.card, .pillar, .feature, .compare-card, blockquote, .lead-form, .price-card, details {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(20,26,33,0.7);
  box-shadow: 0 18px 70px rgba(0,0,0,0.23);
}
.card {
  min-height: 220px;
  padding: 24px;
}
.card:hover, .feature:hover, .pillar:hover {
  border-color: rgba(168, 255, 53,0.24);
  transform: translateY(-4px);
}
.card, .feature, .pillar { transition: transform 180ms ease, border-color 180ms ease; }
.skew-left { transform: rotate(-1deg); margin-top: 18px; }
.skew-right { transform: rotate(1deg); }
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--lime);
  color: #0c0d0f;
  font-weight: 950;
}
.icon.teal { background: var(--teal); }
.icon.orange { background: var(--orange); }
.card p, .pillar p, .feature p, .step p { margin-top: 10px; }

.shift .split {
  display: grid;
  grid-template-columns: 0.78fr 1.15fr 0.92fr;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(168, 255, 53,0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 30%, rgba(168, 255, 53,0.12), transparent 20rem),
    linear-gradient(110deg, rgba(20,26,33,0.76), rgba(12,16,21,0.9));
}
.messy-stack { display: grid; gap: 13px; }
.messy-stack span {
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 17px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
}
.messy-stack span:nth-child(1) { transform: rotate(-5deg); }
.messy-stack span:nth-child(2) { transform: rotate(4deg); }
.messy-stack span:nth-child(3) { transform: rotate(-2deg); }
.shift-copy { display: grid; gap: 20px; justify-items: start; }
.impact-line {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--lime);
  line-height: 1.2;
}
.mini-dashboard {
  padding: 22px;
  border: 1px solid rgba(168, 255, 53,0.3);
  border-radius: 24px;
  background: rgba(8,12,16,0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.dash-head span { color: var(--lime); font-weight: 850; }
.dash-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #2a313a;
}
.dash-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--teal));
}
.dash-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.dash-list span {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  color: #b4bdc9;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 35px;
  border-top: 1px solid rgba(168, 255, 53,0.34);
}
.step { position: relative; padding: 0 8px; }
.step span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #d9f57f, var(--lime));
  color: #0c0d0f;
  box-shadow: 0 0 32px rgba(168, 255, 53,0.22);
  font-family: "Sora", sans-serif;
  font-weight: 950;
}

.pillar-grid { grid-template-columns: repeat(3, 1fr); }
.pillar {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  padding: 30px;
}
.pillar::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.16;
  filter: blur(8px);
}
.pillar span, .feature span {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid currentColor;
  border-radius: 16px;
}
.pillar span::before, .feature span::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.lime { color: var(--lime); }
.teal { color: var(--teal); }
.orange { color: var(--orange); }
.pillar h3, .feature h3 { color: var(--white); }

.features-band {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-block: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 85% 15%, rgba(0,195,162,0.08), transparent 24rem),
    rgba(20,26,33,0.46);
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature { padding: 26px; }
.feature span {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--lime);
}

.mockup-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 34px 4px 46px;
}
.phone.small {
  flex: 0 0 188px;
  width: 188px;
  height: 386px;
  padding: 12px;
  border-width: 7px;
  border-radius: 34px;
}
.phone.small.raised { transform: translateY(-24px); }
.phone.small .app-screen {
  padding: 16px;
  border-radius: 23px;
}
.support-text {
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
}

.check-grid { grid-template-columns: repeat(3, 1fr); }
.check-grid span {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(20,26,33,0.62);
  font-weight: 850;
}
.check-grid span::before,
.compare-card.active li::before,
.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--lime);
  font-weight: 950;
}
.statement {
  display: block;
  max-width: 790px;
  margin-top: 36px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 4vw, 3rem);
  line-height: 1.08;
}

.compare-grid { grid-template-columns: repeat(2, 1fr); }
.compare-card { padding: 28px; }
.compare-card.active {
  border-color: rgba(168, 255, 53,0.48);
  box-shadow: 0 0 80px rgba(168, 255, 53,0.11);
}
.compare-card ul, .price-card ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.compare-card.muted li::before {
  content: "×";
  margin-right: 10px;
  color: #6d7684;
  font-weight: 950;
}

.pricing .section-heading {
  align-items: center;
  text-align: center;
}
.pricing .section-heading h2, .pricing .section-heading p { margin-inline: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.price-card {
  padding: 30px;
}
.price-card.featured {
  border-color: rgba(168, 255, 53, 0.48);
  box-shadow: 0 0 80px rgba(168, 255, 53, 0.11);
  transform: translateY(-10px);
}
.price-card h3 { color: var(--white); }
.price-card strong {
  display: block;
  margin: 14px 0 4px;
  color: var(--lime);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1;
}
.price-card strong span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}
.price-card .btn {
  width: 100%;
  margin-top: 24px;
}
.pricing-note {
  display: block;
  margin-top: 28px;
  text-align: center;
  color: #8c95a0;
}

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  padding: 20px 22px;
  background: rgba(20,26,33,0.58);
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--lime);
}
details[open] summary::after { content: "âˆ’"; }
details p {
  max-width: 860px;
  margin-top: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  padding: 105px 20px;
  border-block: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at center, rgba(168, 255, 53,0.18), transparent 31rem),
    linear-gradient(180deg, rgba(20,26,33,0.2), rgba(20,26,33,0.68));
  text-align: center;
}
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.final-cta h2 {
  max-width: 12ch;
  margin-inline: auto;
}
.final-cta p {
  max-width: 650px;
  margin: 20px auto 28px;
}
.final-cta .final-note {
  margin: 22px auto 0;
  color: var(--soft);
  font-weight: 650;
}
.final-cta strong {
  display: block;
  margin-top: 28px;
  color: var(--lime);
  font-family: "Sora", sans-serif;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
  color: var(--muted);
}
.footer-brand { margin-bottom: 12px; }
.footer nav, .social-links {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #7d8795;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--off);
  }
  .mobile-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: rgba(8,10,12,0.96);
    box-shadow: var(--shadow);
  }
  .mobile-nav.open { display: grid; }
  .hero, .signup, .shift .split { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding-top: 120px;
  }
  .hero-visual { min-height: 620px; }
  .pain-grid, .steps, .pillar-grid, .feature-grid, .check-grid, .compare-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before { display: none; }
  .mockup-row {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .phone.small { scroll-snap-align: center; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
    padding-inline: 16px;
  }
  .brand span { font-size: 0.98rem; }
  .brand img { width: 30px; height: 30px; }
  .header-cta { display: none; }
  .mobile-nav { top: 68px; }
  .section, .section-grid {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }
  .hero { padding-top: 100px; }
  .hero-copy p { font-size: 1rem; }
  .btn {
    width: 100%;
    padding-inline: 16px;
  }
  .hero-visual { min-height: 536px; }
  .hero-visual::before {
    inset: 34px -14px 42px;
    border-radius: 32px;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, #000, transparent 92%);
  }
  .phone {
    width: 226px;
    height: 462px;
    border-radius: 38px;
  }
  .route-line {
    width: 92%;
    height: 330px;
  }
  .float-card {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
  .float-a { top: 58px; left: 0; }
  .float-b { top: 178px; right: 0; }
  .float-c { bottom: 116px; left: 0; }
  .float-d { right: 8px; bottom: 44px; }
  .pain-grid, .steps, .pillar-grid, .feature-grid, .check-grid, .compare-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .skew-left, .skew-right {
    margin-top: 0;
    transform: none;
  }
  .shift .split {
    padding: 18px;
    border-radius: 24px;
  }
  .mockup-row { margin-right: -14px; }
  .phone.small.raised { transform: none; }
  .price-card.featured { transform: none; }
  .footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
