:root {
  --primary: #0f6cbd;
  --secondary: #38bdf8;
  --accent: #facc15;
  --dark: #09090b;
  --light: #f8fafc;
  --surface: #0f172a;
  --surface-soft: rgba(15, 23, 42, 0.68);
  --panel: #ffffff;
  --panel-border: rgba(148, 163, 184, 0.16);
  --text: #e2e8f0;
  --text-dark: #0f172a;
  --muted: #94a3b8;
  --success: #10b981;
  --danger: #ef4444;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 48px rgba(2, 8, 23, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 28%),
    linear-gradient(180deg, #050816 0%, #091227 30%, #f4f7fb 30%, #f8fbff 100%);
  color: var(--text-dark);
}

body.is-zoom-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 12px 28px rgba(14, 116, 196, 0.28);
}

.button-hero-primary {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)) padding-box,
    linear-gradient(135deg, #48b8ff, #0f6cbd 55%, #facc15 100%) border-box;
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 34px rgba(15, 108, 189, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-hero-primary span {
  position: relative;
  z-index: 1;
}

.button-hero-primary:hover {
  transform: translateY(-2px) scale(1.01);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.22);
  color: #f8fafc;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.button-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #991b1b;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.public-shell .site-theme {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-shell .site-theme::before,
.public-shell .site-theme::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.public-shell .site-theme::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.32) 0%, rgba(56, 189, 248, 0) 70%);
}

.public-shell .site-theme::after {
  width: 460px;
  height: 460px;
  top: 120px;
  left: -160px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, rgba(250, 204, 21, 0) 72%);
}

.waiting-theme {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(56, 189, 248, 0.05), transparent 20%),
    radial-gradient(circle at bottom center, rgba(250, 204, 21, 0.03), transparent 18%),
    linear-gradient(180deg, #000207 0%, #01030a 36%, #000207 100%);
}

.waiting-theme::before {
  width: 720px;
  height: 720px;
  top: -220px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, rgba(56, 189, 248, 0) 70%);
}

.waiting-theme::after {
  width: 680px;
  height: 680px;
  bottom: -260px;
  left: 50%;
  top: auto;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(250, 204, 21, 0.04) 0%, rgba(250, 204, 21, 0) 70%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #071128;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 92px;
}

.site-theme {
  padding-top: 92px;
}

.public-shell main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.waiting-theme {
  padding-top: 0;
}

.waiting-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 20px;
}

.waiting-shell {
  width: min(1180px, 100%);
  display: grid;
  gap: 34px;
  justify-items: center;
}

.waiting-copy {
  max-width: 760px;
  text-align: center;
}

.waiting-copy .eyebrow {
  color: #7dd3fc;
}

.waiting-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #f8fafc;
}

.waiting-copy p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(226, 232, 240, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.85;
}

.waiting-image-wrap {
  width: min(100%, 1080px);
  display: flex;
  justify-content: center;
}

.waiting-image-wrap img {
  width: min(100%, 980px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 46px 82px rgba(0, 2, 8, 0.78))
    drop-shadow(0 0 12px rgba(56, 189, 248, 0.03));
}

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

.brand-with-logo {
  align-items: center;
}

.brand-mark img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 108, 189, 0.28);
}

.brand-mark img.brand-logo {
  width: clamp(196px, 22vw, 268px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

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

.brand-mark strong,
.section-heading h2,
.hero-copy h1,
.cta-banner h2,
.admin-header h1,
.login-card h1 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-mark strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.brand-mark small {
  display: block;
  color: rgba(226, 232, 240, 0.72);
  max-width: 320px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(226, 232, 240, 0.88);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.locale-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.locale-switcher a:hover {
  transform: translateY(-1px);
  color: #fff;
}

.locale-flag {
  line-height: 1;
  filter: saturate(1.05);
}

.locale-switcher a.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow:
    0 10px 20px rgba(2, 8, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  color: #fff;
  max-width: 620px;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 0;
  max-width: 560px;
  font-size: 1.16rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.65;
}

.hero-body {
  margin: 18px 0 0;
  max-width: 560px;
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.72;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-stack {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 18px;
  width: min(100%, 520px);
  padding: 0;
}

.device-frame {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, rgba(15, 108, 189, 0.45), rgba(2, 6, 23, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(2, 8, 23, 0.38);
}

.device-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.device-header img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.floating-panel {
  position: relative;
  z-index: 3;
  width: min(260px, 78%);
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(6, 17, 32, 0.96), rgba(15, 36, 65, 0.94));
  border: 1px solid rgba(250, 204, 21, 0.34);
  box-shadow:
    0 22px 48px rgba(2, 8, 23, 0.34),
    0 0 0 1px rgba(250, 204, 21, 0.08) inset;
  color: #f8fafc;
  overflow: hidden;
}

.floating-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.95), rgba(72, 184, 255, 0.7));
}

.floating-panel span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.14);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.floating-panel strong {
  display: block;
  margin-top: 14px;
  font-size: 1rem;
}

.floating-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.floating-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.92rem;
  line-height: 1.35;
}

