/* ─── Reset & Base ───────────────────────────────── */

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

:root {
  --bg: #080c16;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(34, 197, 94, 0.35);
  --accent: #22C55E;
  --accent-soft: rgba(34, 197, 94, 0.12);
  --text: #ffffff;
  --text-sec: rgba(255, 255, 255, 0.55);
  --text-dim: rgba(255, 255, 255, 0.35);
  --radius: 20px;
  --radius-lg: 28px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.accent {
  color: var(--accent);
}

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

/* ─── Navigation ─────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

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

.nav-links a {
  color: var(--text-sec);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
  border: 1px solid transparent;
}

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

.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.nav-download-btn {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 600 !important;
  border-color: transparent !important;
}

.nav-download-btn:hover {
  background: #1da34e !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ───────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 8% 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(34, 197, 94, 0.12), transparent 60%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  z-index: 2;
}

.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.25);
}

.hero-app-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.hero-cta-btn:hover {
  background: #1da34e;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
}

/* Phone Marquee — Infinite vertical scroll columns */
.phone-marquee {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  height: 480px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
}

.marquee-col {
  flex: 1;
  max-width: 200px;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-inner img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

/* Scroll directions */
@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 8px)); }
}

@keyframes scrollUp {
  0% { transform: translateY(calc(-50% - 8px)); }
  100% { transform: translateY(0); }
}

.col-down .marquee-inner {
  animation: scrollDown linear infinite;
}

.col-up .marquee-inner {
  animation: scrollUp linear infinite;
}

/* Speeds */
.col-slow .marquee-inner { animation-duration: 35s; }
.col-med .marquee-inner { animation-duration: 25s; }
.col-fast .marquee-inner { animation-duration: 30s; }

/* Slight perspective tilt per column */
.marquee-col:nth-child(1) { opacity: 0.55; transform: scale(0.92); }
.marquee-col:nth-child(2) { opacity: 0.75; transform: scale(0.96); }
.marquee-col:nth-child(3) { opacity: 1; transform: scale(1); z-index: 2; }
.marquee-col:nth-child(4) { opacity: 0.75; transform: scale(0.96); }
.marquee-col:nth-child(5) { opacity: 0.55; transform: scale(0.92); }

/* Initial reveal — columns slide in */
.marquee-col {
  transform-origin: center;
  animation: marqueeReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes marqueeReveal {
  from { opacity: 0; transform: translateY(60px) scale(0.9); }
  to { /* inherits per-column values */ }
}

body.loaded .marquee-col:nth-child(1) { animation-delay: 0.05s; opacity: 0.55; transform: scale(0.92); }
body.loaded .marquee-col:nth-child(2) { animation-delay: 0.15s; opacity: 0.75; transform: scale(0.96); }
body.loaded .marquee-col:nth-child(3) { animation-delay: 0.25s; opacity: 1; transform: scale(1); }
body.loaded .marquee-col:nth-child(4) { animation-delay: 0.15s; opacity: 0.75; transform: scale(0.96); }
body.loaded .marquee-col:nth-child(5) { animation-delay: 0.05s; opacity: 0.55; transform: scale(0.92); }

/* ─── Shared Section Styles ──────────────────────── */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-sec);
  margin-bottom: 48px;
  max-width: 520px;
}

/* ─── Feature Showcase (Subio-style) ─────────────── */

.showcase {
  padding: 120px 0 80px;
}

.showcase-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 48px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.showcase-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.showcase-desc {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 400px;
}

.showcase-phones {
  display: flex;
  gap: 14px;
  margin: 0 -10px -10px;
}

.showcase-phones img {
  width: calc(33.33% - 10px);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-phones img:hover {
  transform: translateY(-8px);
}

/* Stats Card */
.showcase-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.showcase-stats .showcase-desc {
  max-width: 280px;
}

.stats-display {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 100px;
  text-align: right;
}

.stat-label {
  font-size: 15px;
  color: var(--text-sec);
  text-align: left;
}

.stat-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── More Features (3x2 grid) ───────────────────── */

.more-features {
  padding: 40px 0 100px;
}

.features-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-sm {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-sm:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-sm-icon {
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 16px;
}

.feature-sm .showcase-label {
  margin-bottom: 12px;
}

.feature-sm p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ─── Screenshots ────────────────────────────────── */

.screenshots-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0d1220 50%, var(--bg) 100%);
  overflow: hidden;
}

