:root {
  --emerald-950: #021f1d;
  --emerald-900: #032b29;
  --emerald-850: #043532;
  --emerald-800: #063f3b;
  --gold: #d4af37;
  --gold-light: #f4d77a;
  --cream: #f8f4ea;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(212, 175, 55, 0.32);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: white;
  background: radial-gradient(circle at 65% 20%, rgba(36, 118, 98, 0.32), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(212, 175, 55, 0.18), transparent 25%),
    linear-gradient(135deg, var(--emerald-950), var(--emerald-900) 42%, #011715);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(212,175,55,.055) 12%, transparent 12.5%, transparent 87%, rgba(212,175,55,.055) 87.5%, rgba(212,175,55,.055)),
    linear-gradient(150deg, rgba(212,175,55,.055) 12%, transparent 12.5%, transparent 87%, rgba(212,175,55,.055) 87.5%, rgba(212,175,55,.055)),
    linear-gradient(30deg, rgba(212,175,55,.055) 12%, transparent 12.5%, transparent 87%, rgba(212,175,55,.055) 87.5%, rgba(212,175,55,.055)),
    linear-gradient(150deg, rgba(212,175,55,.055) 12%, transparent 12.5%, transparent 87%, rgba(212,175,55,.055) 87.5%, rgba(212,175,55,.055));
  background-size: 84px 146px;
  background-position: 0 0, 0 0, 42px 73px, 42px 73px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at center, transparent 0%, black 64%);
}

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

.page-shell {
  position: relative;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 40px 40px 32px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--gold);
}

