:root {
  --bg: #07150f;
  --bg-2: #0d2418;
  --surface: rgba(13, 30, 22, 0.72);
  --surface-strong: rgba(9, 20, 15, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --card-border: rgba(177, 255, 184, 0.16);
  --text: #f4fff5;
  --muted: #afd3b0;
  --muted-2: #7eaa84;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #9cff57;
  --accent-2: #53d769;
  --accent-3: #e7ffb6;
  --dark-green: #0f3a1e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1240px;
  --ease: 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(110, 255, 138, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 18%,
      rgba(141, 255, 87, 0.14),
      transparent 22%
    ),
    linear-gradient(180deg, #07150f 0%, #08140f 25%, #091912 55%, #07110d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -3;
}

.orb-a {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 120px;
  background: radial-gradient(
    circle,
    rgba(119, 255, 121, 0.3),
    transparent 70%
  );
  animation: driftA 14s ease-in-out infinite;
}

.orb-b {
  width: 540px;
  height: 540px;
  right: -180px;
  top: 40px;
  background: radial-gradient(
    circle,
    rgba(217, 255, 138, 0.18),
    transparent 72%
  );
  animation: driftB 18s ease-in-out infinite;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  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: 36px 36px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  opacity: 0.3;
}

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

.section {
  padding: 110px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}

.header.scrolled {
  background: rgba(4, 12, 8, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, rgba(144, 255, 116, 0.28), rgba(42, 126, 52, 0.72)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(177, 255, 184, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-ball {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.92) 30%,
      transparent 31%
    ),
    linear-gradient(135deg, #f4ffe0 0%, #a1ff65 100%);
  box-shadow:
    inset 0 0 0 2px rgba(5, 20, 8, 0.35),
    0 8px 20px rgba(126, 255, 111, 0.25);
}

.brand-ball::before,
.brand-ball::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(6, 25, 10, 0.4);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px;
}

.brand-ball::after {
  transform: rotate(90deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted-2);
  font-size: 0.78rem;
  margin-top: 3px;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.98rem;
  position: relative;
  transition: color var(--ease);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: transform var(--ease);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.hero {
  padding: 58px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-label,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-3);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(163, 255, 131, 0.9);
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 800px;
}

.hero h1 span {
  display: block;
  color: var(--accent-3);
  text-shadow: 0 0 40px rgba(187, 255, 133, 0.18);
}

.hero-text {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
}

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

.btn-primary {
  color: #07120b;
  background: linear-gradient(135deg, #dfff8f 0%, #9cff57 40%, #61da74 100%);
  box-shadow:
    0 18px 40px rgba(124, 255, 89, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.btn-primary:hover {
  box-shadow:
    0 26px 60px rgba(124, 255, 89, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(177, 255, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(177, 255, 184, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 52px;
  padding: 0 22px;
}

.hero-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.feature-card,
.insight-panel,
.faq-item,
.cta-box,
.mini-stat,
.big-stat,
.carousel,
.shot-card,
.insight-panel,
.stats-showcase,
.why-copy,
.carousel-slide .shot-caption {
  border: 1px solid var(--card-border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.02)
    ),
    var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 20px 18px;
  border-radius: 22px;
  min-height: 122px;
}

.metric-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
}

.metric-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.device-stage {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.device-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(153, 255, 134, 0.2),
    rgba(123, 255, 124, 0.04) 48%,
    transparent 72%
  );
  filter: blur(8px);
  animation: breathe 6s ease-in-out infinite;
}

.phone {
  position: absolute;
  width: 290px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 5, 0.45);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  width: 330px;
  z-index: 3;
  transform: rotate(-7deg);
}

.phone-side {
  width: 220px;
  opacity: 0.96;
  z-index: 2;
}

.phone-side-top {
  top: 75px;
  right: 20px;
  transform: rotate(11deg);
}

.phone-side-bottom {
  bottom: 55px;
  left: 10px;
  transform: rotate(-12deg);
}

.pulse-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(165, 255, 127, 0.12);
  pointer-events: none;
}

.pulse-ring-a {
  width: 560px;
  height: 560px;
  animation: ringPulse 7s ease-in-out infinite;
}

.pulse-ring-b {
  width: 720px;
  height: 720px;
  animation: ringPulse 7s ease-in-out infinite 1.2s;
}

.ticker-bar {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  min-width: max-content;
  animation: tickerMove 28s linear infinite;
}

.ticker-track span {
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.03em;
  position: relative;
}

.ticker-track span::before {
  content: '•';
  color: var(--accent);
  margin-right: 14px;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  margin: 16px 0 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

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

.feature-card {
  padding: 28px;
  border-radius: 30px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(156, 255, 87, 0.14),
    transparent 70%
  );
  pointer-events: none;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(183, 255, 134, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  color: var(--accent-3);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

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

.screens-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.screens-copy h2,
.why-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.screens-copy p,
.why-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1rem;
}

.screens-bullets {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.screens-bullets div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screens-bullets strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.screens-bullets span {
  color: var(--muted);
  line-height: 1.6;
}

.carousel {
  padding: 26px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.shot-card {
  border-radius: 30px;
  padding: 12px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(6, 20, 12, 0.8);
}

.shot-card img {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 0.54;
  object-fit: cover;
}

.shot-caption {
  margin-top: 14px;
  border-radius: 22px;
  padding: 18px 18px 20px;
}

.shot-caption strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.shot-caption span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

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

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(177, 255, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.carousel-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(177, 255, 184, 0.32);
}

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

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    transform var(--ease),
    width var(--ease),
    background var(--ease);
}

.dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

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

.insight-panel {
  padding: 30px;
  border-radius: 30px;
  min-height: 260px;
}

.insight-panel h3 {
  margin: 18px 0 14px;
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.insight-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.why-copy,
.stats-showcase {
  padding: 34px;
  border-radius: 34px;
}

.check-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(119, 255, 103, 0.45);
}

.stats-showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.big-stat {
  padding: 34px 28px;
  border-radius: 28px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(4rem, 7vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--accent-3);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.mini-stat {
  padding: 22px 16px;
  border-radius: 24px;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  color: var(--accent-3);
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  font-size: 1rem;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--ease),
    padding var(--ease);
  padding: 0 24px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  padding-bottom: 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.cta-box {
  border-radius: 38px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-box h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 660px;
}

.footer {
  padding: 0 0 42px;
}

.footer-grid {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

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

.footer-links a {
  color: var(--muted);
  transition: color var(--ease);
}

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

.footer-brand {
  opacity: 0.95;
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

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

.floating-card {
  animation: floatMain 6.2s ease-in-out infinite;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(46px, -20px, 0);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-44px, 24px, 0);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.12;
  }
}

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

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .screens-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .device-stage {
    min-height: 680px;
  }

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

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

  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    width: min(320px, calc(100vw - 24px));
    padding: 16px;
    border-radius: 24px;
    background: rgba(5, 12, 8, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.7rem);
  }

  .hero-metrics,
  .feature-grid,
  .insight-panels,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .feature-card,
  .insight-panel,
  .why-copy,
  .stats-showcase,
  .cta-box,
  .carousel {
    border-radius: 26px;
  }

  .device-stage {
    min-height: 520px;
  }

  .phone-main {
    width: 250px;
  }

  .phone-side {
    width: 160px;
  }

  .phone-side-top {
    right: 4px;
    top: 50px;
  }

  .phone-side-bottom {
    left: 0;
    bottom: 30px;
  }

  .pulse-ring-a {
    width: 360px;
    height: 360px;
  }

  .pulse-ring-b {
    width: 460px;
    height: 460px;
  }

  .carousel-controls {
    gap: 10px;
  }

  .carousel-btn {
    width: 46px;
    height: 46px;
  }

  .footer-grid {
    padding-top: 22px;
  }
}

@media (max-width: 560px) {
  .header {
    padding: 14px 0;
  }

  .brand-text small {
    display: none;
  }

  .hero-text,
  .section-head p,
  .screens-copy p,
  .why-copy p,
  .cta-box p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-answer p {
    padding-bottom: 18px;
  }

  .shot-card img {
    aspect-ratio: 0.58;
  }
}

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

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

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