.floating-list li::before {
  content: "";
  width: 7px;
  min-width: 7px;
  height: 7px;
  margin-top: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.device-header strong,
.device-card strong,
.stat-card strong,
.feature-card h3,
.timeline-card h3,
.showcase-card h3,
.audience-card strong,
.pricing-card h3,
.contact-card strong,
.admin-stat-card strong {
  display: block;
  font-size: 1.04rem;
}

.device-header small,
.device-card small,
.showcase-card small {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.9rem;
}

.device-body {
  display: grid;
  gap: 14px;
}

.device-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.device-card p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.75);
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --icon-size: 20px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.28), rgba(56, 189, 248, 0.22));
  color: #fff;
  position: relative;
}

.icon-chip::before,
.icon-chip::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-chip::before {
  width: var(--icon-size);
  height: var(--icon-size);
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
  opacity: 0.98;
}

.icon-chip::after {
  content: none;
}

.icon-chip--library {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 5.5A2.5 2.5 0 0 1 7.5 3H19v16H7.5A2.5 2.5 0 0 0 5 21V5.5Zm2.5-.5A.5.5 0 0 0 7 5.5V17c.18-.03.33-.03.5 0H17V5H7.5Z'/%3E%3C/svg%3E");
}

.icon-chip--queue {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Zm4 1h12v2H8V7Zm-4 5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Zm4 1h12v2H8v-2Zm-4 5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Zm4 1h12v2H8v-2Z'/%3E%3C/svg%3E");
}

.icon-chip--stage {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15 3v10.26A4.5 4.5 0 1 0 17 17V8h3V3h-5Zm0 2h3v1h-3V5Zm0 3v9a2.5 2.5 0 1 1-2.5-2.5c.95 0 1.77.53 2.2 1.3V8h.3Z'/%3E%3C/svg%3E");
}

.icon-chip--search {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10.5 3a7.5 7.5 0 1 0 4.73 13.33l4.22 4.22l1.41-1.41l-4.22-4.22A7.5 7.5 0 0 0 10.5 3Zm0 2a5.5 5.5 0 1 1 0 11a5.5 5.5 0 0 1 0-11Z'/%3E%3C/svg%3E");
}

.icon-chip--transpose {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 4l4 4l-4 4V9H7V7h7V4Zm-4 8l-4 4l4 4v-3h7v-2h-7v-3Z'/%3E%3C/svg%3E");
}

.icon-chip--scroll {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 2h8a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3Zm0 2a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H8Zm4 12l3-3h-2v-3h-2v3H9l3 3Z'/%3E%3C/svg%3E");
}

.icon-chip--theme {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10c0-.32-.02-.63-.05-.94A8 8 0 1 1 12.94 2.05C12.63 2.02 12.32 2 12 2Z'/%3E%3C/svg%3E");
}

.icon-chip--cloud {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.5 19a4.5 4.5 0 0 1-.62-8.96A6 6 0 0 1 18.6 8.5A4 4 0 1 1 19 19H7.5Zm0-2H19a2 2 0 1 0-.14-3.99l-1.06.08l-.13-1.05A4 4 0 0 0 9.8 11l-.16 1.1l-1.1-.1H8a2.5 2.5 0 0 0-.5 4.95Z'/%3E%3C/svg%3E");
}

.icon-chip--browser {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4h14a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-5l-2 2l-2-2H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Zm0 2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.83L12 17.17L13.17 16H19a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z'/%3E%3C/svg%3E");
}

.icon-chip--mail {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.33l8-5.33V8H4Zm16 8V10.6l-7.45 4.97a1 1 0 0 1-1.1 0L4 10.6V16h16Z'/%3E%3C/svg%3E");
}

.icon-chip--facebook {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 21v-7h2.4l.4-3h-2.8V9.15c0-.87.25-1.45 1.5-1.45H16V5.02c-.2-.03-.9-.08-1.7-.08c-2.53 0-4.3 1.54-4.3 4.39V11H7.2v3H10v7h3.5Z'/%3E%3C/svg%3E");
}

.icon-chip--instagram {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4Zm0 2a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7Zm11 1.5a1.25 1.25 0 1 1 0 2.5a1.25 1.25 0 0 1 0-2.5ZM12 8a4 4 0 1 1 0 8a4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4a2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
}

.icon-chip--plus {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6V5Z'/%3E%3C/svg%3E");
}

.icon-chip--edit {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.73 3.69a2 2 0 0 1 2.83 0l1.75 1.75a2 2 0 0 1 0 2.83l-9.9 9.9L6 19l.83-4.4l9.9-9.91Zm1.42 1.42l-8.96 8.96l-.36 1.92l1.92-.36l8.96-8.96l-1.56-1.56Z'/%3E%3C/svg%3E");
}

.icon-chip--tag {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 11.59V4h7.59L21 14.41L14.41 21L3 11.59Zm2-5.59v4.76L14.41 19l3.76-3.76L9.76 6H5Zm2 1.5A1.5 1.5 0 1 1 7 10.5A1.5 1.5 0 0 1 7 7.5Z'/%3E%3C/svg%3E");
}

.icon-chip--duplicate {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 7a3 3 0 0 1 3-3h7a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-7a1 1 0 0 0-1 1v1H8V7Zm-5 4a3 3 0 0 1 3-3h7a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-7Zm3-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1H6Z'/%3E%3C/svg%3E");
}

.icon-chip--columns {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h5v14H4V5Zm2 2v10h1V7H6Zm9-2h5v14h-5V5Zm2 2v10h1V7h-1ZM10 5h4v14h-4V5Zm2 2v10h0V7Z'/%3E%3C/svg%3E");
}

