@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f6f7fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-muted: #eef2f7;
  --text: #172033;
  --text-soft: #53627d;
  --line: rgba(23, 32, 51, 0.1);
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0ea5a8;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 0;
  --radius-sm: 0;
  --max: 1360px;
  --font-body: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[dir="rtl"] body {
  direction: rtl;
}

body {
  margin: 0;
  font-family: var(--font-body);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(14, 165, 168, 0.12), transparent 24%),
    radial-gradient(circle at 50% 24%, rgba(37, 99, 235, 0.05), transparent 30%),
    linear-gradient(180deg, #fcfdff 0%, #f3f8ff 38%, var(--bg) 100%);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body > .site-header,
body > .site-footer {
  flex-shrink: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.topbar {
  background: #0f1729;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.topbar-inner,
.nav-bar,
.page-shell,
.footer-grid,
.footer-bottom {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.topbar-badge {
  font-weight: 600;
  color: #c7d8ff;
}

.nav-shell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(248, 251, 255, 0.82);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tagline {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  justify-content: space-between;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-family: var(--font-body);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.88rem;
}

.nav-link.is-active {
  color: var(--text);
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.language-picker select,
.field input,
.field select,
.field textarea {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
  text-align: start;
}

.language-picker select {
  min-width: 138px;
  padding: 0.66rem 0.82rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
  border-radius: 0;
}

.button {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.72rem 1.05rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: rgba(23, 32, 51, 0.14);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

.button-secondary {
  background: rgba(23, 32, 51, 0.05);
  border: 1px solid rgba(23, 32, 51, 0.08);
  color: var(--text);
}

.page-shell {
  flex: 1 0 auto;
  padding: 2.5rem 0 4.5rem;
  position: relative;
}

.page-shell.page-shell-home {
  min-height: calc(100dvh - 220px);
  display: flex;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.hero.hero-compact {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 620px);
  margin: 0 auto;
}

.hero.hero-compact.hero-home {
  position: relative;
}

.panel,
.hero-copy,
.hero-side,
.card,
.section-card,
.legal-card,
.form-shell,
.support-card,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-side,
.panel,
.form-shell,
.legal-card {
  padding: 2rem;
}

.eyebrow {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.12;
}

h3 {
  font-size: 1rem;
  line-height: 1.24;
}

.lead {
  font-size: 0.94rem;
  max-width: 62ch;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 1.6rem;
  align-items: stretch;
}

.page-hero-copy,
.page-side-panel,
.page-form-art {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-hero-copy .lead,
.page-side-panel .lead {
  max-width: 52ch;
}

.page-hero-media,
.page-side-art-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(234, 241, 250, 0.88);
  min-height: 280px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.page-side-art-media {
  min-height: 220px;
  margin-top: 1.25rem;
}

.page-hero-media::after,
.page-side-art-media::after,
.page-form-art::after,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-media::after,
.page-side-art-media::after {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.02) 54%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 168, 0.02) 100%);
}

.page-hero-media img,
.page-side-art-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-form-art {
  overflow: hidden;
  isolation: isolate;
}

.page-form-art::after {
  inset: auto -8% -10% auto;
  width: 280px;
  height: 200px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%),
    url("assets/generated/ambient-band.webp") center / cover no-repeat;
  opacity: 0.28;
  z-index: -1;
}

.section-copy,
.hero-side p,
.card p,
.section-card p,
.legal-card p,
.field-hint,
.support-card p,
.footer-brand-copy p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-actions,
.section-actions,
.footer-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-actions,
.hero-code-panel {
  margin-top: 1.5rem;
}

.hero-code-panel {
  padding: 0.95rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-code-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-code-title {
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-code-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  align-items: end;
  margin-top: 0.7rem;
  gap: 0.65rem;
}

.hero-code-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  background: #fff;
  font-size: 0.92rem;
}

.hero-code-form .button {
  min-height: 48px;
}

.hero-code-field {
  gap: 0;
}

.hero-copy > h1 {
  max-width: 16ch;
  text-wrap: balance;
}

.hero-copy > .lead {
  margin-top: 0.95rem;
}

.hero-compact .hero-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.45rem, 2.8vw, 2rem);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.96) 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero.hero-compact.hero-home .hero-home-shell {
  backdrop-filter: blur(10px);
}

.hero-compact .hero-copy > h1 {
  max-width: 14ch;
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
  letter-spacing: -0.05em;
}

.hero-compact .lead {
  max-width: 30ch;
  margin-top: 0.78rem;
  font-size: 0.92rem;
}

.hero-compact .hero-code-panel {
  max-width: 100%;
}

.hero-compact .eyebrow {
  padding: 0.5rem 0.78rem;
  border-radius: 0;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.hero-compact .hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: 360px;
  height: 360px;
  border-radius: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
  z-index: -1;
}

.hero-compact .hero-copy::after {
  content: "";
  position: absolute;
  inset: -16% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 0;
  background: radial-gradient(circle, rgba(14, 165, 168, 0.12), transparent 72%);
  z-index: -1;
}

.hero-side {
  position: relative;
  overflow: hidden;
}

.hero-side::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 240px;
  height: 240px;
  border-radius: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 70%);
}

