/* ==========================================================================
   N7:VPS — Full-Responsive & Pixel-Perfect Stylesheet
   Supports all viewports: 4K/QHD, Desktop, Laptops, Tablets, Mobiles (320px+)
   ========================================================================== */

:root {
  --bg-main: #020914;
  --bg-radial: radial-gradient(circle at 75% 30%, #081d33 0%, #030c18 45%, #010711 100%);
  --brand-green: #29cc39;
  --brand-green-light: #3be24c;
  --brand-green-glow: rgba(41, 204, 57, 0.45);
  --btn-green-bg: #148324;
  --btn-green-hover: #189e2c;
  --btn-android-bg: #111a24;
  --btn-android-border: rgba(255, 255, 255, 0.08);
  --btn-android-hover: #182535;
  --card-bg: rgba(9, 17, 28, 0.82);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-inner-bg: rgba(14, 25, 40, 0.55);
  --text-white: #ffffff;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --orange-accent: #f97316;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  max-width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-main);
  background-image: var(--bg-radial);
  color: var(--text-white);
  font-family: var(--font-family);
  overflow-x: clip;
  line-height: 1.5;
  position: relative;
}

@media (min-width: 1025px) {
  body {
    background-attachment: fixed;
  }
}

/* Background Atmosphere Glows */
.bg-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-spot-1 {
  position: absolute;
  top: -10%;
  left: 5%;
  width: clamp(280px, 45vw, 600px);
  height: clamp(280px, 45vw, 600px);
  background: radial-gradient(circle, rgba(16, 75, 45, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  animation: glow-drift-a 16s ease-in-out infinite alternate;
}

.glow-spot-2 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: clamp(300px, 50vw, 750px);
  height: clamp(300px, 50vw, 750px);
  background: radial-gradient(circle, rgba(20, 50, 90, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(90px);
  animation: glow-drift-b 20s ease-in-out infinite alternate;
}

.glow-spot-3 {
  position: absolute;
  bottom: -8%;
  left: 38%;
  width: clamp(220px, 36vw, 480px);
  height: clamp(220px, 36vw, 480px);
  background: radial-gradient(circle, rgba(41, 204, 57, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(70px);
  animation: glow-drift-a 22s ease-in-out infinite alternate-reverse;
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(41, 204, 57, 0.55) 0%, rgba(41, 204, 57, 0) 70%);
}

.float-orb-1 {
  width: 10px;
  height: 10px;
  top: 18%;
  left: 12%;
  animation: orb-float 9s ease-in-out infinite;
}

.float-orb-2 {
  width: 7px;
  height: 7px;
  top: 62%;
  right: 16%;
  animation: orb-float 11s ease-in-out infinite 1.4s;
}

.float-orb-3 {
  width: 8px;
  height: 8px;
  top: 36%;
  right: 28%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.5) 0%, rgba(96, 165, 250, 0) 70%);
  animation: orb-float 13s ease-in-out infinite 0.6s;
}

.signal-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 10px rgba(41, 204, 57, 0.8);
  opacity: 0;
}

.signal-dot-1 {
  top: 22%;
  right: 18%;
  animation: signal-travel 7s ease-in-out infinite;
}

.signal-dot-2 {
  top: 48%;
  left: 20%;
  animation: signal-travel 8.5s ease-in-out infinite 2s;
}

.signal-dot-3 {
  bottom: 24%;
  right: 32%;
  animation: signal-travel 9s ease-in-out infinite 3.4s;
}

/* Base Wrapper */
.page-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.25rem, 3.5vw, 3.25rem) clamp(1rem, 4vw, 4.5rem) clamp(1.25rem, 2.5vw, 2rem);
  padding-left: max(clamp(1rem, 4vw, 4.5rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1rem, 4vw, 4.5rem), env(safe-area-inset-right, 0px));
  padding-bottom: max(clamp(1.25rem, 2.5vw, 2rem), env(safe-area-inset-bottom, 0px));
}

