:root {
  --bg: #f7f8fc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-strong: #f3f5fb;
  --text: #121a33;
  --muted: #58627d;
  --line: rgba(17, 26, 51, 0.08);
  --primary: #0f6fff;
  --primary-deep: #0d44b8;
  --teal: #31d0d4;
  --mint: #8df7d7;
  --orange: #ff9b2f;
  --violet: #d2a6ff;
  --shadow-xl: none;
  --shadow-lg: none;
  --shadow-md: none;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

[id] {
  scroll-margin-top: 32px;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(116, 227, 208, 0.2), transparent 22%),
    radial-gradient(circle at top right, rgba(197, 141, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
}

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

img {
  max-width: 100%;
}

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-divider {
  border-top: 1px solid var(--line);
}

.centered-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-pill-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-pill-group .eyebrow {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 111, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.8rem, 6.2vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 3.35vw, 3.4rem);
}

h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.lead {
  margin-top: 22px;
  font-size: 1.16rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(251, 252, 255, 0.8);
  border-bottom: 1px solid rgba(17, 26, 51, 0.06);
}

.nav-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-row {
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 210px;
  max-width: 42vw;
  height: auto;
}

.footer-brand .brand-logo {
  width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 55%),
    linear-gradient(135deg, var(--teal), var(--primary));
  box-shadow: none;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-mark::before {
  width: 18px;
  height: 4px;
  left: 12px;
  top: 13px;
  transform: rotate(-35deg);
}

.brand-mark::after {
  width: 12px;
  height: 4px;
  left: 16px;
  top: 22px;
  transform: rotate(-35deg);
}

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

.top-nav,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #42506f;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -12px;
  left: auto;
  width: min(100vw - 24px, 520px);
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dfe6f2;
}

.mobile-nav-panel a {
  display: block;
  padding: 14px 12px;
  color: var(--text);
  font-weight: 700;
}

.top-nav a,
.ghost-link,
.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 800;
  box-shadow: none;
}

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

.button-secondary {
  background: #edf3ff;
  color: var(--primary-deep);
  box-shadow: none;
}

.play-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #edf2ff;
  color: #3555b6;
  font-size: 0.82rem;
  font-weight: 850;
}

.hero {
  padding-top: 70px;
  padding-bottom: 48px;
  overflow: hidden;
}

.aurora {
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: 0.7;
  border-radius: 50%;
  pointer-events: none;
}

.aurora-left {
  background: radial-gradient(circle, rgba(92, 240, 212, 0.46), transparent 62%);
  left: -120px;
  top: 120px;
}

.aurora-right {
  background: radial-gradient(circle, rgba(205, 142, 255, 0.38), transparent 62%);
  right: -120px;
  top: 140px;
}

.hero-stage {
  position: relative;
  min-height: auto;
  margin-top: 52px;
}

.device,
.visual-panel,
.feature-tile,
.info-card,
.price-card,
.check-item,
.detail-card,
.presenter-card,
.music-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-browser {
  width: min(930px, 92vw);
  margin: 0 auto;
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 247, 252, 0.84));
  border: 1px solid rgba(222, 229, 240, 0.9);
  box-shadow: none;
  position: relative;
}

.hero-platform-visual {
  position: relative;
  width: min(1080px, 94vw);
  margin: 0 auto;
}

.hero-platform-shell {
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(15, 111, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 253, 0.98));
  border: 1px solid #dde6f3;
}

.hero-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hero-channel-card {
  display: grid;
  grid-template-rows: 190px auto 1fr auto;
  gap: 14px;
  min-height: 340px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe6f2;
}

.hero-channel-website {
  background: rgba(255, 255, 255, 0.94);
  border-color: #dfe6f2;
}

.hero-channel-card .sync-device {
  min-height: 0;
  height: 100%;
}

.hero-dashboard-preview {
  display: grid;
  grid-template-rows: 38px 1fr;
  gap: 14px;
  min-height: 0;
  height: 100%;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #edf3fb);
  border: 1px solid #d4e2f5;
}

.hero-site-nav {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 12px;
  align-items: center;
  padding: 0 4px;
}

.hero-site-logo,
.hero-site-links span,
.hero-site-play,
.hero-site-pinned,
.hero-site-copy strong,
.hero-site-copy span,
.hero-phone-mock span {
  display: block;
  background: linear-gradient(90deg, #dce8f7, #f5f8fc);
}

.hero-site-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.hero-site-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-site-links span {
  width: 46px;
  height: 10px;
  border-radius: 999px;
}

.hero-site-play {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  position: relative;
}

.hero-site-play::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 0;
  height: 0;
  border-left: 9px solid #8ea2c5;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.hero-site-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  min-height: 0;
}