.hero-rail {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-rail-item {
  padding: 1rem 1.1rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 32, 51, 0.06);
}

.hero-rail-item strong,
.stat-card strong {
  display: block;
  font-size: 1rem;
}

.stats-grid,
.card-grid,
.section-grid,
.support-grid,
.legal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
  align-items: start;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card-grid,
.section-grid,
.support-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.legal-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stat-card,
.card,
.section-card,
.support-card {
  padding: 1.4rem;
}

.stat-card,
.card,
.section-card,
.support-card,
.legal-card {
  min-width: 0;
  height: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.72);
}

.stat-card span {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.section {
  margin-top: 1.5rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: start;
}

.list-stack,
.bullet-list,
.detail-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}

.list-stack li,
.detail-list li {
  padding: 1rem 1.1rem;
  border-radius: 0;
  background: rgba(23, 32, 51, 0.04);
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 0;
  background: var(--accent);
}

.form-shell {
  margin-top: 1.5rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label {
  font-weight: 700;
  font-size: 0.88rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.88rem;
}

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

.form-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.form-feedback {
  min-height: 1.4rem;
  font-weight: 600;
}

.form-feedback.is-error {
  color: #b42318;
}

.form-feedback.is-success {
  color: #0f766e;
}

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

.site-footer {
  margin-top: auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(23, 32, 51, 0.06);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.72) 0%, rgba(244, 247, 251, 0.9) 100%);
}

.site-footer::before {
  inset: 0 0 0 auto;
  width: min(36%, 440px);
  background:
    linear-gradient(90deg, rgba(246, 247, 251, 0) 0%, rgba(246, 247, 251, 0.5) 22%, rgba(246, 247, 251, 0.82) 100%),
    url("assets/generated/ambient-band.webp") center / cover no-repeat;
  opacity: 0.22;
  z-index: -1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(150px, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.footer-logo {
  width: 52px;
  height: 52px;
}

.footer-brand {
  display: flex;
  gap: 1rem;
}

.footer-brand-copy {
  max-width: 24ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  min-width: 0;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 32, 51, 0.08);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.page-index .topbar {
  display: none;
}

.page-index .nav-bar {
  gap: 0.9rem;
  padding: 0.65rem 0;
}

.page-index .brand-mark {
  gap: 0.7rem;
}

.page-index .brand-logo {
  width: 36px;
  height: 36px;
}

.page-index .brand-name {
  font-size: 0.88rem;
}

.page-index .brand-tagline {
  display: none;
}

.page-index .nav-links {
  gap: 0.8rem;
}

.page-index .nav-link,
.page-index .language-picker {
  font-size: 0.82rem;
}

.page-index .language-picker select {
  min-width: 116px;
  padding: 0.55rem 0.72rem;
}

.page-index .nav-cta {
  padding: 0.58rem 0.86rem;
  font-size: 0.82rem;
}

.page-index .page-shell.page-shell-home {
  min-height: calc(100dvh - 180px);
  padding: 1.25rem 0 1.4rem;
}

.page-index .hero.hero-compact.hero-home {
  width: 100%;
}

.page-index .hero-home-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.93) 42%, rgba(232, 242, 255, 0.9) 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-index .hero-home-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 48%;
  width: 56%;
  height: 130%;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 168, 0.04) 100%),
    url("assets/generated/ambient-band.webp") center / cover no-repeat;
  opacity: 0.82;
  z-index: 0;
}

.page-index .hero-home-shell::after {
  content: "";
  position: absolute;
  inset: auto auto -22% -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 70%);
  z-index: 0;
}

.page-index .hero-home-copy,
.page-index .hero-home-side {
  position: relative;
  z-index: 1;
}

.page-index .hero-home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.2rem 0;
}

.page-index .hero-copy > h1 {
  max-width: 11ch;
}