.icon-chip--shield {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l7 3v6c0 4.97-2.84 9.43-7 11c-4.16-1.57-7-6.03-7-11V5l7-3Zm0 2.18L7 6.32V11c0 4.02 2.2 7.74 5 9c2.8-1.26 5-4.98 5-9V6.32l-5-2.14Z'/%3E%3C/svg%3E");
}

.icon-chip--sync {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.2 8A6 6 0 0 1 17 6.1V4h2v5h-5V7h1.58A4 4 0 0 0 8.08 8H6.2Zm11.6 8A6 6 0 0 1 7 17.9V20H5v-5h5v2H8.42A4 4 0 0 0 15.92 16h1.88Z'/%3E%3C/svg%3E");
}

.icon-chip--default {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a8 8 0 1 1 0 16a8 8 0 0 1 0-16Z'/%3E%3C/svg%3E");
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.section-heading p {
  margin: 0;
  color: #334155;
  line-height: 1.8;
}

.stats-section,
.content-section,
.workflow-section,
.pricing-section,
.cta-section,
.contact-section {
  padding: 44px 0 92px;
}

.stats-section {
  background: linear-gradient(180deg, #0a1931 0%, #f4f7fb 34%, #f8fbff 100%);
}

.feature-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 24%),
    linear-gradient(180deg, #0a1931 0%, #0d1d38 28%, #112544 100%);
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.feature-section .container {
  position: relative;
  z-index: 1;
}

.feature-section .section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.feature-section .section-heading h2 {
  color: #f8fafc;
}

.feature-section .section-heading p {
  color: rgba(226, 232, 240, 0.78);
}

.stats-grid,
.feature-grid,
.showcase-grid,
.audience-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.stats-section .section-heading {
  padding-top: 16px;
}

.stats-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.stats-section .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

.stats-section .section-heading p {
  color: #475569;
}

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

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

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

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

.stat-card,
.feature-card,
.audience-card,
.pricing-card,
.showcase-card,
.admin-card,
.admin-stat-card,
.contact-card,
.timeline-card,
.login-card,
.simple-state .container {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.feature-card,
.audience-card,
.pricing-card,
.showcase-card,
.contact-card,
.timeline-card,
.faq-item {
  position: relative;
}

.stat-card::before,
.feature-card::before,
.audience-card::before,
.pricing-card::before,
.showcase-card::before,
.contact-card::before,
.timeline-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0.9;
}

.stat-card,
.feature-card,
.audience-card,
.pricing-card,
.showcase-card,
.contact-card,
.timeline-card {
  padding: 26px;
}

.stat-card strong,
.feature-card h3,
.audience-card strong,
.showcase-card h3 {
  color: #0f172a;
}

.stat-card span,
.feature-card strong,
.audience-card span {
  color: #0f6cbd;
  font-weight: 700;
}

.pricing-header span {
  color: #475569;
  font-size: 0.9rem;
}

.stat-card p,
.feature-card p,
.audience-card p,
.timeline-card p,
.pricing-card p,
.showcase-card p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: #475569;
}

.stat-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  box-shadow:
    0 24px 44px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.stat-visual {
  min-height: 152px;
  margin: -2px -2px 2px;
  padding: 18px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(250, 204, 21, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #0d1b31, #132947);
  color: #fff;
}

.stat-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(4, 11, 22, 0), rgba(4, 11, 22, 0.54));
}

.stat-visual-badges,
.stat-language-stack,
.stat-sync-orbit,
.stat-browser-shell {
  position: relative;
  z-index: 1;
}

.stat-visual-badges {
  display: flex;
  gap: 8px;
}

.stat-visual-badges span,
.sync-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-language-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.stat-language-stack div {
  width: fit-content;
  min-width: 68%;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.stat-language-stack div:nth-child(2) {
  margin-left: 24px;
}

.stat-language-stack div:nth-child(3) {
  margin-left: 48px;
}

.stat-sync-orbit {
  min-height: 116px;
}

.sync-ring {
  position: absolute;
  inset: 16px 34px 8px;
  border-radius: 999px;
  border: 1px dashed rgba(125, 211, 252, 0.36);
}

.sync-node {
  position: absolute;
}

.sync-node--cloud {
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
}

.sync-node--phone {
  left: 16px;
  bottom: 8px;
}

.sync-node--drive {
  right: 16px;
  bottom: 8px;
  color: #fde68a;
}

.stat-browser-shell {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  min-height: 116px;
}

.stat-browser-sidebar,
.stat-browser-toolbar,
.stat-browser-panel {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-browser-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 10px;
}

.stat-browser-sidebar span {
  display: block;
  height: 32px;
  border-radius: 10px;
  background: rgba(125, 211, 252, 0.12);
}

.stat-browser-main {
  display: grid;
  gap: 10px;
}

.stat-browser-toolbar {
  height: 34px;
}

.stat-browser-panel {
  padding: 14px;
}

.stat-browser-panel strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}

.stat-browser-panel small {
  display: block;
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.7);
}

.feature-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-card-head h3 {
  margin: 0;
}

.feature-card .icon-chip,
.showcase-card .icon-chip {
  color: #0f172a;
}

