:root {
  --bg: #02040a;
  --bg-soft: rgba(255, 255, 255, 0.02);
  --bg-glass: rgba(255, 255, 255, 0.015);
  --bg-glass-strong: rgba(255, 255, 255, 0.02);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c8f04b;
  --accent-soft: rgba(200, 240, 75, 0.16);
  --font-heading: "Instrument Serif", serif;
  --font-body: "Barlow", sans-serif;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 124, 255, 0.18), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(200, 240, 75, 0.12), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(121, 78, 255, 0.15), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

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

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

.page-shell {
  width: min(1440px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 2rem;
}

.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.liquid-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 4px 24px rgba(0, 0, 0, 0.2);
}

.liquid-glass::before,
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.05) 80%, rgba(255,255,255,0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.14);
}

.nav-wrap {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.nav {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  pointer-events: auto;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: #02040a;
  background: linear-gradient(145deg, #f8ffb8, #c8f04b);
  box-shadow: 0 12px 30px rgba(200, 240, 75, 0.2);
}

.brand-logo {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;
  border-radius: 999px;
  background: url('./Logo.png') center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(200, 240, 75, 0.2);
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: var(--muted-2);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  display: none;
}

.cta-pill,
.primary-btn,
.subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 600;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.cta-pill,
.subscribe-btn {
  background: #fff;
  color: #02040a;
}

.cta-pill:hover,
.primary-btn:hover,
.subscribe-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

main {
  padding-top: 8rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.kicker,
.section-label,
.badge,
.card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.78);
}

.kicker {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.display-title,
.section-title,
.footer-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.display-title {
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  line-height: 0.94;
  max-width: 12ch;
  margin: 0;
}

.hero-text,
.section-copy,
.glass-card p,
.timeline-card p,
.mini-spec span,
.feature-card p,
.faq-answer,
.footer-links a,
.footer-links p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 62ch;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-btn {
  color: #ffffff;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.badge {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.18em;
}

.hero-showcase {
  padding: 1.1rem;
  border-radius: 2rem;
  z-index: 1;
  max-width: 680px;
  justify-self: end;
}

.showcase-frame {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 34rem;
}

.showcase-topline,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.showcase-stack {
  display: grid;
  gap: 1rem;
}

.showcase-stack img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease);
}

.showcase-stack img:hover,
.shot-card img:hover,
.spec-hero img:hover {
  transform: scale(1.02);
}

.showcase-stats {
  display: grid;
  gap: 0.9rem;
}

.showcase-stats div,
.mini-spec {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.showcase-stats strong,
.mini-spec strong,
.feature-card h3,
.glass-card h3,
.timeline-card h3,
.footer-links h3 {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.section {
  padding: 6rem 0;
}

.intro {
  max-width: 900px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  margin: 0.35rem 0 0;
}

.section-copy {
  max-width: 70ch;
  margin-top: 1rem;
}

.section-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.24);
  text-underline-offset: 0.2rem;
}

.walkthrough-grid,
.feature-grid,
.screenshot-grid {
  display: grid;
  gap: 1rem;
}

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

.glass-card,
.feature-card,
.timeline-card,
.mini-spec,
.shot-card,
.faq-item,
.faq-answer {
  border-radius: 1.5rem;
}

.glass-card,
.feature-card,
.timeline-card {
  padding: 1.4rem;
  min-height: 14rem;
}

.card-step {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

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

.feature-card {
  min-height: 12rem;
  transform: translateY(0);
}

.feature-card:hover,
.glass-card:hover,
.timeline-card:hover,
.faq-item:hover,
.mini-spec:hover {
  transform: translateY(-4px);
}

.icon-chip {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(200, 240, 75, 0.08);
  border: 1px solid rgba(200, 240, 75, 0.16);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(200,240,75,0.5), rgba(255,255,255,0.2), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.timeline-item.reverse .timeline-card {
  grid-column: 3;
}

.timeline-item.reverse .timeline-node {
  grid-column: 2;
}

.timeline-item.reverse::before {
  content: '';
}

.timeline-node {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle, #fff 0%, #c8f04b 45%, rgba(200,240,75,0.1) 70%, transparent 72%);
  box-shadow: 0 0 24px rgba(200,240,75,0.5);
  grid-column: 2;
  justify-self: center;
  z-index: 2;
}

.timeline-card {
  grid-column: 1;
  max-width: 34rem;
  justify-self: end;
}

.timeline-item.reverse .timeline-card {
  justify-self: start;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.spec-hero {
  padding: 1rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 26rem;
}

.spec-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: transform 0.5s var(--ease);
}

.spec-hero-copy {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(2,4,10,0.05), rgba(2,4,10,0.75));
}

.spec-hero-copy span {
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.spec-hero-copy strong {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
}

.spec-cards {
  display: grid;
  gap: 1rem;
}

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

.shot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem;
}

.shot-card img {
  width: min(240px, 100%);
  max-height: 380px;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease);
}

.shot-card figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
}

.faq-item span {
  flex: 1;
  min-width: 0;
}

.faq-item strong {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  line-height: 1;
  position: relative;
  top: -2px;
  transition: transform 0.35s var(--ease);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease);
  padding: 0 1.25rem;
}

.faq-answer.open {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  padding: 0.3rem 1.25rem 1.1rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-title {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 0.97;
  max-width: 11ch;
  margin: 0.4rem 0 0;
}

.subscribe-form {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.subscribe-form input {
  min-width: min(28rem, 100%);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  outline: none;
}

.subscribe-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
}

.footer-links h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 0.45rem;
}

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.orb-1 {
  width: 24rem;
  height: 24rem;
  background: rgba(200,240,75,0.12);
  right: 8%;
  top: 8%;
}

