:root {
  --bg-dark: #060814;
  --bg-deep: #0d1027;
  --bg-mid: #15173b;
  --text-light: #f8f7ff;
  --text-muted: #b9bdd7;
  --text-dark: #171827;
  --text-soft: #5f6682;
  --surface-light: #fbfbff;
  --surface-card: rgba(15, 19, 44, 0.76);
  --surface-glass: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(174, 169, 255, 0.18);
  --line-light: rgba(103, 108, 153, 0.12);
  --accent: #7f63ff;
  --accent-strong: #6e49ff;
  --accent-soft: #c3b9ff;
  --accent-fade: rgba(127, 99, 255, 0.16);
  --shadow-dark: 0 30px 80px rgba(3, 6, 18, 0.55);
  --shadow-soft: 0 28px 70px rgba(102, 82, 208, 0.14);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top center, rgba(136, 107, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #fefeff, #f6f7fb 55%, #f3f4fa);
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  overflow: hidden;
  overflow: clip;
}

.hero {
  position: relative;
  padding: 1.5rem 0 14rem;
  color: var(--text-light);
  background:
    radial-gradient(circle at 50% 22%, rgba(144, 112, 255, 0.18), transparent 20%),
    radial-gradient(circle at 20% 35%, rgba(123, 76, 255, 0.12), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(72, 61, 184, 0.18), transparent 26%),
    linear-gradient(180deg, #070a18 0%, #090d1f 48%, #0b0d22 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.08), transparent 1.5px),
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.09), transparent 1.5px),
    radial-gradient(circle at 85% 42%, rgba(255, 255, 255, 0.08), transparent 1.8px),
    radial-gradient(circle at 24% 74%, rgba(255, 255, 255, 0.1), transparent 1.3px),
    radial-gradient(circle at 55% 67%, rgba(255, 255, 255, 0.08), transparent 1.5px),
    radial-gradient(circle at 39% 47%, rgba(255, 255, 255, 0.07), transparent 1.2px);
  opacity: 0.75;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8.5rem;
  width: min(1600px, 140vw);
  height: 18rem;
  transform: translateX(-50%);
  background: var(--surface-light);
  border-radius: 50%;
  box-shadow: 0 -8px 50px rgba(255, 255, 255, 0.14);
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(212, 198, 255, 0.9);
  box-shadow:
    0 0 0 2px rgba(212, 198, 255, 0.04),
    0 0 20px rgba(165, 133, 255, 0.65);
  animation: twinkle 5s ease-in-out infinite;
}

.star::before,
.star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

.star::before {
  width: 1px;
  height: 12px;
}

.star::after {
  width: 12px;
  height: 1px;
}

.star-1 {
  top: 14%;
  left: 15%;
  animation-delay: -0.8s;
}

.star-2 {
  top: 22%;
  right: 17%;
  width: 5px;
  animation-delay: -2.4s;
}

.star-3 {
  top: 48%;
  right: 8%;
  width: 6px;
  animation-delay: -3.2s;
}

.star-4 {
  top: 65%;
  left: 12%;
  width: 5px;
  animation-delay: -1.6s;
}

.star-5 {
  top: 32%;
  left: 74%;
  width: 4px;
  animation-delay: -4.1s;
}

.star-6 {
  top: 56%;
  left: 29%;
  width: 4px;
  animation-delay: -2.8s;
}

.site-header,
.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2rem;
  color: #ece5ff;
}

.brand-text {
  font-size: 1.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  color: rgba(248, 247, 255, 0.88);
  font-size: 0.98rem;
}

.main-nav a:not(.button) {
  transition: color 180ms ease;
}

.main-nav a:not(.button):hover,
.main-nav a:not(.button):focus-visible {
  color: #ffffff;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  cursor: pointer;
  border: 1px solid rgba(192, 181, 255, 0.22);
  border-radius: var(--radius-pill);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(194, 182, 255, 0.25), rgba(194, 182, 255, 0.05)),
    linear-gradient(135deg, #8d6dff, #7354ff 55%, #6948ff);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 12px 26px rgba(109, 78, 255, 0.35);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 16px 32px rgba(109, 78, 255, 0.45);
  filter: saturate(1.08);
}

