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

html {
  scroll-behavior: smooth
}

:root {
  --green: #24b24c;
  --green-dark: #1a8a38;
  --green-dim: rgba(36, 178, 76, 0.12);
  --green-glow: rgba(36, 178, 76, 0.25);
  --bg: #0a0d0a;
  --surface: #0f140f;
  --card: #141a14;
  --card2: #181f18;
  --border: rgba(36, 178, 76, 0.14);
  --border2: rgba(255, 255, 255, 0.07);
  --text: #e8ede8;
  --muted: #6b7d6b;
  --muted2: #4a574a;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

main {
  position: relative;
  z-index: 1
}

/* subtle dot grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(36, 178, 76, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent);
}

/* ── NAV (glass capsule) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 28px;
  pointer-events: none;
  transition: transform .35s ease;
}

#nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  height: 58px;
  padding: 6px 8px 6px 18px;
  background: rgba(18, 24, 18, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0
}

.nav-logo img {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 8px
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--green)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 20px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.nav-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 600;
  font-size: .78rem;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.nav-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--green-glow)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 999px;
  transition: background .2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.06)
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .28s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 20px;
  right: 20px;
  max-width: 420px;
  margin: 0 auto;
  z-index: 499;
  background: rgba(15, 20, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px 20px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.mob-menu.open {
  display: flex
}

.mob-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border2);
  letter-spacing: -.01em
}

.mob-menu a:last-of-type {
  border-bottom: none
}

.mob-cta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(36, 178, 76, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(36, 178, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* logo large in hero */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp .5s ease both;
}

.hero-logo-wrap img {
  height: 64px;
  width: 64px;
  border-radius: 16px;
  object-fit: contain;
}

.hero-logo-name {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--text);
}

.hero-logo-name span {
  color: var(--green)
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(36, 178, 76, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .5s .08s ease both;
}

.blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.5)
  }
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  max-width: 820px;
  animation: fadeUp .5s .14s ease both;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green) 30%, #5ee07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400;
  animation: fadeUp .5s .2s ease both;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .5s .26s ease both;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .22s;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--green-glow)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border2);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .22s;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green)
}

/* trust strip */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
  animation: fadeUp .5s .32s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500
}

.trust-dot {
  width: 1px;
  height: 18px;
  background: var(--border2)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── STATS ── */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-cell {
  flex: 1;
  min-width: 140px;
  padding: 28px 36px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background .2s;
}

.stat-cell:last-child {
  border-right: none
}

.stat-cell:hover {
  background: var(--card)
}

.stat-n {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-l {
  font-size: .73rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

/* ── SECTIONS ── */
section {
  padding: 96px 0;
  position: relative
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px
}

.sec-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  display: block
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}

h2 em {
  font-style: normal;
  color: var(--green)
}

.sec-sub {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px
}

/* ── FEATURES ── */
.features-sec {
  background: var(--surface)
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 52px;
}

.feat-card {
  background: var(--card);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.feat-card:hover {
  background: var(--card2)
}

.feat-card:hover::after {
  opacity: 1
}

.fc-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(36, 178, 76, 0.08);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 14px;
  transition: color .25s;
}

.feat-card:hover .fc-num {
  color: rgba(36, 178, 76, 0.15)
}

.fc-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: block
}

.fc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em
}

.fc-desc {
  font-size: .855rem;
  color: var(--muted);
  line-height: 1.7
}

/* ── HOW IT WORKS ── */
.how-sec {
  background: var(--bg)
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 52px;
}

.how-card {
  background: var(--card);
  padding: 32px 26px;
  border-right: 1px solid var(--border);
  transition: background .25s;
  position: relative;
}

.how-card:last-child {
  border-right: none
}

.how-card:hover {
  background: var(--card2)
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(36, 178, 76, .3);
  font-size: .8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 18px;
}

.how-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em
}

.how-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65
}

.how-arrow {
  position: absolute;
  top: 32px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: rotate(45deg);
  background: var(--bg);
  z-index: 1;
}

/* ── ALERTS SECTION ── */
.alerts-sec {
  background: var(--surface)
}

.alerts-layout {
  margin-top: 52px
}

.alert-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.alert-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  transition: all .22s;
  cursor: default;
}

.alert-row:hover {
  border-color: var(--green);
  background: var(--card2);
  transform: translateX(4px)
}