.feature-section .feature-card {
  gap: 14px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 24px 50px rgba(2, 8, 23, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.feature-section .feature-card::before {
  inset: 0 0 auto 0;
  width: auto;
  height: 4px;
}

.feature-section .feature-card .icon-chip {
  --icon-size: 22px;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 25% 20%, rgba(250, 204, 21, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(15, 108, 189, 0.18), rgba(56, 189, 248, 0.24)),
    linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(219, 234, 254, 0.9));
  color: #0f6cbd;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 14px 24px rgba(15, 108, 189, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.feature-section .feature-card strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 108, 189, 0.08);
  color: #0f6cbd;
}

.feature-section .feature-card p {
  margin-top: 2px;
  color: #475569;
}

.feature-section .feature-grid {
  gap: 22px;
}

.workflow-tablet-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.workflow-section {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.09), transparent 28%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.1), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.workflow-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 42px;
}

.workflow-intro {
  margin-top: 14px;
  color: #0f6cbd;
  font-weight: 700;
}

.workflow-tablet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-showcase-card {
  display: grid;
  gap: 18px;
}

.workflow-step-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.workflow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 108, 189, 0.14), rgba(56, 189, 248, 0.18));
  color: #0f6cbd;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.workflow-step-head h3 {
  margin: 2px 0 4px;
  color: #0f172a;
  font-size: 1.18rem;
}

.workflow-step-head strong {
  color: #0f6cbd;
  font-size: 0.97rem;
}

.workflow-showcase-card > p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.workflow-tablet-shell {
  position: relative;
  min-height: 320px;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(160deg, #0b1629, #132a46 72%, #1d3d65);
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow:
    0 34px 64px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.26) inset;
  overflow: hidden;
}

.workflow-tablet-shell::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 70px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.26);
  transform: translateX(-50%);
}

.workflow-tablet-shell img,
.workflow-tablet-screen {
  width: 100%;
  height: 100%;
  min-height: 284px;
  border-radius: 24px;
}

.image-zoom-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.workflow-tablet-shell img {
  object-fit: cover;
  display: block;
}

.workflow-tablet-screen {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #0d1b31, #132947);
  color: #fff;
}

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

.tablet-pill,
.tablet-status,
.reader-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
}

.tablet-pill {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tablet-status {
  padding: 8px 10px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
}

.tablet-dot-row {
  display: inline-flex;
  gap: 6px;
}

.tablet-dot-row i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.5);
}

.tablet-section-title {
  display: grid;
  gap: 4px;
}

.tablet-section-title small,
.tablet-reader-header small {
  color: rgba(125, 211, 252, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tablet-section-title strong,
.tablet-reader-header strong {
  color: #fff;
  font-size: 1.08rem;
}

.tablet-song-grid {
  display: grid;
  gap: 12px;
}

.tablet-song-card,
.tablet-queue-list div,
.tablet-lyric-block {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tablet-song-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.tablet-song-card.is-highlight {
  background: linear-gradient(135deg, rgba(15, 108, 189, 0.34), rgba(56, 189, 248, 0.2));
}

.tablet-song-card .icon-chip {
  --icon-size: 18px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(145deg, rgba(250, 204, 21, 0.2), rgba(56, 189, 248, 0.24));
}

.tablet-song-card strong,
.tablet-queue-list strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
}

.tablet-song-card small,
.tablet-queue-list small {
  color: rgba(226, 232, 240, 0.68);
}

.tablet-queue-list {
  display: grid;
  gap: 10px;
}

.tablet-queue-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.tablet-queue-list span {
  color: rgba(125, 211, 252, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tablet-stage-reader {
  display: grid;
  gap: 16px;
  align-content: start;
}

.tablet-lyric-block {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 30px
    );
}

.tablet-lyric-block span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.16);
  color: #fde68a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tablet-lyric-block p {
  margin: 0;
  color: rgba(248, 250, 252, 0.92);
  font-size: 1rem;
  line-height: 1.9;
}

.tablet-reader-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reader-chip {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.94);
  font-size: 0.82rem;
  font-weight: 700;
}

.alt-surface {
  background: linear-gradient(180deg, rgba(15, 108, 189, 0.06), rgba(15, 108, 189, 0.01));
}

.showcase-section {
  background:
    radial-gradient(circle at top center, rgba(56, 189, 248, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(15, 108, 189, 0.06), rgba(15, 108, 189, 0.01));
}

.showcase-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.showcase-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.showcase-flow-card {
  display: grid;
  gap: 18px;
}

.showcase-flow-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.showcase-flow-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.18rem;
}

.showcase-flow-head strong {
  color: #0f6cbd;
  font-size: 0.97rem;
}

.showcase-flow-card > p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.showcase-tablet-shell {
  min-height: 310px;
}

.showcase-tablet-screen {
  min-height: 274px;
}

.showcase-search-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-search-box .icon-chip {
  --icon-size: 18px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(145deg, rgba(250, 204, 21, 0.2), rgba(56, 189, 248, 0.24));
}

.showcase-search-box strong,
.showcase-browser-card strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
}

.showcase-search-box small,
.showcase-browser-card small {
  color: rgba(226, 232, 240, 0.68);
}

.showcase-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-stat-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.showcase-queue-list div small {
  justify-self: end;
}

.showcase-browser-layout {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  min-height: 100%;
}

.showcase-browser-sidebar,
.showcase-browser-card,
.showcase-browser-toolbar,
.showcase-browser-lines span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-browser-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 12px;
}

.showcase-browser-sidebar span {
  display: block;
  height: 42px;
  border-radius: 12px;
  background: rgba(125, 211, 252, 0.14);
}