.orb-2 {
  width: 28rem;
  height: 28rem;
  background: rgba(70, 110, 255, 0.18);
  left: 8%;
  bottom: 10%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .nav {
    border-radius: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .specs-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: none;
    justify-self: stretch;
  }

  .showcase-stack {
    grid-template-columns: 1fr;
  }

  .walkthrough-grid,
  .feature-grid,
  .screenshot-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    left: 0.5rem;
  }

  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 1rem 1fr;
    align-items: start;
  }

  .timeline-node,
  .timeline-item.reverse .timeline-node {
    grid-column: auto;
    justify-self: start;
  }

  .timeline-card,
  .timeline-item.reverse .timeline-card {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .timeline-node {
    margin-top: 0.5rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .nav-wrap {
    position: sticky;
    top: max(0.25rem, env(safe-area-inset-top));
    padding-top: max(0.2rem, env(safe-area-inset-top));
  }

  .nav {
    width: calc(100% - 0.75rem);
    padding: 0.55rem 0.65rem;
    border-radius: 1rem;
    align-items: center;
    flex-direction: row;
    gap: 0.5rem;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand > span {
    min-width: 0;
  }

  .brand strong {
    font-size: 1rem;
    line-height: 1;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
    flex: 0 0 auto;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    list-style: none;
  }

  .mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.7rem;
    border-radius: 0.8rem;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 600;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    display: none;
    gap: 0.35rem;
    min-width: 11rem;
    padding: 0.65rem;
    border-radius: 1rem;
    background: rgba(2,4,10,0.96);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 60;
  }

  .mobile-menu-panel a {
    padding: 0.35rem 0.25rem;
    border-radius: 0.65rem;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .mobile-menu[open] .mobile-menu-panel {
    display: grid;
  }

  .cta-pill {
    display: none;
  }

  main {
    padding-top: 1.1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0.25rem;
    gap: 1rem;
  }

  .display-title {
    font-size: clamp(2.05rem, 8.2vw, 2.55rem);
    line-height: 1.02;
    max-width: 13.5ch;
  }

  .hero-text {
    display: block;
    font-size: 0.95rem;
    line-height: 1.58;
    margin-top: 0.9rem;
  }

  .hero-actions,
  .hero-badges {
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
  }

  .hero-copy {
    padding: 0.1rem 0 0;
  }

  .kicker {
    padding: 0.45rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.62rem;
  }

  .hero-showcase {
    display: none;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .hero-badges .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .showcase-frame {
    min-height: 0;
    gap: 0.75rem;
  }

  .showcase-topline,
  .footer-bottom {
    font-size: 0.78rem;
    gap: 0.5rem;
  }

  .showcase-stack img {
    max-height: 280px;
  }

  .showcase-stats div,
  .mini-spec,
  .glass-card,
  .feature-card,
  .timeline-card,
  .shot-card,
  .faq-item {
    border-radius: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-head {
    display: block;
    margin-bottom: 1.2rem;
  }

  .section-title,
  .footer-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .section-label {
    font-size: 0.65rem;
  }

  .section-copy,
  .hero-text,
  .glass-card p,
  .timeline-card p,
  .mini-spec span,
  .feature-card p,
  .faq-answer,
  .footer-links a,
  .footer-links p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .walkthrough-grid,
  .feature-grid,
  .screenshot-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 1rem;
    padding: 1rem 0;
  }

  .timeline::before {
    left: 0.62rem;
  }

  .timeline-item,
  .timeline-item.reverse {
    display: block;
    position: relative;
    padding-left: 1.45rem;
  }

  .timeline-node,
  .timeline-item.reverse .timeline-node {
    position: absolute;
    left: 0;
    top: 1.35rem;
    margin: 0;
    width: 1rem;
    height: 1rem;
  }

  .timeline-card,
  .timeline-item.reverse .timeline-card {
    display: block;
    width: 100%;
    max-width: none;
    min-height: auto;
  }

  .hero-showcase,
  .spec-hero {
    max-width: 100%;
  }

  .showcase-stack {
    grid-template-columns: 1fr;
  }

  .walkthrough-grid,
  .feature-grid,
  .screenshot-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-pill,
  .primary-btn,
  .secondary-btn,
  .subscribe-btn {
    width: 100%;
  }

  .nav .cta-pill,
  .subscribe-btn {
    width: auto;
  }

  .hero-badges .badge {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    padding: 0.55rem 0.8rem;
  }

  .nav .cta-pill,
  .mobile-menu summary {
    white-space: nowrap;
  }

  .showcase-stack img {
    border-radius: 1rem;
  }

  .shot-card {
    padding: 0.55rem;
  }

  .subscribe-form input {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav {
    width: calc(100% - 0.6rem);
    padding: 0.5rem 0.58rem;
  }

  .mobile-menu-panel {
    min-width: 12rem;
  }

  .mobile-menu-cta,
  .mobile-menu-panel a {
    font-size: 0.75rem;
  }

  .cta-pill {
    padding: 0.55rem 0.75rem;
    font-size: 0.76rem;
  }

  main {
    padding-top: 0.95rem;
  }

  .hero {
    padding-top: 0.15rem;
  }

  .display-title {
    font-size: clamp(1.9rem, 8.8vw, 2.2rem);
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn,
  .subscribe-btn {
    font-size: 0.92rem;
  }

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

  .showcase-topline {
    font-size: 0.72rem;
  }

  .showcase-stack img {
    max-height: 230px;
  }

  .spec-hero {
    min-height: 18rem;
  }

  .shot-card img {
    width: min(100%, 220px);
    max-height: 300px;
  }

  .faq-item {
    padding: 1rem 1rem;
  }

  .faq-item strong {
    width: 1.35rem;
    height: 1.35rem;
    flex-basis: 1.35rem;
    top: -1px;
  }
}