.hero-site-pinned {
  border-radius: 18px;
  background: linear-gradient(180deg, #eef5ff, #e3edf9);
  border: 1px solid #d4e2f5;
}

.hero-site-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.hero-site-copy strong {
  width: 72%;
  height: 18px;
  border-radius: 999px;
}

.hero-site-copy span {
  height: 12px;
  border-radius: 999px;
}

.hero-site-copy span:nth-child(3) {
  width: 82%;
}

.hero-site-copy span:nth-child(4) {
  width: 58%;
}

.hero-phone-crop {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #edf3fb);
  border: 1px solid #d4e2f5;
}

.hero-phone-mock {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  width: 108px;
  height: 210px;
  margin-top: 22px;
  padding: 44px 16px 0;
  border-radius: 30px;
  background:
    linear-gradient(#d4deec, #d4deec) center 18px / 34px 6px no-repeat,
    linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid #d4e2f5;
}

.hero-phone-mock i {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef5ff, #e3edf9);
  border: 1px solid #d4e2f5;
}

.hero-phone-mock i::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 13px;
  width: 0;
  height: 0;
  border-left: 11px solid #6c83c8;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.hero-phone-mock span {
  height: 10px;
  border-radius: 999px;
}

.hero-phone-mock span:nth-child(1) {
  width: 80%;
}

.hero-phone-mock span:nth-child(2) {
  width: 100%;
}

.hero-phone-mock span:nth-child(3) {
  width: 62%;
}

.hero-channel-card strong {
  color: var(--text);
  font-size: 1.12rem;
}

.hero-channel-card p {
  margin: 0;
  color: #66728d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-card-link {
  width: fit-content;
  color: #3555b6;
  font-size: 0.84rem;
  font-weight: 850;
}

.hero-sync-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dfe6f2;
}

.hero-sync-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #edf2ff;
  color: #3555b6;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-nav-card,
.hero-competition-card,
.hero-schedule-card,
.hero-now-playing-card {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dfe6f2;
}

.hero-nav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 14px 16px;
}

.hero-nav-brand,
.hero-nav-brand i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(180deg, #edf6ff, #e7f1ff);
  border: 1px solid #d4e2f5;
}

.hero-nav-brand span,
.hero-nav-actions span {
  color: #42506f;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-home-grid {
  display: none;
}

.hero-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 16px;
  margin-top: 16px;
}

.hero-main-column,
.hero-side-column {
  display: grid;
  gap: 16px;
}

.hero-station-banner,
.hero-competition-card,
.hero-schedule-card,
.hero-now-playing-card {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dfe6f2;
}

.hero-station-banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  min-height: 132px;
  background: linear-gradient(180deg, #eef5ff, #e7f1ff);
  border-color: #d4e2f5;
}

.hero-schedule-card,
.hero-now-playing-card {
  padding: 16px;
}

.hero-station-copy {
  display: grid;
  gap: 10px;
  max-width: 340px;
}

.hero-kicker {
  color: #6d7b9d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-station-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.hero-card-head {
  margin-bottom: 12px;
}

.hero-card-head strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
}

.hero-competition-art {
  height: 248px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3f7fd, #edf2f9);
  border: 1px solid #d4e2f5;
}

.hero-copy-lines {
  margin-top: 14px;
}

.hero-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-schedule-grid span {
  display: block;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fcfdff, #f5f8fd);
  border: 1px dashed #b5c2db;
}

.hero-schedule-grid .filled {
  background: linear-gradient(180deg, #eef5ff, #e8f0fb);
  border: 1px solid #d4e2f5;
}

.hero-meta-row,
.hero-track-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
}

.hero-meta-row {
  padding: 4px 0 0;
}

.hero-meta-row i,
.hero-line-group b {
  display: block;
}

.hero-meta-row i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f0f6ff, #eaf1fb);
  border: 1px solid #d4e2f5;
}

.hero-line-group {
  display: grid;
  gap: 8px;
}

.hero-line-group b {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8 0%, #f7f9fc 100%);
}

.hero-line-group .short {
  width: 66%;
}

.hero-track-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.hero-track-row {
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
  border: 1px solid #dfe6f2;
}

.hero-mobile {
  position: absolute;
  right: 28px;
  bottom: -18px;
  width: 222px;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 252, 0.94));
  border: 1px solid rgba(222, 229, 240, 0.9);
  box-shadow: none;
}

.hero-mobile-notch {
  width: 88px;
  height: 9px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(67, 80, 111, 0.14);
}

.hero-mobile-screen {
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
  border: 1px solid #e1e7f1;
}

.hero-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.hero-mobile-feature {
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f3f7fd, #edf2f9);
  border: 1px solid #d4e2f5;
}

.hero-mobile-lines {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.hero-mobile-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8 0%, #f7f9fc 100%);
}

.hero-mobile-lines .short {
  width: 70%;
}

.hero-mobile-card {
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dfe6f2;
  margin-bottom: 12px;
}