.button-small {
  min-height: 3rem;
  padding: 0 1.4rem;
  font-weight: 600;
}

.button-large {
  min-height: 3.55rem;
  padding: 0 1.5rem;
  font-weight: 700;
  border-color: rgba(210, 202, 255, 0.3);
}

.button-arrow {
  width: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(220, 212, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 6rem;
}

.hero-content h1,
.section-heading h2,
.cta-branding h2 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.hero-content h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  line-height: 0.95;
}

.hero-content h1 span,
.cta-branding h2 span {
  color: var(--accent-soft);
  background: linear-gradient(135deg, #d7cfff 0%, #9e85ff 45%, #7761ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 38rem;
  margin: 1.6rem 0 2.2rem;
  color: var(--text-muted);
  font-size: 1.14rem;
  line-height: 1.75;
}

.waitlist-form {
  width: min(100%, 34rem);
  display: flex;
  align-items: center;
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 14, 31, 0.78);
  border: 1px solid rgba(197, 186, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(4, 7, 20, 0.38);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  height: 3.55rem;
  padding: 0 1.35rem;
  border: 0;
  outline: none;
  color: var(--text-light);
  background: transparent;
}

.waitlist-form input::placeholder {
  color: rgba(182, 187, 216, 0.72);
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 10, 22, 0.48);
  backdrop-filter: blur(8px);
}

.popup-backdrop[hidden] {
  display: none;
}

.popup-card {
  position: relative;
  width: min(100%, 29rem);
  padding: 2rem 1.6rem 1.5rem;
  color: var(--text-dark);
  background: rgba(250, 251, 255, 0.98);
  border: 1px solid rgba(207, 211, 232, 0.88);
  border-radius: 1.6rem;
  box-shadow: 0 18px 40px rgba(7, 10, 28, 0.18);
}

.popup-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(102, 108, 153, 0.1);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.popup-close:hover,
.popup-close:focus-visible {
  color: var(--text-dark);
  background: rgba(102, 108, 153, 0.14);
  transform: scale(1.03);
}

.popup-close span {
  font-size: 1.6rem;
  line-height: 1;
}

.popup-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1.3rem;
}

.popup-icon::before {
  font-size: 1.8rem;
  font-weight: 800;
}

.popup-icon[data-state="sent"] {
  color: #1d6a4f;
  background: rgba(208, 235, 223, 0.92);
}

.popup-icon[data-state="sent"]::before {
  content: "✓";
}

.popup-icon[data-state="error"] {
  color: #a33b4f;
  background: rgba(247, 220, 226, 0.96);
}

.popup-icon[data-state="error"]::before {
  content: "!";
}

.popup-title {
  margin: 0 0 0.55rem;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  letter-spacing: -0.03em;
}

.popup-message {
  margin: 0;
  color: #5a6078;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-note {
  margin: 1rem 0 0;
  color: rgba(199, 202, 223, 0.74);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  margin-top: 3.5rem;
}

.trail {
  position: absolute;
  width: 24rem;
  height: 8rem;
  filter: blur(0.3px);
  opacity: 0.95;
}

.trail::before,
.trail::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.trail::before {
  border: 2px solid rgba(128, 95, 255, 0.45);
  border-color: rgba(128, 95, 255, 0.55) transparent transparent transparent;
  box-shadow:
    0 0 30px rgba(121, 84, 255, 0.28),
    0 0 60px rgba(121, 84, 255, 0.16);
}

.trail::after {
  border: 1px solid rgba(189, 173, 255, 0.38);
  border-color: rgba(189, 173, 255, 0.6) transparent transparent transparent;
  inset: 0.6rem 0;
}

