:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --panel: #121214;
  --panel-2: #19191d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #a9abb3;
  --gold: #f5c518;
  --gold-strong: #ffcf26;
  --gold-soft: #ffe9a6;
  --ink: #121212;
  --ink-soft: #3f4148;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --container: 1240px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(245, 197, 24, 0.12), transparent 22%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

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

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

button {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--gold);
}

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

.lang-pill,
.ghost-button,
.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 15px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.lang-pill,
.ghost-button,
.outline-button {
  border: 1px solid var(--line);
}

.lang-pill,
.ghost-button {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.primary-button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #151515;
  border: 0;
  box-shadow: 0 16px 34px rgba(245, 197, 24, 0.25);
}

.outline-button {
  background: transparent;
  color: var(--text);
}

.primary-button:hover,
.outline-button:hover,
.ghost-button:hover,
.lang-pill:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 18px 0 12px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(4, 4, 4, 0.84) 38%, rgba(8, 8, 8, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.48)),
    url("assets/01_hero_banner_background.png") center/cover no-repeat,
    linear-gradient(135deg, #040404 0%, #161616 100%);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(245, 197, 24, 0.22), transparent 18%),
    linear-gradient(180deg, transparent 0%, rgba(245, 197, 24, 0.03) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  min-height: clamp(480px, 70vh, 580px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 46px 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(245, 197, 24, 0.12);
}

.hero-title,
.page-hero h1 {
  margin: 22px 0 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-title {
  font-size: clamp(2.7rem, 5vw, 4.15rem);
  max-width: 10.5ch;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.hero-title .accent {
  color: var(--gold);
}

.hero-text {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-chip-row {
  margin-top: 18px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-pill {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-visual {
  position: relative;
  padding: 34px 20px 22px 0;
  display: flex;
  align-items: center;
  justify-content: end;
}

.hero-device-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin-left: auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
}

.hero-device-frame img {
  width: 100%;
  height: auto;
}

.benefit strong {
  display: block;
  margin-bottom: 4px;
}

.section {
  padding: 36px 0 0;
}

.section-white {
  margin-top: -2px;
  padding: 28px 0 0;
  background:
    radial-gradient(circle at top center, rgba(245, 197, 24, 0.08), transparent 18%),
    linear-gradient(180deg, #f7f5ee 0%, #f0ede5 100%);
  color: var(--ink);
}

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

.section-head h2,
.dark-section h2 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p,
.dark-section p,
.page-hero p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.78;
}

.page-hero p,
.info-card p,
.faq-card p,
.testimonial-card p,
.service-card p,
.launch-card p,
.signal-card p {
  max-width: 65ch;
}

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

.service-card,
.info-card,
.faq-card,
.testimonial-card,
.icon-card,
.legal-card,
.beta-banner,
.policy-article {
  border-radius: 26px;
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: 0 16px 50px rgba(18, 18, 18, 0.08);
}

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.service-media {
  aspect-ratio: 1.22;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.service-media img,
.split-media img,
.app-preview-card img,
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-brand {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(245, 197, 24, 0.22), transparent 54%),
    linear-gradient(135deg, #111113 0%, #090909 100%);
}

.service-media-brand img {
  width: min(180px, 100%);
  height: auto;
  object-fit: contain;
}

.service-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.service-card h3,
.signal-card h3,
.split-copy h3,
.info-card h3,
.faq-card h3,
.testimonial-card h3,
.icon-card h3,
.legal-card h3,
.policy-article h2,
.policy-article h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.36rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  line-height: 1.65;
}

.split-copy p,
.info-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d49a00;
  font-weight: 700;
}

.text-link.secondary {
  color: var(--text);
}

.dark-section {
  padding: 78px 0 0;
}

.dark-head {
  margin-bottom: 22px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.82fr;
  gap: 18px;
}

.split-card,
.price-card,
.page-hero-card {
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, #0c0c0d 0%, #111114 100%);
}

.split-card {
  display: grid;
  gap: 22px;
  align-content: space-between;
  padding: 30px;
  min-height: 330px;
}

.split-card.highlight,
.price-card.featured,
.page-hero-card {
  background:
    radial-gradient(circle at right top, rgba(245, 197, 24, 0.16), transparent 30%),
    linear-gradient(135deg, #131313 0%, #0b0b0d 100%);
}

.split-card-media {
  align-content: stretch;
}

.split-copy {
  display: grid;
  gap: 16px;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.feature-list li::before {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  font-weight: 700;
}

.split-media,
.app-preview-card,
.showcase-media {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.split-media {
  min-height: 250px;
  background: linear-gradient(135deg, #111113 0%, #090909 100%);
}

.cta-stack,
.showcase-card {
  display: grid;
  gap: 18px;
}

.app-preview-card {
  background: rgba(255, 255, 255, 0.04);
}

.split-card-app .primary-button {
  width: 100%;
}

.benefits-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.08);
}

.benefit-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.stack-grid,
.content-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.stack-grid {
  grid-template-columns: 1fr 1fr;
}

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

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

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.faq-card,
.testimonial-card {
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, #0c0c0d 0%, #121215 100%);
  box-shadow: none;
}

.showcase-media {
  min-height: 250px;
}

.info-card .eyebrow,
.faq-card .eyebrow,
.testimonial-card .eyebrow {
  margin-bottom: 14px;
}

.price-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.price-tag {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-of-type {
  border-top: 0;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

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

.cta-banner {
  margin-top: 78px;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at right top, rgba(245, 197, 24, 0.18), transparent 28%),
    linear-gradient(135deg, #151515 0%, #090909 100%);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
}

.beta-banner {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 243, 232, 0.94) 100%);
  color: var(--ink);
}

.beta-banner h3,
.beta-banner p {
  margin: 0;
}

.beta-banner .feature-list li {
  color: var(--ink);
}

.beta-banner .feature-list li::before {
  background: rgba(245, 197, 24, 0.18);
  color: #7b5a00;
}

.site-footer {
  margin-top: 84px;
  padding: 38px 0 48px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-title {
  margin-bottom: 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 68px 0 26px;
}

.page-hero-card {
  padding: 48px;
}

.page-hero-card p {
  max-width: 58ch;
}

.content-section {
  padding: 20px 0 0;
}

.quote-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
}

.quote-card img {
  width: 100%;
  border-radius: 18px;
}

.quote-card blockquote {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.34rem;
  line-height: 1.45;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

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

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-weight: 600;
}

.icon-card-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}

.icon-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.icon-card,
.legal-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.icon-card p,
.legal-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(245, 197, 24, 0.12);
  color: #946600;
  border: 1px solid rgba(245, 197, 24, 0.22);
}

.icon-badge .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

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

.mini-list li,
.contact-list li {
  color: var(--ink-soft);
  line-height: 1.68;
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a,
.policy-article a {
  color: #7b5a00;
  font-weight: 600;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
}

.policy-sidebar,
.policy-article {
  border-radius: var(--radius-lg);
}

.policy-sidebar {
  padding: 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 236, 222, 0.94) 100%);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.policy-sidebar h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.policy-sidebar p {
  margin: 0;
  color: var(--ink-soft);
}

.policy-article {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
}

.policy-article h2 {
  font-size: 1.7rem;
}

.policy-article h3 {
  margin-top: 24px;
  font-size: 1.12rem;
}

.policy-article p,
.policy-article li {
  color: var(--ink-soft);
  line-height: 1.78;
}

.policy-article strong {
  color: var(--ink);
}

.policy-article ul,
.policy-article ol {
  padding-left: 20px;
}

.policy-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.policy-meta .pill {
  width: fit-content;
  color: rgba(18, 18, 18, 0.82);
  border-color: rgba(18, 18, 18, 0.08);
  background: rgba(18, 18, 18, 0.04);
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links-inline a {
  color: var(--muted);
}

.signal-section {
  padding-top: 18px;
}

.signal-grid,
.launch-grid {
  display: grid;
  gap: 18px;
}

.signal-grid {
  grid-template-columns: 1.1fr 1fr 0.9fr;
}

.signal-card,
.launch-card {
  border-radius: 28px;
}

.signal-card {
  padding: 28px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.08);
}

.signal-card p,
.launch-card p {
  line-height: 1.72;
}

.signal-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.signal-metric-row div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.04);
}

.signal-metric-row strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.signal-metric-row span {
  color: rgba(18, 18, 18, 0.68);
  line-height: 1.55;
}

.accent-card {
  color: var(--text);
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 28%),
    linear-gradient(135deg, #111113 0%, #09090a 100%);
}

.accent-card p {
  color: var(--muted);
}

.pill.dark {
  color: rgba(18, 18, 18, 0.82);
  border-color: rgba(18, 18, 18, 0.08);
  background: rgba(18, 18, 18, 0.04);
}

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

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

.jobs-grid {
  margin-top: 8px;
}

.launch-card {
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, #0f0f10 0%, #141417 100%);
}

.auth-shell,
.admin-shell {
  padding: 68px 0 26px;
}

.auth-layout,
.admin-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.auth-panel,
.admin-panel,
.marketing-card,
.marketing-table-card {
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, #0f0f10 0%, #151518 100%);
}

.auth-panel,
.admin-panel,
.marketing-card,
.marketing-table-card {
  padding: 30px;
}

.auth-panel.light,
.admin-panel.light {
  color: var(--ink);
  border-color: rgba(18, 18, 18, 0.08);
  background:
    radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 238, 227, 0.96) 100%);
}

.auth-panel h1,
.admin-panel h1,
.marketing-card h2,
.marketing-table-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.auth-panel p,
.admin-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-panel.light p,
.admin-panel.light p {
  color: var(--ink-soft);
}

.auth-stack,
.admin-stack {
  display: grid;
  gap: 18px;
}

.auth-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.auth-progress span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-progress span.is-active {
  color: #111113;
  border-color: rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.95);
}

