:root {
  color-scheme: dark;
  --ink: #06101d;
  --ink-2: #0a1726;
  --panel: rgba(14, 30, 48, 0.82);
  --panel-solid: #10243a;
  --line: rgba(166, 214, 244, 0.16);
  --line-strong: rgba(166, 214, 244, 0.3);
  --text: #f4fbff;
  --muted: #a9bfd1;
  --cyan: #71e5ff;
  --cyan-deep: #32b9df;
  --lime: #c6f970;
  --coral: #ff8a73;
  --success: #78f0b3;
  --warning: #ffd37d;
  --danger: #ff917f;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 34px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --container: 1180px;
  font-family: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 2%, rgba(50, 185, 223, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(198, 249, 112, 0.1), transparent 26rem),
    linear-gradient(180deg, #06101d 0%, #081524 58%, #050b13 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--cyan);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(113, 229, 255, 0.44);
  border-radius: 50%;
  background: #0c2337;
  box-shadow: 0 0 32px rgba(113, 229, 255, 0.22);
}

.brand-mark::before {
  content: "";
  width: 20px;
  height: 13px;
  border-bottom: 3px solid var(--cyan);
  border-radius: 50%;
  box-shadow:
    inset 0 -3px var(--lime),
    0 5px 0 -2px var(--coral);
  transform: rotate(-12deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), #a5efff 52%, var(--lime));
  box-shadow: 0 14px 36px rgba(50, 185, 223, 0.18);
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(50, 185, 223, 0.26);
  filter: saturate(1.08);
}

.button:disabled {
  cursor: wait;
  filter: grayscale(0.6);
  opacity: 0.65;
  transform: none;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.button-quiet {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(56px, 8vw, 110px) 0 90px;
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-copy > p:not(.eyebrow),
.page-hero > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions,
.card-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--success);
}

.show-console {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(14, 35, 55, 0.95), rgba(6, 17, 29, 0.9)),
    var(--panel);
  box-shadow: var(--shadow);
}

.show-console::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -140px;
  border: 48px solid rgba(113, 229, 255, 0.07);
  border-radius: 50%;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(120, 240, 179, 0.2);
  border-radius: 999px;
  color: var(--success);
  background: rgba(120, 240, 179, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}

.waveform {
  display: flex;
  height: 170px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 52px 0 36px;
}

.waveform i {
  display: block;
  width: 7px;
  height: calc(22px + (var(--level) * 1px));
  max-height: 155px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--coral), var(--cyan) 58%, var(--lime));
  box-shadow: 0 0 22px rgba(113, 229, 255, 0.24);
  animation: wave 2.4s ease-in-out infinite alternate;
  animation-delay: calc(var(--level) * -18ms);
}

.waveform i:nth-child(4n + 1) { --level: 28; }
.waveform i:nth-child(4n + 2) { --level: 76; }
.waveform i:nth-child(4n + 3) { --level: 116; }
.waveform i:nth-child(4n) { --level: 54; }
.waveform i:nth-child(7n) { --level: 132; }

.timeline-rail {
  display: grid;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.timeline-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-track span {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: var(--track, var(--cyan));
}

.timeline-row:nth-child(1) .timeline-track span { --fill: 100%; --track: var(--success); }
.timeline-row:nth-child(2) .timeline-track span { --fill: 88%; --track: var(--cyan); }
.timeline-row:nth-child(3) .timeline-track span { --fill: 64%; --track: var(--coral); }

.console-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.console-footer strong {
  display: block;
  font-size: 1.15rem;
}

.console-footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: clamp(74px, 9vw, 120px) 0;
}

.section-tight {
  padding-top: 20px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head h2,
.cta-panel h2,
.auth-panel h1,
.dashboard-hero h1,
.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.section-head p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.steps-grid,
.feature-grid,
.pricing-grid,
.support-grid,
.metric-grid {
  display: grid;
  gap: 16px;
}

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

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

.metric-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card,
.feature-card,
.metric-card,
.price-card,
.support-card,
.legal-card,
.dashboard-card,
.order-card,
.auth-panel,
.upload-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(19, 42, 65, 0.78), rgba(9, 23, 38, 0.76));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.step-card,
.feature-card,
.metric-card,
.support-card {
  padding: 24px;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 850;
}

