:root {
  color-scheme: dark;
  --bg: #090a0f;
  --bg-soft: #0e1320;
  --panel: rgba(18, 21, 31, 0.88);
  --panel-strong: rgba(13, 15, 24, 0.96);
  --panel-accent: rgba(28, 21, 40, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(67, 125, 255, 0.42);
  --text: #f8fbff;
  --muted: #9ea7bc;
  --blue: #2e7dff;
  --purple: #a13dff;
  --red: #ff4d67;
  --green: #22d96f;
  --green-strong: #0da95c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --max-width: 1240px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(30, 82, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(161, 61, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(6, 9, 17, 0.92), rgba(7, 8, 13, 0.98)),
    url("./assets/tool_background.png") center top / cover no-repeat fixed,
    var(--bg);
  color: var(--text);
  font: 16px/1.55 "Barlow", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.28;
  pointer-events: none;
}

body::before {
  top: -14vw;
  left: -10vw;
  background: rgba(46, 125, 255, 0.34);
}

body::after {
  right: -10vw;
  bottom: -18vw;
  background: rgba(161, 61, 255, 0.28);
}

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

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

button {
  border: 0;
}

.site-shell {
  min-height: 100vh;
}

#home,
#listen,
#pricing,
#downloads,
#contact {
  scroll-margin-top: 104px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 9, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.topnav a {
  color: #b2bad0;
  font-size: 18px;
  font-weight: 600;
}

.shop-cta,
.primary-button,
.ghost-button,
.accent-button,
.secondary-button,
.platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 20px;
  font-weight: 800;
}

