*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #050816;
  --bg-soft: #070b18;
  --bg-muted: #0b1020;
  --accent: #7f5cff;
  --accent-soft: rgba(127, 92, 255, 0.18);
  --accent-strong: #a08cff;
  --accent-secondary: #22c1c3;
  --text: #e2e7ff;
  --text-muted: #98a0c8;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(127, 92, 255, 0.45);
  --blur-card: 18px;
  --transition-fast: 180ms ease-out;
  --transition-med: 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(
    circle at top left,
    #171f3a 0,
    #050816 46%,
    #020412 100%
  );
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* Background orbs */

.bg-glow {
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.bg-glow--one {
  background: radial-gradient(circle, #7f5cff, transparent 60%);
  top: -120px;
  left: -120px;
  animation: floatGlow 22s ease-in-out infinite alternate;
}

.bg-glow--two {
  background: radial-gradient(circle, #22c1c3, transparent 60%);
  bottom: -160px;
  right: -120px;
  animation: floatGlow 26s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60px, -40px, 0);
  }
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.92),
    rgba(5, 8, 22, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
}

.brand-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #7f5cff 66%);
  box-shadow: 0 0 18px rgba(127, 92, 255, 0.8);
}

.brand-orbit {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(127, 92, 255, 0.4);
}

.brand-orbit--one {
  transform: rotate(18deg);
}
.brand-orbit--two {
  transform: rotate(-22deg) scale(0.86);
  border-color: rgba(34, 193, 195, 0.8);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 1.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #7f5cff, #22c1c3);
  transition: width var(--transition-med);
}

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

.nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 4.25rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 1.3rem;
}

.hero-gradient {
  background: linear-gradient(120deg, #7f5cff 0%, #22c1c3 45%, #f8ffae 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    border-color var(--transition-fast), color var(--transition-fast);
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(130deg, #7f5cff 0%, #22c1c3 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  color: #070b18;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 22, 0.2);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--text);
  background: rgba(5, 8, 22, 0.4);
}

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

.btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  opacity: 0;
  transform: scale(0.9);
  animation: btnPulse 2.7s ease-out infinite;
  pointer-events: none;
}

@keyframes btnPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.94);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.78rem;
}

.meta-item {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at top left,
    rgba(127, 92, 255, 0.18),
    rgba(5, 8, 22, 0.2)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(var(--blur-card));
}

.meta-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.meta-value {
  font-weight: 500;
}

.hero-device {
  position: relative;
  display: flex;
  justify-content: center;
}

.device-frame {
  position: relative;
  width: min(320px, 100%);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(145deg, #161b2b, #262f49);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-16deg) rotateX(10deg);
  animation: floatDevice 7s ease-in-out infinite alternate;
}

.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: #0c1020;
}

.device-screen {
  border-radius: 26px;
  background: radial-gradient(circle at top, #151b2f, #050816 60%);
  padding: 0.85rem 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.device-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.device-card {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 14px;
  padding: 0.7rem 0.7rem;
  margin-top: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  position: relative;
}

.device-card h3 {
  margin: 0 0 0.1rem;
  font-size: 0.8rem;
}

.device-card p {
  margin: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.device-card--primary {
  background: radial-gradient(
    circle at top left,
    rgba(127, 92, 255, 0.25),
    transparent 60%
  );
}

.device-card--secondary {
  background: radial-gradient(
    circle at top right,
    rgba(34, 193, 195, 0.24),
    transparent 60%
  );
}

.device-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex-shrink: 0;
}

.device-icon--primary {
  background: conic-gradient(from 160deg, #7f5cff, #a08cff, #22c1c3, #7f5cff);
}

.device-icon--secondary {
  background: conic-gradient(from 220deg, #22c1c3, #f8ffae, #7f5cff, #22c1c3);
}

.device-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.device-pill {
  font-size: 0.65rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.device-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.store-badges-inline {
  display: flex;
  gap: 0.25rem;
}

.store-badge {
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.62rem;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(127, 92, 255, 0.45);
  animation: spinOrbit 38s linear infinite;
}

.hero-orbit--outer {
  inset: -10%;
}

.hero-orbit--inner {
  inset: 5%;
  border-style: solid;
  border-color: rgba(34, 193, 195, 0.6);
  animation-duration: 32s;
  animation-direction: reverse;
}

.hero-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f8ffae;
  box-shadow: 0 0 16px rgba(248, 255, 174, 0.8);
}

.hero-orbit-dot--one {
  top: -6px;
  left: 12%;
  animation: orbitDot 12s linear infinite;
}

.hero-orbit-dot--two {
  bottom: -6px;
  right: 18%;
  animation: orbitDot 14s linear infinite reverse;
}

@keyframes spinOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitDot {
  from {
    transform: rotate(0deg) translateX(4px);
  }
  to {
    transform: rotate(360deg) translateX(4px);
  }
}

@keyframes floatDevice {
  from {
    transform: perspective(1200px) rotateY(-18deg) rotateX(11deg) translateY(0);
  }
  to {
    transform: perspective(1200px) rotateY(-16deg) rotateX(8deg)
      translateY(-10px);
  }
}

.hero-scroll-indicator {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #7f5cff, rgba(127, 92, 255, 0));
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  transform: translateY(-100%);
  animation: scrollHint 1.7s ease-in-out infinite;
}

@keyframes scrollHint {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Sections */

.section {
  padding: 3.7rem 0;
}

.section--muted {
  background: radial-gradient(
    circle at top,
    rgba(127, 92, 255, 0.08),
    rgba(5, 8, 22, 0.9)
  );
}

.section--accent {
  background: radial-gradient(
    circle at top left,
    rgba(127, 92, 255, 0.18),
    #050816 60%
  );
}

.section-header {
  margin-bottom: 2.2rem;
  max-width: 34rem;
}

.section-header h2 {
  margin: 0 0 0.7rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    135deg,
    rgba(14, 18, 40, 0.96),
    rgba(7, 9, 26, 0.96)
  );
  padding: 1.15rem 1.1rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(var(--blur-card));
  transform-origin: center top;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), background var(--transition-med),
    translate var(--transition-med);
}

.card--app {
  overflow: hidden;
}

.card--app::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 160deg,
    rgba(127, 92, 255, 0.4),
    transparent 45%,
    rgba(34, 193, 195, 0.35),
    transparent 80%
  );
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med);
  transform: translate3d(-20px, 0, 0);
}