.ar-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--muted2);
  flex-shrink: 0;
  width: 26px;
  text-align: right;
  transition: color .22s;
  font-variant-numeric: tabular-nums;
}

.alert-row:hover .ar-num {
  color: var(--green)
}

.ar-icon {
  font-size: 1.05rem;
  flex-shrink: 0
}

.ar-title {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -.01em
}

.ar-desc {
  font-size: .77rem;
  color: var(--muted);
  line-height: 1.45
}

/* phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 100px
}

.phone {
  background: #111;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 40px;
  padding: 14px;
  width: 280px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05), 0 0 60px rgba(36, 178, 76, .08);
}

.phone-notch {
  width: 88px;
  height: 26px;
  background: var(--bg);
  border-radius: 100px;
  margin: 0 auto 14px
}

.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  padding: 18px 14px;
  min-height: 460px
}

.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px
}

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

.ph-app img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: contain
}

.ph-app-name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: -.01em
}

.ph-time {
  font-size: .67rem;
  color: var(--muted)
}

.pn {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 13px;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: pnIn .4s ease both;
}

.pn:last-child {
  margin-bottom: 0
}

@keyframes pnIn {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.pn-app {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pn-app img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px
}

.pn-title {
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.01em
}

.pn-msg {
  font-size: .67rem;
  color: var(--muted);
  line-height: 1.4
}

.pn-time {
  font-size: .6rem;
  color: var(--muted2);
  margin-top: 3px
}

.pn.green {
  border-color: rgba(36, 178, 76, .25);
  background: rgba(36, 178, 76, .05)
}

.pn.green .pn-title {
  color: var(--green)
}

/* ── RESEARCH ── */
.research-sec {
  background: var(--bg)
}

.research-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px
}

.chk {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.chk-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--green-dim);
  border: 1px solid rgba(36, 178, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--green);
  font-weight: 700;
}

.chk-txt {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6
}

.chk-txt strong {
  color: var(--text);
  font-weight: 600
}

.tag-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}

.tag-panel-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tag {
  padding: 7px 13px;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid;
  transition: all .2s;
  cursor: default;
}

.tag:hover {
  transform: translateY(-2px)
}

.tag-g {
  background: rgba(36, 178, 76, .08);
  border-color: rgba(36, 178, 76, .25);
  color: var(--green)
}

.tag-w {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border2);
  color: var(--muted)
}

/* ── ALLOTMENT ── */
.allot-sec {
  background: var(--surface)
}

.allot-layout {
  display: block
}

.allot-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 32px
}

.as {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
  transition: all .2s;
}

.as:last-child {
  border-bottom: none
}

.as:hover .as-n {
  color: var(--green)
}

.as-n {
  font-size: 2rem;
  font-weight: 800;
  color: var(--muted2);
  flex-shrink: 0;
  width: 42px;
  text-align: right;
  line-height: 1;
  transition: color .22s;
  letter-spacing: -.04em;
}

.as-title {
  font-size: .93rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -.01em
}

.as-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6
}

.allot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.ac-head {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ac-head img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #000
}

.ac-head-text {}

.ac-head-title {
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin-bottom: 2px
}

.ac-head-sub {
  font-size: .72rem;
  color: rgba(255, 255, 255, .65)
}

.ac-badge {
  margin-left: auto;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ac-body {
  padding: 22px
}

.ac-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border2)
}

.ac-row:last-child {
  border-bottom: none
}

.ac-k {
  font-size: .76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500
}

.ac-v {
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: -.01em
}

.ac-v.g {
  color: var(--green)
}

.ac-note {
  margin-top: 18px;
  background: rgba(36, 178, 76, .07);
  border: 1px solid rgba(36, 178, 76, .2);
  border-radius: 10px;
  padding: 14px;
}

.ac-note-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px
}

.ac-note-text {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55
}

/* ── FAQ ── */
.faq-sec {
  background: var(--bg)
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 52px;
  align-items: start
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0
}

.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-grid details[open] {
  border-color: rgba(36, 178, 76, .4);
  background: var(--card);
  overflow: visible
}

.faq-grid summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  letter-spacing: -.01em;
  transition: color .2s;
  user-select: none;
  -webkit-user-select: none
}