.hero-mobile-meta i {
  display: block;
}

.hero-mobile-meta {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
}

.hero-mobile-meta i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f0f6ff, #eaf1fb);
  border: 1px solid #d4e2f5;
}

.hero-mobile-meta-card {
  margin-bottom: 0;
}

.stack-line,
.editor-block,
.sidebar-panel,
.frame-hero,
.frame-grid,
.frame-columns,
.frame-stack,
.track-lines span,
.ad-thumb,
.ad-copy,
.ad-status,
.mini-input,
.mini-options span {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 111, 255, 0.12), rgba(49, 208, 212, 0.16));
}

.stack-line {
  height: 42px;
  margin-bottom: 14px;
}

.stack-line.wide {
  height: 140px;
}

.phone-header {
  height: 120px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #24386d, #182247);
}

.phone-card {
  height: 56px;
  margin-bottom: 12px;
}

.card-bright {
  background: linear-gradient(135deg, rgba(255, 155, 47, 0.28), rgba(255, 93, 145, 0.24));
}

.floating-pill {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  color: var(--primary-deep);
  font-weight: 700;
}

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.section-head p {
  margin-top: 18px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}

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

.cms-feature-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 500px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 253, 0.98));
  border: 1px solid #e3e9f3;
  box-shadow: none;
}

.integrated-feature-card {
  grid-template-rows: 1fr;
}

.cms-illustration {
  display: grid;
  align-content: stretch;
  height: 560px;
  padding: 22px;
  margin-bottom: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 248, 252, 0.9));
  box-shadow: none;
}

.cms-illustration > * {
  width: 100%;
  height: 100%;
}

.screenshot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, #eef4fb, #e4edf8);
  border: 1px dashed #b5c2db;
  color: #6d7b9d;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.brand-colours-ui,
.module-list-ui,
.page-list-ui,
.publish-list-ui {
  position: relative;
  display: grid;
  gap: 14px;
  height: 100%;
  min-height: 0;
}

.brand-colours-ui {
  grid-template-rows: 142px 109px 109px 114px;
}

.module-list-ui,
.page-list-ui {
  grid-template-rows: repeat(4, minmax(0, 86px)) 114px;
}

.publish-list-ui {
  grid-template-rows: minmax(0, 388px) 114px;
}

.cms-panel-head {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 0;
  min-height: 0;
  height: 100%;
  margin-top: 0;
  padding: 18px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.99));
  border: 1px solid #cfd9ea;
}

.cms-panel-head h3 {
  margin: 0;
  font-size: 1.44rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.cms-panel-head p {
  margin-top: 8px;
  color: #75829e;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.brand-logo-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dfe6f2;
  min-height: 0;
  height: 100%;
}

.brand-logo-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.88rem;
}

.logo-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfdff, #f5f8fd);
  border: 1px dashed #b5c2db;
}

.logo-image-placeholder {
  position: relative;
  width: 54px;
  height: 44px;
  border-radius: 14px;
  background:
  linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 251, 0.92));
  border: 1px solid #cfd9ea;
}

.logo-image-placeholder::before {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6c83c8;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.brand-row,
.module-row,
.page-row {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dfe6f2;
  min-height: 0;
  height: 100%;
}

.brand-row {
  grid-template-columns: minmax(0, 1fr) 170px 52px;
}

.brand-row strong,
.module-row strong,
.page-row strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.brand-row span,
.module-row span,
.page-row span {
  display: block;
  margin-top: 4px;
  color: #75829e;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.colour-input {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #dfe6f2;
  color: var(--text);
  font-weight: 800;
  background: #fff;
}

.brand-row i {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #0f4c8a;
  border: 1px solid #dfe6f2;
}

.brand-row i.blue {
  background: #38b6ff;
}

.module-row {
  grid-template-columns: 18px minmax(0, 1fr) 58px;
}

.page-row {
  grid-template-columns: 18px minmax(0, 1fr) 52px;
}

.drag-dots {
  width: 14px;
  height: 22px;
  opacity: 0.5;
  background-image: radial-gradient(circle, #6d7b9d 1.5px, transparent 1.5px);
  background-size: 7px 7px;
}

.module-row em {
  color: #6d7b9d;
  font-style: normal;
  font-weight: 800;
}

.toggle {
  display: block;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d6deee;
  background: linear-gradient(180deg, #f7f9fd, #eef3fa);
  position: relative;
}

.toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(207, 217, 234, 0.9);
  box-shadow: none;
}

.toggle.on {
  background: linear-gradient(135deg, #dbe7ff, #c2d8ff);
  border-color: #a7bfef;
}

.toggle.on::after {
  left: auto;
  right: 4px;
}

.module-row.muted {
  opacity: 0.72;
}

.page-row i {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid #dfe6f2;
  background:
    center / 18px 18px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 6L18 18M18 6L6 18' stroke='%23000000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
  position: relative;
}

.page-row i::before {
  content: none;
}

.page-row i::after {
  content: none;
}

.cms-page-card,
.cms-embed-card,
.cms-nav-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dfe6f2;
}

.cms-page-card {
  padding: 18px;
}

.cms-card-title {
  width: 42%;
  height: 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8 0%, #f7f9fc 100%);
}

.cms-writing-card {
  position: relative;
}

.cms-writing-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.cms-writing-toolbar span {
  display: block;
  width: 34px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8 0%, #f7f9fc 100%);
}

.cms-hero-block {
  height: 150px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f3f7fd, #edf2f9);
  border: 1px solid #d4e2f5;
}

.cms-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.cms-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8 0%, #f7f9fc 100%);
}

.cms-lines .short {
  width: 68%;
}

.cms-lines .medium {
  width: 82%;
}

.cms-cursor-line {
  width: 2px;
  height: 28px;
  margin-top: 14px;
  border-radius: 999px;
  background: #6c83c8;
}

.cms-embed-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  min-height: 96px;
}