.card--app:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.card:hover {
  transform: translateY(-6px) translateZ(0) scale(1.01);
  border-color: rgba(127, 92, 255, 0.6);
  box-shadow: var(--shadow-glow);
}

.card-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.88);
  border: 1px solid rgba(248, 255, 174, 0.7);
  color: #f8ffae;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.card-copy {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.87rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-muted);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.rating {
  color: #f8ffae;
}

.meta {
  color: var(--text-muted);
}

.card--service .card-list {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.card--service .card-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.card--service .card-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(130deg, #7f5cff, #22c1c3);
}

/* Stores row */

.store-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.4rem;
}

.store-text h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
}

.store-text p {
  margin: 0;
  color: var(--text-muted);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 8, 22, 0.95);
  min-width: 170px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), background var(--transition-med);
}

.store-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(127, 92, 255, 0.6);
}

.store-pill--apple {
  background: radial-gradient(
    circle at top left,
    rgba(127, 92, 255, 0.26),
    #050816
  );
}

.store-pill--google {
  background: radial-gradient(
    circle at top right,
    rgba(34, 193, 195, 0.28),
    #050816
  );
}

.store-icon {
  font-size: 1.4rem;
}

.store-icon--play {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: conic-gradient(
    from 140deg,
    #00c853,
    #00c853,
    #00b0ff,
    #00b0ff,
    #ffea00,
    #ffea00,
    #ff1744,
    #ff1744,
    #00c853
  );
  -webkit-mask: polygon(0 0, 100% 50%, 0 100%);
  mask: polygon(0 0, 100% 50%, 0 100%);
}

.store-label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.store-name {
  display: block;
  font-size: 0.9rem;
}

/* Timeline */

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(127, 92, 255, 0.7),
    rgba(34, 193, 195, 0.4)
  );
  opacity: 0.8;
}

.timeline-items {
  margin-left: 0;
  padding-left: 0;
}

.timeline-item {
  position: relative;
  padding-left: 3.1rem;
  margin-bottom: 1.8rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0.85rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f8ffae;
  box-shadow: 0 0 18px rgba(248, 255, 174, 0.9);
}

.timeline-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-copy h2 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
}

.contact-copy p {
  margin: 0;
  color: var(--text-muted);
}

.contact-points {
  list-style: none;
  padding-left: 0;
  margin: 1.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.contact-points li {
  margin-bottom: 0.4rem;
}

.contact-form {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    140deg,
    rgba(10, 13, 32, 0.96),
    rgba(18, 24, 56, 0.98)
  );
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 7, 18, 0.95);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    transform var(--transition-fast);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(152, 160, 200, 0.7);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(127, 92, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(127, 92, 255, 0.9);
  background: rgba(3, 7, 18, 0.98);
  transform: translateY(-1px);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-note {
  margin: 0.7rem 0 0;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0 1.6rem;
  background: radial-gradient(
    circle at top,
    rgba(10, 13, 32, 0.98),
    #050816 70%
  );
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-brand .brand-name {
  font-weight: 500;
  margin-right: 0.4rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease-out,
    transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr);
  }
  .hero-device {
    order: -1;
    margin-bottom: 1.4rem;
  }
  .hero {
    padding-top: 3.2rem;
  }
  .grid--cards,
  .grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .store-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .store-buttons {
    justify-content: flex-start;
  }
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-block: 0.9rem;
  }
  .nav {
    gap: 1rem;
    font-size: 0.76rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-inner {
    gap: 2.1rem;
  }
  .hero-meta {
    gap: 0.7rem;
  }
  .grid--cards,
  .grid--services {
    grid-template-columns: minmax(0, 1fr);
  }
  .timeline-line {
    left: 0.6rem;
  }
  .timeline-dot {
    left: 0.45rem;
  }
  .timeline-item {
    padding-left: 2.4rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    justify-content: space-between;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .store-pill {
    width: 100%;
  }
}
