
:root {
  --espresso: #1a0806;
  --card: #2a120d;
  --card-deep: #210d09;
  --gold: #f5b300;
  --yellow: #fff000;
  --white: #ffffff;
  --muted: #d6d6d6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--espresso);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--espresso);
  color: var(--white);
  font-family: var(--font-manrope), "Noto Sans Devanagari", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 24px 14px 36px;
  background:
    radial-gradient(circle at 50% -4%, rgba(245, 179, 0, 0.14), transparent 29rem),
    radial-gradient(circle at 108% 46%, rgba(245, 99, 0, 0.08), transparent 20rem),
    linear-gradient(160deg, #200a07 0%, var(--espresso) 42%, #100403 100%);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
}

.ambient-one {
  top: 28%;
  left: -180px;
  background: var(--gold);
}

.ambient-two {
  right: -180px;
  bottom: 8%;
  background: #ff5722;
}

.profile-card {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
}

.hero {
  padding: 10px 8px 0;
  text-align: center;
}

.portrait-float {
  display: inline-grid;
  place-items: center;
  animation: float 5s ease-in-out infinite;
}

.portrait-ring {
  position: relative;
  width: 142px;
  height: 142px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff3a4 0%, var(--gold) 34%, #8e4700 70%, #ffd95d 100%);
  box-shadow:
    0 0 0 4px rgba(245, 179, 0, 0.09),
    0 0 42px rgba(245, 179, 0, 0.25),
    0 16px 42px rgba(0, 0, 0, 0.42);
}

.portrait-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  border: 3px solid #2b110c;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--card);
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 21px 0 9px;
  color: #e6bc5b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.eyebrow span:last-child {
  transform: rotate(180deg);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 9.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.markets {
  margin: 12px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.markets b {
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.46);
}

.hero-copy {
  margin: 16px 0 0;
  color: rgba(214, 214, 214, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.telegram-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 19px;
  background: linear-gradient(180deg, #fff83e 0%, var(--yellow) 42%, #f2d900 100%);
  box-shadow:
    0 13px 38px rgba(255, 240, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -2px 0 rgba(128, 91, 0, 0.16);
  color: #100d00;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.telegram-button::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.telegram-button.ripple::after {
  animation: ripple 580ms ease-out;
}

.telegram-button > * {
  position: relative;
  z-index: 1;
}

.telegram-button .fa-telegram {
  font-size: 23px;
}

.telegram-button .arrow {
  position: absolute;
  right: 20px;
  color: rgba(16, 13, 0, 0.62);
  font-size: 12px;
}

.button-shine {
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 32%;
  z-index: 0;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: shine 4.2s ease-in-out infinite;
}

.primary-cta {
  margin-top: 26px;
}

.features {
  margin-top: 32px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 179, 0, 0.3), transparent);
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px 16px 14px 13px;
  overflow: hidden;
  border: 1px solid rgba(245, 179, 0, 0.15);
  border-radius: 19px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 55%),
    rgba(42, 18, 13, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 13px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transition-delay: var(--delay);
}

.feature::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 0, 0.08), transparent 65%);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(245, 179, 0, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(245, 179, 0, 0.17), rgba(245, 179, 0, 0.035));
  box-shadow: 0 0 22px rgba(245, 179, 0, 0.08);
  color: var(--gold);
  font-size: 18px;
}

.feature p {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: capitalize;
}

.feature div > span {
  color: rgba(214, 214, 214, 0.56);
  font-size: 10.5px;
  line-height: 1.35;
}

.feature .check {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(245, 179, 0, 0.2);
  border-radius: 50%;
  background: rgba(245, 179, 0, 0.07);
  color: var(--gold);
  font-size: 9px;
}

