@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

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

:root {
  /* Brand — Hyren on light (Stripe-inspired, brand-kit aligned) */
  --c-black: #000000;
  --c-ink: #0F1116;         /* primary text, slightly off-pure for warmth */
  --c-ink-2: #1A1D26;       /* deeper text */

  --c-indigo: #4F46E5;
  --c-indigo-hover: #4338CA;
  --c-indigo-subtle: rgba(79, 70, 229, 0.08);
  --c-money: #10B981;
  --c-money-subtle: rgba(16, 185, 129, 0.10);

  /* Paper accent — kept for editorial moments */
  --c-paper: #FAF7F2;
  --c-paper-dim: rgba(15, 17, 22, 0.04);

  /* Light surfaces */
  --c-bg: #FFFFFF;          /* page base */
  --c-bg-soft: #F7F7F8;     /* section break, stats band */
  --c-bg-elevated: #FFFFFF; /* card body */
  --c-bg-muted: #F0F0F2;    /* hover/subtle fill */

  /* Borders — black-tinted hairlines */
  --c-border: rgba(15, 17, 22, 0.08);
  --c-border-subtle: rgba(15, 17, 22, 0.05);
  --c-border-strong: rgba(15, 17, 22, 0.16);

  /* Text — light-mode hierarchy */
  --c-text: #0F1116;
  --c-text-2: rgba(15, 17, 22, 0.72);
  --c-text-3: rgba(15, 17, 22, 0.55);
  --c-text-muted: rgba(15, 17, 22, 0.42);

  /* Type system — Tajawal (AR) + Inter (EN) + Fraunces (serif accent) + JetBrains Mono (labels) */
  --f-ar: 'Tajawal', 'Inter', sans-serif;
  --f-en: 'Inter', sans-serif;
  --f-serif: 'Fraunces', 'Tajawal', serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;

  /* Layout */
  --container: 1120px;
  --container-narrow: 720px;
}

html {
  direction: rtl;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-ar);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

/* Noise overlay removed for light-mode clarity */

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.numeral {
  font-family: var(--f-en);
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  font-feature-settings: "tnum", "ss01";
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY — editorial hierarchy
   ═══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--f-ar);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.display {
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--c-text);
}
.display .serif {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--c-indigo);
}

.h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--c-text);
}
.h2 .serif {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--c-indigo);
}

.lede {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--c-text-3);
  font-weight: 400;
  max-width: 60ch;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 180ms cubic-bezier(0.2, 0.6, 0.3, 1);
  white-space: nowrap;
  user-select: none;
  min-height: 40px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--c-indigo);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--c-indigo-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.btn-ghost {
  background: var(--c-bg);
  color: var(--c-text-2);
  border-color: var(--c-border);
}
.btn-ghost:hover {
  color: var(--c-text);
  border-color: var(--c-border-strong);
  background: var(--c-bg-soft);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 15px;
  min-height: 48px;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-mark {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-brand-mark img { width: 28px; height: 28px; }
.nav-brand-text {
  font-family: var(--f-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--c-text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-3);
}
.nav-links a { transition: color 150ms ease; }
.nav-links a:hover { color: var(--c-text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ═══════════════════════════════════════════
   HERO — editorial opening spread
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% -10%, rgba(79, 70, 229, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 5%, rgba(236, 72, 153, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(16, 185, 129, 0.13), transparent 60%),
    radial-gradient(ellipse 60% 45% at 25% 105%, rgba(99, 102, 241, 0.16), transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 17, 22, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 17, 22, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, rgba(0,0,0,0.55), transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, rgba(0,0,0,0.55), transparent 78%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 18%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.14), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 560px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 1024px) {
  .hero { padding: 72px 0 88px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .hero-text { max-width: 640px; margin: 0 auto; }
  .hero-visual { justify-content: center; }
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.20);
  border-radius: 999px;
  font-size: 12.5px;
  color: #128C4D;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--c-text);
}
.hero p.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--c-text-3);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 32px;
}
.hero p.lede strong {
  color: var(--c-text);
  font-weight: 600;
}
.hero-cta {
  margin-bottom: 24px;
}
.hero-meta {
  font-size: 13px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  letter-spacing: -0.005em;
}
.hero-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--c-text-muted);
  border-radius: 50%;
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .hero p.lede { margin: 0 auto 32px; }
  .hero-meta { justify-content: center; }
}

