﻿:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;
  --background: #f9f9f9;
  --surface: #ffffff;
  --ink: #303030;
  --heading: #262626;
  --muted: #6b6b6b;
  --dark: #171717;
  --dark-2: #242424;
  --gold: #d4af37;
  --gold-bright: #f0cf64;
  --line: rgba(23, 23, 23, 0.1);
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.16);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: var(--default-font);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

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

.spam-check {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold), white 25%);
  outline-offset: 3px;
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px max(16px, calc((100vw - 1160px) / 2));
  color: #f6f6f6;
  background: var(--dark);
  font-size: 14px;
}

.topbar a,
.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar i {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 249, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 24px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  perspective: 420px;
}

.brand-cube {
  width: 38px;
  height: 38px;
  position: relative;
  transform-style: preserve-3d;
  animation: logo-float 7s ease-in-out infinite;
}

.cube-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 16px 32px rgba(0, 0, 0, 0.25);
}

.cube-face.front {
  color: #151515;
  background: linear-gradient(145deg, #fff5bf, var(--gold) 52%, #a77d1d);
  font: 800 24px/1 var(--heading-font);
  transform: translateZ(14px);
}

.cube-face.side {
  background: linear-gradient(160deg, #8f6b19, #2f2f2f);
  transform: rotateY(90deg) translateZ(14px);
  transform-origin: right;
}

.cube-face.top {
  background: linear-gradient(150deg, #fff4be, #b99225);
  transform: rotateX(90deg) translateZ(14px);
  transform-origin: top;
}

.brand-signal {
  position: absolute;
  right: 0;
  bottom: 7px;
  display: flex;
  gap: 3px;
  align-items: end;
}

.brand-signal span {
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
  animation: bars 1.1s ease-in-out infinite;
}

.brand-signal span:nth-child(1) {
  height: 10px;
}

.brand-signal span:nth-child(2) {
  height: 17px;
  animation-delay: 0.15s;
}

.brand-signal span:nth-child(3) {
  height: 13px;
  animation-delay: 0.3s;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  white-space: nowrap;
}

.brand-copy strong {
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0;
  font: 800 13px/1 var(--nav-font);
}

.nav-links a {
  position: relative;
  color: #2c2c2c;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 9px;
  white-space: nowrap;
}

.nav-links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 1px;
  background: rgba(212, 175, 55, 0.42);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .mobile-login-link {
  display: none;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(20, 20, 20, 0.07);
}

.nav-login,
.nav-cta,
.btn,
.package-select,
.submit-btn,
.console-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.nav-login,
.nav-cta {
  flex: 0 0 auto;
  font-size: 13px;
}

.nav-cta,
.btn.primary,
.package-select,
.submit-btn {
  color: #151515;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.28);
}

.nav-login {
  color: #2c2c2c;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #171717;
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > picture,
.hero > picture > img,
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.84), rgba(18, 18, 18, 0.58) 52%, rgba(18, 18, 18, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.68));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
  padding-block: 86px 106px;
}

.hero-copy {
  max-width: 720px;
  color: #f4f4f4;
}

.live-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font: 800 13px/1 var(--nav-font);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-title h2,
.platform-copy h2,
.request-intro h2 {
  margin: 14px 0 16px;
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.72;
}

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

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  color: #f6f6f6;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.hero-highlights strong {
  color: var(--gold-bright);
}