.faq-grid summary::-webkit-details-marker,
.faq-grid summary::marker {
  display: none;
  content: ''
}

.faq-grid summary:hover {
  color: var(--green)
}

.fq-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  transition: all .25s;
  pointer-events: none
}

.faq-grid details[open] .fq-ic {
  border-color: var(--green);
  color: var(--green);
  transform: rotate(45deg)
}

.fq-body {
  padding: 0 22px 18px;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.72;
  border-top: 1px solid var(--border2);
  padding-top: 14px
}

.ipo-faq-card .ipo-faq-grid {
  margin-top: 24px
}

.ipo-faq-card .ipo-card-title {
  margin-bottom: 0
}

/* ── DOWNLOAD ── */
.dl-sec {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 112px 24px;
  position: relative;
  overflow: hidden;
}

.dl-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(36, 178, 76, .12) 0%, transparent 65%);
  pointer-events: none;
}

.dl-content {
  position: relative;
  z-index: 1
}

.dl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px
}

.dl-logo img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain
}

.dl-logo-name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text)
}

.dl-logo-name span {
  color: var(--green)
}

.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(36, 178, 76, .3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.dl-h {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.0;
  max-width: 680px;
  margin: 0 auto 18px;
}

.dl-h em {
  font-style: normal;
  color: var(--green)
}

.dl-p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.7
}

.gplay {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #0a0d0a;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
  font-family: inherit;
}

.gplay:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 0 2px var(--green)
}

.gplay-sub {
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #666;
  line-height: 1
}

.gplay-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 2px
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none
}

.foot-logo img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: contain
}

.foot-logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text)
}

.foot-logo-name span {
  color: var(--green)
}

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap
}

.foot-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s
}

.foot-links a:hover {
  color: var(--green)
}

.foot-copy {
  font-size: .73rem;
  color: var(--muted2);
  line-height: 1.6;
  text-align: right;
  max-width: 100%;
  text-align: center;
}



/* ── IPO TABLE SECTION ── */
#ipo-table,
#features,
#how-it-works,
#alerts,
#faq {
  scroll-margin-top: 88px
}

.ipo-sec {
  background: var(--bg);
  padding: 96px 0
}

.ipo-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 200, 0, .07);
  border: 1px solid rgba(255, 200, 0, .18);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .7rem;
  font-weight: 600;
  color: #c9a800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* tabs */
.ipo-tabs {
  display: flex;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  width: fit-content
}

.ipo-tab {
  padding: 10px 22px;
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--muted);
  transition: all .2s;
  letter-spacing: -.01em;
  border-right: 1px solid var(--border);
}

.ipo-tab:last-child {
  border-right: none
}

.ipo-tab.active {
  background: var(--green);
  color: #fff
}

.ipo-tab:not(.active):hover {
  color: var(--text);
  background: var(--card)
}

/* table wrapper */
.ipo-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border)
}

.ipo-table-inner {
  min-width: 820px
}

/* table header */
.ipo-thead {
  display: grid;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}

.ipo-thead span {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

/* table rows */
.ipo-row {
  display: grid;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border2);
  align-items: center;
  transition: background .2s;
}

.ipo-row:last-child {
  border-bottom: none
}

.ipo-row:hover {
  background: var(--card)
}

/* grid col layouts per tab */
.cols-current {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr
}

.cols-upcoming {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr
}

.cols-past {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr
}

/* company cell */
.ipo-co {
  display: flex;
  align-items: center;
  gap: 10px
}

.ipo-av {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: .01em;
  border: 1px solid var(--border2);
}

.ipo-co-name {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 2px
}

.ipo-co-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s
}

.ipo-co-link:hover {
  color: var(--green);
  text-decoration: underline
}

.ipo-co-sector {
  font-size: .69rem;
  color: var(--muted)
}

.ipo-empty {
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  grid-column: 1/-1
}

/* status badge */
.ipo-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  width: fit-content;
}

.st-open {
  background: rgba(36, 178, 76, .12);
  color: var(--green);
  border: 1px solid rgba(36, 178, 76, .25)
}

.st-upcoming {
  background: rgba(0, 150, 255, .1);
  color: #4ab8ff;
  border: 1px solid rgba(0, 150, 255, .2)
}

.st-closed {
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  border: 1px solid var(--border2)
}