.step-card h3,
.feature-card h3,
.support-card h3,
.order-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.step-card p,
.feature-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card {
  min-height: 260px;
  grid-column: span 4;
}

.feature-card-wide {
  display: grid;
  min-height: 340px;
  grid-column: span 8;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 28px;
  background:
    radial-gradient(circle at 75% 30%, rgba(113, 229, 255, 0.14), transparent 14rem),
    linear-gradient(150deg, rgba(19, 42, 65, 0.9), rgba(9, 23, 38, 0.82));
}

.feature-orbit {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid rgba(113, 229, 255, 0.18);
  border-radius: 50%;
}

.feature-orbit::before,
.feature-orbit::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(198, 249, 112, 0.2);
  border-radius: 50%;
}

.feature-orbit::after {
  inset: 42%;
  border: 0;
  background: var(--cyan);
  box-shadow: 0 0 70px 18px rgba(113, 229, 255, 0.28);
}

.metric-card strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.metric-card span {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 24px;
}

.price-card.is-featured {
  border-color: rgba(113, 229, 255, 0.48);
  background:
    radial-gradient(circle at 90% 4%, rgba(113, 229, 255, 0.18), transparent 12rem),
    linear-gradient(150deg, rgba(18, 50, 72, 0.94), rgba(8, 24, 40, 0.9));
  transform: translateY(-8px);
}

.price-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price {
  margin: 1rem 0 0.4rem;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.price small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.annual-price {
  display: none;
}

html[data-billing="annual"] .monthly-price {
  display: none;
}

html[data-billing="annual"] .annual-price {
  display: block;
}

.price-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li::before,
.check-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--success);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.purchase-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  line-height: 1.55;
}

.purchase-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--cyan);
  flex: 0 0 auto;
}

.purchase-consent a {
  color: var(--cyan);
}