/* ==========================================================================
   Hero Section
   Desktop: copy + actions left, graphic right
   Mobile:  copy → graphic → actions
   ========================================================================== */
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  grid-template-areas:
    "copy graphic"
    "actions graphic";
  align-items: center;
  column-gap: clamp(1.5rem, 3.5vw, 3.5rem);
  row-gap: 0;
  width: 100%;
  min-width: 0;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  z-index: 2;
  min-width: 0;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: clamp(1.5rem, 2.5vw, 2.2rem);
}

.hero-graphic-container {
  grid-area: graphic;
}

/* Hero Trial Eyebrow Pill */
.hero-trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 18px;
  background: rgba(14, 28, 46, 0.8);
  border: 1px solid rgba(41, 204, 57, 0.42);
  border-radius: 9999px;
  font-size: clamp(12.5px, 1.1vw, 14px);
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0.15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(41, 204, 57, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  box-sizing: border-box;
  animation: rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both, pill-glow 3.6s ease-in-out 0.7s infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-green-light);
  box-shadow: 0 0 0 0 rgba(41, 204, 57, 0.55);
  animation: live-pulse 1.8s ease-out infinite;
}

@media (hover: hover) {
  .hero-trial-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 204, 57, 0.8);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 24px rgba(41, 204, 57, 0.3);
  }
}

.hero-trial-pill .pill-sparkle {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  animation: sparkle-bob 2.4s ease-in-out infinite;
}

.hero-trial-pill .pill-text {
  line-height: 1.35;
  min-width: 0;
}

.hero-trial-pill .pill-accent {
  color: var(--brand-green-light);
  font-weight: 700;
}