.hero-console {
  padding: 28px;
  color: #f8f8f8;
  background: rgba(23, 23, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.console-header strong {
  display: block;
  margin-top: 9px;
  font: 800 28px/1.1 var(--heading-font);
}

.meter-row {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-weight: 800;
}

.meter-row strong {
  color: var(--gold-bright);
}

.signal-meter {
  height: 12px;
  margin: 12px 0 24px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-meter span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #45d483);
  animation: pulse-width 3s ease-in-out infinite;
}

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

.console-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.console-grid i {
  color: var(--gold);
}

.console-link {
  width: 100%;
  margin-top: 22px;
  color: #151515;
  background: #fff;
}

.quick-path {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-grid a,
.package-card,
.feature-list div,
.request-form,
.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.quick-grid a {
  padding: 22px;
  display: grid;
  gap: 8px;
  min-height: 150px;
}

.quick-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #151515;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
}

.quick-grid strong {
  color: var(--heading);
  font: 800 18px/1.2 var(--heading-font);
}

.quick-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 96px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2,
.platform-copy h2,
.request-intro h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-title p,
.platform-copy p,
.request-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.package-card.is-active {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.14);
}

.package-card:hover {
  border-color: rgba(212, 175, 55, 0.78);
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(20, 20, 20, 0.14);
}

.package-card.is-popular::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.popular-badge {
  align-self: flex-start;
  padding: 6px 10px;
  color: #151515;
  background: #fff2b6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.package-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.package-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #151515;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
}

.package-card h3 {
  margin: 0;
  font: 800 24px/1 var(--heading-font);
}

.price {
  margin: 22px 0 18px;
  color: var(--heading);
  font: 800 36px/1 var(--heading-font);
}

.price span,
.price small {
  color: var(--muted);
  font: 700 13px/1 var(--default-font);
}

.package-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: #4b4b4b;
}

.package-card li {
  display: flex;
  gap: 8px;
  line-height: 1.45;
}

.package-card li i {
  color: #139e5b;
}

.package-select {
  width: 100%;
  margin-top: auto;
}

.compare {
  padding-top: 20px;
}

.compare-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: #151515;
  background: linear-gradient(135deg, rgba(240, 207, 100, 0.28), rgba(212, 175, 55, 0.14));
  font: 800 15px/1.2 var(--heading-font);
}

.compare-table tbody th {
  color: var(--heading);
  font-weight: 800;
  white-space: nowrap;
}

.compare-table td {
  color: #4b4b4b;
}

.compare-table i {
  color: #139e5b;
}

.platform {
  background: #202020;
}

.platform-grid,
.request-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 48px;
  align-items: start;
}

.platform-copy h2,
.platform-copy p {
  color: #fff;
}

.platform-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.platform-login {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin-top: 24px;
  padding: 13px 18px;
  color: #151515;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.22);
}

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

.feature-list div {
  min-height: 180px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.feature-list i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #151515;
  background: var(--gold);
  border-radius: 6px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font: 800 20px/1.2 var(--heading-font);
}

.feature-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.demo-section {
  background: #f7f7f7;
}

.encoder-wizard {
  background: #f8f8f8;
}

.wizard-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.wizard-tabs {
  display: grid;
  gap: 10px;
}

.wizard-tabs button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: 800 15px/1 var(--body-font);
  cursor: pointer;
  text-align: left;
}

.wizard-tabs button.is-active,
.wizard-tabs button:hover {
  color: #151515;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: rgba(212, 175, 55, 0.72);
}