.st-alloted {
  background: rgba(245, 185, 66, .1);
  color: #f5b942;
  border: 1px solid rgba(245, 185, 66, .2)
}

/* cell text */
.ipo-val {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.01em
}

.ipo-sub {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 2px
}

.pos {
  color: var(--green)
}

.neg {
  color: #ff5c5c
}

.neu {
  color: #f5b942
}

/* subscription bar */
.sub-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.sub-bar-track {
  background: rgba(255, 255, 255, .07);
  border-radius: 4px;
  height: 5px;
  overflow: hidden
}

.sub-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green))
}

/* GMP table */
.gmp-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-top: 48px
}

.gmp-table-inner {
  min-width: 700px
}

.gmp-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}

.gmp-head span {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted)
}

.gmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border2);
  align-items: center;
  transition: background .2s;
}

.gmp-row:last-child {
  border-bottom: none
}

.gmp-row:hover {
  background: var(--card)
}

.gmp-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.gmp-pos {
  background: rgba(36, 178, 76, .12);
  color: var(--green);
  border: 1px solid rgba(36, 178, 76, .2)
}

.gmp-neg {
  background: rgba(255, 92, 92, .1);
  color: #ff5c5c;
  border: 1px solid rgba(255, 92, 92, .18)
}

.gmp-neu {
  background: rgba(245, 185, 66, .1);
  color: #f5b942;
  border: 1px solid rgba(245, 185, 66, .2)
}

/* tab panels */
.ipo-panel {
  display: none
}

.ipo-panel.active {
  display: block
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .how-card:nth-child(2) {
    border-right: none
  }

  .how-card:nth-child(1),
  .how-card:nth-child(2) {
    border-bottom: 1px solid var(--border)
  }

  .faq-grid:not(.faq-grid--stack) {
    grid-template-columns: 1fr
  }

  .faq-grid.faq-grid--stack {
    display: flex;
    flex-direction: column
  }

  .faq-grid.faq-grid--stack .faq-col {
    display: contents
  }
}

@media(max-width:860px) {
  .site-header {
    padding: 14px 16px
  }

  #nav {
    padding: 6px 8px 6px 14px;
    height: 52px
  }

  .nav-links,
  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .alerts-layout {
    margin-top: 40px
  }

  .alert-list,
  .allot-steps {
    grid-template-columns: 1fr
  }

  .research-layout {
    grid-template-columns: 1fr
  }

  .phone-wrap {
    position: static
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px
  }

  .foot-copy {
    text-align: left;
    max-width: 100%
  }

  .stats-bar {
    flex-wrap: wrap
  }

  .stat-cell {
    flex: none;
    width: 50%;
    border-bottom: 1px solid var(--border)
  }

  .stat-cell:nth-child(2n) {
    border-right: none
  }

  .stat-cell:nth-last-child(-n+2) {
    border-bottom: none
  }

  .ipo-tabs {
    width: 100%
  }

  .ipo-tab {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: .78rem
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 20px
  }

  section {
    padding: 64px 0
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .how-grid {
    grid-template-columns: 1fr
  }

  .how-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important
  }

  .how-card:last-child {
    border-bottom: none !important
  }

  .faq-grid:not(.faq-grid--stack) {
    grid-template-columns: 1fr
  }

  .faq-grid.faq-grid--stack {
    display: flex;
    flex-direction: column
  }

  .faq-grid.faq-grid--stack .faq-col {
    display: contents
  }

  .stats-bar {
    flex-direction: column
  }

  .stat-cell {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important
  }

  .stat-cell:last-child {
    border-bottom: none !important
  }

  h1 {
    font-size: 2.6rem
  }

  .hero-logo-name {
    font-size: 1.7rem
  }

  .hero-logo-wrap img {
    height: 52px;
    width: 52px
  }
}

/* SUB-PAGES */
.page-sub {
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

.page-sub main {
  flex: 1;
  position: relative;
  z-index: 1
}

.nav-links a.active {
  color: var(--text)
}

.page-disclaimer .container {
  max-width: 820px
}

.disclaimer-sec {
  padding: 32px 0 80px
}

.disclaimer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .25)
}

.disclaimer-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px
}

.disclaimer-card p:last-of-type {
  margin-bottom: 0
}