.billing-toggle,
.auth-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.billing-toggle button,
.auth-tabs button {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.billing-toggle button.is-active,
.auth-tabs button.is-active {
  color: var(--ink);
  background: var(--cyan);
}

.faq-list {
  display: grid;
  max-width: 880px;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.faq-list summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list details p {
  max-width: 70ch;
  margin: -4px 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(113, 229, 255, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 249, 112, 0.13), transparent 20rem),
    linear-gradient(130deg, rgba(20, 55, 78, 0.9), rgba(8, 23, 37, 0.95));
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 70px 0 44px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 0.9rem;
}

.site-footer a {
  display: block;
  margin: 0.55rem 0;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-note {
  max-width: 38ch;
  line-height: 1.65;
}

.page-hero {
  padding: 90px 0 56px;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-notice,
.form-status,
.dashboard-notice {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
}

.page-notice[data-state="error"],
.form-status[data-state="error"],
.dashboard-notice[data-state="error"],
.error-copy {
  border-color: rgba(255, 145, 127, 0.3);
  color: var(--danger);
}

.page-notice[data-state="success"],
.form-status[data-state="success"],
.dashboard-notice[data-state="success"] {
  border-color: rgba(120, 240, 179, 0.3);
  color: var(--success);
}

dialog {
  width: min(500px, calc(100% - 28px));
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: #0a1929;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(1, 7, 13, 0.78);
  backdrop-filter: blur(12px);
}

.dialog-inner {
  padding: 28px;
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.dialog-head h2 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(113, 229, 255, 0.1);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.75rem;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.dashboard-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: 60px;
}

.auth-gate {
  display: grid;
  min-height: calc(100vh - 100px);
  place-items: center;
  padding: 40px 0;
}

.auth-panel {
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 42px);
}

.auth-panel h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.auth-panel > p {
  color: var(--muted);
  line-height: 1.7;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.account-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.account-chip strong,
.account-chip span {
  display: block;
}

.account-chip span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 58px 0 36px;
}

.dashboard-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.dashboard-card,
.upload-panel {
  padding: 22px;
}

.plan-card {
  grid-column: span 4;
}

.upload-panel {
  grid-column: span 8;
}

.orders-panel {
  grid-column: 1 / -1;
}

.card-kicker {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0.7rem 0 0;
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.plan-stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.plan-stat strong,
.plan-stat span {
  display: block;
}

.plan-stat span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.upload-drop {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  border: 1px dashed rgba(113, 229, 255, 0.35);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(113, 229, 255, 0.035);
}

.upload-drop input {
  max-width: 100%;
}

.muted {
  color: var(--muted);
}

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

.order-card {
  padding: 20px;
}

.order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.status-badge {
  flex: 0 0 auto;
}

.status-failed,
.status-cancelled,
.status-expired {
  border-color: rgba(255, 145, 127, 0.2);
  color: var(--danger);
  background: rgba(255, 145, 127, 0.08);
}

.status-processing,
.status-queued,
.status-pending {
  border-color: rgba(255, 211, 125, 0.2);
  color: var(--warning);
  background: rgba(255, 211, 125, 0.08);
}

.job-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.job-row strong,
.job-row span {
  display: block;
}

.job-row span {
  margin-top: 3px;
  font-size: 0.76rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h3 {
  margin: 0;
  font-size: 1.5rem;
}

.support-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.support-card,
.legal-card {
  padding: clamp(22px, 4vw, 36px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 46px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 20px;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--cyan);
}

.legal-card h2 {
  margin: 2rem 0 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.8;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.comparison td {
  color: var(--muted);
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes wave {
  to { transform: scaleY(0.35); filter: hue-rotate(22deg); }
}

@media (max-width: 1020px) {
  .nav a:not(.button) {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .show-console {
    min-height: 460px;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: span 6;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

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

  .plan-card,
  .upload-panel {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .shell,
  .dashboard-shell {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding: 16px 0;
  }

  .nav .button {
    min-height: 42px;
    padding: 0.7rem 0.9rem;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .show-console {
    min-height: 420px;
    padding: 18px;
  }

  .waveform i {
    width: 5px;
  }

  .section-head,
  .cta-panel,
  .dashboard-hero,
  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-grid,
  .pricing-grid,
  .metric-grid,
  .support-grid,
  .order-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: 240px;
    grid-column: 1 / -1;
  }

  .price-card.is-featured {
    transform: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

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

/* Original BrillSync luxury neon identity */
:root {
  --ink: #020207;
  --ink-2: #090812;
  --panel: rgba(9, 8, 18, 0.9);
  --panel-solid: #0e0c19;
  --line: rgba(170, 176, 255, 0.16);
  --line-strong: rgba(145, 130, 240, 0.34);
  --text: #f8f7fb;
  --muted: #aaa7b6;
  --cyan: #45d7ff;
  --cyan-deep: #4774ff;
  --lime: #8b46ff;
  --coral: #f249bb;
  --success: #58deb0;
  --warning: #ffd37d;
  --danger: #ff91aa;
  --radius-sm: 13px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
  --container: 1420px;
  --brand-gradient: linear-gradient(105deg, var(--cyan), var(--cyan-deep) 34%, var(--lime) 66%, var(--coral));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--ink);
}

body {
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 16%, rgba(178, 43, 255, 0.1), transparent 34rem),
    radial-gradient(circle at 15% 12%, rgba(44, 126, 255, 0.1), transparent 34rem),
    var(--ink);
}

body::before {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

::selection {
  color: #05040a;
  background: var(--cyan);
}

.shell {
  width: min(var(--container), calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 92px;
  padding: 16px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(180, 190, 255, 0.09);
  background: rgba(2, 2, 7, 0.8);
  backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  position: relative;
  flex: 0 0 auto;
  gap: 14px;
  min-height: 60px;
  padding: 0 0 13px;
  font-size: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 13px;
  background: #000 url("/assets/brillsync-logo.webp") center / cover no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(92, 79, 255, 0.2);
}

.brand-mark::before {
  display: none;
}

.brand::after {
  content: "BrillSync";
  align-self: center;
  color: transparent;
  background: linear-gradient(90deg, #f8f7fb 0 48%, #527cff 61%, #a14aff 76%, #f04bb8);
  background-clip: text;
  font-size: 1.82rem;
  font-weight: 650;
  letter-spacing: -0.055em;
}

.brand::before {
  content: "YOUR SONG. YOUR SHOW. YOUR STAGE.";
  position: absolute;
  left: 70px;
  bottom: 2px;
  width: max-content;
  color: #c4c1ce;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.23em;
}

.nav {
  gap: clamp(4px, 1vw, 14px);
}

.nav a {
  color: #d3d0dc;
  font-weight: 500;
}

.nav a:hover {
  color: #fff;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow:
    0 12px 34px rgba(102, 67, 255, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.38);
  font-weight: 780;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.48) 48%, transparent 66%);
  background-size: 240% 100%;
  animation: brandSweep 4.8s ease-in-out infinite;
}

.button:hover {
  box-shadow:
    0 16px 50px rgba(110, 64, 255, 0.44),
    inset 0 1px rgba(255, 255, 255, 0.45);
}

.button-secondary,
.button-quiet {
  border-color: rgba(109, 100, 214, 0.65);
  color: #fff;
  background: rgba(8, 7, 17, 0.76);
  box-shadow: none;
}

.button-secondary::after,
.button-quiet::after {
  display: none;
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: rgba(100, 211, 255, 0.68);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

.button-small {
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
}

.eyebrow,
.card-kicker {
  color: #c9c6d2;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 0.7rem;
  vertical-align: middle;
  background: var(--brand-gradient);
  box-shadow: 0 0 15px var(--cyan);
}

.hero {
  position: relative;
  min-height: 570px;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(170, 180, 255, 0.08);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 39%;
  z-index: 0;
  background-image: url("/assets/brillsync-hero.webp");
  background-repeat: no-repeat;
  background-position: 100% 25%;
  background-size: auto 200%;
  filter: saturate(1.08) contrast(1.03);
  animation: artBreath 7s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #020207 0%, #020207 22%, rgba(2, 2, 7, 0.98) 34%, rgba(2, 2, 7, 0.48) 55%, rgba(2, 2, 7, 0.03) 78%),
    linear-gradient(180deg, rgba(2, 2, 7, 0.18), transparent 38%, rgba(2, 2, 7, 0.42));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 48%);
  padding: 70px 0 64px;
}

.hero .eyebrow {
  margin-bottom: 1rem;
  color: #aaa7b6;
}

.hero h1,
.page-hero h1 {
  max-width: none;
  font-size: clamp(3.6rem, 5.6vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1.01;
}

.hero h1 em {
  color: transparent;
  background: var(--brand-gradient);
  background-clip: text;
}

.hero-copy > p:not(.eyebrow):not(.hero-tagline) {
  max-width: 560px;
  margin: 1.35rem 0 0;
  color: #b2afbd;
  font-size: 1.16rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.15rem;
}

.hero-tagline {
  margin-top: 1.7rem;
  color: #d1ced9;
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.hero-tagline b {
  color: var(--cyan);
}

.hero-tagline span {
  color: #a352ff;
}

.hero-tagline i {
  color: var(--coral);
  font-style: normal;
}

.play-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0.62rem;
}

.show-console {
  display: none;
}

.marquee {
  position: relative;
  z-index: 6;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(145, 130, 240, 0.2);
  background: linear-gradient(90deg, rgba(9, 18, 42, 0.72), rgba(7, 6, 14, 0.95) 42%, rgba(35, 7, 35, 0.72));
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 0.95rem 0;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #a9a5b5;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after {
  content: "✦";
  color: #9452ff;
  text-shadow: 0 0 10px #9452ff;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-head {
  margin-bottom: 3.25rem;
}

.section-head h2,
.cta-panel h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.section-head > p {
  color: var(--muted);
}

.metric-grid,
.steps-grid,
.feature-grid,
.pricing-grid,
.support-grid,
.dashboard-grid {
  gap: 16px;
}

.metric-card,
.step-card,
.feature-card,
.price-card,
.support-card,
.legal-card,
.dashboard-card,
.upload-panel,
.order-card,
.auth-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(9, 8, 18, 0.82);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.24);
}

.metric-card {
  min-height: 128px;
}

.metric-card strong {
  color: transparent;
  background: var(--brand-gradient);
  background-clip: text;
}

.steps-grid {
  border: 1px solid rgba(145, 130, 240, 0.28);
  border-radius: 24px;
  background: rgba(9, 8, 17, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step-card {
  min-height: 220px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.step-number {
  border-color: currentColor;
  color: var(--cyan);
  background: #0c1531;
  box-shadow: 0 0 18px rgba(61, 184, 255, 0.24);
}

.step-card:nth-child(2) .step-number {
  color: #a45bff;
  background: #24103a;
}

.step-card:nth-child(3) .step-number {
  color: var(--coral);
  background: #321027;
}

.feature-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(71, 116, 255, 0.12), transparent 15rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
}

.feature-card-wide {
  background:
    radial-gradient(circle at 75% 30%, rgba(139, 70, 255, 0.23), transparent 17rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.feature-orbit {
  border-color: rgba(69, 215, 255, 0.22);
  box-shadow: 0 0 70px rgba(71, 116, 255, 0.08);
}

.feature-orbit::before {
  border-color: rgba(139, 70, 255, 0.34);
}

.feature-orbit::after {
  background: var(--brand-gradient);
  box-shadow:
    0 0 45px 12px rgba(69, 215, 255, 0.2),
    0 0 80px 28px rgba(242, 73, 187, 0.14);
}

.price-card {
  min-height: 520px;
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(96, 208, 255, 0.42);
}

.price-card.is-featured {
  border-color: rgba(137, 77, 255, 0.7);
  background:
    radial-gradient(circle at 85% 8%, rgba(242, 73, 187, 0.16), transparent 14rem),
    linear-gradient(155deg, rgba(102, 50, 220, 0.24), rgba(255, 255, 255, 0.02) 52%);
  box-shadow: 0 22px 65px rgba(71, 34, 170, 0.18);
}

.price {
  color: #fff;
}

.price-card li::before,
.check-list li::before {
  color: var(--success);
}

.billing-toggle,
.auth-tabs {
  border-color: rgba(145, 130, 240, 0.28);
  background: rgba(10, 8, 18, 0.88);
}

.billing-toggle button.is-active,
.auth-tabs button.is-active {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow:
    0 7px 22px rgba(93, 61, 226, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.32);
}

.faq-list details {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(138, 80, 255, 0.44);
  background:
    radial-gradient(circle at 50% 110%, rgba(56, 173, 255, 0.22), transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(242, 73, 187, 0.15), transparent 24rem),
    #090812;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.07) 49%, transparent 66%);
  transform: translateX(-120%);
  animation: panelSweep 7s ease-in-out infinite;
}

.page-hero {
  position: relative;
  padding: 100px 0 72px;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: min(440px, 40vw);
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.32;
  background: conic-gradient(from 90deg, var(--cyan), var(--lime), var(--coral), var(--cyan));
  filter: blur(90px);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-notice,
.form-status,
.dashboard-notice {
  background: rgba(255, 255, 255, 0.035);
}

dialog {
  border-color: rgba(145, 130, 240, 0.42);
  color: var(--text);
  background:
    radial-gradient(circle at 95% 0%, rgba(139, 70, 255, 0.18), transparent 17rem),
    #100d1c;
}

dialog::backdrop {
  background: rgba(2, 2, 7, 0.82);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(170, 176, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(69, 215, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(69, 215, 255, 0.1);
}

.dashboard-shell {
  width: min(1320px, calc(100% - 48px));
}

.dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 92px;
  border-bottom: 1px solid rgba(180, 190, 255, 0.09);
  background: rgba(2, 2, 7, 0.8);
  backdrop-filter: blur(20px) saturate(130%);
}

.dashboard-hero h1,
.auth-panel h1 {
  color: transparent;
  background: linear-gradient(90deg, #fff 0 56%, var(--cyan) 68%, var(--lime) 82%, var(--coral));
  background-clip: text;
}

.avatar {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 0 24px rgba(139, 70, 255, 0.28);
}

.plan-name {
  color: transparent;
  background: var(--brand-gradient);
  background-clip: text;
}

.plan-stat,
.job-row,
.upload-drop,
.empty-state {
  border-color: rgba(170, 176, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.upload-drop {
  border-color: rgba(139, 70, 255, 0.48);
  background: linear-gradient(145deg, rgba(69, 215, 255, 0.04), rgba(242, 73, 187, 0.04));
}

.support-card,
.legal-card {
  border-radius: var(--radius);
}

.legal-nav {
  top: 112px;
}

.comparison-wrap {
  border-color: var(--line);
  background: rgba(9, 8, 18, 0.7);
}

.comparison th {
  background: rgba(139, 70, 255, 0.08);
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(170, 176, 255, 0.1);
  background: linear-gradient(180deg, transparent, rgba(9, 8, 18, 0.38));
}

.site-footer .brand {
  width: max-content;
}

.site-footer a:hover,
.legal-nav a:hover {
  color: var(--cyan);
}

@keyframes brandSweep {
  0%,
  54% {
    background-position: 200% 0;
  }
  82%,
  100% {
    background-position: -100% 0;
  }
}

@keyframes artBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.015);
  }
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes panelSweep {
  0%,
  64% {
    transform: translateX(-120%);
  }
  88%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1020px) {
  .site-header {
    min-height: 84px;
  }

  .nav a {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    inset: 0 0 0 20%;
    opacity: 0.72;
  }

  .hero::after {
    background:
      linear-gradient(90deg, #020207 0%, rgba(2, 2, 7, 0.96) 35%, rgba(2, 2, 7, 0.5) 72%, rgba(2, 2, 7, 0.18)),
      linear-gradient(180deg, rgba(2, 2, 7, 0.18), transparent 38%, rgba(2, 2, 7, 0.75));
  }

  .hero-copy {
    width: min(650px, 70%);
  }

  .step-card:not(:last-child) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .shell,
  .dashboard-shell {
    width: min(100% - 24px, var(--container));
  }

  .site-header,
  .dashboard-topbar {
    min-height: 76px;
    padding: 10px 0;
  }

  .brand {
    min-height: 48px;
    gap: 10px;
    padding-bottom: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 11px;
  }

  .brand::after {
    font-size: 1.36rem;
  }

  .brand::before {
    display: none;
  }

  .nav .button {
    min-height: 42px;
    padding: 0.7rem 0.92rem;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 650px;
    padding: 0;
  }

  .hero::before {
    inset: 18% -34% 0 0;
    opacity: 0.52;
    background-position: 84% 30%;
    background-size: auto 150%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, #020207 0%, rgba(2, 2, 7, 0.82) 56%, rgba(2, 2, 7, 0.42)),
      linear-gradient(90deg, #020207 0%, rgba(2, 2, 7, 0.55) 70%, rgba(2, 2, 7, 0.18));
  }

  .hero-copy {
    width: 100%;
    padding: 62px 0 78px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-copy > p:not(.eyebrow):not(.hero-tagline) {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-tagline {
    max-width: 30ch;
    line-height: 1.8;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(330px, 100%);
  }

  .marquee-group {
    gap: 1.8rem;
    padding-right: 1.8rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .step-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .price-card {
    min-height: 470px;
  }

  .price-card.is-featured {
    transform: none;
  }

  .page-hero {
    padding: 76px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
}
