:root {
  --canvas-dark: #080C0A;
  --canvas-surface: #0F1412;
  --canvas-elevated: #161C1A;
  --canvas-card: #1A2220;
  --primary: #00C896;
  --primary-bright: #00F0B0;
  --primary-dim: #009970;
  --primary-deep: #004D38;
  --primary-glow: rgba(0, 200, 150, 0.20);
  --primary-glow-strong: rgba(0, 200, 150, 0.35);
  --accent-red: #FF4D4D;
  --ink-primary: #FFFFFF;
  --ink-secondary: rgba(255, 255, 255, 0.68);
  --ink-tertiary: rgba(255, 255, 255, 0.40);
  --ink-on-light: #080C0A;
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-bg-focus: rgba(255, 255, 255, 0.09);
  --input-border: rgba(255, 255, 255, 0.12);
  --input-border-focus: var(--primary);
  --input-text: #FFFFFF;
  --input-placeholder: rgba(255, 255, 255, 0.35);
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-bright: rgba(255, 255, 255, 0.12);
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--canvas-dark);
  color: var(--ink-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== INPUT FIELDS ===== */
input[type="text"], input[type="tel"], input[type="password"],
input[type="email"], input[type="number"], select, textarea {
  width: 100%;
  height: 56px;
  padding: 16px 18px;
  background: var(--input-bg) !important;
  border: 1.5px solid var(--input-border);
  border-radius: var(--r-md);
  color: var(--input-text) !important;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: all 200ms ease-out;
  -webkit-text-fill-color: var(--input-text) !important;
  caret-color: var(--primary);
}

input::placeholder, textarea::placeholder {
  color: var(--input-placeholder) !important;
  -webkit-text-fill-color: var(--input-placeholder) !important;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  background: var(--input-bg-focus) !important;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.10);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-text-fill-color: #FFFFFF !important;
  -webkit-box-shadow: 0 0 0 100px var(--canvas-surface) inset !important;
  caret-color: var(--primary);
}

select option { background: var(--canvas-surface); color: #FFFFFF; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: var(--primary);
  color: var(--ink-on-light) !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--primary-bright);
  color: var(--ink-on-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow-strong);
  text-decoration: none;
}

.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-hero {
  height: 56px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-hero:hover {
  box-shadow: 0 8px 36px var(--primary-glow-strong);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: transparent;
  color: var(--ink-primary) !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--hairline-bright);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all 220ms ease-out;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink-primary) !important;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-full { width: 100%; }

/* ===== LINKS ===== */
a { color: var(--primary); text-decoration: none; transition: color 200ms ease-out; }
a:hover { color: var(--primary-bright); text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink-primary);
}

h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink-primary);
}

h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-primary);
}

p { color: var(--ink-secondary); }

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  background: rgba(0, 200, 150, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0, 200, 150, 0.18);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.accent-text {
  color: var(--primary);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: linear-gradient(150deg, rgba(0, 36, 24, 0.96) 0%, rgba(8, 14, 11, 0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 200, 150, 0.30);
  border-radius: 18px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 200, 150, 0.06) inset,
    0 1px 0 rgba(0, 200, 150, 0.20) inset;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 28px;
  height: 60px;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.nav__logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary) !important;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav__logo:hover { color: var(--primary-bright) !important; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-tertiary);
}

.nav__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 var(--primary-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(0,200,150,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(0,200,150,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,200,150,0); }
}

.nav__signin {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  color: var(--ink-primary) !important;
  font-size: 14px;
  font-weight: 600;
  transition: all 200ms;
  border: 1.5px solid var(--hairline-bright);
}

.nav__signin:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink-primary) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  max-height: 900px;
  padding: 64px 28px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  overflow: visible;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,200,150,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 200, 150, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0, 200, 150, 0.16);
  width: fit-content;
  letter-spacing: 0.01em;
}

.hero__h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: #FFFFFF;
}

.hero__h1-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subhead {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  max-width: 430px;
  line-height: 1.7;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__signin-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45) !important;
  transition: color 200ms;
}

.hero__signin-link:hover { color: rgba(255,255,255,0.75) !important; }