.disclaimer-card p strong {
  color: var(--text);
  font-weight: 600
}

.disclaimer-card h2,
.disclaimer-card h3,
.disclaimer-card h5 {
  color: var(--text);
  font-size: 1.05rem;
  margin: 28px 0 12px;
  font-weight: 700
}

.disclaimer-card h3 {
  font-size: .98rem
}

.disclaimer-card ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: var(--muted)
}

.disclaimer-card li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: .92rem
}

.disclaimer-card a {
  color: var(--green)
}

.disclaimer-card sub {
  color: var(--muted2);
  font-size: .8rem
}

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

.disclaimer-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(36, 178, 76, .07);
  border: 1px solid rgba(36, 178, 76, .2);
  border-radius: 12px
}

.disclaimer-note p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65
}

.page-badge-warn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 200, 0, .07);
  border: 1px solid rgba(255, 200, 0, .18);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .72rem;
  font-weight: 600;
  color: #c9a800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px
}

.page-hero {
  position: relative;
  padding: 130px 24px 48px;
  text-align: center;
  overflow: hidden
}

.page-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(36, 178, 76, 0.12) 0%, transparent 65%);
  pointer-events: none
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(36, 178, 76, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 14px
}

.page-hero h1 em {
  font-style: normal;
  color: var(--green)
}

.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75
}

.page-hero-title-center h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.contact-sec {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color .2s, background .2s
}

.info-card:hover {
  border-color: rgba(36, 178, 76, 0.35);
  background: var(--card2)
}

.info-card-icon {
  font-size: 1.4rem;
  margin-bottom: 10px
}

.info-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.02em
}

.info-card p,
.info-card a {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  text-decoration: none
}

.info-card a {
  color: var(--green);
  font-weight: 600
}

.info-card a:hover {
  text-decoration: underline
}

.info-card .sub {
  font-size: .78rem;
  color: var(--muted2);
  margin-top: 4px
}

.form-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px
}

.form-panel h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.02em
}

.form-panel>p {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: .76rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em
}

.form-group label span {
  color: #ff6b6b
}

input,
textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .88rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(36, 178, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(36, 178, 76, 0.1)
}

textarea {
  min-height: 130px;
  resize: vertical
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all .22s
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--green-glow)
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px
}

.form-success.show {
  display: block
}

.form-success .ok {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(36, 178, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin: 0 auto 16px
}

.form-success h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px
}

.form-success p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6
}

.form-wrap.hide {
  display: none
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  margin-top: 28px;
  transition: color .2s
}

.back-link:hover {
  color: var(--green)
}

@media(max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr
  }

  .disclaimer-card {
    padding: 28px 24px
  }
}

@media(max-width:600px) {
  .form-grid {
    grid-template-columns: 1fr
  }

  .form-group.full {
    grid-column: auto
  }
}

/* IPO detail page */
.ipo-detail-hero {
  padding: 120px 0 28px;
  position: relative;
  z-index: 1
}

.ipo-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 18px;
  transition: color .2s
}

.ipo-detail-back:hover {
  color: var(--green)
}

.ipo-detail-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px
}

.ipo-detail-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 0
}

.ipo-card-title-left {
  text-align: left;
  margin-bottom: 0
}

.ipo-card-subtitle {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text)
}

.ipo-objective-intro {
  margin-bottom: 18px
}

.ipo-data-table-center th,
.ipo-data-table-center td {
  text-align: center
}

.ipo-data-table-center th:first-child,
.ipo-data-table-center td:first-child {
  text-align: left
}
/* 
.ipo-subscription-block {
  margin-bottom: 24px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(36, 178, 76, .35);
  background: linear-gradient(180deg, rgba(36, 178, 76, .08), rgba(36, 178, 76, .02));
  box-shadow: 0 0 0 1px rgba(36, 178, 76, .08)
} */

.ipo-subscription-head {
  text-align: center;
  margin-bottom: 18px
}

.ipo-subscription-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.ipo-subscription-head h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 6px
}

.ipo-subscription-total {
  font-size: .84rem;
  color: var(--muted)
}

.ipo-subscription-total strong {
  color: var(--green);
  font-weight: 800
}

.ipo-subscription-block .ipo-detail-card {
  margin-bottom: 14px;
  border-color: rgba(36, 178, 76, .18)
}

