:root {
  --bg: #06111f;
  --panel: rgba(9, 24, 45, 0.86);
  --line: rgba(160, 210, 255, 0.12);
  --line-strong: rgba(160, 210, 255, 0.22);
  --text: #eef7ff;
  --muted: #9fb7d4;
  --blue: #67d5ff;
  --blue-soft: rgba(103, 213, 255, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(103, 213, 255, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(22, 153, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #040c18 0%, #081425 100%);
}

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

button {
  font: inherit;
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 18, 30, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(10, 18, 30, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.topbar.is-compact {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(160, 210, 255, 0.24);
  background: rgba(7, 19, 37, 0.78);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

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

.brand-main {
  letter-spacing: -0.02em;
}

.brand-suffix {
  opacity: 0.82;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  justify-self: center;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  border-color: rgba(160, 210, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.is-active {
  color: var(--text);
  border-color: rgba(160, 210, 255, 0.24);
  background: rgba(103, 213, 255, 0.14);
}

.topbar-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 20px;
  box-shadow:
    0 14px 30px rgba(42, 167, 255, 0.28),
    0 0 0 1px rgba(155, 233, 255, 0.18) inset;
}

.topbar-cta:hover {
  transform: scale(1.02);
  box-shadow:
    0 18px 34px rgba(42, 167, 255, 0.34),
    0 0 0 1px rgba(155, 233, 255, 0.24) inset;
}

.nav-toggle {
  display: none;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-backdrop,
.mobile-nav {
  display: none;
}

.mobile-nav-backdrop:not([hidden]) {
  display: block;
}

.mobile-nav:not([hidden]) {
  display: block;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(3, 10, 20, 0.62);
  backdrop-filter: blur(2px);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 41;
  padding: 16px;
  background: rgba(5, 12, 24, 0.88);
  backdrop-filter: blur(14px);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mobile-nav-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.mobile-nav-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.mobile-nav-list {
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(160, 210, 255, 0.14);
  border-radius: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-link.is-active {
  border-color: rgba(160, 210, 255, 0.28);
  background: rgba(103, 213, 255, 0.14);
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 16px;
}

body.mobile-nav-open {
  overflow: hidden;
}

.section {
  padding: 72px 0;
}

.hero {
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 19, 37, 0.96) 0%, rgba(7, 19, 37, 0.96) 49%, rgba(18, 48, 86, 0.74) 53%, rgba(9, 24, 45, 0.92) 100%);
  box-shadow: var(--shadow);
}

.hero-copy,
.showcase-card,
.steps-card,
.mode-showcase-card,
.extra-card,
.offer-card,
.calculator-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 34px 28px;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-media-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-width: 0;
  padding: 34px 18px 18px 0;
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34px;
  width: 88px;
  background: linear-gradient(90deg, rgba(7, 19, 37, 0.9) 0%, rgba(7, 19, 37, 0.28) 62%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-actions,
.showcase-footer,
.extra-meta,
.offer-top,
.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge,
.ghost-badge,
.mode-pill,
.calculator-chip,
.token-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-badge,
.token-badge {
  color: var(--text);
  background: var(--blue-soft);
}

.ghost-badge,
.mode-pill,
.calculator-chip {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.calculator-card h3,
.extra-card h3,
.price-column h3,
.step-item h3,
.mode-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero-text,
.section-text,
.step-item p,
.task-line,
.referral-line {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin: 16px 0 0;
  max-width: 54ch;
}

.hero-title {
  display: grid;
  gap: 0.05em;
  max-width: 11.5ch;
  line-height: 1.04;
  font-size: clamp(2.25rem, 6.1vw, 3.95rem);
}

.hero-title-line {
  display: block;
  text-wrap: balance;
}

.hero-title-line-soft {
  opacity: 0.92;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 40ch;
  color: rgba(238, 247, 255, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions-split {
  align-items: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.hero-primary-group {
  display: grid;
  gap: 10px;
}

.hero-cta-caption {
  margin: 0;
  color: rgba(238, 247, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.tab-button:hover,
.calc-button:hover {
  transform: translateY(-1px);
}

.nav-link:focus-visible,
.mobile-nav-link:focus-visible,
.topbar-cta:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav-close:focus-visible {
  outline: 2px solid rgba(103, 213, 255, 0.85);
  outline-offset: 2px;
}

.button-primary {
  color: #071120;
  background: linear-gradient(135deg, #9be9ff 0%, #2aa7ff 100%);
  box-shadow: 0 14px 28px rgba(42, 167, 255, 0.22);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.metric-card strong,
.shot-meta strong,
.calculator-result strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.metric-card span,
.shot-meta span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.showcase-card {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.hero-video-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-video-wrap-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(160, 210, 255, 0.08);
  border-radius: 28px;
  background: rgba(3, 8, 18, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.hero-video-large {
  width: 100%;
  height: auto;
  max-height: none;
}

@media (max-width: 1180px) {
  .hero-split {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  }

  .hero-copy {
    padding: 28px 26px 24px;
  }

  .hero-media-card {
    padding: 28px 16px 16px 0;
  }

  .hero-title {
    font-size: clamp(2.15rem, 5.8vw, 3.55rem);
  }
}

.tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-button,
.calc-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  color: var(--muted);
  transition: all 180ms ease;
}

.tab-button.is-active,
.calc-button.is-active {
  color: #071120;
  border-color: transparent;
  background: linear-gradient(135deg, #9be9ff 0%, #2aa7ff 100%);
  box-shadow: 0 12px 24px rgba(42, 167, 255, 0.18);
}

.showcase-grid,
.workflow-grid,
.pricing-grid,
.extras-grid {
  display: grid;
  gap: 18px;
}

.showcase-section {
  padding-top: 6px;
}

.showcase-grid {
  margin-top: 18px;
}

.shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.shot-visual {
  min-height: 240px;
  background-color: #10213a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shot-meta {
  padding: 16px;
}

.shot-label {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.showcase-copy {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 4px 4px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.steps-card,
.mode-showcase-card,
.offer-card,
.calculator-card,
.extra-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.steps-card {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #071120;
  background: linear-gradient(135deg, #9be9ff 0%, #2aa7ff 100%);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.step-item h3 {
  font-size: 1.2rem;
}

.step-item p {
  margin: 8px 0 0;
}

.mode-preview {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.mode-visual {
  min-height: 280px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.mode-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

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

.extra-card {
  background: rgba(9, 24, 45, 0.9);
}

.extra-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--blue-soft);
  font-size: 1.45rem;
}

.extra-card h3 {
  font-size: 1.6rem;
}

.extra-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px solid var(--line);
}

.price-columns {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.price-column {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.price-column h3 {
  font-size: 1.2rem;
}

.price-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(160, 210, 255, 0.12);
}

.price-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.price-list li span {
  color: var(--muted);
}

.price-list li strong {
  font-family: "Space Grotesk", sans-serif;
}

.referral-line {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.calculator-card {
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.98), rgba(25, 39, 66, 0.98));
  color: #f6f8fc;
}

.calculator-card .eyebrow,
.calculator-card .section-text,
.calculator-card .task-line,
.calculator-card .mode-pill,
.calculator-card .calculator-chip {
  color: rgba(245, 248, 252, 0.78);
}

.calculator-card h3 {
  font-size: 2rem;
  line-height: 1;
}

.calculator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.calculator-options .calc-button {
  color: #d5deee;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.calculator-options .calc-button.is-active {
  color: #ffffff;
}

.calculator-result {
  display: grid;
  gap: 12px;
}

.calculator-result strong {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.compact-actions {
  margin-top: 20px;
}

.calculator-card .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 20px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 860px) {
  .hero-split,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid,
  .price-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 48px 0;
  }

  .hero-split {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(7, 19, 37, 0.98) 0%, rgba(8, 23, 42, 0.96) 100%);
  }

  .topbar {
    top: 8px;
    margin-top: 8px;
    padding: 10px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 18px;
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .topbar-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-text {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-suffix {
    display: none;
  }

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

  .hero-media-card::before {
    display: none;
  }

  .hero-media-card {
    order: 1;
    padding: 14px 14px 0;
  }

  .hero-video-wrap-large {
    min-height: 0;
    border-radius: 24px;
    border: 1px solid rgba(160, 210, 255, 0.1);
  }

  .hero-copy {
    order: 2;
    padding: 18px 18px 20px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.1rem, 8.2vw, 3.2rem);
    line-height: 1;
  }

  .hero-subtitle {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-actions-split {
    display: grid;
    gap: 10px;
    padding-top: 18px;
  }

  .hero-actions-split .button {
    width: 100%;
  }

  .showcase-card,
  .steps-card,
  .mode-showcase-card,
  .extra-card,
  .offer-card,
  .calculator-card {
    padding: 18px;
    border-radius: 22px;
  }

  .tabs {
    gap: 8px;
  }

  .tab-button,
  .calc-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .showcase-grid .shot-card {
    flex: 0 0 88%;
  }

  .shot-visual,
  .mode-visual {
    min-height: 220px;
  }

  .section-heading h2,
  .showcase-copy h2,
  .calculator-card h3 {
    line-height: 1.02;
  }
}

@media (max-width: 640px) {
  .section,
  .footer {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .hero-copy,
  .showcase-card,
  .steps-card,
  .mode-showcase-card,
  .extra-card,
  .offer-card,
  .calculator-card {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 10.2vw, 2.65rem);
    line-height: 0.98;
  }

  .hero-copy {
    padding: 16px 16px 18px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .hero-split {
    border-radius: 24px;
  }

  .topbar {
    top: 6px;
    padding: 9px 10px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

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

  .nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-video-wrap-large,
  .hero-video-large {
    min-height: 0;
  }

  .section-heading h2,
  .showcase-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .compact-actions {
    display: grid;
  }

  .hero-primary-group {
    width: 100%;
  }

  .hero-media-card {
    padding: 12px 12px 0;
  }

  .mobile-nav {
    padding: 12px;
  }

  .mobile-nav-link {
    min-height: 48px;
    font-size: 1rem;
  }

  .hero-video-wrap-large {
    border-radius: 20px;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .shot-visual,
  .mode-visual {
    min-height: 200px;
  }

  .showcase-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .showcase-grid .shot-card {
    flex: 0 0 92%;
    scroll-snap-align: start;
  }

  .showcase-copy {
    gap: 12px;
    margin-top: 14px;
  }

  .mode-preview {
    gap: 14px;
    margin-top: 14px;
  }

  .mode-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-column {
    padding: 16px;
    border-radius: 18px;
  }

  .step-item {
    grid-template-columns: 42px 1fr;
  }

  .step-number {
    width: 42px;
    height: 42px;
  }

  .price-list li,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    gap: 8px;
    padding: 18px 0 28px;
  }
}