.wizard-panel {
  min-height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.wizard-panel[hidden] {
  display: none !important;
}

.wizard-panel h3 {
  margin: 0 0 16px;
  color: var(--dark);
  font: 800 28px/1.1 var(--heading-font);
}

.wizard-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.wizard-panel li {
  color: rgba(31, 31, 31, 0.78);
  line-height: 1.65;
}

.wizard-panel code {
  color: #151515;
  background: #fff2b6;
  border-radius: 4px;
  padding: 2px 6px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.demo-copy,
.demo-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.demo-copy {
  padding: 30px;
  background: #fff;
}

.demo-copy h2 {
  margin: 14px 0 16px;
  color: var(--heading);
  font: 800 clamp(30px, 4vw, 48px)/1.05 var(--heading-font);
}

.demo-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.demo-actions .btn.secondary {
  color: var(--heading);
  background: #fff;
  border-color: var(--line);
}

.demo-panel {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(23, 23, 23, 0)),
    #171717;
}

.demo-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-panel-head i {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #151515;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
  font-size: 22px;
}

.demo-panel-head strong {
  font: 800 24px/1.1 var(--heading-font);
}

.demo-panel-head span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.demo-data {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.demo-data span,
.demo-dj {
  display: grid;
  gap: 5px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow-wrap: anywhere;
}

.demo-data strong,
.demo-dj strong {
  color: var(--gold-bright);
  font-size: 13px;
  text-transform: uppercase;
}

.demo-data a {
  color: #fff;
  font-weight: 800;
}

.demo-data code,
.demo-dj code {
  color: #fff;
  font: 800 14px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.demo-dj {
  margin: 0 22px 22px;
}

.demo-dj span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.operations {
  background: #f2f2f2;
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.status-panel,
.azuracast-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.status-panel {
  padding: 28px;
  background: #fff;
}

.status-panel h2 {
  margin: 12px 0 22px;
  color: var(--heading);
  font: 800 clamp(28px, 4vw, 42px)/1.05 var(--heading-font);
}

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

.status-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: #2e2e2e;
  background: #f8f8f8;
  border-radius: 6px;
  font-weight: 800;
}

.status-list i {
  color: #139e5b;
}

.azuracast-preview {
  overflow: hidden;
  color: #fff;
  background: #171717;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #252525;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4af37;
}

.preview-top span:nth-child(2) {
  background: #8a8a8a;
}

.preview-top span:nth-child(3) {
  background: #45d483;
}

.preview-top strong {
  margin-left: auto;
  color: var(--gold-bright);
  font-family: var(--heading-font);
}

.preview-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 310px;
}

.preview-body aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  background: #111;
}

.preview-body aside span {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
}

.preview-body aside .is-active {
  color: #151515;
  background: var(--gold);
  font-weight: 800;
}

.preview-body > div {
  padding: 26px;
}

.preview-body h3 {
  margin: 0 0 8px;
  color: #fff;
  font: 800 28px/1.15 var(--heading-font);
}

.preview-body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

.preview-meter {
  height: 16px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #45d483);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.preview-cards span {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.preview-cards strong {
  color: var(--gold-bright);
  font: 800 22px/1 var(--heading-font);
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.payment-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: #151515;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--heading);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
  padding: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-weight: 800;
}

.stripe-only {
  min-height: 82px;
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(240, 207, 100, 0.22), rgba(255, 255, 255, 0.96));
}

.stripe-only i {
  grid-row: span 2;
  color: var(--gold);
  font-size: 30px;
}

.stripe-only strong,
.stripe-only small {
  display: block;
}

.stripe-only strong {
  color: var(--heading);
  font-weight: 800;
}

.stripe-only small {
  color: var(--muted);
  font-weight: 500;
}

.addon-options {
  display: grid;
  gap: 10px;
}

.addon-options > strong {
  color: var(--heading);
  font-size: 15px;
}

.addon-check {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 6px;
}

.addon-check input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--gold);
}

.addon-check span,
.addon-check b,
.addon-check small {
  display: block;
}

.addon-check b {
  color: var(--heading);
  font-size: 15px;
}

.addon-check small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.addon-check em {
  color: var(--heading);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.consent-stack {
  display: grid;
  gap: 10px;
}

.consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-check span {
  font-weight: 700;
}

.consent-check a {
  color: var(--heading);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.7);
  text-underline-offset: 3px;
}