.cms-embed-card + .cms-embed-card {
  margin-top: 14px;
}

.cms-embed-card.compact {
  opacity: 0.78;
}

.cms-embed-card i,
.cms-module-grid i,
.cms-date-row span {
  display: block;
}

.cms-embed-card i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef5ff, #e8f0fb);
  border: 1px solid #d4e2f5;
}

.cms-nav-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px;
}

.cms-nav-card span {
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fcfdff, #f5f8fd);
  border: 1px solid #dfe6f2;
}

.cms-nav-card .active {
  background: linear-gradient(180deg, #eef5ff, #e8f0fb);
  border-color: #d4e2f5;
}

.cms-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.cms-module-grid i {
  height: 92px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed #b5c2db;
}

.cms-article-preview {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  height: 100%;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
  border: 1px solid #dfe6f2;
}

.cms-post-thumb {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #f3f7fd, #edf2f9);
  border: 1px solid #d4e2f5;
}

.cms-article-preview .cms-lines {
  margin-top: 12px;
}

.publish-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #edf2ff, #e7eefc);
  border: 1px solid #d6e0f2;
}

.publish-status-row strong,
.publish-status-row span {
  display: block;
  font-size: 0.78rem;
}

.publish-status-row strong {
  color: #3555b6;
  font-weight: 900;
}

.publish-status-row span {
  color: #66728d;
  font-weight: 800;
}

.cms-schedule-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.cms-schedule-fields div {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfdff, #f5f8fd);
  border: 1px solid #dfe6f2;
}

.cms-schedule-fields strong,
.cms-schedule-fields span {
  display: block;
}

.cms-schedule-fields strong {
  color: #75829e;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cms-schedule-fields span {
  margin-top: 8px;
  color: #3555b6;
  font-weight: 800;
}

.cms-publish-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 999px;
  color: #3555b6;
  font-weight: 800;
  background: linear-gradient(180deg, #edf2ff, #e7eefc);
  border: 1px solid #d6e0f2;
}

.cms-feature-copy {
  width: 100%;
  padding: 24px 0 6px;
}

.cms-feature-copy h3 {
  width: 100%;
  font-size: 1.62rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.cms-feature-copy p {
  width: 100%;
  max-width: none;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.62;
}

.platform-sync {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 18%, rgba(15, 111, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 253, 0.96));
  border: 1px solid #e3e9f3;
  box-shadow: none;
}

.platform-sync::before {
  display: none;
}

.sync-card {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe6f2;
}

.sync-card p {
  margin-top: 12px;
  color: #66728d;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.58;
}

.sync-link {
  display: inline-flex;
  margin-top: 16px;
  color: #3555b6;
  font-size: 0.9rem;
  font-weight: 850;
}

.sync-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
}

.sync-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.sync-device {
  position: relative;
  min-height: 128px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff, #edf3fb);
  border: 1px solid #d4e2f5;
  overflow: hidden;
}

.browser-device {
  padding: 18px;
}

.browser-device span {
  display: block;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce8f7, #f5f8fc);
}

.browser-device span:first-child {
  width: 52%;
}

.browser-device span:nth-child(2) {
  width: 82%;
}

.browser-device span:last-child {
  width: 66%;
}

.phone-device {
  min-height: 168px;
  padding: 26px 24px 26px 148px;
  background: linear-gradient(180deg, #f8fbff, #edf3fb);
}

.phone-device::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 18px;
  width: 94px;
  height: 132px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid #d4e2f5;
}

.phone-device::after {
  content: "";
  position: absolute;
  left: 58px;
  top: 32px;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: #d4deec;
}

.phone-device > span {
  position: relative;
  z-index: 1;
  display: block;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce8f7, #f5f8fc);
}