/* Platform row */
.hero-platforms {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border-subtle);
}
.hero-platforms-label {
  font-family: var(--f-ar);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}
.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.platform-logo:hover { opacity: 0.95; }
.platform-logo img {
  height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

/* ═══════════════════════════════════════════
   SHOWCASE — split layout with HTML mockups
   ═══════════════════════════════════════════ */
.showcase {
  padding: 120px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.showcase-alt { background: var(--c-bg-soft); }
.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.showcase-split.reverse {
  grid-template-columns: 1.1fr 1fr;
}
.showcase-split.reverse .showcase-visual { order: -1; }

.showcase-text .eyebrow { margin-bottom: 20px; }
.showcase-h {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.showcase-h .serif {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--c-indigo);
}
.showcase-line {
  width: 48px;
  height: 2px;
  background: var(--c-money);
  border-radius: 2px;
  margin-bottom: 24px;
}
.showcase-sub {
  font-size: 17px;
  color: var(--c-text-3);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 46ch;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--c-text-2);
  line-height: 1.5;
}
.bullet-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--c-money);
  border-radius: 50%;
  flex-shrink: 0;
}

.showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 900px) {
  .showcase { padding: 72px 0; }
  .showcase-split, .showcase-split.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .showcase-split.reverse .showcase-visual { order: 0; }
}