.trail-left {
  left: 18%;
  top: 16%;
  transform: rotate(18deg) scale(1.05);
  animation: drift-left 10s ease-in-out infinite;
}

.trail-right {
  right: 18%;
  top: 30%;
  transform: rotate(-18deg) scale(0.94);
  animation: drift-right 10s ease-in-out infinite;
}

.platform-glow {
  position: absolute;
  left: 50%;
  bottom: 2.7rem;
  width: 22rem;
  height: 8rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(175, 146, 255, 0.7), rgba(127, 99, 255, 0.15) 54%, transparent 72%);
  filter: blur(18px);
}

.platform-ring {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  border-radius: 50%;
}

.ring-1 {
  width: 18rem;
  height: 4rem;
  border: 2px solid rgba(160, 130, 255, 0.7);
  box-shadow: 0 0 25px rgba(120, 83, 255, 0.5);
}

.ring-2 {
  width: 24rem;
  height: 5.7rem;
  border: 1px solid rgba(126, 103, 232, 0.35);
}

.ring-3 {
  width: 30rem;
  height: 7rem;
  border: 1px solid rgba(126, 103, 232, 0.18);
}

.magic-card {
  position: absolute;
  left: 50%;
  bottom: 4.7rem;
  width: clamp(10.5rem, 18vw, 14.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: #efe8ff;
  background:
    linear-gradient(180deg, rgba(56, 51, 115, 0.98), rgba(28, 30, 82, 0.98));
  border: 1px solid rgba(203, 189, 255, 0.2);
  border-radius: 2.2rem;
  box-shadow:
    0 28px 70px rgba(7, 9, 25, 0.65),
    inset 0 1px 1px rgba(255, 255, 255, 0.24),
    0 0 0 1px rgba(179, 164, 255, 0.07);
  animation: float-card 7.5s ease-in-out infinite;
}

.magic-card svg,
.cta-icon svg {
  width: 45%;
}

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(189, 173, 255, 0.3);
  box-shadow:
    0 0 26px rgba(148, 121, 255, 0.35),
    inset 0 0 18px rgba(138, 107, 255, 0.08);
}