.ipo-subscription-block .ipo-detail-card:last-child {
  margin-bottom: 0
}

.ipo-subscription-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%
}

.ipo-subscription-stack .ipo-detail-card {
  width: 100%;
  margin-bottom: 0
}

.ipo-subscription-stack .ipo-table-scroll {
  width: 100%
}

.ipo-subscription-stack .ipo-data-table {
  min-width: 0;
  width: 100%
}

.ipo-docs-registrar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px
}

.ipo-docs-registrar-grid:has(> :only-child) {
  grid-template-columns: 1fr
}

.ipo-detail-card-half {
  margin-bottom: 0;
  height: 100%
}

.ipo-detail-card-half .ipo-card-title {
  font-size: .95rem;
  margin-bottom: 14px
}

.ipo-detail-card-half .ipo-detail-content {
  font-size: .82rem;
  line-height: 1.6
}

.ipo-detail-card-half .ipo-allotment-btn {
  font-size: .78rem;
  padding: 10px 16px;
  margin-top: 10px
}

.ipo-detail-av {
  width: 64px;
  height: 64px;
  font-size: 1.1rem;
  flex-shrink: 0
}

.ipo-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px
}

.ipo-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase
}

.ipo-type-mainline {
  background: rgba(36, 178, 76, .12);
  color: var(--green);
  border: 1px solid rgba(36, 178, 76, .25)
}

.ipo-type-sme {
  background: rgba(245, 185, 66, .1);
  color: #f5b942;
  border: 1px solid rgba(245, 185, 66, .25)
}

.ipo-detail-sec {
  padding: 0 0 80px;
  position: relative;
  z-index: 1
}

.ipo-detail-anchor {
  scroll-margin-top: 88px
}

.ipo-section-nav {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  background: rgba(10, 13, 10, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
  margin-bottom: 20px
}

.ipo-section-nav-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  scrollbar-width: none
}

.ipo-section-nav-track::-webkit-scrollbar {
  display: none
}

.ipo-section-link {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--card);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap
}

.ipo-section-link:hover,
.ipo-section-link.active {
  color: var(--green);
  border-color: rgba(36, 178, 76, .35);
  background: var(--green-dim)
}

.ipo-detail-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px
}

.ipo-detail-grid-2:has(> :only-child) {
  grid-template-columns: minmax(0, 560px)
}

.ipo-detail-grid-2 .ipo-detail-card {
  margin-bottom: 0
}

.ipo-detail-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  align-items: stretch
}

.ipo-detail-grid-3:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.ipo-detail-grid-3:has(> :only-child) {
  grid-template-columns: minmax(0, 560px);
  justify-content: center
}

.ipo-detail-grid-3 .ipo-detail-card {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0
}

.ipo-detail-grid-3 .ipo-card-title {
  font-size: .95rem;
  margin-bottom: 14px
}

.ipo-detail-grid-3 .ipo-table-scroll,
.ipo-detail-grid-3 .ipo-kv-table {
  flex: 1
}

.ipo-detail-grid-3 .ipo-data-table {
  min-width: 0;
  width: 100%
}

.ipo-detail-grid-3 .ipo-kv-table th {
  width: 42%;
  font-size: .72rem;
  padding: 10px 12px;
  word-break: break-word;
  white-space: normal
}

.ipo-detail-grid-3 .ipo-kv-table td {
  font-size: .78rem;
  padding: 10px 12px;
  word-break: break-word
}

.ipo-detail-grid-3 .ipo-data-table-compact th,
.ipo-detail-grid-3 .ipo-data-table-compact td {
  padding: 8px 10px;
  font-size: .72rem;
  white-space: normal
}

.ipo-detail-grid-3 .ipo-data-table-compact th {
  white-space: nowrap
}

.ipo-subscription-grid .ipo-detail-card {
  margin-bottom: 0
}

.ipo-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px
}

.ipo-detail-actions:has(> :only-child) {
  grid-template-columns: minmax(0, 420px);
  justify-content: center
}

.ipo-detail-action-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all .22s
}

.ipo-detail-action-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 178, 76, .4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18)
}

.ipo-detail-action-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ipo-detail-action-text {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em
}

.ipo-detail-action-subscription .ipo-detail-action-label {
  color: var(--green)
}

