/* =========================================================
   Adloggs Rider — Landing Page Styles
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --brand: #004AB5;
  --brand-600: #003C93;
  --brand-400: #2E73E0;
  --brand-300: #5B96F2;
  --accent: #00C6FB;
  --accent-2: #7A5CFF;

  --ink: #0C1322;
  --ink-soft: #44506A;
  --muted: #7A879C;
  --line: #E5EAF3;

  --bg: #F6F8FD;
  --bg-soft: #FFFFFF;

  --grad-brand: linear-gradient(135deg, #004AB5 0%, #2E73E0 55%, #00C6FB 100%);
  --grad-text: linear-gradient(100deg, #004AB5 0%, #2E73E0 45%, #00C6FB 100%);
  --grad-soft: linear-gradient(160deg, #EAF1FF 0%, #F6F8FD 60%);

  --shadow-sm: 0 4px 14px rgba(12, 28, 64, 0.08);
  --shadow-md: 0 16px 40px rgba(12, 28, 64, 0.12);
  --shadow-lg: 0 30px 70px rgba(8, 35, 92, 0.22);
  --shadow-brand: 0 22px 50px rgba(0, 74, 181, 0.35);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hide-mobile {
  display: inline;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--grad-brand);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  animation: spin 0.9s linear infinite;
}

.loader__brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.loader__brand span {
  opacity: 0.7;
  font-weight: 600;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Particles & Scroll Progress ---------- */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-brand);
  z-index: 1000;
  box-shadow: 0 0 12px rgba(0, 198, 251, 0.6);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo {
  height: 45px;
  object-fit: contain;
  border-radius: 10px;
}

.nav__logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
}

.nav__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
}

.nav__title strong {
  color: var(--brand);
  font-weight: 800;
}

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

.nav__link {
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}

.nav__link:hover {
  color: var(--brand);
  background: rgba(0, 74, 181, 0.07);
}

.nav__cta {
  margin-left: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-brand);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(0, 74, 181, 0.45);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  width: 26px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn svg {
  flex-shrink: 0;
}

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0, 74, 181, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-md);
}

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple .ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.5);
  animation: ripple 0.65s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
  background: var(--grad-soft);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
}

.shape--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, rgba(0, 198, 251, 0.5), transparent 70%);
  animation: float1 14s ease-in-out infinite;
}

.shape--2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(46, 115, 224, 0.5), transparent 70%);
  animation: float2 16s ease-in-out infinite;
}

.shape--3 {
  width: 220px;
  height: 220px;
  top: 30%;
  left: 12%;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.4), transparent 70%);
  animation: float1 12s ease-in-out infinite reverse;
}

.shape--4 {
  width: 160px;
  height: 160px;
  bottom: 18%;
  right: 16%;
  background: radial-gradient(circle, rgba(0, 74, 181, 0.35), transparent 70%);
  animation: float2 18s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 74, 181, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 74, 181, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -40px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-25px, 35px);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-600);
  box-shadow: var(--shadow-sm);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1FCB6B;
  box-shadow: 0 0 0 4px rgba(31, 203, 107, 0.2);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(31, 203, 107, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(31, 203, 107, 0);
  }
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero__title-line {
  display: block;
}

.hero__tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.hero__desc {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

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

/* Hero phone */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 74, 181, 0.35), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}

/* ---------- Phone Mockup ---------- */
.phone {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 610px;
  border-radius: 44px;
  background: linear-gradient(155deg, #1B2233, #0C1322);
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 130px;
  width: 3px;
  height: 60px;
  border-radius: 4px;
  background: #2A3346;
}

.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: #0C1322;
  border-radius: 0 0 16px 16px;
  z-index: 4;
}

.phone__notch::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 5px;
  border-radius: 4px;
  background: #232C3E;
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
}

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

.floaty {
  animation: floaty 5.5s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid var(--brand-300);
  border-radius: 14px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--brand);
  animation: wheel 1.6s infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* ---------- Section heads ---------- */
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.section__eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.section__lead {
  font-size: 1.08rem;
  color: var(--muted);
}

/* ---------- About ---------- */
.about {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(0, 198, 251, 0.07), transparent 60%),
    var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.glass-card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(0, 74, 181, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 74, 181, 0.2);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.glass-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 0.97rem;
  color: var(--muted);
}

/* ---------- Showcase ---------- */
.showcase {
  background:
    radial-gradient(900px 480px at 12% 110%, rgba(46, 115, 224, 0.08), transparent 60%),
    var(--bg-soft);
}

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

.showcase__list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.showcase__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 74, 181, 0.1);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.85rem;
}

.showcase__device {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reflection under showcase phone */
.phone__reflection {
  width: 220px;
  height: 70px;
  margin-top: -10px;
  background: radial-gradient(ellipse at center, rgba(0, 74, 181, 0.28), transparent 70%);
  filter: blur(14px);
  border-radius: 50%;
  opacity: 0.7;
}

/* Carousel */
.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.carousel__slide {
  min-width: 100%;
  height: 100%;
}

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

.carousel__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.carousel__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}

.carousel__btn:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
  box-shadow: var(--shadow-brand);
}

.carousel__dots {
  display: flex;
  gap: 9px;
  align-items: center;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(0, 74, 181, 0.25);
  transition: width 0.4s var(--ease), background 0.4s;
}

.carousel__dot.is-active {
  width: 28px;
  background: var(--grad-brand);
}

/* ---------- Download ---------- */
.download {
  background: var(--bg);
}

.download__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 84px) 32px;
  text-align: center;
  background: var(--grad-brand);
  box-shadow: var(--shadow-brand);
}

.download__bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.download__bg::before,
.download__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.download__bg::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 198, 251, 0.5), transparent 70%);
  animation: float1 13s ease-in-out infinite;
}

.download__bg::after {
  width: 300px;
  height: 300px;
  bottom: -130px;
  left: -70px;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.45), transparent 70%);
  animation: float2 15s ease-in-out infinite;
}

.download__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.download__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.download__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  margin-bottom: 36px;
}

.download__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: #0C1322;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  background: #161E30;
}

.store-btn__icon {
  flex-shrink: 0;
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-btn__text small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.store-btn__text strong {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
}

.download__note {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brand);
  color: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.footer__brand strong {
  font-weight: 800;
  color: #BCD4FF;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  width: 100%;
  max-width: 600px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal[data-reveal="up"] {
  transform: translateY(46px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-56px);
}

.reveal[data-reveal="right"] {
  transform: translateX(56px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__stats {
    justify-content: center;
  }

  .reveal[data-reveal="right"] {
    transform: translateY(46px);
  }

  .showcase__inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .showcase__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .showcase__list {
    text-align: left;
  }

  .reveal[data-reveal="left"] {
    transform: translateY(46px);
  }

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

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80%, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: -20px 0 60px rgba(12, 28, 64, 0.18);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    display: none;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__link,
  .nav__cta {
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }

  .nav__toggle {
    display: flex;
    z-index: 901;
  }

  .hide-mobile {
    display: none;
  }

  .hero__stats {
    gap: 24px;
  }

  .stat strong {
    font-size: 1.6rem;
  }
}

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

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

  .phone {
    width: 270px;
    height: 555px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    width: 100%;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .download__buttons {
    width: 100%;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1340px;
  }

  .hero__title {
    font-size: 5rem;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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