.phone-device > span:first-of-type {
  width: 62%;
  margin-top: 22px;
}

.phone-device > span:nth-of-type(2) {
  width: 86%;
}

.phone-device > span:last-of-type {
  width: 52%;
}

.speaker-device {
  display: grid;
  align-content: center;
  padding: 18px;
  min-height: 168px;
}

.voice-lines {
  display: flex;
  justify-content: center;
  gap: 8px;
  height: 86px;
  align-items: center;
}

.voice-lines span {
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dce8f7, #f5f8fc);
}

.voice-lines span:first-child {
  height: 42px;
}

.voice-lines span:nth-child(2) {
  height: 76px;
}

.voice-lines span:last-child {
  height: 52px;
}

.channel-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.channel-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 114px;
  gap: 14px;
  min-height: 560px;
  padding: 18px;
}

.channel-card .radio-feature-head {
  display: grid;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 18px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.99));
  border: 1px solid #cfd9ea;
}

.channel-card .radio-feature-head h3 {
  margin: 0;
  font-size: 1.44rem;
  line-height: 1.12;
}

.channel-card .radio-feature-head p {
  margin-top: 8px;
  color: #75829e;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.channel-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 26px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: none;
}

.app-card-visual {
  align-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at 32% 28%, rgba(15, 111, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 248, 252, 0.9));
}

.app-feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.app-feature-pills span,
.speaker-prompts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe6f2;
  color: #66728d;
  font-size: 0.78rem;
  font-weight: 850;
}

.speaker-card-visual {
  align-content: center;
  gap: 20px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 248, 252, 0.9));
}

.speaker-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 140px;
}

.speaker-wave span {
  width: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dce8f7, #f5f8fc);
}

.speaker-wave span:nth-child(1) {
  height: 68px;
}

.speaker-wave span:nth-child(2) {
  height: 118px;
}

.speaker-wave span:nth-child(3) {
  height: 92px;
}

.speaker-wave span:nth-child(4) {
  height: 54px;
}

.alexa-pulse {
  position: relative;
  width: 190px;
  height: 150px;
  gap: 0;
}

.alexa-pulse::before,
.alexa-pulse::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 1px solid rgba(188, 205, 232, 0.48);
  transform: translate(-50%, -50%);
}

.alexa-pulse::after {
  width: 132px;
  height: 132px;
  border-color: rgba(210, 222, 241, 0.42);
}

.alexa-pulse span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(180, 199, 229, 0.36);
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.alexa-pulse span:nth-child(1) {
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #dce8f7, #f5f8fc);
  border: 0;
  opacity: 0.9;
}

.alexa-pulse span:nth-child(2) {
  width: 58px;
  height: 58px;
  opacity: 0.78;
}

.alexa-pulse span:nth-child(3) {
  width: 104px;
  height: 104px;
  opacity: 0.5;
}

.alexa-pulse span:nth-child(4) {
  width: 148px;
  height: 148px;
  opacity: 0.28;
}

.speaker-command {
  width: fit-content;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe6f2;
  color: #3555b6;
  font-weight: 900;
}

.speaker-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.radio-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.radio-feature-card {
  height: 100%;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 253, 0.98));
  border: 1px solid #e3e9f3;
  box-shadow: none;
}

.radio-feature-head {
  margin-bottom: 28px;
  padding: 4px 0 0;
}

.radio-showcase .radio-feature-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 114px;
  gap: 14px;
  min-height: 560px;
  padding: 18px;
}

.radio-showcase .radio-feature-head {
  display: grid;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 18px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.99));
  border: 1px solid #cfd9ea;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #6d7b9d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.radio-feature-head h3 {
  width: 100%;
  max-width: none;
  font-size: 1.72rem;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.radio-feature-head p {
  width: 100%;
  max-width: none;
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.radio-showcase .radio-feature-head h3 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 1.44rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.radio-showcase .radio-feature-head p {
  width: 100%;
  max-width: none;
  margin-top: 8px;
  color: #75829e;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.schedule-board {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 248, 252, 0.9));
  box-shadow: none;
}

.simple-schedule-board {
  width: 100%;
  opacity: 1;
}

.schedule-header {
  display: grid;
  grid-template-columns: 44px repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.schedule-header span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 10px;
  color: #3555b6;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
}

.schedule-header span:first-child {
  opacity: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 44px repeat(3, 1fr);
  gap: 12px;
  min-height: 0;
}

.time-rail,
.day-column {
  display: grid;
  gap: 12px;
}

.time-rail {
  grid-template-rows: repeat(3, 1fr);
}

.time-rail span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(15, 111, 255, 0.03);
  border-radius: 10px;
  color: #6f7c98;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.62);
}

