:root {
  color-scheme: light;
  --ink: #090a2c;
  --muted: #5d6077;
  --soft: #f5f7ff;
  --line: #e8ebf4;
  --card: #ffffff;
  --blue: #3157ff;
  --blue-2: #1d8bff;
  --violet: #6c49ff;
  --green: #17b870;
  --orange: #f29d2e;
  --red: #db4a65;
  --shadow: 0 22px 55px rgba(35, 55, 120, 0.12);
  --radius: 8px;
  --container: min(1200px, calc(100vw - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  min-width: 320px;
}

body.page-bg {
  background: linear-gradient(180deg, #f8faff 0%, #fff 280px);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

main {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid rgba(223, 227, 240, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: white;
  font-size: 20px;
  font-weight: 900;
  background:
    radial-gradient(circle at 25% 20%, #28c6ff 0 20%, transparent 22%),
    linear-gradient(135deg, #2096ff 0%, #3157ff 48%, #7538ff 100%);
  box-shadow: 0 10px 22px rgba(49, 87, 255, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  flex: 1;
}

.main-nav a,
.site-footer a,
.text-link {
  color: var(--ink);
  text-decoration: none;
}

.main-nav a {
  color: #111431;
  font-size: 15px;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a.active,
.text-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-actions,
.hero-actions,
.cookie-actions,
.panel-title,
.dashboard-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-form {
  margin: 0;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  color: var(--ink);
  background: #fff;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button svg,
.icon-button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #3a45ee 55%, #6339fb 100%);
  box-shadow: 0 14px 28px rgba(49, 87, 255, 0.24);
}

.button.secondary {
  color: var(--blue);
  border-color: rgba(49, 87, 255, 0.46);
  background: #fff;
}

.button.ghost {
  color: var(--blue);
  border-color: var(--line);
  background: #fff;
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.icon-button {
  width: 44px;
  padding: 0;
  color: var(--blue);
  border-color: var(--line);
}

.icon-button svg {
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 34px 0 46px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid #e0dcff;
  border-radius: var(--radius);
  color: #2430a2;
  background: #f2efff;
  font-weight: 750;
  line-height: 1.2;
}

.badge span {
  color: var(--violet);
  font-size: 19px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.2vw, 66px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

@media (min-width: 781px) {
  .hero h1 span {
    white-space: nowrap;
  }
}

.hero-copy p {
  max-width: 570px;
  color: #3f435d;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  margin: 24px 0;
  flex-wrap: wrap;
}

.quick-search {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(34, 43, 75, 0.1);
}

.quick-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #8b91aa;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-search input {
  min-width: 0;
  height: 38px;
  border: 0;
  color: var(--ink);
  outline: 0;
}

.quick-search input::placeholder {
  color: #8a90a6;
}

.hero-panel,
.page-card,
.auth-form,
.waitlist-panel,
.tariff-card,
.notice-panel,
.details-grid article,
.ad-card-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 20px;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% 24%;
  height: 46%;
  background: radial-gradient(circle, rgba(49, 87, 255, 0.24), rgba(23, 184, 112, 0.15) 42%, transparent 72%);
  pointer-events: none;
}

.panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
}

.panel-head div,
.panel-title {
  justify-content: space-between;
}

.panel-head span,
.panel-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  color: #73788c;
  background: #f2f4fb;
  font-size: 13px;
  font-weight: 800;
}

.panel-head select {
  height: 36px;
  min-width: 140px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #4f5369;
  background: #fff;
}

.event-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.event-row {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 10px;
  border: 1px solid #edf0f5;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
}

.event-row.ok {
  background: #f1fbf5;
  border-color: #d8f3e2;
}

.event-row h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.event-row p {
  margin: 0;
  color: #6a7085;
  font-size: 13px;
}

.event-row button {
  border: 0;
  color: #8c92a5;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.thumb {
  height: 70px;
  border-radius: var(--radius);
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.dune .thumb {
  background:
    radial-gradient(circle at 58% 25%, rgba(255, 238, 204, 0.9) 0 11%, transparent 12%),
    linear-gradient(160deg, #1b1422 0 26%, #ae5f2b 58%, #e6a95c 100%);
}

.weeknd .thumb {
  background:
    radial-gradient(circle at 45% 22%, #1d1f26 0 16%, transparent 18%),
    linear-gradient(145deg, #050506, #2a2e36 52%, #0b0c0e);
}

.science .thumb {
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.9) 0 4%, transparent 5%),
    radial-gradient(circle at 35% 60%, rgba(91, 225, 255, 0.78) 0 13%, transparent 14%),
    linear-gradient(135deg, #102f6f, #13a0d8 48%, #e5faff);
}

.gta .thumb {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #5e1b87, #ee4187 42%, #ffa84a 68%, #22b8a9);
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: 190px;
  padding: 0 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 760;
}

.status.neutral {
  color: #60677c;
  background: #f1f3f7;
}

.status.warn {
  color: #a76400;
  background: #fff1dc;
}

.status.track {
  color: #2d42c0;
  background: #eef1ff;
}

.status.ok {
  color: #0f8a54;
  background: #dff7e9;
}

.demo-toast {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  width: min(340px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 20, 60, 0.16);
}

.demo-toast span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 26px;
  font-weight: 900;
}

.demo-toast button {
  border: 0;
  color: #71778b;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 43, 75, 0.07);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #32374f;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}

.category-chip span {
  color: var(--blue);
  font-size: 21px;
}

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

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  min-height: 120px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 43, 75, 0.07);
}

.step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-weight: 900;
}

.step-card:nth-child(2) .step-number {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.step-card:nth-child(3) .step-number {
  background: linear-gradient(135deg, #28c684, var(--green));
}

.step-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  align-self: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eff3ff;
  font-size: 30px;
  font-weight: 900;
}

.step-card h3,
.service-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.step-card p,
.service-card p,
.trust-strip,
.notice-panel p,
.legal-page p,
.details-grid p,
.tariff-card li,
.auth-copy p,
.form-note,
.empty-state p {
  color: var(--muted);
  line-height: 1.55;
}

.trust-strip {
  display: flex;
  justify-content: space-around;
  gap: 18px;
  margin: 24px 0 64px;
  padding: 22px;
  border-radius: var(--radius);
  background: #f7f8fd;
}

.trust-strip span {
  text-align: center;
}

.content-band,
.pricing-preview,
.ad-preview,
.page-hero,
.auth-layout,
.dashboard,
.legal-page,
.page-card,
.tariff-grid,
.details-grid {
  margin: 64px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.section-head h2,
.pricing-preview h2,
.ad-preview h2,
.page-hero h1,
.auth-copy h1,
.dashboard h1,
.legal-page h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card strong {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
}

.pricing-preview,
.ad-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7faff 0%, #fff 54%, #f2fff7 100%);
  border: 1px solid var(--line);
}

.ad-preview {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 96px;
}

.price-card {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid #dfe5ff;
  border-radius: var(--radius);
  background: #fff;
}

.price {
  font-size: 46px;
  font-weight: 900;
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(160px, 0.55fr));
  gap: 32px;
  padding: 38px max(20px, calc((100vw - 1200px) / 2));
  border-top: 1px solid var(--line);
  background: #fafbff;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
  color: #383d56;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 24px;
}

.page-hero {
  display: grid;
  gap: 10px;
  max-width: 940px;
}

.page-hero.compact {
  padding: 38px 0 0;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.advertiser-hero {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  max-width: none;
}

.ad-card-demo {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.08), rgba(23, 184, 112, 0.08)),
    #fff;
}

.ad-card-demo span,
.ad-slot span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #8a5300;
  background: #fff0d8;
  font-size: 12px;
  font-weight: 850;
}

.ad-card-demo h2 {
  font-size: 28px;
}

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

.tariff-card,
.notice-panel,
.details-grid article,
.page-card {
  padding: 28px;
}

.tariff-card.highlighted {
  border-color: rgba(49, 87, 255, 0.32);
}

.tariff-card h2,
.notice-panel h2,
.details-grid h2,
.auth-form h2,
.waitlist-panel h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.tariff-price {
  margin: 6px 0 20px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 900;
}

.tariff-price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.tariff-card ul,
.plain-list {
  margin: 0 0 22px;
  padding-left: 20px;
}

.notice-panel {
  margin: 24px 0 80px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 56px;
  align-items: start;
  padding-top: 36px;
}

.auth-copy {
  padding: 34px 0;
}

.auth-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.auth-form label,
.add-form label {
  display: grid;
  gap: 7px;
  color: #30364e;
  font-weight: 760;
}

.auth-form input,
.add-form input,
.add-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #dfe3ee;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: none;
}

.auth-form input:focus,
.add-form input:focus,
.add-form select:focus {
  border-color: rgba(49, 87, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(49, 87, 255, 0.08);
}

.form-errors {
  padding: 12px 14px;
  border: 1px solid #ffd4dc;
  border-radius: var(--radius);
  background: #fff3f5;
}

.form-errors p {
  margin: 0 0 5px;
  color: #a51e3a;
}

.form-errors p:last-child {
  margin-bottom: 0;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.dashboard {
  padding-top: 24px;
}

.dashboard-head {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
}

.dashboard-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.ad-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid #ffe4ba;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff8ec, #fff);
}

.ad-slot h2 {
  margin-bottom: 6px;
  font-size: 22px;
}

.ad-slot p {
  margin: 0;
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.waitlist-panel {
  padding: 24px;
}

.add-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin-top: 16px;
  padding: 28px;
  border: 1px dashed #d9deec;
  border-radius: var(--radius);
  text-align: center;
  background: #fafbff;
}

.empty-state strong {
  font-size: 20px;
}

.legal-page {
  max-width: 880px;
  padding: 36px 0 80px;
}

.legal-page h2 {
  margin: 26px 0 10px;
  font-size: 24px;
}

.legal-page a,
.details-grid a,
.notice-panel a,
.ad-slot a,
.form-note a {
  color: var(--blue);
  font-weight: 750;
}

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

.page-card {
  max-width: 680px;
}

.flash-stack {
  position: fixed;
  z-index: 80;
  top: 82px;
  right: 20px;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 40px));
}

.flash {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 20, 60, 0.14);
  color: var(--ink);
  font-weight: 720;
}

.flash.success {
  border-color: #c6efd9;
  background: #f0fbf5;
}

.flash.warning {
  border-color: #ffe2ae;
  background: #fff8e9;
}

.flash.info {
  border-color: #dce4ff;
  background: #f4f7ff;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 48px rgba(12, 20, 60, 0.16);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1040px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    font-size: 24px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
  }

  .hero-panel {
    max-width: 760px;
  }

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

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

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  .site-header {
    height: 64px;
  }

  .main-nav {
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  .brand {
    font-size: 24px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 30px 0 32px;
    gap: 26px;
  }

  .badge {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-copy p {
    font-size: 15px;
  }

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

  .quick-search {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 8px;
    padding-left: 12px;
  }

  .quick-search .button {
    padding: 0 12px;
  }

  .hero-panel {
    padding: 14px;
  }

  .event-row {
    grid-template-columns: 72px minmax(0, 1fr) 26px;
    min-height: 74px;
  }

  .event-row .status {
    grid-column: 2 / -1;
    justify-self: start;
    min-height: 26px;
    font-size: 12px;
  }

  .thumb {
    height: 62px;
  }

  .demo-toast {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .category-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px;
  }

  .category-chip {
    min-width: max-content;
    min-height: 44px;
    padding: 0 16px;
  }

  .steps,
  .service-grid,
  .pricing-preview,
  .ad-preview,
  .tariff-grid,
  .details-grid,
  .auth-layout,
  .dashboard-grid,
  .advertiser-hero,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head .eyebrow {
    margin-bottom: 0;
  }

  .step-card {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 22px;
  }

  .trust-strip {
    display: grid;
    margin-bottom: 40px;
  }

  .content-band,
  .pricing-preview,
  .ad-preview,
  .page-hero,
  .auth-layout,
  .dashboard,
  .legal-page,
  .page-card,
  .tariff-grid,
  .details-grid {
    margin: 42px 0;
  }

  .pricing-preview,
  .ad-preview {
    padding: 24px;
  }

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

  .dashboard-head,
  .ad-slot {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .button {
    width: 100%;
    padding: 0 14px;
  }

  .header-actions .button {
    width: auto;
  }

  .quick-search {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .quick-search button {
    grid-column: 1 / -1;
  }

  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-head select {
    width: 100%;
  }

  .event-row h3 {
    font-size: 14px;
  }

  .status {
    white-space: normal;
  }
}