.submit-btn {
  width: 100%;
  font-size: 16px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq {
  padding-top: 36px;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  padding: 20px 22px;
}

.faq-grid summary {
  color: var(--heading);
  cursor: pointer;
  font: 800 18px/1.35 var(--heading-font);
}

.faq-grid summary span {
  display: inline-flex;
  margin-right: 10px;
  padding: 5px 8px;
  color: #151515;
  background: #fff2b6;
  border-radius: 999px;
  font: 800 12px/1 var(--default-font);
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  display: block;
  color: var(--gold);
  font: 800 24px/1.2 var(--heading-font);
}

.footer p {
  margin: 8px 0 0;
}

.footer a {
  display: inline-flex;
  margin-left: 18px;
  color: #fff;
  font-weight: 800;
}

.legal-page {
  color: var(--ink);
  background: #f5f3ed;
}

.legal-hero {
  padding: 148px 0 68px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.66)),
    image-set(
      url("../img/hero-radio.avif") type("image/avif"),
      url("../img/hero-radio.webp") type("image/webp"),
      url("../img/hero-radio.jpg") type("image/jpeg")
    ) center/cover;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 14px 0 16px;
  color: #fff;
  font: 800 clamp(38px, 6vw, 72px)/1.02 var(--heading-font);
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.legal-section {
  padding-top: 54px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-index,
.legal-content article,
.legal-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.legal-index {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 4px;
  padding: 18px;
}

.legal-index strong {
  margin-bottom: 8px;
  color: var(--heading);
  font: 800 20px/1.2 var(--heading-font);
}

.legal-index a {
  padding: 9px 10px;
  color: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.legal-index a:hover {
  color: #151515;
  background: #fff2b6;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content article,
.legal-note {
  padding: 28px;
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font: 800 28px/1.15 var(--heading-font);
}

.legal-content p {
  margin: 0;
  color: #4b4b4b;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-note {
  border-color: rgba(212, 175, 55, 0.42);
  background: linear-gradient(135deg, rgba(240, 207, 100, 0.2), #fff);
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font: 800 18px/1.2 var(--heading-font);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #151515;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.scroll-top i {
  font-size: 28px;
  line-height: 1;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0.78)),
    image-set(
      url("../img/hero-radio.avif") type("image/avif"),
      url("../img/hero-radio.webp") type("image/webp"),
      url("../img/hero-radio.jpg") type("image/jpeg")
    ) center/cover;
}

.thanks-card {
  width: min(680px, 100%);
  padding: 36px;
  color: #f6f6f6;
  background: rgba(23, 23, 23, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.thanks-card h1 {
  color: #fff;
  font: 800 clamp(32px, 6vw, 52px)/1.05 var(--heading-font);
}

.thanks-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.status-card {
  width: min(760px, 100%);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.order-summary span {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.order-summary strong {
  color: var(--gold-bright);
  font-size: 13px;
  text-transform: uppercase;
}

.status-steps {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.status-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-weight: 800;
}

.status-steps li.is-done {
  color: #fff;
}

.status-steps i {
  color: var(--gold);
}

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

.station-ready-panel {
  margin: 22px 0;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.station-ready-panel h2 {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font: 800 22px/1.2 var(--heading-font);
}

.station-ready-panel code {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.metadata-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.metadata-stats span,
.muted-inline {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.metadata-preview {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metadata-preview strong {
  color: var(--gold-bright);
}

.metadata-preview span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.metadata-preview small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.muted-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
}

.notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.notice.success {
  color: #15351f;
  background: #dff7e7;
  border: 1px solid rgba(69, 212, 131, 0.48);
}

.notice.danger {
  color: #4d1717;
  background: #ffe1e1;
  border: 1px solid rgba(200, 48, 48, 0.34);
}

.customer-account-page {
  align-items: start;
}

.customer-account-card {
  width: min(980px, 100%);
  margin: 32px 0;
}

.account-back-link,
.account-logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: none;
}

.account-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.account-login-form {
  display: grid;
  gap: 14px;
  margin: 24px 0 14px;
}

.account-login-form label {
  color: #fff;
}

.account-helper {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 14px;
}

.account-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.account-overview article {
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 8px;
}

.account-overview i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #171717;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 8px;
  font-size: 22px;
}

.account-overview span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-overview strong {
  color: #fff;
  font: 800 24px/1.15 var(--heading-font);
}

.account-overview small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.account-order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.account-order-tabs a {
  display: inline-flex;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.account-order-tabs a.is-active {
  color: #171717;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: rgba(212, 175, 55, 0.7);
}

.account-actions .btn.is-disabled,
.account-actions button.btn[disabled],
.invoice-actions .btn.is-disabled,
.invoice-actions button.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  filter: grayscale(0.15);
}

.invoice-account-card {
  width: min(1080px, 100%);
}

.invoice-account-card h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 58px);
}

.invoice-account-card > p {
  max-width: 900px;
}

.invoice-overview article {
  min-height: 150px;
}

.invoice-overview {
  grid-template-columns: 1.15fr 0.85fr 1.25fr;
}

.invoice-card h2,
.invoice-card-main > strong {
  overflow-wrap: anywhere;
}

.invoice-overview strong {
  font-size: clamp(20px, 2.1vw, 25px);
  overflow-wrap: break-word;
}

.invoice-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.invoice-filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.38fr) auto;
  gap: 12px;
  align-items: end;
  margin: 8px 0 14px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
}

.invoice-filter-panel label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.invoice-filter-panel span {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.invoice-filter-panel input,
.invoice-filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: none;
}

.invoice-filter-panel input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.invoice-filter-panel select option {
  color: #171717;
}

.invoice-filter-panel input:focus,
.invoice-filter-panel select:focus {
  border-color: rgba(240, 207, 100, 0.78);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.invoice-filter-reset {
  min-height: 46px;
}

.invoice-filter-count {
  margin: 0 0 16px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 14px;
  font-weight: 800;
}

.invoice-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(24, 24, 24, 0.76);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.invoice-card.is-open,
.invoice-card.is-uncollectible {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: inset 4px 0 0 var(--gold);
}

.invoice-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 18px;
}

.invoice-card h2 {
  margin: 8px 0 4px;
  color: #fff;
  font: 800 clamp(20px, 2.3vw, 28px)/1.15 var(--heading-font);
  letter-spacing: 0;
}

.invoice-card p {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.74);
}

.invoice-card-main > strong {
  color: var(--gold-bright);
  padding-top: 14px;
  font: 800 clamp(22px, 2.4vw, 30px)/1 var(--heading-font);
  text-align: right;
  white-space: nowrap;
}

.invoice-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 5px 10px;
  color: #171717;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.invoice-status.is-paid {
  background: #dff7e7;
  color: #15351f;
}

.invoice-status.is-open,
.invoice-status.is-uncollectible {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #171717;
}

.invoice-status.is-void {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.invoice-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.invoice-meta span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  align-content: center;
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.invoice-meta strong {
  color: var(--gold-bright);
  font-size: 12px;
  text-transform: uppercase;
}

.invoice-actions {
  justify-content: flex-end;
  padding-top: 4px;
}

.invoice-actions .btn {
  min-height: 46px;
  white-space: normal;
}

.invoice-empty-filter {
  margin-top: 18px;
}

.addon-panel {
  margin-top: 18px;
}

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

.compact-actions form {
  margin: 0;
}

.compact-actions button {
  width: auto;
}

.upgrade-form {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

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

.upgrade-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.upgrade-option:hover,
.upgrade-option:has(input:checked) {
  color: #151515;
  border-color: rgba(212, 175, 55, 0.74);
  background: #fff2b6;
}

.upgrade-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.upgrade-option span {
  display: grid;
  gap: 6px;
}

.upgrade-option strong {
  font: 800 22px/1.1 var(--heading-font);
}

.upgrade-option em {
  font-style: normal;
  font-weight: 900;
}

.upgrade-option small {
  line-height: 1.45;
}

.upgrade-option b {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  color: #151515;
  font-size: 12px;
  border-radius: 6px;
  background: var(--gold-bright);
}

.knowledge-page {
  min-height: 100vh;
  padding: 34px clamp(18px, 4vw, 54px) 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.78)),
    image-set(
      url("../img/hero-radio.avif") type("image/avif"),
      url("../img/hero-radio.webp") type("image/webp"),
      url("../img/hero-radio.jpg") type("image/jpeg")
    ) center/cover fixed;
}

.knowledge-hero {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.knowledge-hero .brand {
  margin-bottom: 34px;
}

.knowledge-hero h1 {
  max-width: 820px;
  margin: 14px 0;
  color: #fff;
  font: 900 clamp(38px, 7vw, 76px)/0.98 var(--heading-font);
}

.knowledge-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.knowledge-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.knowledge-card {
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.knowledge-card > i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #151515;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.knowledge-card h2 {
  margin: 14px 0 10px;
  color: #fff;
  font: 800 22px/1.18 var(--heading-font);
}

.knowledge-card ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.log-panel {
  display: grid;
  gap: 7px;
  max-height: 440px;
  margin: 22px 0;
  padding: 14px;
  overflow: auto;
  color: #f7f3e8;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
}

.log-panel code,
.log-panel span {
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.checkout-page {
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.72)),
    image-set(
      url("../img/hero-radio.avif") type("image/avif"),
      url("../img/hero-radio.webp") type("image/webp"),
      url("../img/hero-radio.jpg") type("image/jpeg")
    ) center/cover fixed;
}

.checkout-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 48px 0;
}