.day-column {
  position: relative;
  grid-template-rows: repeat(3, 1fr);
  padding: 0;
  border-radius: 14px;
  background: transparent;
}

.slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 12px 10px;
  border-radius: 18px;
  color: #243250;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  border: 1px solid #dbe3f0;
}

.accent-slot {
  background: linear-gradient(180deg, #eef5ff, #e8f0fb);
  border-color: #cfe0f6;
}

.slot-empty {
  color: #73809d;
  background:
    linear-gradient(180deg, #fcfdff, #f5f8fd);
  border: 1px dashed #b5c2db;
}

.slot strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.slot-filled-ui .ui-lines {
  width: 100%;
  gap: 7px;
}

.slot-filled-ui .ui-lines span {
  height: 9px;
  background: linear-gradient(90deg, rgba(73, 94, 148, 0.16) 0%, rgba(73, 94, 148, 0.08) 100%);
}

.slot-filled-ui .ui-lines .short {
  width: 58%;
}

.slot-empty strong {
  display: inline-block;
  padding-left: 0;
  color: #6c83c8;
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1;
}

.avatar,
.cover-art {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 111, 255, 0.28), rgba(255, 155, 47, 0.28));
}

.presenter-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metadata-stack {
  display: grid;
  grid-template-rows: 96px minmax(0, 1fr);
  gap: 16px;
  height: 100%;
  min-height: 0;
  align-content: stretch;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 248, 252, 0.9));
  border: 1px solid rgba(196, 210, 236, 0.38);
}

.inline-card {
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(246, 249, 253, 0.96));
  border: 1px solid #dbe3f0;
  box-shadow: none;
}

.presenter-card {
  display: grid;
  gap: 10px;
}

.music-card {
  display: grid;
  gap: 12px;
}

.presenter-card strong,
.music-card-title strong,
.track-copy strong {
  display: block;
  color: var(--text);
}

.presenter-card .avatar {
  width: 64px;
  height: 64px;
}

.presenter-copy {
  display: grid;
  gap: 8px;
}

.music-card-title {
  display: grid;
  gap: 2px;
}

.music-card-title span,
.track-copy span {
  color: #75829e;
  font-size: 0.78rem;
  font-weight: 700;
}

.ui-lines {
  display: grid;
  gap: 8px;
}

.ui-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8 0%, #f7f9fc 100%);
}

.ui-lines .short {
  width: 68%;
}

.track-list {
  display: grid;
  gap: 8px;
}

.track-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
  border: 1px solid #dfe6f2;
}

.current-track {
  grid-template-columns: 28px 1fr;
  padding: 10px;
  background: linear-gradient(180deg, #f0f6ff, #eaf1fb);
  border-color: #d4e2f5;
}

.track-copy {
  display: grid;
  gap: 2px;
}

.track-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #edf2ff;
  color: #3555b6;
  font-size: 0.78rem;
  font-weight: 800;
}

.radio-copy {
  grid-column: 1 / -1;
  max-width: 700px;
  display: grid;
  gap: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-tile,
.info-card,
.price-card {
  padding: 28px;
  border-radius: 28px;
}

.feature-tile.small {
  min-height: 220px;
}

.feature-tile.wide,
.feature-tile.large {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  align-items: center;
  gap: 26px;
}

.feature-tile.wide {
  grid-column: span 2;
}

.feature-tile.large {
  grid-column: span 2;
}

.tile-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: none;
}

