:root {
  --bg: #eef2f6;
  --bg-deep: #dfe7f0;
  --ink: #0b1220;
  --muted: #5b6b7c;
  --brand: #ff6b00;
  --brand-deep: #e85d00;
  --brand-soft: rgba(255, 107, 0, 0.14);
  --line: rgba(11, 18, 32, 0.1);
  --surface: rgba(255, 255, 255, 0.72);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Syne", "Plus Jakarta Sans", sans-serif;
  --radius-phone: 28px;
  --shadow-phone: 0 28px 70px rgba(11, 18, 32, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.mesh {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(255, 107, 0, 0.18), transparent 58%),
    radial-gradient(800px 480px at 88% 8%, rgba(56, 120, 180, 0.16), transparent 55%),
    linear-gradient(180deg, #f5f7fa 0%, #e8eef5 45%, #f3f6f9 100%);
}

.orb {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(48px);
  z-index: -1;
  opacity: 0.55;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: 18%;
  left: -8%;
  background: rgba(255, 107, 0, 0.28);
}

.orb-b {
  width: 420px;
  height: 420px;
  top: 55%;
  right: -12%;
  background: rgba(70, 130, 190, 0.22);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #ffb060);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.45);
}

.cursor-glow {
  display: none;
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.14), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
  }

  body.is-cursor-ready .cursor-glow {
    opacity: 1;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(238, 242, 246, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.nav-brand img {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 107, 0, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vh, 2rem);
  min-height: auto;
  padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 4vw, 3rem) clamp(2.5rem, 6vh, 3.5rem);
  overflow: hidden;
}

.hero-stage {
  position: relative;
  width: min(100%, 1100px);
  height: min(520px, 58vh);
  z-index: 1;
  flex-shrink: 0;
}

.hero-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 900px;
}

.hero-art {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, 34vw);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(11, 18, 32, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.95);
  object-fit: cover;
  will-change: transform;
  background: #fff;
  opacity: 1;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.hero-art.is-hero-focus {
  z-index: 5;
  box-shadow: 0 32px 64px rgba(11, 18, 32, 0.28);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-hero {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4.5rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding-bottom: 0.06em;
}

.brand-hero .brand-letter {
  display: inline-block;
  will-change: transform, opacity;
}

.brand-hero::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 5px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #ffb060);
  transform-origin: center;
}

.hero-lead {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--muted);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  will-change: transform;
}

.marquee-track span {
  white-space: nowrap;
}

.marquee-track span::before {
  content: "·";
  margin-right: 2.5rem;
  color: var(--brand);
}

.strip,
.showcase,
.roles,
.features,
.download {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.section-title.is-clip {
  overflow: hidden;
  padding-bottom: 0.12em;
}

.section-title .clip-inner {
  display: block;
  will-change: transform;
}

.section-sub {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps-wrap {
  position: relative;
  margin: 3rem auto 0;
  max-width: 1100px;
}

.steps-rail {
  display: none;
  position: absolute;
  top: 1.15rem;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.08);
  overflow: hidden;
  z-index: 0;
}

.steps-rail-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #ffb060);
}