.ipo-detail-action-subscription:hover {
  background: linear-gradient(180deg, rgba(36, 178, 76, .1), rgba(36, 178, 76, .02))
}

.ipo-detail-action-gmp .ipo-detail-action-label {
  color: #f5b942
}

.ipo-detail-action-gmp:hover {
  background: linear-gradient(180deg, rgba(245, 185, 66, .1), rgba(245, 185, 66, .02));
  border-color: rgba(245, 185, 66, .35)
}

.ipo-price-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 auto 20px;
  max-width: 560px
}

.ipo-detail-card-compact {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto
}

.ipo-valuations-card {
  max-width: none
}

.ipo-valuations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 0
}

.ipo-valuation-item {
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  min-width: 0
}

.ipo-valuation-label {
  display: block;
  font-size: .65rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.ipo-valuation-value {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  word-break: break-word
}

.ipo-data-table-compact {
  min-width: 0;
  font-size: .78rem
}

.ipo-data-table-compact th,
.ipo-data-table-compact td {
  padding: 10px 12px
}

.ipo-kv-table th {
  font-size: .78rem
}

.ipo-kv-table td {
  font-size: .82rem
}

.ipo-price-box {
  text-align: center
}

.ipo-price-label {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px
}

.ipo-price-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em
}

.ipo-price-divider {
  width: 1px;
  height: 48px;
  background: var(--border2);
  justify-self: center
}

.ipo-lot-table th,
.ipo-lot-table td {
  text-align: center
}

.ipo-lot-table th:first-child,
.ipo-lot-table td:first-child {
  text-align: left
}

.ipo-allotment-cta {
  margin-bottom: 20px;
  text-align: center
}

.ipo-check-allotment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all .22s;
  border: 1px solid rgba(36, 178, 76, .35);
  box-shadow: 0 10px 30px var(--green-glow)
}

.ipo-check-allotment-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: #fff
}

.ipo-check-allotment-btn.ipo-allotment-waiting {
  background: rgba(245, 185, 66, .14);
  color: #f5b942;
  border-color: rgba(245, 185, 66, .35);
  box-shadow: none
}

.ipo-check-allotment-btn.ipo-allotment-waiting:hover {
  background: rgba(245, 185, 66, .22);
  color: #f5b942;
  transform: translateY(-1px)
}

.ipo-allotment-status-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 420px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: .95rem;
  border: 1px solid var(--border2)
}

.ipo-allotment-status-text.is-out {
  background: rgba(36, 178, 76, .12);
  color: var(--green);
  border-color: rgba(36, 178, 76, .35)
}

.ipo-allotment-status-text.is-waiting {
  background: rgba(245, 185, 66, .12);
  color: #f5b942;
  border-color: rgba(245, 185, 66, .35)
}

.ipo-gmp-table-card {
  margin-top: 20px
}

.ipo-gmp-history-table {
  min-width: 0;
  width: 100%
}

.ipo-gmp-history-table .pos {
  color: var(--green);
  font-weight: 700
}

.ipo-gmp-history-table .neg {
  color: #ff6b6b;
  font-weight: 700
}

.ipo-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding-top: 24px;
  margin-bottom: 20px
}

.ipo-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 18px;
  color: var(--text)
}

.ipo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px
}

.ipo-card-head h2 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0
}

.ipo-card-hint {
  font-size: .72rem;
  color: var(--muted)
}

.ipo-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border2)
}

.ipo-table-scroll .ipo-kv-table {
  border: none;
  border-radius: 0;
  overflow: visible
}

.ipo-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: .82rem
}

.ipo-data-table th,
.ipo-data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border2);
  vertical-align: top
}

.ipo-data-table th {
  background: var(--card2);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap
}

.ipo-data-table tr:last-child td {
  border-bottom: none
}

.ipo-kv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden
}

.ipo-kv-table th,
.ipo-kv-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border2);
  text-align: left
}

.ipo-kv-table th {
  width: 45%;
  background: var(--card2);
  font-weight: 700;
  color: var(--muted)
}

.ipo-kv-table tr:last-child th,
.ipo-kv-table tr:last-child td {
  border-bottom: none
}

.ipo-detail-content {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75
}

.ipo-detail-content ul,
.ipo-link-list ul {
  padding-left: 18px;
  margin-top: 8px
}