.showcase-browser-main {
  display: grid;
  gap: 12px;
}

.showcase-browser-toolbar {
  height: 42px;
}

.showcase-browser-card {
  padding: 16px;
}

.showcase-browser-lines {
  display: grid;
  gap: 10px;
}

.showcase-browser-lines span {
  display: block;
  height: 54px;
}

.image-zoom-modal[hidden] {
  display: none;
}

.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-zoom-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 23, 0.84);
  backdrop-filter: blur(8px);
}

.image-zoom-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.98), rgba(17, 35, 58, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(2, 8, 23, 0.44);
}

.image-zoom-dialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 18px;
}

.image-zoom-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.audience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 22%),
    repeating-linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.03) 0,
      rgba(15, 23, 42, 0.03) 1px,
      transparent 1px,
      transparent 132px
    );
  pointer-events: none;
}

.audience-section .container {
  position: relative;
  z-index: 1;
}

.audience-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 38px;
}

.audience-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  box-shadow:
    0 30px 54px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.audience-visual {
  margin: -2px -2px 0;
}

.audience-visual img,
.audience-scene {
  display: block;
  width: 100%;
  min-height: 240px;
  border-radius: 26px;
}

.audience-visual img {
  object-fit: cover;
}

.audience-scene {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 18%, rgba(250, 204, 21, 0.24), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #0b1629, #132947 72%, #1d3d65);
}

.audience-scene::before {
  content: "";
  position: absolute;
  inset: auto -10% -8% -10%;
  height: 44%;
  background:
    radial-gradient(circle at 50% 0, rgba(56, 189, 248, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(4, 11, 22, 0), rgba(4, 11, 22, 0.92));
}

.audience-scene-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.audience-scene-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.94);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-scene-stage {
  position: absolute;
  inset: 0;
}

.audience-scene-spotlight {
  position: absolute;
  left: 50%;
  top: 16%;
  width: 64%;
  height: 72%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.24), transparent 64%);
  filter: blur(4px);
}

.audience-scene-devices {
  position: absolute;
  right: 18px;
  top: 20px;
  display: grid;
  gap: 10px;
  z-index: 2;
}

.audience-device {
  display: block;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #18283f, #203758);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 20px rgba(2, 8, 23, 0.24);
}

.audience-device--tablet {
  width: 92px;
  height: 64px;
}

.audience-device--phone {
  width: 46px;
  height: 76px;
  justify-self: end;
}

.audience-device::before {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px;
  border-radius: 11px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 20px
    ),
    linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(255, 255, 255, 0.02));
}

.audience-people {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 18px;
  z-index: 2;
}

.audience-people i {
  position: relative;
  display: block;
  width: 46px;
  height: 96px;
  border-radius: 24px 24px 16px 16px;
  background: linear-gradient(180deg, rgba(15, 108, 189, 0.18), rgba(8, 16, 33, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-people i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dbeafe, #93c5fd);
  transform: translateX(-50%);
}

.audience-people i:nth-child(2) {
  width: 56px;
  height: 118px;
}

.audience-people--worship i:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 3px;
  height: 34px;
  background: rgba(250, 204, 21, 0.9);
  transform: translateX(-50%);
  box-shadow: 0 10px 0 rgba(250, 204, 21, 0.45);
}

.audience-people--band i:nth-child(1) {
  transform: translateY(6px) rotate(-3deg);
}

.audience-people--band i:nth-child(3) {
  transform: translateY(10px) rotate(4deg);
}

.audience-people--band i:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 38px;
  width: 38px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.85), rgba(56, 189, 248, 0.74));
  transform: rotate(-22deg);
}

.audience-people--director {
  justify-content: space-between;
  gap: 10px;
}

.audience-people--director i:first-child,
.audience-people--director i:last-child {
  width: 38px;
  height: 84px;
  opacity: 0.78;
}

.audience-people--director i:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 48px;
  height: 30px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, #18283f, #203758);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.showcase-frame {
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #0b1629, #132a46);
}

.mock-screen {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 24px
    );
  color: #fff;
}

.card-kicker {
  display: block;
  color: #0f6cbd;
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.14), transparent 22%),
    linear-gradient(180deg, #08111f 0%, #0d1c31 54%, #112544 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 128px
    );
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 42px;
}

.pricing-section .section-heading h2 {
  color: #f8fafc;
}

.pricing-section .section-heading p {
  color: rgba(226, 232, 240, 0.8);
}

.pricing-section .pricing-grid {
  gap: 24px;
  align-items: stretch;
}