/* ─── Browser frame (Dashboard mockup) ─── */
.browser-frame {
  width: 100%;
  max-width: 620px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(15, 17, 22, 0.10),
    0 8px 24px rgba(15, 17, 22, 0.06),
    0 0 0 1px rgba(15, 17, 22, 0.06);
  transition: transform 400ms cubic-bezier(0.2, 0.6, 0.3, 1);
}
.hero-visual .browser-frame { transform: rotate(0deg); }
.hero-visual .browser-frame:hover { transform: translateY(-4px); }
.showcase .browser-frame { transform: rotate(1.5deg); }
.showcase .browser-frame:hover { transform: rotate(0deg) translateY(-4px); }
.browser-titlebar {
  height: 32px;
  background: #F2F2F4;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(15, 17, 22, 0.06);
  direction: ltr;
}
.browser-titlebar .dot { width: 9px; height: 9px; border-radius: 50%; }
.browser-titlebar .dot.red { background: #FF5F57; }
.browser-titlebar .dot.yellow { background: #FFBD2E; }
.browser-titlebar .dot.green { background: #28C840; }
.browser-url {
  margin-left: auto;
  background: rgba(15, 17, 22, 0.05);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 10px;
  color: #707080;
  font-family: var(--f-en);
  direction: ltr;
}

.dashboard {
  padding: 16px;
  background: #F7F7F8;
  direction: rtl;
  font-family: var(--f-ar);
}
.dashboard-hero {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dashboard-hero .hero-card { margin-bottom: 0; }
.dashboard-hero .chart-card { padding: 16px; }
.hero-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 10px;
  border: 1px solid #E5E5E5;
}
.hero-label {
  font-size: 11px;
  color: #6B6B6B;
  margin-bottom: 4px;
  font-weight: 500;
}
.hero-value {
  font-size: 30px;
  font-weight: 800;
  color: #10B981;
  letter-spacing: -1px;
  line-height: 1.1;
}
.hero-value .currency {
  font-size: 15px;
  font-weight: 500;
  color: #9A9A9A;
}
.hero-period {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.period-tag {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  color: #6B6B6B;
  background: #F0F0F3;
  font-weight: 500;
}
.period-tag.active {
  background: #4F46E5;
  color: #ffffff;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.stat-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid #E5E5E5;
}
.stat-label {
  font-size: 9.5px;
  color: #6B6B6B;
  margin-bottom: 4px;
  font-weight: 500;
}
.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.2;
}
.stat-delta {
  font-size: 9px;
  color: #10B981;
  font-weight: 500;
  margin-top: 2px;
}
.stat-delta.active { color: #4F46E5; }
.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 600px) {
  .bottom-row { grid-template-columns: 1fr; }
}
.chart-card, .feed-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid #E5E5E5;
}
.chart-card {
  display: flex;
  flex-direction: column;
}
.chart-card .chart-body { flex: 1; min-height: 100px; }
.card-title {
  font-size: 11px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.chart-title {
  font-size: 11px;
  font-weight: 700;
  color: #1A1A1A;
}
.chart-delta {
  font-size: 9.5px;
  font-weight: 600;
  color: #10B981;
  white-space: nowrap;
}
.chart-body {
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-height: 110px;
  padding-bottom: 18px;
  position: relative;
}
.chart-body::before,
.chart-body::after,
.chart-body > .grid-line {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15, 17, 22, 0.05);
  pointer-events: none;
}
.chart-body::before { top: 0; }
.chart-body::after { top: 33%; }
.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92px;
  font-size: 8px;
  color: #9A9A9A;
  font-weight: 500;
  text-align: end;
  flex-shrink: 0;
  padding-bottom: 0;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  min-height: 92px;
  border-bottom: 1px solid rgba(15, 17, 22, 0.08);
  position: relative;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  height: 100%;
  position: relative;
}
.bar {
  width: 100%;
  max-width: 22px;
  border-radius: 3px 3px 0 0;
  background: #16A34A;
}
.bar-group.empty .bar {
  background: transparent;
  height: 0 !important;
}
.bar-label {
  position: absolute;
  bottom: -16px;
  font-size: 8.5px;
  color: #9A9A9A;
  font-weight: 500;
  white-space: nowrap;
}
.bar-group.empty .bar-label { color: #C0C0C5; }
.chart-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #EFEFEF;
  font-size: 9px;
  color: #9A9A9A;
  font-weight: 500;
  gap: 8px;
}
.chart-foot-total {
  color: #1A1A1A;
  font-weight: 600;
}
.feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6.5px 0;
  border-bottom: 1px solid #EFEFEF;
}
.feed-item:last-child { border-bottom: none; }
.feed-right { display: flex; flex-direction: column; }
.feed-product {
  font-size: 10px;
  color: #1A1A1A;
  font-weight: 500;
}
.feed-time {
  font-size: 8.5px;
  color: #9A9A9A;
  margin-top: 1px;
}
.feed-value {
  font-size: 12px;
  font-weight: 700;
  color: #10B981;
}