.logo-mark {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  background: linear-gradient(145deg, #053c38, #021f1d);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 1px 14px rgba(255, 255, 255, 0.05), 0 16px 34px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.logo-mark span,
.logo-mark i {
  position: absolute;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.logo-mark span:nth-child(1) {
  left: 23px;
  bottom: 19px;
  width: 12px;
  height: 26px;
  border-radius: 3px;
}

.logo-mark span:nth-child(2) {
  left: 39px;
  bottom: 25px;
  width: 12px;
  height: 34px;
  border-radius: 3px;
}

.logo-mark span:nth-child(3) {
  left: 55px;
  bottom: 32px;
  width: 12px;
  height: 32px;
  border-radius: 3px;
}

.logo-mark i {
  right: 11px;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.status-pill {
  padding: 14px 30px;
  border-radius: 16px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.16em;
  background: rgba(2, 31, 29, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  min-height: 720px;
  padding: 46px 0 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 800;
  margin: 0 0 24px;
}

.eyebrow span {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
  font-size: clamp(56px, 6vw, 102px);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.lead {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  margin: 30px 0 28px;
}

.launch-card {
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 52px rgba(0, 0, 0, 0.2);
}

.bell {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 30px;
}

.launch-card strong {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 21px;
}

.launch-card span {
  color: white;
  display: block;
  margin-top: 6px;
}

.notify-form {
  display: flex;
  width: min(500px, 100%);
  margin-top: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(2, 31, 29, 0.5);
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 20px 24px;
  color: white;
  background: transparent;
  font: inherit;
  outline: 0;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.notify-form button {
  border: 0;
  padding: 0 30px;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #071f1d;
  background: linear-gradient(180deg, #ffe28d, var(--gold));
  cursor: pointer;
}

.privacy-note {
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0 0;
}

.hero-visual {
  min-height: 650px;
  position: relative;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.32));
}

.phone {
  position: absolute;
  width: 300px;
  aspect-ratio: 9 / 18.4;
  border: 10px solid #111;
  border-radius: 42px;
  background: #111;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 92px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0a;
  z-index: 3;
}

.phone-center {
  left: 50%;
  top: 12px;
  width: 360px;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-left {
  left: 4%;
  top: 108px;
  transform: rotate(-7deg);
  z-index: 2;
}

.phone-right {
  right: 2%;
  top: 122px;
  transform: rotate(7deg);
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 46px 16px 18px;
  color: #101010;
  background: #faf8f2;
  overflow: hidden;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 19px;
  margin-bottom: 8px;
}

.phone-top span {
  font-size: 11px;
}

.greeting {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}

.asset-card,
.wealth-card {
  border-radius: 19px;
  background: linear-gradient(135deg, #04352f, #02231f);
  color: white;
  border: 1px solid rgba(212, 175, 55, 0.55);
  overflow: hidden;
}

.asset-card {
  padding: 18px;
  margin-top: 16px;
}

.asset-card span,
.wealth-card span {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.asset-card strong,
.wealth-card strong {
  display: block;
  font-size: 27px;
  margin: 9px 0;
}

.asset-card small,
.wealth-card small {
  color: rgba(255,255,255,.75);
}

.wealth-card {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 10px;
  padding: 18px;
  min-height: 210px;
  position: relative;
}

.wealth-card em {
  display: inline-block;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  margin-top: 12px;
  padding: 9px 11px;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}

.mosque {
  align-self: stretch;
  border: 3px solid var(--gold-light);
  border-radius: 46% 46% 14px 14px;
  background: radial-gradient(circle at bottom, rgba(244,215,122,.7), transparent 35%), linear-gradient(#071617, #020808);
  box-shadow: inset 0 -22px 42px rgba(212, 175, 55, 0.42);
}

.filter-row,
.quick-actions,
.tabs {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  font-size: 11px;
}

.filter-row span,
.quick-actions span,
.tabs span {
  padding: 8px 10px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e8e2d4;
  font-weight: 700;
}

.filter-row span:first-child {
  background: var(--gold);
  color: white;
}

.list-item,
.transaction {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  background: white;
  border: 1px solid #e8e2d4;
  border-radius: 16px;
  padding: 15px;
  margin: 11px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.list-item i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e3f7ef;
  color: #0f8b6b;
  font-style: normal;
}

.transaction {
  grid-template-columns: 1fr auto;
}

.transaction small {
  grid-column: 1 / -1;
  color: #91a4a0;
  font-weight: 700;
}

.transaction strong {
  color: #cf2e2e;
}

.allocation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  background: white;
  border: 1px solid #e8e2d4;
  border-radius: 18px;
  padding: 18px;
}

.donut {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: conic-gradient(#2fc2aa 0 27%, #d4af37 27% 43%, #467688 43% 64%, #7659a6 64% 100%);
  position: relative;
}

.donut::before {
  content: "";
  position: absolute;
  inset: 18px;
  background: white;
  border-radius: inherit;
}

.donut b,
.donut small {
  position: relative;
  display: block;
}

.allocation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.allocation li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 9px 0;
}

.bottom-nav {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: rgba(255,255,255,.7);
  background: #022c28;
  border-radius: 20px;
  padding: 13px 8px;
  text-align: center;
  font-size: 10px;
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding: 18px 0 40px;
}

.features article {
  text-align: center;
  position: relative;
}

.features article + article::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 20px;
  width: 1px;
  height: 80px;
  background: linear-gradient(transparent, var(--line), transparent);
}

.features span {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 34px;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background: rgba(2, 31, 29, 0.5);
}

.features h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 22px;
  padding: 24px 34px;
  color: var(--muted);
  background: rgba(2, 31, 29, 0.42);
}

.site-footer a {
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .page-shell {
    padding: 28px 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 660px;
  }

  .phone-left {
    left: 0;
  }

  .phone-right {
    right: 0;
  }

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

  .features article + article::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .eyebrow span {
    display: none;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    min-height: 56px;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(0.76);
    transform-origin: top center;
    margin-bottom: -120px;
  }

  .phone-center {
    width: 320px;
  }

  .phone-left,
  .phone-right {
    width: 250px;
    opacity: 0.72;
  }

  .phone-left {
    left: -64px;
  }

  .phone-right {
    right: -64px;
  }

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

  .site-footer a {
    font-size: 22px;
  }
}