.shop-cta {
  background: linear-gradient(135deg, #ff5a00, #ff3000);
  color: #ffffff;
  min-height: 52px;
  padding: 0 26px;
}

main {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

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

.hero-panel,
.surface-card,
.platform-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(15, 18, 28, 0.94), rgba(10, 12, 19, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel::before,
.surface-card::before,
.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(130deg, rgba(46, 125, 255, 0.1), transparent 35%),
    linear-gradient(315deg, rgba(161, 61, 255, 0.1), transparent 42%);
  pointer-events: none;
}

.hero-panel {
  padding: 40px 44px 46px;
}

.release-pill,
.preset-counter,
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.release-pill {
  padding: 10px 18px;
  color: #ebf2ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.micro-label {
  margin: 0;
  color: #9ebcff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy h1 {
  margin-top: 18px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(52px, 9vw, 104px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-copy h1 span,
.hero-stage-title span,
.section-heading h2 span {
  color: transparent;
  background: linear-gradient(135deg, #2e7dff 0%, #8f46ff 48%, #ff4d67 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text,
.section-copy,
.platform-card p,
.panel-note,
.guide-list,
.contact-list p {
  color: var(--muted);
}

.hero-text {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.primary-button {
  background: #ffffff;
  color: #0a0d14;
}

.ghost-button,
.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.accent-button {
  background: linear-gradient(135deg, #2e7dff, #8f46ff);
  color: #ffffff;
}

.hero-meta {
  margin: 18px 0 0;
  color: #d6ddf0;
  font-size: 14px;
}

.hero-stage {
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(92, 128, 255, 0.24);
  background:
    linear-gradient(160deg, rgba(14, 20, 36, 0.98), rgba(12, 11, 22, 0.98)),
    rgba(255, 255, 255, 0.02);
}

.hero-stage-logo {
  display: block;
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero-stage-caption {
  margin: 0;
  color: #bcd1ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-stage-title {
  margin-top: 18px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-stage-streak {
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 125, 255, 0.92), rgba(161, 61, 255, 0.88), rgba(255, 77, 103, 0.88));
  box-shadow: 0 0 32px rgba(86, 99, 255, 0.34);
}

.hero-stage-note {
  margin: 16px 0 0;
  color: #d6d9e4;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preset-counter {
  padding: 10px 16px;
  color: #dce6ff;
  font-size: 14px;
  font-weight: 700;
}

.listen-section,
.platform-section {
  margin-top: 44px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.6px;
  max-width: 10ch;
}

.section-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  padding-top: 12px;
}

.listen-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
}

.listen-panel,
.side-card {
  padding: 24px;
}

.listen-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.listen-panel-header h3,
.section-head-compact h3,
.platform-card h3 {
  margin: 8px 0 0;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: 0.2px;
}

.section-head-compact {
  margin-bottom: 16px;
}

.preset-block {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.compact-field {
  margin: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  outline: none;
}

select,
select option,
select optgroup {
  color: #111111;
  background: #ffffff;
}

select.sound-select,
select#presetSelect,
select#extraRequestPrice {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(46, 125, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(46, 125, 255, 0.14);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

.sound-rows {
  display: grid;
  gap: 12px;
}

.sound-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 142px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.sound-label {
  display: grid;
  gap: 4px;
}

.sound-label-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
}

.sound-label-subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.sound-select-wrap {
  position: relative;
}

.sound-select {
  min-height: 50px;
  padding-right: 46px;
}

.control-button,
.preview-button {
  width: 100%;
}

.preview-button {
  background: linear-gradient(135deg, var(--green-strong), var(--green));
  color: #f7fff9;
  border-radius: 18px;
  min-height: 50px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(34, 217, 111, 0.16);
}

.preview-button.is-playing,
.stop-button {
  background: linear-gradient(135deg, #822033, var(--red));
  color: #ffffff;
  box-shadow: 0 0 28px rgba(255, 77, 103, 0.22);
}

.listen-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 14px;
}

.playback-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eef6ff;
  font-size: 15px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(34, 217, 111, 0.42);
}

.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preview-text {
  margin: 0;
  min-height: 240px;
  max-height: 520px;
  overflow: auto;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 13, 0.94);
  color: #edf2ff;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.listen-sidebar {
  display: grid;
  gap: 18px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.mode-chip {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #d3ddf4;
  font-weight: 800;
  cursor: pointer;
}

.mode-chip.is-active {
  background: linear-gradient(135deg, rgba(46, 125, 255, 0.24), rgba(161, 61, 255, 0.28));
  border-color: rgba(98, 145, 255, 0.48);
  color: #ffffff;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-item,
.price-option,
.price-total,
.price-deposit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.price-option {
  cursor: pointer;
}

.price-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-option input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.price-field {
  margin: 0;
}

.price-summary {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.price-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.price-discount-line strong {
  color: #b6ffd1;
}

.price-total {
  margin-top: 16px;
  align-items: flex-start;
  border-color: rgba(98, 145, 255, 0.4);
  background: linear-gradient(135deg, rgba(20, 36, 92, 0.84), rgba(74, 37, 113, 0.72));
}

.price-total-copy {
  display: grid;
  gap: 4px;
}

.price-total-copy small {
  color: rgba(238, 243, 255, 0.82);
  font-size: 13px;
}

.price-total-copy s {
  opacity: 0.92;
}

.price-total strong {
  font-size: 26px;
  line-height: 1;
}

.price-deposit strong {
  color: #d6ffe3;
}

.shipping-note {
  margin: 12px 2px 0;
  color: #d8ffe4;
  font-size: 14px;
  font-weight: 700;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-list p {
  margin: 0;
}

.shop-link {
  color: #c5d6ff;
}

.full-width {
  width: 100%;
}

.shop-button {
  margin-bottom: 18px;
}

.guide-list {
  margin: 0;
  padding-left: 18px;
}

.guide-list li + li {
  margin-top: 8px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.platform-card {
  padding: 28px;
}

.accent-platform {
  background: linear-gradient(160deg, rgba(18, 20, 33, 0.96), rgba(28, 16, 43, 0.98));
}

.platform-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.blue-icon {
  background: linear-gradient(135deg, rgba(46, 125, 255, 0.22), rgba(46, 125, 255, 0.74));
}

.purple-icon {
  background: linear-gradient(135deg, rgba(120, 50, 255, 0.28), rgba(161, 61, 255, 0.84));
}

.platform-card h3 {
  margin-top: 20px;
}

.platform-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 18px 0 24px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 12, 0.84);
}

.platform-meta span {
  color: #7f899f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-meta strong {
  font-size: 16px;
}

.platform-button {
  width: 100%;
  background: #ffffff;
  color: #090d14;
}

.outline-button {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.small-note {
  margin-top: 12px;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero-layout,
  .section-heading,
  .listen-layout,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .listen-panel-header {
    grid-template-columns: 1fr;
  }

  .preset-block {
    justify-items: stretch;
  }
}

@media (max-width: 860px) {
  .topbar {
    position: sticky;
    top: 0;
  }

  .topbar-inner {
    width: min(var(--max-width), calc(100vw - 16px));
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 0 10px;
  }

  .brand-mark {
    width: auto;
    text-align: left;
    font-size: 24px;
    letter-spacing: 1.5px;
    gap: 10px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .shop-cta {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 15px;
  }

  .topnav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 2px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

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

  .topnav a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  main {
    width: min(var(--max-width), calc(100vw - 18px));
    padding-top: 14px;
  }

  .hero-panel,
  .surface-card,
  .platform-card {
    border-radius: 22px;
  }

  .hero-panel {
    padding: 20px 18px 24px;
  }

  .release-pill {
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero-layout {
    margin-top: 18px;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 74px);
    line-height: 0.98;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-stage {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-stage-title {
    font-size: 32px;
  }

  .hero-meta {
    margin-top: 14px;
    font-size: 13px;
  }

  .hero-actions,
  .toolbar-actions,
  .action-row {
    grid-template-columns: 1fr;
  }

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

  .listen-section,
  .platform-section {
    margin-top: 42px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    max-width: none;
    font-size: clamp(30px, 10vw, 44px);
    line-height: 0.96;
  }

  .section-copy {
    padding-top: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .listen-layout {
    gap: 16px;
  }

  .listen-panel,
  .side-card {
    padding: 18px;
  }

  .listen-panel-header {
    gap: 14px;
    margin-bottom: 16px;
  }

  .listen-panel-header h3,
  .section-head-compact h3,
  .platform-card h3 {
    font-size: 24px;
  }

  .preset-block {
    gap: 8px;
  }

  .preset-counter {
    padding: 9px 14px;
    font-size: 13px;
  }

  .sound-rows {
    gap: 10px;
  }

  .sound-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .sound-label-title {
    font-size: 18px;
  }

  .sound-label-subtitle {
    font-size: 12px;
  }

  .sound-select,
  .preview-button,
  .mode-chip,
  select,
  input {
    min-height: 48px;
  }

  textarea {
    min-height: 128px;
  }

  .listen-toolbar {
    margin: 18px 0 12px;
  }

  .playback-status {
    font-size: 14px;
  }

  .toolbar-actions {
    width: 100%;
  }

  .toolbar-actions .secondary-button,
  .toolbar-actions .stop-button {
    width: 100%;
  }

  .preview-text {
    min-height: 180px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .segmented-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .price-list {
    gap: 10px;
  }

  .price-item,
  .price-option,
  .price-summary-line,
  .price-total,
  .price-deposit {
    padding: 11px 12px;
    border-radius: 16px;
  }

  .price-total strong {
    font-size: 22px;
  }

  .field {
    gap: 6px;
  }

  .field span,
  .small-note,
  .panel-note {
    font-size: 13px;
  }

  .action-row {
    gap: 8px;
  }

  .contact-list {
    gap: 6px;
    margin-bottom: 14px;
  }

  .platform-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 14px;
  }
}

@media (max-width: 560px) {
  #home,
  #listen,
  #pricing,
  #downloads,
  #contact {
    scroll-margin-top: 124px;
  }

  .topbar-inner {
    width: calc(100vw - 14px);
    padding-top: 10px;
    gap: 8px 10px;
  }

  .brand-mark {
    font-size: 20px;
    letter-spacing: 1px;
    gap: 8px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .topnav {
    gap: 8px;
  }

  .topnav a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .shop-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  main {
    width: calc(100vw - 12px);
    padding-top: 10px;
  }

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

  .hero-panel {
    padding: 16px 14px 18px;
  }

  .hero-copy h1 {
    font-size: 36px;
    letter-spacing: 0.4px;
  }

  .hero-text {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .primary-button,
  .ghost-button,
  .accent-button,
  .secondary-button,
  .platform-button {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .hero-stage {
    display: none;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .listen-panel,
  .side-card,
  .platform-card {
    padding: 16px 14px;
  }

  .platform-card p {
    font-size: 14px;
  }

  .listen-panel-header h3,
  .section-head-compact h3,
  .platform-card h3 {
    font-size: 22px;
  }

  .sound-row {
    padding: 12px;
  }

  .sound-label-title {
    font-size: 17px;
  }

  .sound-select,
  .preview-button,
  .mode-chip,
  select,
  input,
  textarea {
    border-radius: 16px;
  }

  .price-item,
  .price-option,
  .price-summary-line,
  .price-total,
  .price-deposit,
  .platform-meta {
    border-radius: 16px;
  }

  .price-total strong {
    font-size: 20px;
  }

  .preview-text {
    min-height: 160px;
  }

  .platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 16px;
  }

  .platform-meta {
    grid-template-columns: 1fr;
  }
}