.page-index .hero-home-copy > h1 {
  margin-top: 0.55rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.page-index .hero-home-copy > .lead {
  max-width: 27ch;
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(23, 32, 51, 0.78);
}

.page-index .hero-home-bands {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.page-index .hero-home-bands span {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.95) 0%, rgba(14, 165, 168, 0.8) 100%);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.12);
}

.page-index .hero-home-bands span:nth-child(1) {
  width: 64px;
}

.page-index .hero-home-bands span:nth-child(2) {
  width: 128px;
  opacity: 0.84;
}

.page-index .hero-home-bands span:nth-child(3) {
  width: 92px;
  opacity: 0.68;
}

.page-index .hero-home-side {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.page-index .hero-home-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.page-index .hero-home-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 168, 0.03) 100%);
}

.page-index .hero-home-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index .hero-home-panel {
  margin-top: 0;
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.page-index .hero-code-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.page-index .hero-code-form {
  margin-top: 0.6rem;
  gap: 0.55rem;
  grid-template-columns: minmax(0, 1fr) 126px;
}

.page-index .hero-code-form input,
.page-index .hero-code-form .button {
  min-height: 46px;
}

.page-index .hero-code-form input {
  padding: 0.7rem 0.82rem;
  font-size: 0.9rem;
}

.page-index .hero-code-form .button {
  width: auto;
  font-size: 0.86rem;
}

.page-index .site-footer {
  padding: 0.85rem 0 1rem;
}

.page-index .footer-grid {
  display: none;
}

.page-index .footer-bottom {
  margin-top: 0;
  padding-top: 0.45rem;
  text-align: center;
  font-size: 0.78rem;
}

.page-contact .split-grid,
.page-portal .split-grid {
  grid-template-columns: minmax(360px, 0.96fr) minmax(460px, 1.04fr);
}

.page-contact .support-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.page-contact .page-form-art,
.page-portal .page-form-art {
  align-self: start;
}

.page-about .about-split-grid {
  align-items: stretch;
}

.page-about .about-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.15rem;
}

.page-about .about-principles-panel .list-stack {
  margin-top: 0.2rem;
}

.page-about .about-coverage-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.96) 100%);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.page-about .about-coverage-panel .bullet-list {
  margin-top: 0.35rem;
  gap: 1rem;
}

.page-about .about-coverage-panel .bullet-list li {
  padding: 0.15rem 0 0.15rem 1.45rem;
  line-height: 1.7;
}

.page-about .about-coverage-panel .section-actions {
  margin-top: auto;
  padding-top: 0.4rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(23, 32, 51, 0.08);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .nav-panel {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero,
  .page-hero,
  .split-grid,
  .footer-grid,
  .card-grid,
  .section-grid,
  .support-grid,
  .stats-grid,
  .legal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy > h1 {
    max-width: 100%;
  }

  .page-index .page-shell.page-shell-home {
    min-height: auto;
  }

  .page-index .hero-home-shell {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .page-index .hero-home-copy > h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-index .hero-home-copy > .lead {
    max-width: 34ch;
  }

  .page-index .hero-home-visual {
    min-height: 220px;
  }

  .page-hero-media {
    min-height: 220px;
  }

  .page-side-art-media {
    min-height: 200px;
  }

  .page-contact .split-grid,
  .page-portal .split-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-panel {
    padding: 1.8rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-top: 2rem;
  }

  .page-shell.page-shell-home {
    min-height: auto;
    display: block;
  }

  .hero-copy,
  .hero-side,
  .panel,
  .form-shell,
  .legal-card {
    padding: 1.4rem;
  }

  .topbar-inner {
    flex-direction: column;
  }

  .hero-code-panel {
    padding: 1rem;
  }

  .page-hero-media,
  .page-side-art-media {
    min-height: 180px;
  }

  .page-index .hero-home-shell {
    padding: 0.95rem;
    gap: 0.9rem;
  }

  .page-index .hero-home-copy > h1 {
    max-width: 9ch;
    font-size: clamp(1.9rem, 11vw, 2.5rem);
  }

  .page-index .hero-home-copy > .lead {
    font-size: 0.92rem;
    max-width: 26ch;
  }

  .page-index .hero-home-bands {
    margin-top: 0.9rem;
  }

  .page-index .hero-home-visual {
    min-height: 180px;
  }

  .page-index .hero-home-panel {
    padding: 0.9rem;
  }

  .page-index .hero-code-form {
    grid-template-columns: 1fr;
  }

  .page-index .hero-code-form .button {
    width: 100%;
  }

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

  .hero-code-form .button {
    width: 100%;
  }
}