@media (min-width: 901px) {
  .steps-rail {
    display: block;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.steps li {
  padding: 0.25rem 0.5rem;
  transition: transform 0.35s ease;
}

.steps li.is-step-hot .step-num {
  transform: scale(1.06);
  color: var(--brand-deep);
}

.step-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: transform 0.35s ease, color 0.35s ease;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.showcase {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.showcase-head {
  margin-bottom: 2.5rem;
}

.carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.carousel-stage {
  overflow: hidden;
  width: 100%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(11, 18, 32, 0.08);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-track {
  display: flex;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  min-height: 340px;
  opacity: 0.35;
  transition: opacity 0.35s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  background: #e8eef5;
}

.carousel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.carousel-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.carousel-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.carousel-copy p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.carousel-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.carousel-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(11, 18, 32, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.is-active {
  width: 26px;
  background: var(--brand);
}

.role-row {
  margin: 2.75rem auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.role-card {
  padding: 0.35rem 0.15rem;
  border-radius: 18px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

.role-card:hover {
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
}

.role-row h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.role-row h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 0.55rem;
  vertical-align: middle;
}

.role-row p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  margin: 2.5rem auto 0;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--brand);
}

.feature-list li.is-wiped::before {
  width: 100%;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-list strong {
  color: var(--ink);
  font-weight: 700;
}

.plans {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.plan-grid {
  margin: 2.75rem auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.plan-card {
  padding: 1.6rem 1.4rem 1.7rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-tilt:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 22px 48px rgba(11, 18, 32, 0.1);
}

.plan-card-featured {
  border-color: rgba(255, 107, 0, 0.45);
  background: linear-gradient(165deg, #fff 0%, #fff4ea 100%);
  box-shadow: 0 18px 40px rgba(255, 107, 0, 0.12);
}

.plan-tag {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.plan-card h3 {
  margin: 0.45rem 0 0;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.plan-price {
  margin: 0.85rem 0 0;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.plan-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-cap {
  margin: 0.35rem 0 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.plan-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.rating {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.rating-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.rating-stars {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  letter-spacing: 0.28em;
  color: var(--brand);
  line-height: 1;
}

.rating .section-title {
  margin-bottom: 0.5rem;
}

.rating .section-sub {
  margin: 0 auto 1.5rem;
}

.rating .btn {
  display: inline-flex;
}

.credits {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.credits-grid {
  margin: 2.75rem auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.credits-card {
  padding: 1.6rem 1.4rem 1.7rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.credits-card-wide {
  grid-column: 1 / -1;
}

.credits-tag {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.credits-card h3 {
  margin: 0.45rem 0 0;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.credits-meta {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.credits-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.credits-link:hover {
  text-decoration: underline;
}

.credits-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.credits-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.credits-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.credits-list span {
  color: var(--muted);
}

.credits-list strong {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.credits-card-wide > p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 36rem;
}

.credits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.credits-oss {
  margin: 1.15rem 0 0 !important;
  font-size: 0.82rem !important;
  color: var(--muted);
}

.download {
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.download-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 28px;
  background: linear-gradient(160deg, #0f1724 0%, #1a2740 100%);
  color: #f4f7fb;
  box-shadow: 0 30px 70px rgba(15, 23, 36, 0.28);
  position: relative;
  overflow: hidden;
}

.download-inner::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 0, 0.22), transparent 45%);
  pointer-events: none;
  animation: download-glow 7s ease-in-out infinite alternate;
}

@keyframes download-glow {
  from {
    transform: translate(-6%, -4%) scale(1);
    opacity: 0.7;
  }
  to {
    transform: translate(8%, 6%) scale(1.12);
    opacity: 1;
  }
}

.download-inner > * {
  position: relative;
  z-index: 1;
}

.download-icon {
  margin: 0 auto 1rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.download-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
}

.download-inner > p {
  margin: 0.9rem 0 0;
  color: rgba(244, 247, 251, 0.72);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.download .btn-ghost {
  color: #f4f7fb;
  border-color: rgba(244, 247, 251, 0.25);
}

.download .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fineprint {
  margin: 1.4rem 0 0;
  font-size: 0.8rem;
  color: rgba(244, 247, 251, 0.45);
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-copy {
  text-align: left;
  max-width: 40rem;
}

.footer-copy p {
  margin: 0;
}

.footer-links {
  margin-top: 0.45rem !important;
  line-height: 1.6;
}

.footer-credits {
  margin-top: 0.55rem !important;
  font-size: 0.8rem;
  color: rgba(91, 107, 124, 0.9);
}

.footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.footer img {
  border-radius: 8px;
}

[data-animate] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow,
  .scroll-progress {
    display: none !important;
  }

  .download-inner::after {
    animation: none;
  }

  [data-animate] {
    opacity: 1 !important;
  }
}

@media (max-width: 900px) {
  .orb {
    opacity: 0.28;
    filter: blur(40px);
  }

  .orb-a {
    width: 180px;
    height: 180px;
  }

  .orb-b {
    width: 200px;
    height: 200px;
  }

  .nav {
    padding: 0.7rem 1rem;
    gap: 0.65rem;
  }

  .nav-brand {
    font-size: 1.05rem;
    min-width: 0;
  }

  .nav-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    display: none;
  }

  .nav .btn-sm {
    flex-shrink: 0;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .steps,
  .role-row,
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strip,
  .showcase,
  .roles,
  .features,
  .plans,
  .rating,
  .credits,
  .download {
    padding: 2.75rem 1.15rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .section-sub {
    font-size: 0.98rem;
    padding-inline: 0.25rem;
  }

  .hero {
    align-items: stretch;
    padding: 1.25rem 1.15rem 2rem;
    overflow: visible;
    gap: 1.25rem;
  }

  .hero-stage {
    width: 100%;
    height: min(380px, 78vw);
    overflow: visible;
  }

  .hero-art {
    width: min(210px, 52vw);
    border-radius: 22px;
    border-width: 3px;
    box-shadow: 0 16px 36px rgba(11, 18, 32, 0.14);
  }

  .hero-copy {
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .brand-hero {
    font-size: clamp(3.2rem, 16vw, 4.4rem);
  }

  .hero-lead {
    margin-top: 0.9rem;
    font-size: 1.02rem;
    padding-inline: 0.15rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.25rem;
    gap: 0.65rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .marquee {
    padding: 0.75rem 0;
  }

  .marquee-track {
    font-size: 0.82rem;
    gap: 1.75rem;
  }

  .steps {
    margin-top: 0;
  }

  .steps-wrap {
    margin-top: 2rem;
  }

  .step-num {
    font-size: 2rem;
  }

  .showcase-head {
    margin-bottom: 1.5rem;
  }

  .carousel {
    width: 100%;
    max-width: none;
  }

  .carousel-stage {
    border-radius: 22px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    min-height: 0;
    opacity: 1;
  }

  .carousel-slide img {
    min-height: 0;
    max-height: none;
    height: auto;
    aspect-ratio: 1;
    width: 100%;
  }

  .carousel-copy {
    padding: 1.15rem 1.1rem 1.35rem;
  }

  .carousel-copy h3 {
    font-size: 1.3rem;
  }

  .carousel-copy p:last-child {
    font-size: 0.95rem;
  }

  .carousel-controls {
    gap: 0.75rem;
  }

  .carousel-nav {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .role-row {
    margin-top: 2rem;
    text-align: left;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .credits-grid {
    grid-template-columns: 1fr;
  }

  .credits-card-wide {
    grid-column: auto;
  }

  .download-inner {
    padding: 1.6rem 1.2rem;
    border-radius: 22px;
  }

  .download-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .download-actions .btn {
    width: 100%;
  }

  .footer {
    flex-wrap: wrap;
    padding: 1.25rem 1rem;
    text-align: left;
  }

  .footer-copy {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero-stage {
    height: min(340px, 88vw);
  }

  .hero-art {
    width: min(190px, 58vw);
  }

  .brand-hero {
    font-size: 3rem;
  }
}