/* Main Title */
.hero-title {
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  word-break: normal;
  overflow-wrap: break-word;
  animation: rise-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.hero-title .brand-title-accent {
  color: var(--brand-green);
  text-shadow: 0 0 25px rgba(41, 204, 57, 0.35);
}

/* Description */
.hero-description {
  font-size: clamp(14.5px, 1.2vw, 17px);
  line-height: 1.62;
  color: #94a3b8;
  max-width: 580px;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  animation: rise-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.hero-description p + p {
  margin-top: 0.45rem;
}

.hero-description strong {
  color: #f1f5f9;
  font-weight: 600;
}

/* ==========================================================================
   CTA Download Buttons Group
   ========================================================================== */
.cta-group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  flex-wrap: wrap;
  width: 100%;
}

.btn-download {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  min-height: 54px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1 1 190px;
  min-width: 185px;
  max-width: 100%;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cta-group .btn-download:nth-child(1) {
  animation: rise-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.cta-group .btn-download:nth-child(2) {
  animation: rise-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.cta-group .btn-download:nth-child(3) {
  animation: rise-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.btn-windows {
  background-color: var(--btn-green-bg);
  background-image: linear-gradient(180deg, #1ea332 0%, #147a23 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(20, 131, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-windows::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-130%);
  animation: shine-sweep 4.8s ease-in-out 1.2s infinite;
  pointer-events: none;
}

@media (hover: hover) {
  .btn-windows:hover {
    background-image: linear-gradient(180deg, #24bd3b 0%, #178d29 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 163, 50, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.btn-windows:active {
  transform: translateY(0);
}

.btn-android {
  background-color: var(--btn-android-bg);
  color: #ffffff;
  border: 1px solid var(--btn-android-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) {
  .btn-android:hover {
    background-color: var(--btn-android-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
}

.btn-android:active {
  transform: translateY(0);
}

.btn-github {
  background-color: #0b1523;
  background-image: linear-gradient(180deg, #162438 0%, #0c1726 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) {
  .btn-github:hover {
    background-image: linear-gradient(180deg, #1f324d 0%, #112035 100%);
    border-color: rgba(41, 204, 57, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 18px rgba(41, 204, 57, 0.18);
  }
}

.btn-github:active {
  transform: translateY(0);
}

.btn-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-android .btn-icon-wrapper svg {
  color: var(--brand-green);
}

.btn-github .btn-icon-wrapper svg {
  color: #f1f5f9;
}

.btn-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.btn-text-main {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
}

.btn-text-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin-top: 2px;
}

/* ==========================================================================
   Mini Feature Badges Under CTA
   ========================================================================== */
.feature-badges-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: 20px;
  row-gap: 10px;
  width: 100%;
}

.feature-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  animation: rise-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feature-badge-item:nth-child(1) { animation-delay: 0.42s; }
.feature-badge-item:nth-child(2) { animation-delay: 0.48s; }
.feature-badge-item:nth-child(3) { animation-delay: 0.54s; }
.feature-badge-item:nth-child(4) { animation-delay: 0.6s; }

.feature-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  flex-shrink: 0;
  animation: icon-glow 2.8s ease-in-out infinite;
}

.feature-badge-item:nth-child(2) .feature-badge-icon { animation-delay: 0.4s; }
.feature-badge-item:nth-child(3) .feature-badge-icon { animation-delay: 0.8s; }
.feature-badge-item:nth-child(4) .feature-badge-icon { animation-delay: 1.2s; }

.feature-badge-text {
  font-size: 12.5px;
  line-height: 1.3;
  color: #cbd5e1;
  font-weight: 500;
  min-width: 0;
}

.feature-badge-text span {
  display: block;
}

/* ==========================================================================
   Hero Device Showcase Graphic
   ========================================================================== */
.hero-graphic-container {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: visible;
  animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.device-orbit {
  position: absolute;
  inset: 10% 8%;
  border: 1px solid rgba(41, 204, 57, 0.16);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-spin 22s linear infinite;
}

.device-orbit-2 {
  inset: 18% 16%;
  border-color: rgba(96, 165, 250, 0.14);
  animation-duration: 32s;
  animation-direction: reverse;
}

.device-pulse {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 204, 57, 0.22) 0%, rgba(41, 204, 57, 0) 70%);
  pointer-events: none;
  animation: pulse-ring 3.4s ease-out infinite;
}

.device-showcase {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.65));
  pointer-events: none;
  user-select: none;
  animation: device-float 6.5s ease-in-out 0.9s infinite;
}

/* ==========================================================================
   Bottom Features Section (3x2 Grid on Desktop, 2x3 on Tablet, 1x6 on Mobile)
   ========================================================================== */
.bottom-features-section {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
}

.features-container-card {
  background: rgba(6, 13, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(14px, 2vw, 20px);
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.features-section-title {
  font-size: clamp(15.5px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: -0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}

.feature-col {
  background: rgba(14, 25, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: clamp(1rem, 1.4vw, 1.35rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.55s ease;
}

@media (hover: hover) {
  .feature-col:hover {
    background: rgba(18, 33, 54, 0.75);
    border-color: rgba(41, 204, 57, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  }
}

.feature-icon-header {
  margin-bottom: 0.65rem;
  color: var(--brand-green);
  display: flex;
  align-items: center;
}

.feature-col-title {
  font-size: clamp(13.5px, 1.1vw, 15px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.feature-col-desc {
  font-size: clamp(12px, 0.95vw, 13px);
  line-height: 1.58;
  color: #8da2bb;
  font-weight: 400;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 3;
  padding: clamp(1.2rem, 2.5vw, 2rem) 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-brand-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-size: clamp(12px, 1vw, 13.5px);
  color: #64748b;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

@media (hover: hover) {
  .footer-brand-tag:hover {
    color: #94a3b8;
  }
}

/* ==========================================================================
   Modals (Accessible, Touch-Friendly, Responsive)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 6, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overscroll-behavior: contain;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #091322;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(14px, 2.5vw, 20px);
  max-width: 620px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(41, 204, 57, 0.12);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.25rem);
  right: clamp(0.85rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-right: 40px;
}

.modal-os-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(41, 204, 57, 0.12);
  border: 1px solid rgba(41, 204, 57, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  flex-shrink: 0;
}

.modal-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 13px;
  color: #8da2bb;
  margin-top: 3px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-actions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-btn-primary {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(180deg, #22b837 0%, #158525 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 18px;
  min-height: 48px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(21, 133, 37, 0.4);
  transition: all 0.2s ease;
  text-align: center;
}

@media (hover: hover) {
  .modal-btn-primary:hover {
    background: linear-gradient(180deg, #27ce3f 0%, #199c2d 100%);
    transform: translateY(-1px);
  }
}

.modal-btn-secondary {
  flex: 1 1 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 18px;
  min-height: 48px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

@media (hover: hover) {
  .modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
}

.modal-steps-box {
  background: rgba(14, 25, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.modal-steps-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.modal-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-steps-list li {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.modal-step-number {
  color: var(--brand-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive breakpoints (documented)

   Sources:
   - Bootstrap 5.3 Layout → Breakpoints
     https://getbootstrap.com/docs/5.3/layout/breakpoints/
     xs <576 | sm ≥576 | md ≥768 | lg ≥992 | xl ≥1200 | xxl ≥1400
   - Apple HIG → Layout (logical points = CSS px)
     https://developer.apple.com/design/human-interface-guidelines/layout
     iPhone SE 375×667, iPhone 16 390×844
     iPad mini 8.3" 744×1133 (landscape 1133×744)
     iPad 11" / Air 820×1180, iPad Pro 11" 834×1194
     iPad Pro 12.9" / Air 13" 1024×1366
   - MDN: prefer ranges; do not lock layout to one device model
   - Tailwind CSS: sm 640, md 768, lg 1024, xl 1280, 2xl 1536

   Device map used below:
   320–575   phones portrait
   576–743   large phones / phone landscape
   744–899   iPad mini + iPad 11" portrait (NOT phone styles)
   900–1180 × height ≥1000  iPad Pro 12.9" / Air 13" portrait (1024×1366)
   900–1366 × height 600–900  iPad landscape + small laptops
   1367+ × height ≤1100      desktop one-screen compact
   1680+                     2K / wide — larger canvas, not the 1080 squeeze
   1680+ × height ≥1100      QHD 2560×1440 fill
   1367+     desktop
   ========================================================================== */

/* xl / small desktop — Bootstrap xl. Only from tablet-up so iPhones
   do not inherit a 3-column button grid (that made labels wrap and buttons huge). */
@media (min-width: 900px) and (max-width: 1280px) {
  .hero-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    column-gap: 1.25rem;
  }

  .hero-title {
    font-size: clamp(32px, 3.2vw, 46px);
  }

  .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .btn-download {
    min-width: 0;
    width: 100%;
    max-width: none;
    flex: none;
    padding: 10px 12px;
    gap: 8px;
  }

  .btn-text-main {
    font-size: 13.5px;
  }

  .feature-badges-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 8px;
  }

  .feature-badge-text {
    font-size: 12px;
  }

  .feature-badge-text span {
    white-space: normal;
  }
}

/* md tablet portrait + iPad mini + Split View
   Apple HIG iPad mini 744×1133. Bootstrap md.
   Width-only so DevTools / Split View cannot fall into a 2-col desktop grid. */
@media (min-width: 744px) and (max-width: 899.98px) {
  .page-wrapper {
    padding: 1.75rem 2rem 1.4rem;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "graphic"
      "actions";
    row-gap: 1.35rem;
    column-gap: 0;
    margin-bottom: 1.75rem;
  }

  .hero-copy,
  .hero-actions,
  .hero-graphic-container {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-actions {
    padding-top: 0;
  }

  .hero-title {
    font-size: clamp(34px, 5vw, 44px);
  }

  .hero-description {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 16px;
  }

  .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 1.25rem;
  }

  .btn-download {
    min-width: 0;
    width: 100%;
    padding: 12px 10px;
  }

  .btn-text-main,
  .btn-text-sub {
    white-space: normal;
  }

  .btn-text-main {
    font-size: 13.5px;
  }

  .feature-badges-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .device-showcase {
    max-width: 620px;
    max-height: 42vh;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* iPad Pro 12.9" / Air 13" portrait — Apple HIG 1024×1366.
   Wide enough for the 2-col hero, tall enough that margin-top: auto
   on features opened a huge hole between hero and cards.
   Does not match landscape tablets (those are max-height: 900). */
@media (min-width: 900px) and (max-width: 1180px) and (min-height: 1000px) {
  .page-wrapper {
    padding-top: 1.75rem;
    padding-bottom: 1.25rem;
  }

  .hero-section {
    align-items: start;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    padding-top: 1.15rem;
  }

  .cta-group {
    margin-bottom: 1.25rem;
  }

  .bottom-features-section {
    margin-top: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .site-footer {
    padding-top: 1.1rem;
  }
}

/* iPad / small-laptop landscape — Apple HIG:
   iPad mini 1133×744, iPad 1024×768, Air 1180×820, Pro 11 1194×834
   Short viewport: compact 2-col, wrapping button labels, no overflow. */
@media (min-width: 900px) and (max-width: 1366px) and (min-height: 600px) and (max-height: 900px) {
  .page-wrapper {
    padding-top: 1rem;
    padding-bottom: 0.85rem;
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }

  .hero-section {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.95fr);
    grid-template-areas:
      "copy graphic"
      "actions graphic";
    align-items: center;
    column-gap: 1rem;
    margin-bottom: 1.1rem;
  }

  .hero-copy,
  .hero-actions,
  .hero-graphic-container {
    max-width: none;
    margin-inline: 0;
  }

  .hero-trial-pill {
    margin-bottom: 0.55rem;
    padding: 5px 12px;
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(24px, 2.8vw, 34px);
    margin-bottom: 0.55rem;
  }

  .hero-description {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 0;
    max-width: 100%;
  }

  .hero-description p + p {
    display: none;
  }

  .hero-actions {
    padding-top: 0.7rem;
  }

  .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 0.75rem;
  }

  .btn-download {
    min-width: 0;
    width: 100%;
    max-width: none;
    flex: none;
    padding: 8px 8px;
    gap: 7px;
  }

  .btn-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .btn-text-main,
  .btn-text-sub {
    white-space: normal;
  }

  .btn-text-main {
    font-size: 12px;
    line-height: 1.2;
  }

  .btn-text-sub {
    font-size: 10px;
  }

  .feature-badges-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 6px;
  }

  .feature-badge-text {
    font-size: 11px;
  }

  .feature-badge-text span {
    white-space: normal;
  }

  .device-showcase {
    max-width: 100%;
    max-height: min(56vh, 380px);
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .features-container-card {
    padding: 0.95rem 1.1rem 0.9rem;
  }

  .features-section-title {
    font-size: 14.5px;
    margin-bottom: 0.7rem;
  }

  .feature-col {
    padding: 0.7rem 0.75rem;
  }

  .feature-col-title {
    min-height: 0;
    font-size: 12.5px;
  }

  .feature-col-desc {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* iPad mini landscape extra-tight — 1133×744 CSS px (Apple HIG 8.3") */
@media (min-width: 1000px) and (max-width: 1180px) and (max-height: 780px) {
  .hero-title {
    font-size: 26px;
  }

  .cta-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn-download {
    padding: 9px 12px;
  }

  .btn-text-main {
    font-size: 13.5px;
  }

  .feature-badges-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .feature-badge-text span {
    white-space: normal;
  }
}

/* 4. Phones — Bootstrap xs/sm. Stops BEFORE iPad mini portrait (744). */
@media (max-width: 743.98px) {
  .page-wrapper {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
    padding-left: max(1.15rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.15rem, env(safe-area-inset-right, 0px));
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "graphic"
      "actions";
    row-gap: 1.15rem;
    column-gap: 0;
    margin-bottom: 1.5rem;
  }

  .hero-copy,
  .hero-actions,
  .hero-graphic-container {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-actions {
    padding-top: 0;
  }

  .hero-trial-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 12.5px;
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: clamp(26px, 7.4vw, 34px);
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .device-showcase {
    max-height: 38vh;
    width: min(100%, 520px);
  }

  .cta-group {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 1.15rem;
  }

  .btn-download {
    display: flex;
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 48px;
    max-width: 100%;
    padding: 10px 14px;
    gap: 10px;
  }

  .btn-text-main,
  .btn-text-sub {
    white-space: nowrap;
  }

  .btn-text-main {
    font-size: 15px;
  }

  .btn-text-sub {
    font-size: 11px;
  }

  .feature-badges-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .feature-badge-item {
    min-width: 0;
    align-items: flex-start;
  }

  .feature-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-badge-text {
    font-size: 12px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .features-container-card {
    padding: 1rem 0.85rem 0.9rem;
  }

  .features-section-title {
    font-size: 14.5px;
    margin-bottom: 0.75rem;
  }

  .feature-col {
    padding: 0.75rem 0.7rem 0.7rem;
    border-radius: 12px;
    min-width: 0;
  }

  .feature-icon-header {
    margin-bottom: 0.4rem;
  }

  .feature-icon-header svg {
    width: 20px;
    height: 20px;
  }

  .feature-col-title {
    min-height: 0;
    font-size: 12.5px;
    line-height: 1.3;
    margin-bottom: 0.35rem;
  }

  .feature-col-desc {
    font-size: 11px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .footer-brand-tag {
    display: block;
    padding-inline: 0.5rem;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card {
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: min(92dvh, 92vh);
  }

  .modal-actions-row {
    flex-direction: column;
  }

  .modal-btn-primary,
  .modal-btn-secondary {
    width: 100%;
    flex: none;
  }
}

/* 5. Compact phones */
@media (max-width: 479px) {
  .page-wrapper {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
    padding-top: 1rem;
  }

  .hero-trial-pill {
    font-size: 12px;
    padding: 7px 10px;
    gap: 6px;
  }

  .hero-title {
    font-size: clamp(24px, 8vw, 28px);
    line-height: 1.18;
  }

  .hero-description {
    font-size: 14px;
  }

  .device-showcase {
    max-height: 32vh;
  }

  .btn-text-main {
    font-size: 15px;
  }

  .btn-text-sub {
    font-size: 11px;
  }

  .feature-badge-text {
    font-size: 11.5px;
  }

  .feature-col {
    padding: 0.65rem 0.6rem 0.6rem;
  }

  .feature-col-title {
    font-size: 12px;
  }

  .feature-col-desc {
    font-size: 10.5px;
    -webkit-line-clamp: 2;
  }

  .footer-brand-tag {
    font-size: 11.5px;
  }
}

/* 6. Ultra-compact / iPhone SE */
@media (max-width: 379px) {
  .page-wrapper {
    padding-left: max(0.7rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.7rem, env(safe-area-inset-right, 0px));
  }

  .hero-trial-pill {
    font-size: 11.5px;
    padding: 6px 8px;
  }

  .hero-title {
    font-size: 23px;
  }

  .feature-badges-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }
}

/* Landscape phones: keep the first screen usable */
@media (max-width: 900px) and (max-height: 520px) and (orientation: landscape) {
  .hero-section {
    row-gap: 0.85rem;
    margin-bottom: 1.1rem;
  }

  .hero-description p + p {
    display: none;
  }

  .device-showcase {
    max-height: 48vh;
  }

  .cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-download {
    flex: 1 1 calc(50% - 8px);
  }
}

/* Wide desktop — fit hero + features on one screen.
   1366×768 already has the landscape compact rule; this starts at 1367. */
@media (min-width: 1367px) and (max-height: 1100px) {
  .page-wrapper {
    padding-top: 1.1rem;
    padding-bottom: 0.65rem;
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    padding-right: max(2rem, env(safe-area-inset-right, 0px));
  }

  .hero-section {
    align-items: start;
    column-gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-trial-pill {
    margin-bottom: 0.5rem;
    padding: 6px 14px;
    font-size: 12.5px;
  }

  .hero-title {
    font-size: clamp(28px, 2.35vw, 40px);
    margin-bottom: 0.5rem;
  }

  .hero-description {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .hero-actions {
    padding-top: 0.8rem;
  }

  .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0.75rem;
  }

  .btn-download {
    min-width: 0;
    width: 100%;
    flex: none;
    padding: 8px 12px;
    min-height: 46px;
    gap: 8px;
  }

  .btn-text-main {
    font-size: 13.5px;
  }

  .btn-text-sub {
    font-size: 11px;
  }

  .feature-badges-row {
    column-gap: 16px;
    row-gap: 8px;
  }

  .feature-badge-text {
    font-size: 12px;
  }

  .feature-badge-text span {
    white-space: normal;
  }

  .device-showcase {
    max-height: min(42vh, 400px);
  }

  .bottom-features-section {
    margin-top: 0;
  }

  .features-container-card {
    padding: 0.95rem 1.1rem 0.85rem;
  }

  .features-section-title {
    font-size: 15px;
    margin-bottom: 0.65rem;
  }

  .features-grid {
    gap: 8px;
  }

  .feature-col {
    padding: 0.7rem 0.8rem;
  }

  .feature-icon-header {
    margin-bottom: 0.35rem;
  }

  .feature-icon-header svg {
    width: 22px;
    height: 22px;
  }

  .feature-col-title {
    font-size: 13px;
    margin-bottom: 0.3rem;
  }

  .feature-col-desc {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .site-footer {
    padding: 0.65rem 0 0.1rem;
  }
}

@media (min-width: 1367px) and (max-height: 920px) {
  .hero-description p + p {
    display: none;
  }

  .hero-title {
    font-size: clamp(26px, 2.2vw, 36px);
  }

  .device-showcase {
    max-height: min(38vh, 340px);
  }

  .features-container-card {
    padding: 0.8rem 1rem 0.75rem;
  }

  .feature-col-desc {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* 2K / wide desktop. Overrides the 1080p squeeze so the page is not a
   tiny floating block on 2560×1440 (including 125–150% OS scaling). */
@media (min-width: 1680px) {
  .page-wrapper {
    max-width: min(2040px, 94vw);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    padding-left: max(2.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(2.5rem, env(safe-area-inset-right, 0px));
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    column-gap: 2.25rem;
    align-items: center;
    margin-bottom: 1.35rem;
  }

  .hero-trial-pill {
    margin-bottom: 0.75rem;
    padding: 7px 16px;
    font-size: 13.5px;
  }

  .hero-title {
    font-size: clamp(36px, 2.7vw, 50px);
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.55;
    max-width: 640px;
    margin-bottom: 0;
  }

  .hero-description p + p {
    display: block;
    margin-top: 0.4rem;
  }

  .hero-actions {
    padding-top: 1.1rem;
  }

  .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 1rem;
  }

  .btn-download {
    padding: 11px 16px;
    min-height: 52px;
    gap: 10px;
  }

  .btn-text-main {
    font-size: 15px;
  }

  .btn-text-sub {
    font-size: 12px;
  }

  .feature-badges-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 10px;
  }

  .feature-badge-item {
    white-space: normal;
  }

  .feature-badge-text {
    font-size: 13px;
    white-space: normal;
  }

  .feature-badge-text span {
    display: block;
    white-space: normal;
  }

  .device-showcase {
    max-width: 1100px;
    max-height: min(50vh, 520px);
  }

  .bottom-features-section {
    margin-top: 0;
  }

  .features-container-card {
    padding: 1.25rem 1.4rem 1.15rem;
  }

  .features-section-title {
    font-size: 16.5px;
    margin-bottom: 0.85rem;
  }

  .features-grid {
    gap: 12px;
  }

  .feature-col {
    padding: 0.95rem 1.05rem;
  }

  .feature-icon-header {
    margin-bottom: 0.5rem;
  }

  .feature-icon-header svg {
    width: 26px;
    height: 26px;
  }

  .feature-col-title {
    font-size: 14.5px;
    margin-bottom: 0.4rem;
  }

  .feature-col-desc {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .site-footer {
    padding: 0.55rem 0 0;
  }
}

/* True QHD / 2K tall — fill 2560×1440 instead of leaving a black void */
@media (min-width: 1680px) and (min-height: 1100px) {
  .page-wrapper {
    max-width: min(2400px, 94vw);
    padding-top: 2.25rem;
    padding-bottom: 0.55rem;
    padding-left: max(3rem, env(safe-area-inset-left, 0px));
    padding-right: max(3rem, env(safe-area-inset-right, 0px));
  }

  .hero-section {
    column-gap: 2.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-title {
    font-size: clamp(42px, 2.9vw, 56px);
    margin-bottom: 0.9rem;
  }

  .hero-description {
    font-size: 17px;
    max-width: 680px;
  }

  .hero-actions {
    padding-top: 1.35rem;
  }

  .cta-group {
    gap: 12px;
    margin-bottom: 1.15rem;
  }

  .btn-download {
    padding: 13px 18px;
    min-height: 56px;
  }

  .btn-text-main {
    font-size: 16px;
  }

  .device-showcase {
    max-width: 1240px;
    max-height: min(54vh, 640px);
  }

  .features-container-card {
    padding: 1.5rem 1.65rem 1.4rem;
  }

  .features-section-title {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .features-grid {
    gap: 14px;
  }

  .feature-col {
    padding: 1.15rem 1.2rem;
  }

  .feature-col-desc {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .site-footer {
    padding-top: 0.55rem;
    padding-bottom: 0;
  }
}

/* Desktop: eat leftover viewport under the footer instead of a black gap */
@media (min-width: 1367px) {
  .page-wrapper {
    padding-bottom: 0.45rem;
  }

  .bottom-features-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    min-height: 0;
  }

  .features-container-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .features-grid {
    flex: 1 1 auto;
    grid-auto-rows: 1fr;
    align-content: stretch;
  }

  .site-footer {
    flex-shrink: 0;
    padding-top: 0.45rem;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   Motion / life
   ========================================================================== */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes glow-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

@keyframes glow-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-5%, 4%, 0) scale(1.06); }
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.55; }
  50% { transform: translate3d(12px, -22px, 0); opacity: 1; }
}

@keyframes signal-travel {
  0% { opacity: 0; transform: translate3d(0, 8px, 0) scale(0.6); }
  18% { opacity: 0.9; }
  82% { opacity: 0.7; }
  100% { opacity: 0; transform: translate3d(28px, -36px, 0) scale(1); }
}

@keyframes pill-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(41, 204, 57, 0.16); }
  50% { box-shadow: 0 4px 22px rgba(0, 0, 0, 0.4), 0 0 26px rgba(41, 204, 57, 0.34); }
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 204, 57, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(41, 204, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 204, 57, 0); }
}

@keyframes shine-sweep {
  0%, 68% { transform: translateX(-130%); }
  88%, 100% { transform: translateX(130%); }
}

@keyframes device-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 0.55; }
  70% { opacity: 0.12; }
  100% { transform: scale(2.1); opacity: 0; }
}

@keyframes icon-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(41, 204, 57, 0)); }
  50% { filter: drop-shadow(0 0 6px rgba(41, 204, 57, 0.55)); }
}

@keyframes sparkle-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(-2px) rotate(-8deg); }
  70% { transform: translateY(1px) rotate(6deg); }
}

.motion-on [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.motion-on [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.motion-on .features-grid .feature-col.is-in:nth-child(1) { transition-delay: 0.04s; }
.motion-on .features-grid .feature-col.is-in:nth-child(2) { transition-delay: 0.1s; }
.motion-on .features-grid .feature-col.is-in:nth-child(3) { transition-delay: 0.16s; }
.motion-on .features-grid .feature-col.is-in:nth-child(4) { transition-delay: 0.22s; }
.motion-on .features-grid .feature-col.is-in:nth-child(5) { transition-delay: 0.28s; }
.motion-on .features-grid .feature-col.is-in:nth-child(6) { transition-delay: 0.34s; }

@media (max-width: 743.98px) {
  .device-orbit,
  .device-orbit-2,
  .device-pulse,
  .float-orb,
  .signal-dot {
    display: none;
  }

  .device-showcase {
    animation-name: device-float-soft;
  }
}

@keyframes device-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .glow-spot-1,
  .glow-spot-2,
  .glow-spot-3,
  .float-orb,
  .signal-dot,
  .hero-trial-pill,
  .live-dot,
  .pill-sparkle,
  .hero-title,
  .hero-description,
  .hero-graphic-container,
  .cta-group .btn-download,
  .feature-badge-item,
  .feature-badge-icon,
  .device-showcase,
  .device-orbit,
  .device-pulse,
  .btn-windows::after {
    animation: none !important;
  }

  .motion-on [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