.countdown-section {
  margin-top: 28px;
  padding: 19px 14px 17px;
  border: 1px solid rgba(245, 179, 0, 0.17);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 48%),
    rgba(33, 13, 9, 0.86);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-row > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-row > span {
  color: rgba(255, 255, 255, 0.3);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff564f;
  box-shadow: 0 0 0 4px rgba(255, 86, 79, 0.1), 0 0 12px #ff564f;
  animation: blink 1.7s ease-in-out infinite;
}

.countdown-section h2 {
  margin: 11px 0 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 7px;
}

.time-card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 13px 4px 10px;
  border: 1px solid rgba(245, 179, 0, 0.13);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(52, 23, 17, 0.96), rgba(30, 11, 8, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.time-card strong {
  color: #fff7dc;
  font-size: clamp(24px, 8vw, 32px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 1;
}

.time-card span {
  margin-top: 7px;
  color: rgba(214, 214, 214, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.colon {
  padding-top: 17px;
  color: rgba(245, 179, 0, 0.5);
  font-weight: 800;
}

.final-cta {
  padding-top: 28px;
}

.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 13px;
  color: rgba(214, 214, 214, 0.55);
  font-size: 9.5px;
}

.avatar-stack {
  display: flex;
  padding-left: 7px;
}

.avatar-stack i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-left: -7px;
  border: 2px solid var(--espresso);
  border-radius: 50%;
  background: #4a2519;
  color: var(--gold);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.avatar-stack i:nth-child(2) {
  background: #312015;
}

.avatar-stack i:nth-child(3) {
  background: #513313;
}

.pulse-cta {
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.microcopy {
  margin: 11px 0 0;
  color: rgba(214, 214, 214, 0.38);
  font-size: 9px;
  text-align: center;
}

.microcopy i {
  margin-right: 5px;
  color: rgba(245, 179, 0, 0.55);
}

.quote {
  padding: 37px 18px 10px;
  text-align: center;
}

.quote > i {
  color: rgba(245, 179, 0, 0.28);
  font-size: 15px;
}

.quote p {
  max-width: 340px;
  margin: 11px auto 8px;
  color: rgba(214, 214, 214, 0.57);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.75;
}

.quote span {
  color: rgba(245, 179, 0, 0.4);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  margin: 26px auto 0;
  padding: 9px 13px;
  border: 1px solid rgba(245, 179, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(214, 214, 214, 0.35);
  font-size: 8.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.ad-credit strong {
  color: rgba(245, 179, 0, 0.62);
  font-weight: 800;
}

.ad-credit i {
  margin-left: 2px;
  color: rgba(245, 179, 0, 0.45);
  font-size: 7px;
}

.ad-credit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.telegram-button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

@media (hover: hover) {
  .telegram-button:hover {
    transform: translateY(-2px) scale(1.012);
    filter: saturate(1.08);
    box-shadow: 0 16px 44px rgba(255, 240, 0, 0.25), 0 0 30px rgba(255, 240, 0, 0.13);
  }

  .feature:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 179, 0, 0.31);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 17px 35px rgba(0, 0, 0, 0.22), 0 0 24px rgba(245, 179, 0, 0.04);
  }

  .ad-credit:hover {
    border-color: rgba(245, 179, 0, 0.24);
    background: rgba(245, 179, 0, 0.055);
    color: rgba(214, 214, 214, 0.64);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-0.25deg); }
  50% { transform: translateY(-7px) rotate(0.25deg); }
}

@keyframes ripple {
  0% { opacity: 0.6; transform: scale(0); }
  100% { opacity: 0; transform: scale(42); }
}

@keyframes shine {
  0%, 58% { left: -42%; opacity: 0; }
  67% { opacity: 1; }
  88%, 100% { left: 116%; opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.36; }
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 13px 38px rgba(255, 240, 0, 0.16), 0 0 0 0 rgba(255, 240, 0, 0.13); }
  50% { box-shadow: 0 15px 42px rgba(255, 240, 0, 0.24), 0 0 0 8px rgba(255, 240, 0, 0); }
}

@media (min-width: 640px) {
  .site-shell {
    padding-top: 44px;
    padding-bottom: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

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