.hero__live-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  width: fit-content;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__stat-val {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.hero__stat-arrow {
  color: var(--ink-tertiary);
  font-size: 13px;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 24px;
  background: var(--hairline);
}

.hero__trust {
  font-size: 12px;
  color: var(--ink-tertiary);
  letter-spacing: 0.01em;
}

/* ===== HERO PHOTO ===== */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 200, 150, 0.20),
    0 0 0 8px rgba(0, 200, 150, 0.04),
    0 48px 96px rgba(0, 0, 0, 0.60),
    0 0 100px rgba(0, 200, 150, 0.08);
  animation: photoFloat 5s ease-in-out infinite;
}

@keyframes photoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(0.3deg); }
}

.hero__photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.hero__photo-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8,12,10,0.85) 100%),
    linear-gradient(135deg, rgba(0,200,150,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__photo-badge {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  padding: 14px 18px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.badge-sent {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-amount {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}

.badge-arrow { color: rgba(255,255,255,0.40); margin: 0 4px; }
.badge-sos { color: var(--primary); }

.badge-meta {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

/* ===== NETWORK STRIP ===== */
.network-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 28px;
  background: rgba(255,255,255,0.015);
}

.network-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.network-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.network-divider {
  width: 1px;
  height: 16px;
  background: var(--hairline);
  margin: 0 4px;
}

.network-chip {
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-tertiary);
  white-space: nowrap;
}

.network-chip--bright {
  background: rgba(0,200,150,0.07);
  border-color: rgba(0,200,150,0.15);
  color: var(--primary);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 100px 28px;
  background: var(--canvas-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cg fill='none' stroke='%2300C896' stroke-width='0.5' opacity='0.35'%3E%3Crect x='17' y='17' width='30' height='30'/%3E%3Crect x='17' y='17' width='30' height='30' transform='rotate(45%2C32%2C32)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.problem-h2 {
  margin: 14px 0 18px;
}

.problem-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

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

.problem-card {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--canvas-card);
  border: 1px solid var(--hairline);
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.problem-card:hover {
  border-color: rgba(255, 77, 77, 0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

.problem-img-wrap {
  position: relative;
  overflow: hidden;
}

.problem-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) brightness(0.80);
  transition: transform 450ms ease, filter 450ms ease;
}

.problem-card:hover .problem-img-wrap img {
  transform: scale(1.05);
  filter: saturate(0.65) brightness(0.85);
}

.problem-img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,12,10,0.10) 0%,
    rgba(8,12,10,0.20) 40%,
    rgba(8,12,10,0.70) 100%
  );
}

.problem-data-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
}

.problem-data-num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 34px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  font-variant-numeric: tabular-nums;
}

.problem-data-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.problem-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problem-x-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(255, 77, 77, 0.10);
  border: 1px solid rgba(255, 77, 77, 0.20);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  color: #FF6B6B;
  letter-spacing: 0.03em;
  width: fit-content;
}

.problem-card-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 28px;
}

.features-header {
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.feature-card {
  background: var(--canvas-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.feature-card:hover {
  border-color: rgba(0, 200, 150, 0.22);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,200,150,0.08);
  transform: translateY(-4px);
}

.feature-img-wrap {
  position: relative;
  overflow: hidden;
}

.feature-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 450ms ease;
}

.feature-card:hover .feature-img-wrap img {
  transform: scale(1.04);
}

.feature-img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(8,12,10,0.55) 100%
  );
  pointer-events: none;
}

.feature-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0;
}

.feature-img-split {
  display: flex;
  gap: 0;
}

.feature-img-split img {
  height: 240px;
  object-fit: cover;
  display: block;
}

.split-img--left {
  width: 55%;
  object-position: center center;
  border-right: 2px solid var(--canvas-card);
}

.split-img--right {
  width: 45%;
  object-position: center center;
}

.feature-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card__title { margin-bottom: 2px; }

.feature-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(0,200,150,0.07);
  border: 1px solid rgba(0,200,150,0.14);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  width: fit-content;
  margin-top: 6px;
}