.pricing-section .pricing-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(14, 25, 44, 0.98), rgba(18, 37, 66, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 30px 64px rgba(2, 8, 23, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.pricing-plan-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-header h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.pricing-section .pricing-card h3,
.pricing-section .pricing-header strong {
  color: #fff;
}

.pricing-header strong {
  display: block;
  margin-top: 10px;
}

.pricing-price-note {
  display: block;
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-section .pricing-card p,
.pricing-section .pricing-card li,
.pricing-section .pricing-header span {
  color: rgba(226, 232, 240, 0.8);
}

.pricing-section .feature-list li {
  color: rgba(241, 245, 249, 0.9);
}

.store-badge-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.24);
}

.store-badge-copy small,
.store-badge-copy strong {
  display: block;
}

.store-badge-copy small {
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge-copy strong {
  color: #fff;
  font-size: 1rem;
}

.store-badge-icon {
  display: block;
  width: 36px;
  height: 36px;
  background-color: currentColor;
  color: #fff;
  -webkit-mask: var(--store-icon) center / contain no-repeat;
  mask: var(--store-icon) center / contain no-repeat;
}

.store-badge-icon--google-play {
  --store-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3.12 2.34a1.5 1.5 0 0 0-.12.6v18.12a1.5 1.5 0 0 0 .12.6L13.8 12 3.12 2.34Zm1.55-1.1L16.7 8.1l-3.1 3.1-8.93-8.96Zm12.98 7.48 2.67 1.5c.9.5.9 1.56 0 2.06l-2.67 1.5-3.26-3.25 3.26-3.31Zm-.95 6.08L4.67 21.76l8.93-8.96 3.1 3.1Zm-1.74-1.27L4.67 2.24 16.7 9.2l-1.74 1.73Zm1.74 1.27-1.74-1.73 1.74-1.77 1.9 1.75-1.9 1.75Z'/%3E%3C/svg%3E");
}

.store-badge-icon--app-store {
  --store-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.5 3h-11A3.5 3.5 0 0 0 3 6.5v11A3.5 3.5 0 0 0 6.5 21h11a3.5 3.5 0 0 0 3.5-3.5v-11A3.5 3.5 0 0 0 17.5 3ZM13 7h2l-5 10H8L13 7Zm-4.5 7h7v2h-7v-2Zm2.86-5.72 1.7-.97 4.08 7.07-1.7.98-4.08-7.08Z'/%3E%3C/svg%3E");
}

.pricing-card.is-highlight {
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(14, 165, 233, 0.96), rgba(15, 108, 189, 0.94));
  color: #fff;
  border-color: rgba(250, 204, 21, 0.3);
  transform: translateY(-8px);
  box-shadow:
    0 34px 78px rgba(2, 8, 23, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.pricing-card.is-highlight p,
.pricing-card.is-highlight li,
.pricing-card.is-highlight .pricing-header span {
  color: rgba(255, 255, 255, 0.84);
}

.pricing-card.is-highlight .button-primary {
  background: #fff;
  color: #0f6cbd;
  box-shadow: none;
}

.pricing-card.is-highlight .pricing-plan-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff7d1;
}

.pricing-card.is-highlight .store-badge {
  border-color: rgba(250, 204, 21, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 252, 240, 0.96), rgba(255, 235, 153, 0.96)) padding-box,
    linear-gradient(135deg, #fff4bf, #facc15 45%, #f59e0b 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 14px 24px rgba(250, 204, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.pricing-card.is-highlight .store-badge-copy small {
  color: rgba(107, 63, 0, 0.72);
}

.pricing-card.is-highlight .store-badge-copy strong,
.pricing-card.is-highlight .store-badge-icon {
  color: #6b3f00;
}

.pricing-card--price-free .pricing-header strong {
  font-size: 2.6rem;
}

.pricing-card--price-pro .pricing-header strong {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.02;
}

.pricing-header strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  color: inherit;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

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

.faq-section {
  padding-bottom: 54px;
}

.faq-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 800;
  color: #0f172a;
}

.faq-question span {
  line-height: 1.4;
}

.faq-question strong {
  color: #0f6cbd;
  font-size: 1.15rem;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: #475569;
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(9, 9, 11, 0.98), rgba(16, 37, 66, 0.98));
  color: #fff;
  box-shadow: 0 28px 64px rgba(2, 6, 23, 0.28);
}

.cta-banner p {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.8;
}

.contact-form {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stacked-form small {
  color: #64748b;
  line-height: 1.5;
}

.media-preview-card {
  margin: 18px 0 0;
}

.media-preview-frame {
  margin-top: 16px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1629, #132a46);
  padding: 14px;
}

.media-preview-frame img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 14px;
}

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

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: #0f172a;
}

textarea {
  resize: vertical;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 14px;
}

.contact-card {
  background: linear-gradient(180deg, #071224, #102542);
  color: #fff;
  overflow: hidden;
  min-height: 100%;
  box-shadow:
    0 30px 70px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-card strong {
  color: #fff;
}

.contact-card p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.78);
}

