/* ==========================================================================
   LYAAQA — monochrome landing page
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --black-card: #161616;
  --white: #ffffff;
  --gray-050: #f6f6f4;
  --gray-100: #eeeeec;
  --gray-300: #c9c9c6;
  --gray-500: #8c8c88;
  --gray-600: #6b6b68;
  --gray-800: #232320;
  --line-on-dark: rgba(255, 255, 255, 0.14);
  --line-on-dark-soft: rgba(255, 255, 255, 0.08);
  --line-on-light: rgba(10, 10, 10, 0.1);

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;

  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
}
p {
  margin: 0;
}
em {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
.container--narrow {
  max-width: 840px;
}

::selection {
  background: var(--black);
  color: var(--white);
}

/* on touch devices, hide custom cursor + restore default */
@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: fixed;
  width: 6px;
  height: 6px;
  margin: -3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.15s var(--ease);
}
.cursor__ring {
  position: fixed;
  width: 36px;
  height: 36px;
  margin: -18px;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    margin 0.3s var(--ease),
    border-color 0.3s;
}
.cursor.is-hover .cursor__ring {
  width: 64px;
  height: 64px;
  margin: -32px;
  background: var(--white);
}
.cursor.is-hover .cursor__dot {
  transform: scale(0);
}

/* ==========================================================================
   Noise overlay
   ========================================================================== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Reveal-on-scroll utility
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-soft),
    transform 0.8s var(--ease-soft);
  transition-delay: calc(var(--rd, 0) * 70ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition:
    padding 0.4s var(--ease),
    background-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line-on-dark-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav__links {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--white);
  transition: right 0.35s var(--ease);
}
.nav__links a:hover {
  color: var(--white);
}
.nav__links a:hover::after {
  right: 0;
}

.nav__cta {
  font-size: 13px;
  padding: 12px 22px;
}

.nav__burger {
  display: none;
  width: 32px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.nav__burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    top 0.3s var(--ease);
}
.nav__burger span:first-child {
  top: 0;
}
.nav__burger span:last-child {
  top: 20px;
}
.nav__burger[aria-expanded="true"] span:first-child {
  top: 10px;
  transform: rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  top: 10px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ==========================================================================
   Buttons / badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition:
    transform 0.35s var(--ease),
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
  will-change: transform;
}
.btn--pill {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn--pill:hover {
  background: var(--white);
  color: var(--black);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--line-on-light);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--line-on-dark);
  border-radius: 14px;
  color: var(--white);
  transition:
    transform 0.35s var(--ease),
    background-color 0.3s,
    border-color 0.3s;
}
.store-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}
.store-badge__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-weight: 700;
  font-size: 15px;
}
.store-badge span em {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.store-badge--light {
  color: var(--black);
  border-color: var(--line-on-light);
}
.store-badge--light:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(var(--line-on-dark-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-on-dark-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black 40%,
    transparent 90%
  );
}
.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  left: 50%;
  top: 20%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-soft);
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 8px 18px;
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  margin-bottom: 34px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9.6vw, 138px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 34px;
}
.hero__title em {
  color: var(--gray-500);
  font-style: normal;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line__inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s + 0.15s);
}
.hero__title .line:nth-child(1) .line__inner {
  --i: 0;
}
.hero__title .line:nth-child(2) .line__inner {
  --i: 1;
}
.hero__title .line:nth-child(3) .line__inner {
  --i: 2;
}

@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}

.hero__sub {
  max-width: 560px;
  margin: 0 auto 42px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-300);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: var(--line-on-dark);
  overflow: hidden;
}
.hero__scroll-line i {
  display: block;
  width: 100%;
  height: 16px;
  background: var(--white);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(140%);
  }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-on-dark-soft);
  border-bottom: 1px solid var(--line-on-dark-soft);
  overflow: hidden;
  padding: 20px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  padding-inline: 6px;
}
.marquee__dot {
  color: var(--gray-600);
  padding-inline: 20px !important;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Section heads / tags
   ========================================================================== */
.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

/* ==========================================================================
   Feature sections + phone mockup
   ========================================================================== */
.feature {
  padding: 130px 0;
}
.feature--alt {
  background: var(--gray-050);
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.feature__grid--reverse .feature__copy {
  order: 2;
}
.feature__grid--reverse .feature__visual {
  order: 1;
}

.feature__copy {
  max-width: 460px;
}
.feature__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.feature__title em {
  color: var(--gray-500);
  font-style: normal;
}
.feature__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--black);
}

.feature__visual {
  display: flex;
  justify-content: center;
}

/* -- realistic iPhone mockup, wraps a real screenshot -- */
.iphone-stage {
  perspective: 1800px;
  padding: 40px;
}
.iphone {
  position: relative;
  width: 272px;
  transform-style: preserve-3d;
  transform: rotateY(-16deg) rotateX(5deg);
  transition: transform 0.6s var(--ease-soft);
}
.iphone-stage:hover .iphone {
  transform: rotateY(-7deg) rotateX(2deg) scale(1.015);
}
.iphone--flip {
  transform: rotateY(16deg) rotateX(5deg);
}
.iphone-stage:hover .iphone--flip {
  transform: rotateY(7deg) rotateX(2deg) scale(1.015);
}

.iphone__float {
  animation: iphoneFloat 6s ease-in-out infinite;
}
@keyframes iphoneFloat {
  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-16px) translateZ(0);
  }
}