/* ===== COMPARISON ===== */
.comparison {
  background: var(--canvas-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cg fill='none' stroke='%2300C896' stroke-width='0.5' opacity='0.35'%3E%3Crect x='17' y='17' width='30' height='30'/%3E%3Crect x='17' y='17' width='30' height='30' transform='rotate(45%2C32%2C32)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 100px 28px;
}

.comparison-inner {
  max-width: 860px;
  margin: 0 auto;
}

.comparison-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.cost-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.cost-stat-card {
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cost-stat-card--problem {
  background: rgba(255,255,255,0.03);
}

.cost-stat-card--bitsom {
  background: rgba(0,200,150,0.06);
  border-color: rgba(0,200,150,0.22);
}

.cost-stat__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 10px;
  background: rgba(0,200,150,0.12);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.cost-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cost-stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink-primary);
  letter-spacing: -0.02em;
}

.cost-stat__num--green {
  color: var(--primary);
}

.cost-stat__sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin-top: 4px;
}

.comparison-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-tertiary);
  text-align: center;
  opacity: 0.7;
}

/* ===== MOMENT SECTION ===== */
.moment-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.moment-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.moment-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 28px;
  background: linear-gradient(
    90deg,
    rgba(8,12,10,0.96) 0%,
    rgba(8,12,10,0.90) 38%,
    rgba(8,12,10,0.60) 62%,
    rgba(8,12,10,0.10) 100%
  );
  min-height: 680px;
  display: flex;
  align-items: center;
}

.moment-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  max-width: 580px;
  margin-left: max(28px, calc((100vw - 1200px) / 2));
}

@media (max-width: 1260px) {
  .moment-content { margin-left: 28px; }
}

.moment-quote {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.10;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  font-style: italic;
  margin-bottom: 22px;
}

.moment-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
}

.moment-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.moment-stat {
  flex: 1;
  padding: 20px 24px;
}

.moment-stat-line {
  width: 1px;
  height: 52px;
  background: var(--hairline);
  flex-shrink: 0;
}

.moment-stat-num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.moment-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.40);
  margin-top: 6px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== COMMUNITY ===== */
.community {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.community img {
  width: 100%;
  border-radius: var(--r-2xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  background: var(--canvas-elevated);
  box-shadow:
    0 0 0 1px var(--hairline),
    0 32px 72px rgba(0,0,0,0.55);
  display: block;
}

.community__text {
  display: flex;
  flex-direction: column;
}

.community__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.community__stat-item {
  padding: 18px 16px;
  border-right: 1px solid var(--hairline);
}

.community__stat-item:last-child { border-right: none; }

.community__stat-num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.community__stat-label {
  font-size: 11px;
  color: var(--ink-tertiary);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  text-align: center;
  padding: 120px 28px;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 16px;
  position: relative;
}

.final-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 40px;
  position: relative;
}

.final-cta__secondary {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  position: relative;
}

.final-cta__secondary a {
  color: rgba(255,255,255,0.50);
  font-weight: 600;
}

.final-cta__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-tertiary);
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 52px 28px;
  text-align: center;
}

.footer__logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--ink-tertiary);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.footer__links a { color: rgba(255,255,255,0.40); font-size: 13px; font-weight: 500; }
.footer__links a:hover { color: rgba(255,255,255,0.70); }

.footer__legal {
  max-width: 540px;
  margin: 0 auto 8px;
  font-size: 12px;
  color: var(--ink-tertiary);
  line-height: 1.6;
}

.footer__powered {
  font-size: 12px;
  color: rgba(255,255,255,0.20);
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--canvas-dark);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--canvas-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: 48px 40px;
  animation: cardEnter 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 520px) {
  .auth-card { padding: 32px 24px; border-radius: var(--r-xl); }
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.auth-card__logo {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.auth-card__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-tertiary) !important;
  font-size: 13px;
  margin-bottom: 28px;
}

.auth-card__back:hover { color: var(--ink-secondary) !important; }

.auth-card h1 { font-size: 26px; margin-bottom: 8px; }