.contact-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-channel-copy > span {
  display: block;
  color: rgba(125, 211, 252, 0.78);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-channel-copy a {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-weight: 700;
  word-break: break-word;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 0;
}

.contact-highlight {
  margin-top: 0;
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(56, 189, 248, 0.14)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 204, 21, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(15, 23, 42, 0.18);
}

.contact-highlight strong {
  display: block;
  color: #fff7d1;
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact-brand-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 26px 0 10px;
  min-height: 132px;
}

.contact-brand-mark img {
  width: clamp(92px, 11vw, 132px);
  filter:
    drop-shadow(0 18px 28px rgba(2, 6, 23, 0.34))
    drop-shadow(0 0 14px rgba(56, 189, 248, 0.18));
}

.contact-channel-list {
  margin-top: 22px;
  gap: 12px;
}

.contact-channel-list li {
  padding-top: 16px;
}

.contact-section {
  position: relative;
  padding-top: 86px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 18%),
    linear-gradient(180deg, #edf4fb 0%, #f8fbff 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 108, 189, 0.3), rgba(250, 204, 21, 0.3), transparent);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  gap: 32px;
  align-items: stretch;
}

.contact-section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.contact-form-shell {
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-form-intro {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.contact-form-intro h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.contact-form-intro p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.contact-form .form-grid {
  gap: 18px;
}

.contact-form label {
  gap: 10px;
}

.contact-form label span {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-form input,
.contact-form textarea {
  background: linear-gradient(180deg, #fbfdff, #f2f7fd);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 17px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form textarea {
  min-height: 168px;
}

.contact-channel-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #ffffff;
}

.captcha-wrap {
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(250, 204, 21, 0.06)),
    linear-gradient(180deg, #f8fbff, #eef6ff);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.captcha-wrap p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.captcha-wrap .h-captcha {
  display: block;
}

.captcha-widget-shell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 78px;
  overflow: hidden;
}

.captcha-widget-shell--compact {
  min-height: 144px;
}

.captcha-widget-scale {
  transform-origin: center top;
  will-change: transform;
}

.contact-submit {
  width: 100%;
  margin-top: 22px;
  min-height: 60px;
  border-radius: 22px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    0 18px 34px rgba(15, 108, 189, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #071128;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: rgba(226, 232, 240, 0.84);
}

.footer-inner .brand-mark img.brand-logo {
  width: clamp(180px, 22vw, 240px);
}

.footer-brand {
  justify-self: center;
}

.footer-powered,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-powered {
  justify-self: center;
  color: rgba(226, 232, 240, 0.76);
}

.footer-powered a,
.footer-link {
  color: #7dd3fc;
  font-weight: 700;
}

.footer-meta {
  justify-self: center;
  gap: 12px;
  display: grid;
  justify-items: center;
}

.footer-meta p {
  margin: 0;
}

.help-page {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.11), transparent 22%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 24%),
    linear-gradient(180deg, #081226 0%, #0b1730 340px, #f4f7fb 340px, #f8fbff 100%);
}

.help-hero {
  position: relative;
  padding: 108px 0 92px;
  color: #fff;
}

.help-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 0,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.help-hero-inner {
  position: relative;
  z-index: 1;
}

.help-heading {
  max-width: 880px;
}

.help-heading h1 {
  color: #f8fafc;
}

.help-hero-subtitle,
.help-hero-body {
  margin-inline: auto;
  max-width: 760px;
  color: rgba(226, 232, 240, 0.82);
}

.help-hero-body {
  margin-top: 10px;
}

.help-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.help-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0;
  font-weight: 700;
}

.help-hero-chip .icon-chip {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 12px;
  --icon-size: 17px;
}

.help-screen-section {
  position: relative;
  padding: 0 0 88px;
}

.help-screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.help-screen-section.is-reversed .help-screen-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
}

.help-screen-section.is-reversed .help-screen-visual {
  order: 2;
}

.help-screen-section.is-reversed .help-screen-copy {
  order: 1;
}

.help-screen-image-button {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}

.help-screen-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(9, 18, 38, 0.92), rgba(17, 36, 68, 0.94));
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow:
    0 34px 72px rgba(8, 15, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.help-screen-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f6cbd, #38bdf8 52%, #facc15 100%);
}

.help-screen-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.help-screen-frame--placeholder {
  padding: 22px;
}

.help-screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.help-screen-badge,
.help-screen-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.help-screen-badge {
  min-width: 52px;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(56, 189, 248, 0.18);
  color: #7dd3fc;
}

.help-screen-pill {
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: rgba(248, 250, 252, 0.88);
}

.help-screen-placeholder-body {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 34, 62, 0.96), rgba(16, 29, 54, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.09);
}

.help-screen-placeholder-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.help-screen-placeholder-header strong {
  display: block;
  color: #f8fafc;
  font-size: 1.15rem;
}

.help-screen-placeholder-header small {
  color: rgba(191, 219, 254, 0.82);
}

.help-screen-placeholder-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.help-screen-placeholder-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.46);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.help-screen-placeholder-item strong {
  display: block;
  color: #f8fafc;
  font-size: 1rem;
}

.help-screen-placeholder-item small {
  color: rgba(191, 219, 254, 0.76);
}

.help-screen-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.22), rgba(56, 189, 248, 0.18));
  color: #0f6cbd;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.help-screen-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.help-screen-subtitle {
  margin: 0;
  color: #0f6cbd;
  font-size: 1.06rem;
  font-weight: 800;
}

.help-screen-body {
  margin: 16px 0 0;
  color: #475569;
  line-height: 1.85;
}

.help-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.help-feature-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 22px 38px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.help-feature-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
}

.help-feature-card strong {
  display: inline-block;
  margin-top: 6px;
  color: #0f6cbd;
  font-size: 0.96rem;
}

.help-feature-card p {
  margin: 8px 0 0;
  color: #475569;
  line-height: 1.72;
}

.legal-page {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 24%),
    linear-gradient(180deg, #081226 0%, #0b1730 220px, #f4f7fb 220px, #f8fbff 100%);
}

.legal-hero {
  position: relative;
  padding: 92px 0 120px;
  color: #fff;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.legal-hero-inner h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.9rem, 5.4vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #f8fafc;
}

.legal-hero-inner p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.8;
}