.ipo-detail-content a,
.ipo-link-list a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none
}

.ipo-detail-content a:hover,
.ipo-link-list a:hover {
  text-decoration: underline
}

.ipo-link-list div>strong {
  display: none
}

.ipo-registrar-info {
  text-align: center
}

.ipo-registrar-name {
  margin: 0 0 12px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--text)
}

.ipo-registrar-links {
  /* list-style: none; */
  padding: 0;
  margin: 0 0 12px
}

.ipo-registrar-links li+li {
  margin-top: 8px
}

.ipo-registrar-links a {
  color: var(--green);
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
  word-break: break-all;
  line-height: 1.5
}

.ipo-registrar-links a:hover {
  text-decoration: underline
}

.ipo-registrar-meta {
  margin: 0 0 8px;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6
}

.ipo-registrar-meta span {
  color: var(--text);
  font-weight: 700
}

.ipo-registrar-meta a {
  color: var(--green);
  text-decoration: none
}

.ipo-registrar-meta a:hover {
  text-decoration: underline
}

.ipo-allotment-btn {
  display: inline-flex;
  margin-top: 14px
}

.ipo-disclaimer-card {
  border-color: rgba(245, 185, 66, .18)
}

.ipo-disclaimer-text p+p {
  margin-top: 12px
}

.gmp-chart-wrap {
  position: relative;
  border: 1px solid var(--border2);
  background: var(--card2);
  border-radius: 12px;
  padding: 0
}

.gmp-chart-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
  touch-action: none
}

.ipo-gmp-card {
  position: relative
}

.gmp-chart-tooltip {
  display: none;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(10, 13, 10, .98);
  border: 1px solid rgba(36, 178, 76, .45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
  font-size: .78rem;
  line-height: 1.5;
  color: var(--text);
  min-width: 140px;
  max-width: 220px
}

.gmp-chart-tooltip.is-visible {
  display: block
}

.gmp-chart-tooltip strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px
}

.gmp-chart-tooltip span {
  display: block;
  color: var(--muted);
  margin-top: 2px
}

.gmp-chart-tooltip .gmp-tooltip-value {
  font-weight: 800;
  color: var(--text);
  font-size: .84rem;
  margin-top: 4px
}

.gmp-chart-tooltip .gmp-tooltip-value.pos {
  color: var(--green)
}

.gmp-chart-tooltip .gmp-tooltip-value.neg {
  color: #ff6b6b
}

@media(max-width:1100px) {

  .ipo-detail-grid-3,
  .ipo-detail-grid-3:has(> :nth-child(2):last-child) {
    grid-template-columns: 1fr
  }

  .ipo-detail-grid-3:has(> :only-child) {
    grid-template-columns: 1fr
  }

  .ipo-detail-actions {
    grid-template-columns: 1fr
  }

  .ipo-detail-actions:has(> :only-child) {
    grid-template-columns: 1fr
  }
}

@media(max-width:860px) {
  .ipo-detail-hero-top {
    flex-direction: column-reverse;
    align-items: flex-start
  }

  .ipo-detail-av {
    width: 52px;
    height: 52px
  }

  .ipo-detail-grid-2,
  .ipo-docs-registrar-grid {
    grid-template-columns: 1fr
  }

  .ipo-detail-grid-2:has(> :only-child) {
    grid-template-columns: 1fr
  }

  .ipo-detail-card-half {
    margin-bottom: 0
  }

  .ipo-detail-card-compact {
    max-width: none
  }

  .ipo-valuations-card {
    max-width: none
  }

  .ipo-valuations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .ipo-price-summary {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none
  }

  .ipo-price-divider {
    width: 100%;
    height: 1px
  }

  .ipo-detail-anchor {
    scroll-margin-top: 80px
  }
}
.text-center{
  text-align:center;
}
.ipo-detail-content{
  padding:20px;
}
/* .ipo-detail-content.ipo-link-list{
  padding:20px;
  padding-top: 0;
  padding-bottom: 0;
} */
.ipo_link{
  padding:15px;
}
.p-0{
  padding: 0;
}
.text-start{
  text-align:start;
}
.faq-grid.ipo-faq-grid{
  padding: 20px;
}
.ipo-detail-anchor{
  margin-top: 0;
}
.ipo-subscription-block{
  margin-bottom: 20px;
}