.auth-card__subtitle {
  font-size: 15px;
  color: var(--ink-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-group .helper { font-size: 12px; color: var(--ink-tertiary); margin-top: 6px; }

.phone-row { display: grid; grid-template-columns: 120px 1fr; gap: 8px; }
.phone-row select { min-width: 0; }

.pin-group { display: flex; gap: 8px; margin-top: 4px; }

.pin-group input {
  flex: 1;
  height: 52px;
  padding: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
}

.auth-card__footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-secondary);
}

.auth-card__footer a { color: var(--primary); font-weight: 600; }
.auth-card__footer a:hover { color: var(--primary-bright); }

.otp-phone {
  text-align: center;
  font-size: 15px;
  color: var(--ink-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.otp-phone strong { color: var(--ink-primary); font-weight: 700; }

#otp-timer { text-align: center; font-size: 13px; color: var(--ink-tertiary); margin-top: 12px; }

.security-note {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-tertiary);
  text-align: center;
  margin-top: 16px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 12px;
  color: var(--ink-tertiary);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.consent-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.consent-row input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  border-radius: 4px !important;
  padding: 0 !important;
}
.consent-row span { font-size: 13px; color: var(--ink-tertiary); line-height: 1.65; }
.consent-row a { color: rgba(255,255,255,0.65); text-decoration: underline; font-weight: 600; }

.optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-tertiary);
  text-transform: none;
  letter-spacing: 0;
}

/* ===== ANIMATIONS ===== */
.land-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.70s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.70s cubic-bezier(0.22, 1, 0.36, 1);
}

.land-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .land-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
  @keyframes photoFloat { 0%, 100% { transform: none; } }
  @keyframes pulse { 0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0.3); } }
  @keyframes cardEnter { from { opacity: 1; transform: none; } }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
    padding: 48px 24px 40px;
    gap: 48px;
  }
  h1, .hero__h1 { font-size: clamp(36px, 9vw, 52px); }
  h2 { font-size: clamp(26px, 7vw, 36px); }
  .hero__visual { display: none; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__signin-link { text-align: center; }
  .hero__live-stats { width: 100%; justify-content: space-between; }
  .community { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .community img { aspect-ratio: 16/9; }
  .moment-stats { flex-direction: column; gap: 0; }
  .moment-stat-line { width: 100%; height: 1px; }
}

@media (max-width: 760px) {
  .problem-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .problem-section, .features-section, .comparison, .final-cta { padding-left: 20px; padding-right: 20px; }
  .moment-section { min-height: 560px; }
  .moment-overlay { min-height: 560px; padding: 60px 24px; }
  .moment-overlay { background: linear-gradient(180deg, rgba(8,12,10,0.92) 0%, rgba(8,12,10,0.85) 100%); }
  .community__stats { grid-template-columns: 1fr; }
  .community__stat-item { border-right: none; border-bottom: 1px solid var(--hairline); }
  .community__stat-item:last-child { border-bottom: none; }
  .cost-stats { grid-template-columns: 1fr; }
  .final-cta__trust-row { flex-direction: column; gap: 12px; }
  .nav__live { display: none; }
}

/* ===== AMENDMENT 5: SOMALI SUB-HEADLINE ===== */
.hero__h1-somali {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(17px, 3.2vw, 24px);
  font-weight: 500;
  color: rgba(0, 200, 150, 0.65);
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: -4px;
}

/* ===== AMENDMENT 6: HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 24px;
  background: #0a100d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cg fill='none' stroke='%2300C896' stroke-width='0.5' opacity='0.3'%3E%3Crect x='17' y='17' width='30' height='30'/%3E%3Crect x='17' y='17' width='30' height='30' transform='rotate(45%2C32%2C32)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hiw-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.hiw-header {
  text-align: center;
  margin-bottom: 56px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.hiw-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.hiw-step__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.hiw-step__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary, #00C896);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.hiw-step__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hiw-step__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.hiw-connector {
  font-size: 24px;
  color: rgba(0,200,150,0.4);
  padding: 0 16px;
  margin-top: 80px;
  align-self: start;
}

/* ===== AMENDMENT 7: WAITLIST COUNTER ===== */
.hiw-waitlist-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 24px auto 8px;
  padding: 18px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 340px;
}
.hiw-waitlist-num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.hiw-waitlist-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hiw-connector {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: block;
  }
  .how-it-works { padding: 56px 20px; }
}