.main-content {
  position: relative;
  z-index: 1;
  background: var(--surface-light);
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-anchor {
  position: absolute;
  top: -7rem;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2,
.cta-branding h2 {
  color: var(--text-dark);
  font-size: clamp(2.1rem, 4.4vw, 3rem);
}

.heading-mark {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-radius: 4px;
  background: linear-gradient(135deg, #c9bfff, #7e62ff);
  box-shadow: 0 8px 22px rgba(126, 98, 255, 0.28);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(249, 250, 255, 0.92));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(213, 217, 245, 0.65);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-card {
  padding: 3.1rem 2.4rem;
  text-align: center;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--line-light);
}

.feature-card h3,
.step-card h3 {
  margin: 1.5rem 0 0.8rem;
  color: var(--text-dark);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.step-card p,
.cta-signup p,
.footer-brand p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.icon-chip {
  width: 4.7rem;
  height: 4.7rem;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: var(--accent);
  background: linear-gradient(180deg, rgba(244, 241, 255, 0.98), rgba(237, 233, 255, 0.88));
  border: 1px solid rgba(195, 185, 255, 0.45);
  border-radius: 1.45rem;
  box-shadow: 0 14px 28px rgba(124, 104, 231, 0.12);
}

.icon-chip svg {
  width: 2.15rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 1.25rem;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: calc(50% + 2.9rem);
  width: calc(100% - 1.4rem);
  border-top: 2px dashed rgba(139, 122, 255, 0.35);
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(248, 246, 255, 1), rgba(238, 235, 255, 1));
  border: 1px solid rgba(203, 194, 255, 0.6);
  border-radius: 1.15rem;
  box-shadow: 0 16px 26px rgba(124, 104, 231, 0.11);
}

.cta {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 2.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 255, 0.98)),
    radial-gradient(circle at top left, rgba(137, 112, 255, 0.12), transparent 30%);
  border: 1px solid rgba(216, 220, 244, 0.75);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.cta-branding {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-icon {
  width: 6.5rem;
  height: 6.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: rgba(135, 111, 255, 0.88);
  background: linear-gradient(180deg, rgba(248, 246, 255, 1), rgba(239, 236, 255, 0.94));
  border-radius: 1.8rem;
  border: 1px solid rgba(195, 185, 255, 0.45);
  box-shadow: 0 18px 38px rgba(124, 104, 231, 0.12);
}

.cta-branding .eyebrow {
  margin-bottom: 0.45rem;
  color: var(--text-soft);
}

.cta-signup {
  display: grid;
  gap: 1rem;
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.waitlist-form-compact {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(195, 185, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 32px rgba(124, 104, 231, 0.12);
}

.waitlist-form-compact input {
  color: var(--text-dark);
}

.waitlist-form-compact input::placeholder {
  color: rgba(100, 107, 143, 0.72);
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(185, 191, 225, 0.28);
}

.footer-brand .brand {
  color: var(--text-dark);
}

.footer-brand .brand-mark {
  color: #8c74ff;
}

.footer-brand p {
  margin-top: 0.4rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  color: var(--text-soft);
}

.footer-social {
  display: flex;
  gap: 1rem;
  color: var(--text-soft);
}

.footer-social a {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(123, 105, 236, 0.08);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-social a:hover {
  color: var(--accent-strong);
  background: rgba(123, 105, 236, 0.16);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 1.2rem;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

@keyframes drift-left {
  0%,
  100% {
    transform: rotate(18deg) scale(1.05) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(14deg) scale(1.07) translate3d(-12px, -8px, 0);
  }
}

@keyframes drift-right {
  0%,
  100% {
    transform: rotate(-18deg) scale(0.94) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-15deg) scale(0.98) translate3d(12px, -4px, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-direction: column;
    padding-top: 0.4rem;
  }

  .main-nav {
    gap: 1rem 1.35rem;
  }

  .feature-card,
  .cta-panel {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .trail-left {
    left: 8%;
  }

  .trail-right {
    right: 8%;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-bottom: 11rem;
  }

  .hero::after {
    bottom: -7rem;
    height: 14rem;
  }

  .feature-grid,
  .steps-grid,
  .cta-panel,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .feature-card + .feature-card,
  .cta-signup {
    border-left: 0;
  }

  .feature-card + .feature-card {
    border-top: 1px solid var(--line-light);
  }

  .step-card {
    padding: 0;
  }

  .step-card::after {
    display: none;
  }

  .cta-signup {
    padding-left: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-light);
  }

  .footer-layout {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .waitlist-form,
  .waitlist-form-compact {
    padding: 0.6rem;
    border-radius: 1.8rem;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 0.7rem;
    background: rgba(12, 16, 35, 0.86);
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }

  .button-large {
    min-height: 3.4rem;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .trail {
    width: 16rem;
    height: 5.5rem;
  }

  .trail-left {
    left: -3%;
    top: 26%;
  }

  .trail-right {
    right: -4%;
    top: 34%;
  }

  .platform-glow {
    width: 15rem;
    height: 6rem;
  }

  .ring-1 {
    width: 12rem;
    height: 2.8rem;
  }

  .ring-2 {
    width: 16rem;
    height: 3.9rem;
  }

  .ring-3 {
    width: 20rem;
    height: 5rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .cta-panel {
    padding: 1.6rem;
  }

  .cta-branding {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 1.1rem;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

  .hero-copy {
    margin-bottom: 1.8rem;
    line-height: 1.65;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .magic-card {
    border-radius: 1.7rem;
  }

  .feature-card {
    padding: 2.4rem 1.4rem;
  }

  .feature-card h3,
  .step-card h3 {
    font-size: 1.2rem;
  }

  .cta-branding {
    flex-direction: column;
    text-align: left;
  }

  .cta-icon {
    width: 5.3rem;
    height: 5.3rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}