.screenshots-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.screenshots-scroll img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshots-scroll img:hover {
  transform: scale(1.04) translateY(-4px);
}

/* ─── How It Works ──────────────────────────────── */

.how-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), #0d1220);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.how-card:hover {
  transform: translateY(-4px);
}

.how-card.how-featured {
  background: var(--accent-soft);
  border-color: var(--border-hover);
}

.how-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1;
}

.how-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-card p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ─── Privacy Section ───────────────────────────── */

.privacy-section {
  padding: 80px 0;
}

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  transition: border-color 0.3s;
}

.privacy-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.privacy-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 20px;
  margin: 0 auto 24px;
}

.privacy-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.privacy-card p {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Pricing ────────────────────────────────────── */

.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.pricing-featured {
  background: var(--accent-soft);
  border-color: var(--border-hover);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-badge.badge-save {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  width: 20px;
  height: 20px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid var(--border);
  transition: background 0.25s, transform 0.25s;
}

.pricing-card.pricing-featured .pricing-cta {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.25);
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.pricing-card.pricing-featured .pricing-cta:hover {
  background: #1da34e;
}

/* ─── Testimonials ───────────────────────────────── */

.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d1220, var(--bg));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sec);
  margin-bottom: 28px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author span {
  font-size: 15px;
  font-weight: 600;
}

/* ─── FAQ ────────────────────────────────────────── */

.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 720px;
  margin-top: 48px;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-dim);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ─── CTA Section ────────────────────────────────── */

.cta-section {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(34, 197, 94, 0.08), transparent 50%),
    var(--bg);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 16px 0 16px;
}

.cta-text p {
  font-size: 17px;
  color: var(--text-sec);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-phone {
  display: flex;
  justify-content: center;
}

.cta-device-frame {
  width: 280px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-device-frame img {
  width: 100%;
  border-radius: 30px;
}

/* ─── Footer ─────────────────────────────────────── */

footer {
  background: #060a12;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 4px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

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

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 100px;
}

.footer-group h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-group a {
  font-size: 14px;
  color: var(--text-sec);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── Scroll Reveal Animation ────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children in grids */
.showcase-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid-small .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid-small .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid-small .reveal:nth-child(4) { transition-delay: 0.06s; }
.features-grid-small .reveal:nth-child(5) { transition-delay: 0.12s; }
.features-grid-small .reveal:nth-child(6) { transition-delay: 0.18s; }
.testimonial-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .features-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text .showcase-label {
    text-align: center;
  }

  .cta-text .hero-cta-btn {
    margin: 0 auto;
  }

  .phone-marquee {
    height: 380px;
    gap: 12px;
  }

  .marquee-col {
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 12, 22, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
    font-size: 1rem;
  }

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

  .hero {
    padding: 120px 24px 0;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .phone-marquee {
    height: 300px;
    gap: 10px;
    margin-top: 40px;
  }

  .marquee-col {
    max-width: 120px;
  }

  .marquee-inner img {
    border-radius: 14px;
  }

  .section-container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .showcase-title {
    font-size: 28px;
  }

  .features-grid-small {
    grid-template-columns: 1fr;
  }

  .screenshots-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 40px;
  }

  .privacy-card {
    padding: 40px 24px;
  }

  .cta-device-frame {
    width: 220px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .marquee-col:nth-child(1),
  .marquee-col:nth-child(5) {
    display: none;
  }

  .phone-marquee {
    height: 240px;
    gap: 8px;
  }

  .marquee-col {
    max-width: 110px;
  }

  .showcase-phones {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .showcase-phones img {
    width: 80%;
  }
}