/* ─── Carts list (Carts page mockup) ─── */
.carts-app {
  padding: 16px;
  background: #F7F7F8;
  direction: rtl;
  font-family: var(--f-ar);
}
.carts-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.carts-tile {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 12px 14px;
}
.carts-tile-label {
  font-size: 9.5px;
  color: #6B6B6B;
  margin-bottom: 6px;
  font-weight: 500;
}
.carts-tile-value {
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.carts-tile-value.indigo { color: #4F46E5; }
.carts-tile-value.money  { color: #10B981; }
.carts-tile-meta {
  font-size: 9px;
  color: #9A9A9A;
  margin-top: 4px;
  font-weight: 500;
}
.carts-filters {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.carts-filter {
  font-size: 9px;
  padding: 3px 9px;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid #E5E5E5;
  color: #6B6B6B;
  font-weight: 500;
  white-space: nowrap;
}
.carts-filter.active {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #ffffff;
}
.carts-table {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}
.carts-row {
  display: grid;
  grid-template-columns: 1.7fr 1.1fr 0.9fr 0.7fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 10px;
  border-bottom: 1px solid #EFEFEF;
  color: #1A1A1A;
}
.carts-row:last-child { border-bottom: none; }
.carts-row.recovered {
  background: rgba(16, 185, 129, 0.05);
}
.carts-row.recovered .carts-time {
  color: #10B981;
  font-weight: 600;
}
.carts-head {
  background: #FAFAFA;
  font-size: 9px;
  font-weight: 700;
  color: #6B6B6B;
  letter-spacing: 0;
}
.carts-product {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.carts-product strong {
  font-size: 10px;
  font-weight: 600;
  color: #1A1A1A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carts-product em {
  font-size: 8.5px;
  font-style: normal;
  color: #9A9A9A;
  font-weight: 500;
}
.carts-value {
  font-weight: 700;
  color: #1A1A1A;
  font-size: 10.5px;
}
.carts-msgs {
  color: #6B6B6B;
  font-weight: 500;
}
.carts-time {
  color: #9A9A9A;
  font-size: 9.5px;
}
.status {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}
.status-purchased { background: rgba(16, 185, 129, 0.12); color: #10B981; }
.status-active    { background: rgba(79, 70, 229, 0.10); color: #4F46E5; }
.status-pending   { background: rgba(107, 107, 107, 0.10); color: #6B6B6B; }
.status-warning   { background: rgba(245, 158, 11, 0.12); color: #D97706; }

/* ─── Phone frame (WhatsApp mockup) ─── */
.phone-frame {
  width: 340px;
  max-width: 100%;
  height: 680px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 30px 80px rgba(15, 17, 22, 0.18),
    0 8px 24px rgba(15, 17, 22, 0.10),
    0 0 0 2px rgba(15, 17, 22, 0.10);
  transform: rotate(-2deg);
  transition: transform 400ms cubic-bezier(0.2, 0.6, 0.3, 1);
  position: relative;
}
@media (max-width: 400px) {
  .phone-frame { height: 620px; transform: rotate(0deg); }
}
.phone-frame:hover { transform: rotate(0deg) translateY(-4px); }
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #f2f2f7;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #ffffff;
  padding: 56px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 0.5px solid #e5e5ea;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.chat-info { flex: 1; }
.chat-name { font-size: 15px; font-weight: 600; color: #1a1a1a; }
.chat-status { font-size: 11px; color: #10B981; font-weight: 500; }

.chat-area {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background: #f2f2f7;
}
.chat-date {
  align-self: center;
  font-size: 11px;
  color: #8e8e93;
  background: rgba(255,255,255,0.9);
  padding: 3px 12px;
  border-radius: 12px;
}
.msg-bubble {
  max-width: 84%;
  align-self: flex-end;
  direction: rtl;
}
.msg-image-card, .msg-text-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.msg-product-img {
  width: 100%;
  height: 130px;
  background: linear-gradient(150deg, #faf8f5 0%, #f0ebe4 50%, #e8e2da 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.product-emoji { font-size: 44px; line-height: 1; }
.product-label { font-size: 11px; color: #8a7d72; font-weight: 500; }
.msg-body {
  padding: 10px 12px 4px;
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.55;
  white-space: pre-line;
}
.msg-link { color: #007AFF; text-decoration: none; }
.msg-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0 10px 6px;
  direction: ltr;
}
.msg-time { font-size: 10px; color: #8e8e93; }
.msg-read { color: #34C759; font-size: 11px; }
.coupon-chip {
  display: inline-block;
  background: #f0fdf4;
  border: 1.5px dashed #22c55e;
  border-radius: 6px;
  padding: 3px 10px;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 1px;
  direction: ltr;
  margin: 3px 0;
}

@media (max-width: 900px) {
  .browser-frame, .phone-frame { transform: rotate(0); }
  .phone-frame { width: 300px; height: 600px; }
}
@media (max-width: 500px) {
  .phone-frame { width: 280px; height: 560px; }
  .dashboard { padding: 12px; }
  .hero-value { font-size: 24px; }
  .stat-value { font-size: 16px; }
}

/* ═══════════════════════════════════════════
   SECTION RHYTHM — editorial pacing
   ═══════════════════════════════════════════ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-soft {
  background: var(--c-bg-soft);
}
.section-divider {
  border: none;
  height: 1px;
  background: var(--c-border-subtle);
  margin: 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .h2 { margin: 0 auto 20px; }
.section-head .lede { margin: 0 auto; }

/* ═══════════════════════════════════════════
   STATS — editorial index row
   ═══════════════════════════════════════════ */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 16px 24px;
  border-inline-start: 1px solid var(--c-border-subtle);
}
.stat:first-child { border-inline-start: none; }
.stat-value {
  font-family: var(--f-en);
  font-size: 44px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  font-feature-settings: "tnum";
}
.stat-value.green { color: var(--c-money); }
.stat-label {
  font-size: 12.5px;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px; border-inline-start: none; border-bottom: 1px solid var(--c-border-subtle); }
  .stat-value { font-size: 34px; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS — numbered editorial steps
   ═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--c-border);
}
.step {
  padding: 40px 32px 48px;
  position: relative;
  border-inline-start: 1px solid var(--c-border);
  transition: background 250ms ease;
}
.step:first-child { border-inline-start: none; }
.step:hover { background: rgba(15, 17, 22, 0.02); }
.step-num {
  font-family: var(--f-ar);
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 32px;
  display: block;
}
.step-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-text-2);
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.step p {
  font-size: 14.5px;
  color: var(--c-text-3);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-inline-start: none; border-top: 1px solid var(--c-border); }
  .step:first-child { border-top: none; }
}

/* ═══════════════════════════════════════════
   PULL QUOTE — editorial cornerstone
   ═══════════════════════════════════════════ */
.pullquote {
  padding: 140px 0;
  position: relative;
  text-align: center;
  background: var(--c-bg);
}
.pullquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--c-border-strong));
}
.pullquote-text {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--c-text);
  max-width: 900px;
  margin: 0 auto 40px;
}
.pullquote-text .accent {
  color: var(--c-indigo);
  font-style: italic;
}
.pullquote-attribution {
  font-family: var(--f-ar);
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ═══════════════════════════════════════════
   DEMO — two-column editorial spread
   ═══════════════════════════════════════════ */
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.demo-phone {
  background: linear-gradient(180deg, #E5DDD5 0%, #D9D2CB 100%);
  border-radius: var(--r-2xl);
  padding: 24px;
  position: relative;
  box-shadow:
    0 40px 100px rgba(15, 17, 22, 0.16),
    0 8px 24px rgba(15, 17, 22, 0.08),
    0 0 0 1px rgba(15, 17, 22, 0.06);
}
.demo-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.demo-phone-avatar {
  width: 36px;
  height: 36px;
  background: var(--c-money);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.demo-phone-name {
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 2px;
}
.demo-phone-status {
  font-size: 11px;
  color: var(--c-money);
}
.demo-bubble {
  background: #D9FDD3;
  border-radius: 10px 2px 10px 10px;
  padding: 12px 14px;
  max-width: 92%;
  margin-inline-start: auto;
  font-size: 13.5px;
  line-height: 1.65;
  color: #0A0A0A;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  white-space: pre-line;
  text-align: right;
  margin-bottom: 8px;
}
.demo-bubble-time {
  font-size: 10px;
  color: #999;
  text-align: end;
  margin-top: 4px;
}
.demo-bubble .link { color: #027EB5; text-decoration: underline; }

.demo-content .eyebrow { margin-bottom: 20px; }
.demo-content h3 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.demo-content h3 .serif {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--c-indigo);
}
.demo-content p {
  font-size: 16px;
  color: var(--c-text-3);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 46ch;
}
.demo-checks {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--c-border-subtle);
}
.demo-checks li {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 16px 0;
  font-size: 14.5px;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border-subtle);
  line-height: 1.5;
}
.demo-checks svg {
  width: 16px;
  height: 16px;
  color: var(--c-money);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .demo-wrap { grid-template-columns: 1fr; gap: 48px; }
  .demo-phone { max-width: 420px; margin: 0 auto; order: 2; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS — 3-step section
   ═══════════════════════════════════════════ */
.how-it-works {
  padding: 96px 0 104px;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border-subtle);
  border-bottom: 1px solid var(--c-border-subtle);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.step-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  position: relative;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.step-card:hover {
  border-color: rgba(79, 70, 229, 0.20);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 17, 22, 0.05);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}
.step-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-indigo);
  background: rgba(79, 70, 229, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14px;
  color: var(--c-text-3);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .how-it-works { padding: 72px 0 80px; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }
}

/* ═══════════════════════════════════════════
   FEATURES — bento card grid (2 hero + 3 supporting)
   ═══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feature-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: rgba(79, 70, 229, 0.20);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 17, 22, 0.05);
}
.feature-card-lg {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.04), var(--c-bg) 80%);
  border-color: rgba(79, 70, 229, 0.12);
  padding: 32px 32px 36px;
}
.feature-icon-lg {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(79, 70, 229, 0.10);
  border: 1px solid rgba(79, 70, 229, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-indigo);
  margin-bottom: 20px;
}
.feature-icon-only {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-indigo);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card-lg h3 {
  font-size: 20px;
}
.feature-card p {
  font-size: 14px;
  color: var(--c-text-3);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feature-card,
  .feature-card-lg {
    grid-column: span 1;
  }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   PRICING — editorial centerpiece
   ═══════════════════════════════════════════ */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 48px 40px 40px;
  text-align: center;
  position: relative;
  box-shadow:
    0 30px 80px rgba(15, 17, 22, 0.08),
    0 8px 24px rgba(15, 17, 22, 0.04);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-bg);
  border: 1px solid var(--c-border-strong);
  color: var(--c-text);
  font-family: var(--f-ar);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 6px 14px;
  border-radius: 999px;
}
.pricing-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: 20px;
  font-family: var(--f-ar);
  letter-spacing: 0;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--f-en);
  font-size: 68px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.pricing-currency {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text-3);
}
.pricing-period {
  font-size: 13.5px;
  color: var(--c-text-3);
  margin-bottom: 4px;
}
.pricing-anchor {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  letter-spacing: 0;
}
.pricing-reversal {
  font-size: 12px;
  color: var(--c-text-3);
  margin-top: 10px;
  margin-bottom: 28px;
}
.pricing-positioning {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 14px;
  text-align: center;
}
.pricing-vat {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}
.pricing-trial {
  background: var(--c-money-subtle);
  color: var(--c-money);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--r-md);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.pricing-trial-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════ STATS BAND ═══════════ */
.stats-band {
  border-top: 1px solid var(--c-border-subtle);
  border-bottom: 1px solid var(--c-border-subtle);
  background: var(--c-bg-soft);
  padding: 56px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-band-item {
  padding: 0 16px;
  border-inline-end: 1px solid var(--c-border-subtle);
}
.stats-band-item:last-child {
  border-inline-end: none;
}
.stats-band-value {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01";
  min-height: 2.2em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.stats-band-label {
  font-size: 13px;
  color: var(--c-text-3);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .stats-band {
    padding: 40px 0;
  }
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .stats-band-item {
    padding: 0 8px;
  }
  .stats-band-item:nth-child(2n) {
    border-inline-end: none;
  }
  .stats-band-value {
    font-size: 36px;
  }
}
.pricing-features {
  list-style: none;
  padding: 0;
  text-align: right;
  margin-bottom: 32px;
  border-top: 1px solid var(--c-border-subtle);
}
.pricing-features li {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  font-size: 14px;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border-subtle);
  line-height: 1.45;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { width: 16px; height: 16px; color: var(--c-money); flex-shrink: 0; margin-top: 2px; }
.pricing-btn { width: 100%; }

/* ═══════════════════════════════════════════
   FAQ — editorial dialogue
   ═══════════════════════════════════════════ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
  background: transparent;
  transition: background 200ms ease;
}
.faq-item:hover { background: rgba(15, 17, 22, 0.02); }
.faq-item[open] { background: rgba(15, 17, 22, 0.03); }
.faq-q {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  text-align: right;
  font-family: var(--f-ar);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-icon {
  width: 18px;
  height: 18px;
  color: var(--c-text-muted);
  transition: transform 300ms cubic-bezier(0.2, 0.6, 0.3, 1);
  flex-shrink: 0;
}
.faq-item[open] .faq-q-icon { transform: rotate(180deg); color: var(--c-text); }
.faq-a {
  padding: 0 0 24px;
  font-size: 14.5px;
  color: var(--c-text-3);
  line-height: 1.75;
  max-width: 60ch;
}
.faq-a a { color: var(--c-text-2); text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--c-text); }

/* ═══════════════════════════════════════════
   FINAL CTA — closing statement
   ═══════════════════════════════════════════ */
.final-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(79, 70, 229, 0.10), transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.06), transparent 55%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--c-text);
}
.final-cta h2 .serif {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--c-indigo);
}
.final-cta p {
  font-size: 17px;
  color: var(--c-text-3);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px;
  margin-inline: auto;
}
.final-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.20);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: #128C4D;
  margin-bottom: 28px;
  letter-spacing: 0;
}
.final-cta-pill-dot {
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
  animation: pulse 2s infinite;
}

/* WhatsApp-branded primary button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  min-height: 52px;
  letter-spacing: -0.01em;
  transition: all 180ms cubic-bezier(0.2, 0.6, 0.3, 1);
  box-shadow: 0 1px 2px rgba(37, 211, 102, 0.15);
}
.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}

.waitlist-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 24px auto 16px;
  font-size: 12px;
  color: var(--c-text-muted);
  letter-spacing: 0;
}
.waitlist-divider::before,
.waitlist-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.waitlist-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-en);
  font-size: 13.5px;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  text-align: left;
  direction: ltr;
}
.waitlist-input::placeholder { color: var(--c-text-muted); }
.waitlist-input:focus {
  border-color: var(--c-indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.10);
}
.waitlist-submit {
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-ar);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 180ms ease;
}
.waitlist-submit:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-border-strong);
}
.waitlist-note {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 520px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-input { width: 100%; }
  .waitlist-submit { width: 100%; }
}

/* ═══════════════════════════════════════════
   FOUNDER NOTE — humanity break before final CTA
   ═══════════════════════════════════════════ */
.founder-section {
  padding: 96px 0 32px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-subtle);
}
.founder-inner {
  max-width: 720px;
  text-align: center;
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--c-indigo) 0%, #6366F1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-ar);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}
.founder-avatar-letter { line-height: 1; }
.founder-quote {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.founder-attribution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--c-text-3);
}
.founder-name {
  color: var(--c-text);
  font-weight: 600;
}
.founder-sep {
  color: var(--c-text-muted);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   FOOTER — colophon
   ═══════════════════════════════════════════ */
.footer {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand-text span {
  font-family: var(--f-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--c-text);
}
.footer-desc {
  font-size: 14px;
  color: var(--c-text-3);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col-title {
  font-family: var(--f-ar);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--c-text-2);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--c-text-3);
  padding: 5px 0;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--c-text); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--c-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--c-text-muted);
  font-family: var(--f-ar);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   Reduced motion
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive container */
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 80px 0; }
  .pullquote { padding: 80px 0; }
  .final-cta { padding: 80px 0; }
  .hero { padding: 72px 0 88px; }
  .pricing-card { padding: 36px 28px 32px; }
}