.auth-form,
.admin-filter-form,
.onboarding-form {
  display: grid;
  gap: 14px;
}

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

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

.field-group label,
.consent-block strong,
.status-banner strong,
.account-data strong {
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.field-group select option,
.field-group select optgroup {
  color: var(--ink);
  background: #ffffff;
}

.auth-panel.light .field-group input,
.auth-panel.light .field-group select,
.admin-panel.light .field-group input,
.admin-panel.light .field-group select {
  border-color: rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.inline-actions,
.status-row,
.account-actions,
.marketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-banner,
.consent-block,
.account-data,
.summary-grid article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.auth-panel.light .status-banner,
.auth-panel.light .consent-block,
.admin-panel.light .summary-grid article {
  border-color: rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.status-banner p,
.consent-block p,
.account-data p,
.summary-grid p {
  margin: 8px 0 0;
}

.checkbox-list {
  display: grid;
  gap: 12px;
}

.checkbox-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-item input {
  margin-top: 5px;
}

.helper-text,
.error-text,
.success-text {
  font-size: 0.95rem;
}

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

.auth-panel.light .helper-text,
.admin-panel.light .helper-text {
  color: rgba(18, 18, 18, 0.64);
}

.error-text {
  color: #ff9e9e;
}

.auth-panel.light .error-text,
.admin-panel.light .error-text {
  color: #a43737;
}

.success-text {
  color: #9dffc4;
}

.auth-panel.light .success-text,
.admin-panel.light .success-text {
  color: #16744a;
}

.recaptcha-slot {
  min-height: 84px;
}

.account-grid,
.summary-grid {
  display: grid;
  gap: 14px;
}

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

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

.account-data span,
.summary-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.auth-panel.light .account-data span,
.admin-panel.light .summary-grid span {
  color: rgba(18, 18, 18, 0.66);
}

.marketing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.marketing-table th,
.marketing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.marketing-table th {
  color: var(--gold-soft);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
}

.pill.good {
  color: #052d18;
  border-color: rgba(53, 168, 107, 0.3);
  background: rgba(157, 255, 196, 0.9);
}

.pill.warn {
  color: #4d3200;
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(255, 233, 166, 0.92);
}

.auth-hint-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.auth-hint-list li {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
}

.auth-choice-grid {
  display: grid;
  gap: 14px;
}

.auth-choice-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.auth-choice-card p {
  margin: 0;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workspace-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.workspace-card .material-symbols-outlined {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #111113;
  background: rgba(245, 197, 24, 0.95);
}

.workspace-card h3,
.workspace-form-head h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.workspace-card p,
.workspace-form-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workspace-stack {
  display: grid;
  gap: 18px;
  padding-bottom: 26px;
}

.workspace-form-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .cta-banner,
  .policy-layout,
  .auth-layout,
  .admin-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 0 28px 30px;
    min-height: 0;
  }

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

  .signal-grid,
  .launch-grid,
  .coverage-grid,
  .benefits-bar,
  .icon-card-grid,
  .legal-grid,
  .content-grid,
  .pricing-grid,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(9, 9, 10, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions .lang-pill,
  .header-actions .ghost-button {
    display: none;
  }

  .hero-copy,
  .page-hero-card,
  .cta-banner,
  .split-card,
  .info-card,
  .faq-card,
  .testimonial-card {
    padding: 28px;
  }

  .stack-grid,
  .field-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    justify-items: center;
    padding: 0 24px 28px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-chip-row,
  .trust-strip {
    justify-content: center;
  }

  .hero-device-frame {
    width: min(100%, 380px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100vw - 24px));
  }

  .header-row {
    min-height: 68px;
  }

  .brand img {
    height: 38px;
  }

  .hero {
    padding-top: 14px;
  }

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

  .hero-copy {
    padding: 28px 20px 20px;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .primary-button,
  .hero-actions .outline-button {
    width: 100%;
  }

  .hero-device-frame {
    width: min(100%, 320px);
  }

  .trust-pill {
    width: 100%;
    text-align: center;
  }

  .services-grid,
  .signal-grid,
  .launch-grid,
  .coverage-grid,
  .benefits-bar,
  .icon-card-grid,
  .legal-grid,
  .content-grid,
  .pricing-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .signal-metric-row {
    grid-template-columns: 1fr;
  }

  .service-body {
    padding: 22px 20px;
  }

  .cta-banner {
    padding: 28px 20px;
  }

  .site-footer {
    margin-top: 60px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