.icon-news {
  background: linear-gradient(135deg, #ffe59f, #ffbf69);
}

.icon-weather {
  background: linear-gradient(135deg, #8fe9ff, #b9ffd5);
}

.icon-events {
  background: linear-gradient(135deg, #ffc4cf, #ffe6cf);
}

.icon-gallery {
  background: linear-gradient(135deg, #bbffd9, #84d6ff);
}

.icon-community {
  background: linear-gradient(135deg, #aedaff, #e8f0ff);
}

.icon-newsletter {
  background: linear-gradient(135deg, #ffd0e2, #ffe7c7);
}

.icon-custom {
  background: linear-gradient(135deg, #ffe7a8, #ffd06e);
}

.icon-template {
  background: linear-gradient(135deg, #c9f0ff, #85caff);
}

.mini-form {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
}

.mini-input {
  height: 52px;
  margin-bottom: 18px;
}

.mini-options {
  display: flex;
  gap: 12px;
}

.mini-options span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.ad-preview {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
}

.ad-row {
  display: grid;
  grid-template-columns: 56px 1fr 96px;
  gap: 12px;
}

.ad-thumb {
  height: 52px;
}

.ad-copy {
  height: 18px;
  align-self: center;
}

.ad-copy.short {
  width: 70%;
}

.ad-status {
  height: 18px;
  align-self: center;
}

.soft {
  opacity: 0.6;
}

.design-showcase {
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 111, 255, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.98));
  border: 1px solid #e3e9f3;
  box-shadow: none;
}

.design-example-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.design-example-track::-webkit-scrollbar {
  display: none;
}

.design-example-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: end;
  min-height: 560px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 248, 252, 0.9));
  box-shadow: none;
  scroll-snap-align: start;
}

.design-browser {
  overflow: hidden;
  padding: 12px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #d8e1ef;
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 28px;
  padding: 0 8px;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d9e2f0;
}

.site-shot {
  display: grid;
  grid-template-rows: 36px 210px 1fr;
  gap: 18px;
  min-height: 430px;
  padding: 22px;
  border-radius: 20px;
}

.real-site-shot {
  display: block;
  overflow: hidden;
  padding: 0;
  background: #f5f8fd;
  border: 1px solid #dfe6f2;
}

.real-site-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.site-nav,
.site-hero,
.site-content-grid span,
.phone-lines span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
}

.site-nav {
  width: 72%;
}

.site-hero {
  background: rgba(255, 255, 255, 0.28);
}

.site-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.design-phone {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 390px;
  padding: 14px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid #d8e1ef;
}

.phone-speaker {
  width: 44px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #d9e2f0;
}

.phone-shot {
  display: grid;
  grid-template-rows: 124px 1fr;
  gap: 16px;
  min-height: 326px;
  padding: 16px;
  border-radius: 22px;
}

.phone-shot.real-site-shot {
  display: block;
  padding: 0;
}

.phone-shot.real-site-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.phone-lines {
  display: grid;
  align-content: start;
  gap: 10px;
}

.phone-lines span {
  height: 14px;
}

.phone-lines span:nth-child(2) {
  width: 76%;
}

.phone-lines span:nth-child(3) {
  width: 54%;
}

.coastal-shot {
  background: linear-gradient(145deg, #0f6fff, #20c7c9 58%, #f8fbff);
}

.city-shot {
  background: linear-gradient(145deg, #111827, #3158d4 56%, #ff9b2f);
}

.classic-shot {
  background: linear-gradient(145deg, #123a5a, #f2b94b 58%, #fff7e2);
}

.design-slider-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #66728d;
  font-size: 0.78rem;
  font-weight: 800;
}

.design-slider-hint span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cfd9ea;
}

.design-slider-hint span:first-child {
  width: 22px;
  background: #3555b6;
}

.business-list {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 14px;
}

.check-item {
  position: relative;
  padding: 22px 24px 22px 78px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.check-item strong,
.check-item span {
  display: block;
}

.check-item strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.check-item span {
  margin-top: 5px;
  color: #66728d;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.check-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #30d1a5, #18b487);
  box-shadow: none;
}

.check-item::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 30px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.narrow {
  max-width: 760px;
}

.pricing-section {
  padding-bottom: 110px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  display: grid;
  align-content: space-between;
  min-height: 470px;
  text-align: center;
}

.price-card strong {
  display: block;
  margin: 20px 0 8px;
  font-size: 2rem;
}

.price-card strong span {
  display: inline;
  margin: 0;
  color: #66728d;
  font-size: 0.92rem;
  font-weight: 800;
}

.price-features {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-features li {
  position: relative;
  padding-left: 24px;
  color: #66728d;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.35;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #30d1a5, #18b487);
}

.featured {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 245, 255, 0.92)),
    #fff;
  transform: translateY(-8px);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 111, 255, 0.1);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer {
  padding: 34px 0 60px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 320px;
}

@media (max-width: 1080px) {
  .top-nav,
  .ghost-link {
    display: none;
  }

  .mobile-nav {
    display: block;
    order: 3;
    margin-left: 8px;
    position: static;
  }

  .hero-stage {
    min-height: auto;
  }

  .desktop {
    width: min(92vw, 820px);
  }

  .tablet {
    left: 30px;
  }

  .phone {
    right: 30px;
  }

  .split-layout,
  .pricing-grid,
  .business-list {
    grid-template-columns: 1fr;
  }

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

  .radio-showcase {
    grid-template-columns: 1fr;
  }

  .channel-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .hero-channel-card {
    grid-template-rows: 180px auto 1fr auto;
    min-height: 0;
  }

  .hero-channel-website {
    grid-template-rows: 220px auto;
  }

  .hero-platform-float,
  .hero-platform-float-alt {
    display: none;
  }

  .platform-sync::before {
    display: none;
  }

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

  .feature-tile.large,
  .feature-tile.wide {
    grid-column: span 2;
  }

  .design-example-slide {
    grid-template-columns: minmax(0, 1fr) 150px;
    min-height: 500px;
  }

  .site-shot {
    min-height: 390px;
  }

  .design-phone {
    min-height: 350px;
  }

  .phone-shot {
    min-height: 286px;
  }

}

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

  h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .hero-pill-group {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .hero-pill-group .eyebrow {
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .container {
    width: min(100vw - 24px, 100%);
  }

  .nav-row,
  .footer-row,
  .cards-row,
  .hero-cards {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .site-header .nav-row {
    flex-direction: row;
  }

  .nav-row,
  .footer-row {
    align-items: flex-start;
  }

  .site-header .nav-row {
    align-items: center;
    position: relative;
    min-height: 72px;
  }

  .nav-actions {
    width: auto;
    margin-left: auto;
    order: 2;
  }

  .nav-actions .button {
    display: none;
  }

  .brand-logo {
    width: 178px;
    max-width: 38vw;
  }

  .mobile-nav summary {
    width: 46px;
    height: 46px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .mobile-nav-panel {
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 24px;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
    margin-top: 42px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .device,
  .desktop,
  .tablet,
  .phone,
  .hero-platform-visual,
  .frame-desktop,
  .left-frame,
  .center-front,
  .right-frame {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .floating-pill {
    display: none;
  }

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

  .hero-sidebar {
    display: none;
  }

  .hero-cards,
  .platform-sync,
  .hero-channel-grid,
  .channel-showcase,
  .feature-grid,
  .cards-row,
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-platform-visual {
    width: 100%;
    padding: 12px;
  }

  .hero-platform-shell {
    padding: 12px;
  }

  .hero-channel-card {
    min-height: 0;
    padding: 16px;
    grid-template-rows: auto auto auto;
  }

  .hero-channel-website {
    grid-template-rows: auto auto;
  }

  .hero-dashboard-preview {
    aspect-ratio: 16 / 10;
  }

  .hero-phone-crop {
    display: grid;
    place-items: start center;
    height: 220px;
    overflow: hidden;
    padding: 30px 12px 0;
  }

  .hero-phone-mock {
    width: 178px;
    height: 280px;
    margin-top: 0;
    padding-top: 44px;
    transform: translateY(0);
  }

  .speaker-device {
    display: grid;
    place-items: center;
    min-height: 170px;
    aspect-ratio: 16 / 10;
    padding: 18px;
  }

  .voice-lines {
    width: min(100%, 190px);
  }

  .feature-tile.wide,
  .feature-tile.large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .editor-body {
    grid-template-columns: 1fr;
  }

  .schedule-header,
  .schedule-grid {
    grid-template-columns: 34px repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .time-rail,
  .day-column {
    gap: 8px;
  }

  .day-column {
    grid-template-rows: repeat(3, minmax(74px, 1fr));
  }

  .time-rail span,
  .slot {
    min-height: 74px;
    padding: 10px 8px;
  }

  .design-showcase {
    padding: 12px;
  }

  .design-example-track {
    gap: 14px;
  }

  .design-example-slide {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: auto;
    gap: 12px;
    padding: 12px;
    align-items: start;
  }

  .design-browser {
    padding: 8px;
    border-radius: 16px;
  }

  .browser-bar {
    height: 24px;
  }

  .site-shot {
    min-height: 0;
    aspect-ratio: auto;
    grid-template-rows: 28px 1fr auto;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .site-shot.real-site-shot {
    padding: 0;
    border-radius: 0;
  }

  .site-shot.real-site-shot img {
    object-fit: contain;
    object-position: top center;
  }

  .design-phone {
    width: 110px;
    height: auto;
    min-height: 0;
    align-self: start;
    justify-self: center;
    margin-top: 0;
    padding: 10px;
    border-radius: 22px;
  }

  .phone-shot {
    min-height: 0;
    grid-template-rows: 1fr;
    gap: 0;
    padding: 0;
    border-radius: 16px;
  }

  .phone-speaker {
    display: none;
  }

  .phone-shot.real-site-shot img {
    object-fit: cover;
    object-position: center top;
  }

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

  .cms-feature-card {
    min-height: 0;
    padding: 14px;
  }

  .cms-illustration {
    height: auto;
    min-height: 0;
    padding: 14px;
  }

  .brand-colours-ui {
    grid-template-rows: auto;
    grid-auto-rows: minmax(110px, auto);
    gap: 12px;
  }

  .brand-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .brand-row > div:first-child {
    grid-column: 1 / -1;
  }

  .brand-row .colour-input {
    width: auto;
    min-width: 0;
    justify-content: flex-start;
  }

  .brand-row i {
    width: 52px;
    height: 46px;
    flex: 0 0 52px;
  }

  .module-list-ui,
  .page-list-ui {
    grid-template-rows: none;
    grid-auto-rows: minmax(78px, auto);
    gap: 12px;
  }

  .publish-list-ui {
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .cms-panel-head {
    min-height: 0;
    padding: 16px;
  }

  .cms-panel-head h3 {
    font-size: 1.2rem;
  }

  .cms-panel-head p {
    font-size: 0.8rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

}
