:root {
  --bg: #f8faf8;
  --surface: #ffffff;
  --surface-soft: #edf6f3;
  --text: #102a2a;
  --muted: #5f7270;
  --brand: #0c766c;
  --brand-dark: #075a53;
  --brand-soft: #d9f0ea;
  --accent: #e3b341;
  --danger: #b42318;
  --border: #dce7e4;
  --shadow: 0 22px 60px rgba(10, 65, 60, 0.12);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.status-bar {
  background: #0d2f2c;
  color: #eefbf8;
  font-size: 0.9rem;
}
.status-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-bar a {
  margin-left: auto;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f2c94c;
  box-shadow: 0 0 0 5px rgba(242, 201, 76, 0.14);
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 248, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 231, 228, 0.75);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  color: var(--brand);
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.main-nav a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(12, 118, 108, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-dark); }
.button:focus-visible { outline: 3px solid rgba(12, 118, 108, 0.3); outline-offset: 3px; }
.button--small { min-height: 42px; padding: 0 18px; }
.button--full { width: 100%; }
.button--status {
  background: #102a2a;
  box-shadow: 0 10px 30px rgba(16, 42, 42, 0.18);
}
.button--status:hover { background: #0d2f2c; }

.hero {
  padding: 92px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow--light { color: #bcece5; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.06em;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}
h3 { font-size: 1.3rem; }
.hero-lead {
  max-width: 680px;
  margin: 0 0 16px;
  font-size: 1.18rem;
  color: #29413f;
}
.hero-support {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}
.text-link {
  font-weight: 800;
  text-decoration: none;
}
.hero-secondary-link {
  display: inline-block;
  margin-top: 18px;
}
.microcopy { margin-top: 16px; color: var(--muted); font-size: 0.9rem; }

.hero-visual {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(227, 179, 65, 0.22), transparent 30%),
    linear-gradient(145deg, #e6f3ef, #f6fbf9);
  box-shadow: var(--shadow);
}
.network-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
}
.network-card--old { opacity: 0.72; }
.network-card--new { border-color: rgba(12, 118, 108, 0.28); }
.network-label {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.network-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.node {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.node--platform { text-decoration: line-through; }
.node--brand, .node--community {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.connector { color: var(--muted); font-weight: 800; }
.connector--broken { color: #d64545; font-size: 1.4rem; }
.connector--strong { color: var(--brand); font-size: 1.5rem; }
.rebuild-arrow {
  text-align: center;
  padding: 9px 0;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 800;
}
.optional-channels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.optional-channels span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.stats-section { padding: 0 0 72px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.stat-card {
  display: block;
  padding: 28px;
  color: inherit;
  text-decoration: none;
}
.stat-card + .stat-card { border-left: 1px solid var(--border); }
.stat-card[href] { transition: background 160ms ease, color 160ms ease; }
.stat-card[href]:hover { background: var(--brand-soft); color: var(--brand-dark); }
.stat-card[href]:focus-visible {
  outline: 3px solid rgba(12, 118, 108, 0.24);
  outline-offset: -3px;
}
.stat-value { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; }
.stat-label { color: var(--muted); font-size: 0.9rem; }

.section { padding: 96px 0; }
.section--soft { background: var(--surface-soft); }
.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.section-copy { font-size: 1.08rem; color: #344c49; }
.section-copy p:first-child { margin-top: 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  padding: 30px;
  border: 1px solid rgba(12, 118, 108, 0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.8);
}
.step-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
}
.step-card p { margin-bottom: 0; color: var(--muted); }

.waitlist-section {
  color: #fff;
  background: #0d2f2c;
}
.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: 80px;
  align-items: center;
}
.waitlist-section p { color: #c4d8d4; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
  color: #e9f5f2;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8ce0d3;
  font-weight: 800;
}
.form-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}
input, select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cddbd8;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}
input:focus, select:focus { outline: 3px solid rgba(12,118,108,0.14); border-color: var(--brand); }
.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 10px 0 18px;
  color: #415653;
  font-size: 0.86rem;
}
.consent-row input { min-height: auto; margin-top: 4px; }
.form-note { margin: 14px 0 0; text-align: center; font-size: 0.8rem; color: var(--muted) !important; }
.field-error { min-height: 18px; margin: 5px 0 0; color: var(--danger) !important; font-size: 0.8rem; }
.form-status { margin-top: 16px; font-weight: 700; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--brand); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin-top: -8px; padding-bottom: 22px; color: var(--muted); }

.privacy-section { padding-top: 0; }
.privacy-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.privacy-card h2 { font-size: 1.4rem; margin-bottom: 8px; }
.privacy-card p { margin: 0; color: var(--muted); }

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
}
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-inner p { margin: 6px 0 0; color: var(--muted); }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { color: var(--muted); font-weight: 700; text-decoration: none; }

@media (max-width: 920px) {
  .main-nav { display: none; }
  .header-inner .button { margin-left: auto; }
  .hero { padding-top: 64px; }
  .hero-grid, .two-column, .waitlist-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { align-items: start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border); }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .status-bar__inner { align-items: flex-start; padding-block: 10px; }
  .status-bar a { white-space: nowrap; }
  .header-inner { min-height: 66px; }
  .header-inner .button { display: none; }
  .hero { padding: 46px 0 54px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  h2 { font-size: 2.3rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { padding: 14px; border-radius: 24px; }
  .network-card { padding: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 20px; }
  .stat-value { font-size: 1.6rem; }
  .section { padding: 70px 0; }
  .waitlist-grid { grid-template-columns: minmax(0,1fr); }
  .form-card { padding: 22px; }
  .footer-inner, .footer-links { flex-direction: column; align-items: flex-start; }
}
