:root {
  --gold: #d4af37;
  --gold-2: #c9a227;
  --gold-dim: #8a7320;
  --ink: #0b0c10;
  --ink-2: #101218;
  --surface: #15171f;
  --surface-2: #1b1e27;
  --border: #2a2d38;
  --text: #f6f5f2;
  --text-dim: #a7a8b0;
  --text-faint: #74757e;
  --green: #46b685;
  --radius: 16px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --maxw: 1140px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.serif { font-family: var(--serif); font-weight: 500; }

/* ── Layout utilities (replace former inline style="" attributes — CSP style-src 'self') ── */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.no-mb { margin-bottom: 0; }
.pillars-2 { grid-template-columns: 1fr 1fr; }
.mt-18 { margin-top: 18px; }
.final-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ── Nav ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 12, 16, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; height: 68px; }
.brand { margin-right: auto; }
.brand { display: flex; align-items: baseline; gap: 1px; font-size: 22px; font-weight: 700; letter-spacing: -0.3px; }
.brand .x { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-dim); font-size: 14.5px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.12s, background 0.15s, border-color 0.15s; white-space: nowrap;
}
.btn-gold { background: linear-gradient(180deg, var(--gold), var(--gold-2)); color: #1a1500; }
.btn-gold:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold); }
.nav .btn { padding: 9px 18px; font-size: 14.5px; }

/* ── Hero ── */
.hero { position: relative; padding: 84px 0 72px; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 420px at 78% 8%, rgba(212, 175, 55, 0.14), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(212, 175, 55, 0.06), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; color: var(--gold); background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28); padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.18); }
h1.hero-title { font-family: var(--serif); font-weight: 500; font-size: 60px; line-height: 1.04; letter-spacing: -1px; }
h1.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { margin-top: 22px; font-size: 19px; line-height: 1.55; color: var(--text-dim); max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-mini { margin-top: 26px; font-size: 13.5px; color: var(--text-faint); display: flex; align-items: center; gap: 8px; }

/* ── Hero visual: coin + reserve chip ── */
.hero-visual { display: flex; justify-content: center; position: relative; }
.coin-card {
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--border); border-radius: 24px; padding: 30px;
  width: 100%; max-width: 380px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.coin-card .coin { display: block; margin: 4px auto 22px; width: 168px; height: 168px; }
.reserve-row { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.reserve-row .k { font-size: 13px; color: var(--text-dim); }
.reserve-row .v { font-size: 15px; font-weight: 600; }
.cov-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 600; font-size: 14px; }
.cov-pill .led { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(70,182,133,0.16); }
.price-line { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.price-line .amt { font-size: 30px; font-weight: 700; letter-spacing: -0.5px; }
.price-line .unit { font-size: 13px; color: var(--text-faint); }
.price-sub { font-size: 13px; color: var(--text-faint); margin-bottom: 20px; }

/* ── Trust strip ── */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--ink-2); }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 28px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-dim); }
.trust-item svg { flex: none; }
.trust-item b { color: var(--text); font-weight: 600; }

/* ── Sections ── */
section.block { padding: 84px 0; }
.sec-head { max-width: 680px; margin-bottom: 46px; }
.sec-tag { font-size: 13px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-2); }
h2 { font-family: var(--serif); font-weight: 500; font-size: 40px; line-height: 1.1; letter-spacing: -0.6px; margin-top: 14px; }
.sec-head p { margin-top: 16px; font-size: 18px; color: var(--text-dim); }

/* ── Pillars ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform 0.15s, border-color 0.15s; position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.pillar .ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(212, 175, 55, 0.12); border: 1px solid rgba(212, 175, 55, 0.25); color: var(--gold); margin-bottom: 18px;
}
.pillar h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.2px; }
.pillar .tag { font-size: 12.5px; font-weight: 600; color: var(--gold-2); margin-top: 3px; }
.pillar p { margin-top: 12px; font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }

/* ── Shariah ── */
.shariah { background: var(--ink-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.shariah-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.principle { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.principle:last-child { border-bottom: none; }
.principle .pic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.22); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.principle h4 { font-size: 16px; font-weight: 600; }
.principle p { font-size: 14px; color: var(--text-dim); margin-top: 3px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding-top: 14px; }
.step .n { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--gold); line-height: 1; }
.step h3 { font-size: 18px; font-weight: 600; margin-top: 14px; }
.step p { font-size: 14.5px; color: var(--text-dim); margin-top: 8px; }

/* ── PoR banner ── */
.por {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent 60%), var(--surface);
  border: 1px solid var(--gold-dim); border-radius: 22px; padding: 44px;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center;
}
.por h2 { font-size: 34px; margin-top: 0; }
.por p { margin-top: 14px; color: var(--text-dim); font-size: 16px; }
.gauge { text-align: center; }
.gauge .pct { font-family: var(--serif); font-size: 56px; font-weight: 600; color: var(--gold); line-height: 1; }
.gauge .lbl { font-size: 13.5px; color: var(--text-dim); margin-top: 8px; }
.gauge .bar { height: 8px; border-radius: 6px; background: var(--surface-2); margin-top: 16px; overflow: hidden; border: 1px solid var(--border); }
.gauge .bar > span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold-2), var(--gold)); }

/* ── Final CTA ── */
.final { text-align: center; padding: 96px 0; }
.final h2 { font-size: 46px; }
.final p { margin: 16px auto 30px; font-size: 18px; color: var(--text-dim); max-width: 520px; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); background: var(--ink-2); padding: 56px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .brand { font-size: 20px; margin-bottom: 14px; }
.foot-brand p { font-size: 13.5px; color: var(--text-faint); max-width: 300px; line-height: 1.6; }
.foot-col h5 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; font-weight: 600; }
.foot-col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 10px; transition: color 0.15s; }
.foot-col a:hover { color: var(--gold); }
.foot-legal { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--text-faint); line-height: 1.7; }
.foot-legal .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 14px; }

@media (max-width: 900px) {
  .hero-grid, .shariah-grid, .por { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .steps { grid-template-columns: 1fr 1fr; }
  h1.hero-title { font-size: 46px; }
  .hero { padding: 56px 0 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .por { padding: 32px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .pillars, .steps, .foot-grid { grid-template-columns: 1fr; }
  h1.hero-title { font-size: 38px; }
  h2 { font-size: 30px; }
  .final h2 { font-size: 34px; }
}