.iphone__frame {
  position: relative;
  border-radius: 52px;
  padding: 13px;
  background: linear-gradient(
    155deg,
    #4a4a4d 0%,
    #121214 22%,
    #050505 55%,
    #38383b 100%
  );
  box-shadow:
    0 70px 110px -35px rgba(0, 0, 0, 0.5),
    0 30px 50px -25px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.iphone__screen {
  position: relative;
  aspect-ratio: 368 / 800;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.iphone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-soft);
}
.iphone-stage:hover .iphone__screen img {
  transform: scale(1);
}
.iphone__gloss {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 22%,
    rgba(255, 255, 255, 0) 68%,
    rgba(255, 255, 255, 0.06) 100%
  );
}
.iphone__btn {
  position: absolute;
  background: linear-gradient(90deg, #060606, #2e2e31);
  border-radius: 3px 0 0 3px;
}
.iphone--flip .iphone__btn {
  border-radius: 0 3px 3px 0;
}
.iphone__btn--mute {
  left: -3px;
  top: 108px;
  width: 3px;
  height: 26px;
}
.iphone__btn--vol-up {
  left: -3px;
  top: 156px;
  width: 3px;
  height: 44px;
}
.iphone__btn--vol-down {
  left: -3px;
  top: 210px;
  width: 3px;
  height: 44px;
}
.iphone__btn--power {
  right: -3px;
  top: 170px;
  width: 3px;
  height: 64px;
  border-radius: 0 3px 3px 0;
}
.iphone--flip .iphone__btn--power {
  border-radius: 3px 0 0 3px;
}

.iphone__caption {
  position: absolute;
  left: 50%;
  bottom: -46px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ==========================================================================
   How it works
   ========================================================================== */
.how {
  padding: 130px 0;
  background: var(--black);
  color: var(--white);
}
.how .section-title {
  color: var(--white);
}
.how .tag {
  color: var(--gray-500);
}
.how__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-dark-soft);
  border-top: 1px solid var(--line-on-dark-soft);
}
.how__item {
  background: var(--black);
  padding: 36px 28px 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}
.how__num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 26px;
}
.how__item h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}
.how__item p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing {
  padding: 130px 0;
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
}
.pricing__toggle .is-active {
  color: var(--black);
}
.pricing__toggle em {
  color: var(--gray-500);
  font-weight: 600;
}
.toggle-switch {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: var(--black);
  position: relative;
  padding: 0;
}
.toggle-switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.35s var(--ease);
}
.toggle-switch.is-on i {
  transform: translateX(22px);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  border: 1px solid var(--line-on-light);
  border-radius: 26px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.25);
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.price-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 6px;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 26px 0 4px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.01em;
}
.price-card__price small {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
}
.price-card__note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-bottom: 22px;
  min-height: 16px;
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.price-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--gray-800);
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 1px;
  background: var(--black);
}
.price-card .btn {
  margin-top: auto;
}

.price-card--featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: scale(1.03);
}
.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.price-card--featured .price-card__desc {
  color: var(--gray-300);
}
.price-card--featured .price-card__price small {
  color: var(--gray-500);
}
.price-card--featured .price-card__note {
  color: var(--gray-500);
}
.price-card--featured ul li {
  color: var(--gray-100);
}
.price-card--featured ul li::before {
  background: var(--white);
}
.price-card__badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card--featured .btn--pill {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.price-card--featured .btn--pill:hover {
  background: transparent;
  color: var(--white);
}

.pricing__foot {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray-500);
}

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */
.faq {
  padding: 130px 0;
  background: var(--gray-050);
}

.accordion__item {
  border-bottom: 1px solid var(--line-on-light);
}
.accordion__item:first-child {
  border-top: 1px solid var(--line-on-light);
}
.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}
.accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--black);
  transition: transform 0.35s var(--ease);
}
.accordion__icon::before {
  width: 18px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.accordion__icon::after {
  width: 1.5px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.5s var(--ease-soft),
    opacity 0.4s;
}
.accordion__body > p {
  overflow: hidden;
  padding-right: 60px;
}
.accordion__item.is-open .accordion__body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.accordion__body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray-600);
  padding-bottom: 26px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta {
  background: var(--black);
  color: var(--white);
  padding: 160px 0;
}
.cta__inner {
  text-align: center;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 46px;
}
.cta__title em {
  color: var(--gray-500);
  font-style: normal;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--white);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-on-light);
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
  max-width: 280px;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14.5px;
  color: var(--black);
  transition: opacity 0.3s;
}
.footer__col a:hover {
  opacity: 0.5;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--gray-500);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .feature__grid {
    gap: 56px;
  }
  .how__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: block;
  }
  .nav__cta {
    display: none;
  }

  .feature__grid,
  .feature__grid--reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature__grid--reverse .feature__copy,
  .feature__grid--reverse .feature__visual {
    order: initial;
  }
  .feature__copy {
    margin-inline: auto;
  }
  .feature__list {
    text-align: left;
    width: max-content;
    margin-inline: auto;
  }
  .feature__visual {
    order: -1;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .price-card--featured {
    transform: none;
  }
  .price-card--featured:hover {
    transform: translateY(-6px);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .how__list {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 130px;
  }
  .hero__title {
    font-size: clamp(44px, 13vw, 80px);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__scroll {
    display: none;
  }
  .iphone-stage {
    padding: 20px;
  }
  .iphone {
    width: 220px;
  }
  .iphone__btn--mute {
    top: 88px;
    height: 20px;
  }
  .iphone__btn--vol-up {
    top: 126px;
    height: 36px;
  }
  .iphone__btn--vol-down {
    top: 170px;
    height: 36px;
  }
  .iphone__btn--power {
    top: 138px;
    height: 52px;
  }
  .accordion__body > p {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
