:root {
  --bg-main: #090d33;
  --bg-deep: #050823;
  --bg-soft: #12184d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-soft: rgba(255, 255, 255, 0.04);

  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);

  --text-main: #f7f5ff;
  --text-soft: rgba(247, 245, 255, 0.78);
  --text-dim: rgba(247, 245, 255, 0.5);

  --violet-1: #7b39ff;
  --violet-2: #4c5dff;
  --violet-3: #b06dff;
  --blue-1: #7ee3ff;
  --silver: #e7e7ef;

  --shadow-1: 0 12px 30px rgba(0, 0, 0, 0.2);
  --shadow-2: 0 20px 52px rgba(0, 0, 0, 0.28);
  --shadow-3: 0 36px 90px rgba(0, 0, 0, 0.36);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  --container: 1240px;
  --header-height: 86px;
  --transition: 0.34s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(123, 57, 255, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(76, 93, 255, 0.18),
      transparent 20%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(176, 109, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #070a29 0%, #0a0f35 42%, #080a24 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.8;
}

.orb-1 {
  width: 28rem;
  height: 28rem;
  left: -8rem;
  top: -8rem;
  background: rgba(123, 57, 255, 0.22);
}

.orb-2 {
  width: 20rem;
  height: 20rem;
  right: -4rem;
  top: 10rem;
  background: rgba(76, 93, 255, 0.2);
}

.orb-3 {
  width: 22rem;
  height: 22rem;
  left: 42%;
  bottom: -8rem;
  background: rgba(126, 227, 255, 0.14);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 84%);
}

.bg-stars {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.9) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(255, 255, 255, 0.7) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 38% 74%,
      rgba(255, 255, 255, 0.85) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(255, 255, 255, 0.7) 0.8px,
      transparent 1px
    );
  background-size: 220px 220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: var(--header-height);
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(8, 10, 34, 0.92),
    rgba(8, 10, 34, 0.68)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-1), var(--violet-2));
  box-shadow: 0 18px 38px rgba(123, 57, 255, 0.22);
}

.brand-mark.small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy small {
  color: var(--text-dim);
}

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

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active-link {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
}

.hero {
  position: relative;
  padding: 74px 0 34px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-1), var(--violet-2));
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.hero-tag.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  max-width: 11ch;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.88;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--violet-1),
    var(--violet-2),
    var(--violet-3)
  );
  box-shadow: 0 18px 42px rgba(123, 57, 255, 0.24);
}

.btn-secondary {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.btn-wide {
  min-width: 260px;
}

.hero-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-stat {
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    var(--surface-strong),
    var(--surface-soft)
  );
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-1);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 860px;
}

.hero-phone,
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-3);
}

.hero-phone-main {
  right: 0;
  top: 12px;
  width: min(360px, 46%);
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(21, 26, 78, 0.98),
    rgba(6, 8, 33, 0.98)
  );
}

.hero-phone-main img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
}

.device-notch {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 35%;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: #0a1039;
  z-index: 2;
}

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

.hero-card-a {
  left: 0;
  top: 80px;
  width: min(270px, 34%);
}

.hero-card-b {
  left: 48px;
  bottom: 42px;
  width: min(300px, 38%);
}

.hero-note {
  position: absolute;
  max-width: 236px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-2);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
}

.hero-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
  font-size: 0.94rem;
}

.note-a {
  left: 20px;
  top: 380px;
}

.note-b {
  right: 20px;
  bottom: 140px;
}

.section {
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  max-width: 14ch;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 16px;
}

.intro-panel {
  padding: 38px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-2);
}

.intro-panel h2 {
  margin: 0;
  max-width: 18ch;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow-1);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet-1), var(--violet-2));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 14px 0 12px;
  font-size: 1.22rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 40px;
  align-items: start;
}

.journey-copy {
  position: sticky;
  top: 104px;
}

.journey-copy h2 {
  margin: 0 0 18px;
  max-width: 13ch;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.journey-steps {
  display: grid;
  gap: 16px;
}

.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  cursor: pointer;
}

.journey-step:hover,
.journey-step.active-step {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2);
}

.journey-step > span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-1), var(--violet-2));
}

.journey-step h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.28;
}

.journey-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.journey-frame {
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-3);
}

.journey-device {
  position: relative;
  width: min(370px, 100%);
  margin: 0 auto;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(21, 26, 78, 0.98),
    rgba(6, 8, 33, 0.98)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  transition: transform 0.2s ease;
}

.journey-device img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
}

.journey-caption {
  margin-top: 22px;
}

.journey-caption small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.journey-caption h3 {
  margin: 0 0 10px;
  font-size: 1.48rem;
}

.journey-caption p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.highlight-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-2);
  display: grid;
  gap: 20px;
}

.highlight-large {
  grid-row: span 2;
}

.highlight-wide {
  grid-column: span 2;
}

.highlight-copy h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.highlight-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.76;
}

.highlight-media img {
  border-radius: 24px;
  box-shadow: var(--shadow-1);
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.app-carousel {
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-3);
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.carousel-meta small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.carousel-meta h3 {
  margin: 0;
  font-size: 1.5rem;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--text-main);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.24rem;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.carousel-stage {
  overflow: hidden;
  border-radius: 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px;
}

.carousel-slide img {
  width: min(390px, 100%);
  border-radius: 28px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  box-shadow: var(--shadow-3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: var(--transition);
}

.carousel-dots button.active-dot {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--violet-1),
    var(--violet-2),
    var(--violet-3)
  );
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 28px 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-1);
  transition: var(--transition);
}

.review-card:hover,
.featured-review {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-2);
}

.review-stars {
  color: var(--blue-1);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.review-user {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.review-user span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at left center,
      rgba(123, 57, 255, 0.18),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-3);
}

.download-copy h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.download-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  max-width: 62ch;
}

.download-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 30px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 38, 0.66);
  backdrop-filter: blur(12px);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

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

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

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

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.privacy-main {
  padding: 24px 0 82px;
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-1);
}

.privacy-card h2 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.privacy-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.84;
}

.privacy-card a {
  color: var(--blue-1);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@media (max-width: 1220px) {
  .hero-layout,
  .journey-layout,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .highlight-large,
  .highlight-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .journey-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    min-height: 700px;
  }

  .hero-phone-main,
  .hero-card-a,
  .hero-card-b,
  .note-a,
  .note-b {
    position: static;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: auto;
  }

  .hero-phone-main,
  .hero-card-a,
  .hero-card-b {
    width: 100%;
  }

  .split-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(8, 10, 34, 0.98);
    box-shadow: var(--shadow-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 38px;
  }

  .section {
    padding: 74px 0;
  }

  .hero-copy h1,
  .intro-panel h2,
  .section-heading h2,
  .journey-copy h2,
  .download-copy h2 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }

  .intro-panel,
  .feature-card,
  .journey-step,
  .journey-frame,
  .highlight-card,
  .app-carousel,
  .review-card,
  .download-panel,
  .privacy-card {
    border-radius: 24px;
  }

  .carousel-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .privacy-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