.legal-section {
  position: relative;
  margin-top: -52px;
  padding: 0 0 92px;
  z-index: 1;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.legal-card p {
  margin: 0;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.95;
}

.legal-card p + p {
  margin-top: 20px;
}

.alert {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.alert.success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.alert.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.simple-state {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.simple-state .container {
  max-width: 520px;
  padding: 34px;
  text-align: center;
}

.simple-state h1 {
  margin-top: 0;
}

.admin-shell {
  background: linear-gradient(180deg, #eef5fb, #f8fbff);
  color: #0f172a;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 290px 1fr;
}

.admin-sidebar {
  padding: 28px 22px;
  background: linear-gradient(180deg, #081020, #0f2441);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.admin-brand strong,
.admin-brand small {
  color: #fff;
}

.admin-brand img.brand-logo {
  width: min(100%, 220px);
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  padding: 13px 14px;
  border-radius: 16px;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.02);
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.logout-form {
  margin-top: auto;
}

.admin-main {
  padding: 32px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.admin-header h1 {
  margin: 10px 0 8px;
  font-size: 2.3rem;
}

.admin-header p {
  margin: 0;
  color: #475569;
  max-width: 720px;
  line-height: 1.8;
}

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

.admin-stat-card {
  padding: 24px;
}

.admin-stat-card strong {
  font-size: 2.2rem;
  color: var(--primary);
}

.admin-stat-card span {
  display: block;
  margin-top: 8px;
  color: #475569;
  font-weight: 700;
}

.admin-card {
  padding: 24px;
  margin-bottom: 22px;
}

.stacked-form {
  display: grid;
  gap: 24px;
}

.settings-group,
.locale-block {
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.locale-tabs {
  display: grid;
  gap: 14px;
}

.locale-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locale-tab-button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: #334155;
  font-weight: 800;
  cursor: pointer;
}

.locale-tab-button.is-active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 108, 189, 0.18);
}

.locale-panel {
  display: none;
}

.locale-panel.is-active {
  display: block;
}

.settings-group h2,
.locale-block h3,
.card-header h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  vertical-align: top;
}

.admin-table th {
  color: #475569;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.admin-table td small {
  display: block;
  margin-top: 4px;
  color: #64748b;
}

.table-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 26px;
}

.checkbox-row span {
  margin-right: auto;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #061120, #102542);
}

.login-card {
  width: min(100%, 460px);
  padding: 34px;
  text-align: center;
}

.login-card img {
  width: 88px;
  margin: 0 auto 16px;
  border-radius: 24px;
}

.login-card img.login-logo {
  width: min(100%, 280px);
  border-radius: 0;
}

.login-card p {
  color: #475569;
  line-height: 1.8;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .workflow-tablet-grid,
  .showcase-flow-grid,
  .contact-grid,
  .faq-grid,
  .stats-grid,
  .feature-grid,
  .showcase-grid,
  .audience-grid,
  .pricing-grid,
  .admin-grid.stats {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand-mark img.brand-logo {
    width: clamp(176px, 34vw, 230px);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    padding-bottom: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

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

  .admin-sidebar {
    gap: 18px;
  }

  .workflow-showcase-card {
    gap: 16px;
  }

  .workflow-tablet-shell {
    min-height: 300px;
  }

  .showcase-tablet-shell {
    min-height: 296px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-powered,
  .footer-meta {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, #050816 0%, #08142b 24%, #f4f7fb 24%, #f8fbff 100%);
  }

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

  .button-row,
  .cta-banner,
  .admin-header {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .locale-switcher {
    justify-content: center;
  }

  .brand-mark img.brand-logo,
  .footer-inner .brand-mark img.brand-logo {
    width: min(100%, 220px);
  }

  .footer-powered,
  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }

  .help-screen-grid,
  .help-screen-section.is-reversed .help-screen-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .help-screen-section.is-reversed .help-screen-visual,
  .help-screen-section.is-reversed .help-screen-copy {
    order: initial;
  }

  .help-screen-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .legal-hero {
    padding-top: 56px;
  }

  .legal-card {
    padding: 24px;
  }

  .device-stack {
    width: 100%;
    justify-items: stretch;
  }

  .workflow-step-head {
    grid-template-columns: 1fr;
  }

  .workflow-step-number {
    min-width: 42px;
    width: fit-content;
    height: 42px;
    padding: 0 12px;
  }

  .workflow-tablet-shell {
    min-height: 280px;
    padding: 14px;
    border-radius: 28px;
  }

  .workflow-tablet-shell img,
  .workflow-tablet-screen {
    min-height: 252px;
    border-radius: 20px;
  }

  .workflow-tablet-screen {
    padding: 18px;
  }

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

  .showcase-browser-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-content: stretch;
  }

  .showcase-tablet-shell {
    min-height: 280px;
  }

  .store-badge-row {
    grid-template-columns: 1fr;
  }

  .audience-scene {
    min-height: 214px;
  }

  .audience-device--tablet {
    width: 74px;
    height: 52px;
  }

  .audience-device--phone {
    width: 40px;
    height: 66px;
  }

  .audience-people {
    gap: 12px;
  }

  .audience-people i {
    width: 38px;
    height: 82px;
  }

  .audience-people i:nth-child(2) {
    width: 48px;
    height: 100px;
  }

  .tablet-queue-list div {
    grid-template-columns: auto 1fr;
  }

  .tablet-queue-list small {
    grid-column: 2;
  }

  .floating-panel {
    width: 100%;
  }

  .form-grid,
  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .admin-main {
    padding: 18px;
  }
}