/* ===== ICON SVG ===== */
.hiw-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hiw-step__icon svg { color: var(--primary); opacity: 0.85; }
.feature-tag svg,
.hero__eyebrow svg,
.section-eyebrow svg { flex-shrink: 0; }
.final-cta__trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.final-cta__trust-row span svg { flex-shrink: 0; }

/* ===== UTILITIES ===== */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }

/* ===== PLATFORM BREADTH SECTION ===== */
.platform-section {
  padding: 96px 24px 80px;
  background: var(--canvas-dark);
}
.platform-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.platform-header {
  text-align: center;
  margin-bottom: 56px;
}
.platform-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.platform-subhead {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-secondary);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Grid: 2 featured top row, 3 small bottom row */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.platform-card {
  background: var(--canvas-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.platform-card:hover {
  border-color: var(--hairline-bright);
  transform: translateY(-2px);
}

/* Featured cards — top two */
.platform-card--featured {
  padding: 36px 36px 40px;
}

/* Zakat card — accent glow */
.platform-card--zakat {
  background: linear-gradient(135deg, var(--canvas-card) 60%, rgba(0, 200, 150, 0.07));
  border-color: rgba(0, 200, 150, 0.18);
}
.platform-card--zakat:hover {
  border-color: rgba(0, 200, 150, 0.35);
}

/* Coming-soon cards — slightly dimmed */
.platform-card--soon {
  opacity: 0.72;
}
.platform-card--soon:hover {
  opacity: 1;
}

/* Bottom row: 3 columns */
.platform-card:nth-child(3),
.platform-card:nth-child(4),
.platform-card:nth-child(5) {
  grid-column: span 1;
}
.platform-grid {
  grid-template-columns: 1fr 1fr;
}
.platform-card:nth-child(n+3) {
  grid-column: span 1;
}

/* 3-col bottom row override */
@media (min-width: 700px) {
  .platform-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .platform-card--featured {
    grid-column: span 1;
  }
  .platform-card:nth-child(1),
  .platform-card:nth-child(2) {
    grid-column: span 1;
  }
}
@media (min-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  /* Top row: Send (col 1-2) + Zakat (col 3) spanning full, but we want 2+3 */
  /* Actually: top 2 featured = each 1.5fr, bottom 3 = 1fr each */
  .platform-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .platform-card--featured {
    grid-row: 1;
  }
  .platform-card:nth-child(1) { grid-column: 1 / 3; }
  .platform-card:nth-child(2) { grid-column: 3 / 4; }
  .platform-card:nth-child(3),
  .platform-card:nth-child(4),
  .platform-card:nth-child(5) { grid-row: 2; grid-column: span 1; }
}

.platform-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(0, 200, 150, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.platform-card__icon svg { color: var(--primary); }
.platform-card__icon--zakat {
  background: rgba(0, 200, 150, 0.18);
}
.platform-card__icon--zakat svg { color: var(--primary-bright); }

.platform-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink-primary);
}
.platform-card--featured .platform-card__title {
  font-size: 24px;
}
.platform-card__desc {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.65;
  flex: 1;
}
.platform-card--featured .platform-card__desc {
  font-size: 15px;
}

/* Status tags */
.platform-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 4px 10px;
  width: fit-content;
}
.platform-tag--launch {
  background: rgba(0, 200, 150, 0.14);
  color: var(--primary-bright);
  border: 1px solid rgba(0, 200, 150, 0.28);
}
.platform-tag--soon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-tertiary);
  border: 1px solid var(--hairline);
}

/* Responsive collapse */
@media (max-width: 699px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .platform-card:nth-child(1),
  .platform-card:nth-child(2) {
    grid-column: span 1;
  }
  .platform-section { padding: 64px 16px 56px; }
}
@media (max-width: 899px) and (min-width: 700px) {
  .platform-card:nth-child(1),
  .platform-card:nth-child(2) {
    grid-column: span 1;
  }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .platform-card:nth-child(5) { grid-column: span 2; }
}