.checkout-summary,
.checkout-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.checkout-summary {
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.checkout-brand {
  margin-bottom: 32px;
}

.checkout-summary h1,
.checkout-card h1,
.checkout-card h2 {
  margin: 14px 0 14px;
  color: #fff;
  font: 800 clamp(32px, 5vw, 54px)/1.05 var(--heading-font);
}

.checkout-card h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.checkout-summary p,
.checkout-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.checkout-lines {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.checkout-lines span {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.checkout-lines strong {
  color: var(--gold-bright);
  font-size: 13px;
  text-transform: uppercase;
}

.checkout-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

#payment-element {
  margin: 22px 0;
}

.payment-message {
  min-height: 24px;
  margin-bottom: 14px;
  color: #ffb5b5;
  font-weight: 800;
}

.submit-btn.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.cancel-order-form {
  margin-top: 14px;
}

.danger-btn {
  width: 100%;
  color: #ffdddd;
  border-color: rgba(255, 115, 115, 0.36);
  background: rgba(120, 24, 24, 0.34);
}

.danger-btn:hover {
  color: #fff;
  border-color: rgba(255, 115, 115, 0.58);
  background: rgba(160, 32, 32, 0.48);
}

@keyframes logo-float {
  0%, 100% {
    transform: rotateX(-10deg) rotateY(-24deg) translateY(0);
  }

  50% {
    transform: rotateX(-6deg) rotateY(-12deg) translateY(-3px);
  }
}

@keyframes bars {
  0%, 100% {
    transform: scaleY(0.68);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes pulse-width {
  0%, 100% {
    width: 88%;
  }

  50% {
    width: 97%;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0;
    padding: 8px;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-links.is-open a {
    padding: 14px;
  }

  .nav-links.is-open .mobile-login-link {
    display: block;
  }

  .hero-grid,
  .platform-grid,
  .demo-grid,
  .wizard-shell,
  .request-grid,
  .operations-grid,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .quick-grid,
  .upgrade-grid,
  .knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .topbar {
    display: grid;
    justify-content: stretch;
    font-size: 13px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 56px 92px;
    gap: 30px;
  }

  .hero p,
  .section-title p,
  .platform-copy p,
  .request-intro p {
    font-size: 16px;
  }

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

  .hero-console {
    padding: 20px;
  }

  .quick-path {
    margin-top: -38px;
  }

  .quick-grid,
  .package-grid,
  .upgrade-grid,
  .knowledge-grid,
  .feature-list,
  .wizard-shell,
  .preview-body,
  .preview-cards,
  .order-summary,
  .account-overview,
  .invoice-meta,
  .metadata-stats,
  .form-row,
  .addon-check,
  fieldset {
    grid-template-columns: 1fr;
  }

  .invoice-card-main {
    display: grid;
    grid-template-columns: 1fr;
  }

  .invoice-card-main > strong {
    padding-top: 0;
    text-align: left;
    white-space: normal;
  }

  .invoice-actions {
    justify-content: stretch;
  }

  .invoice-filter-panel {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
    padding: 20px;
  }

  .package-head {
    align-items: flex-start;
  }

  .price {
    font-size: 34px;
  }

  .checkout-summary,
  .checkout-card,
  .thanks-card {
    padding: 22px;
  }

  #payment-element {
    min-width: 0;
  }

  .section {
    padding: 68px 0;
  }

  .footer-grid {
    display: grid;
  }

  .footer a {
    margin: 0 18px 0 0;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


