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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #f4f4f4;
  line-height: 1.6;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.11;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.68);
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.65);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #050505 !important;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.32);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 5vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), #050505 90%),
    url("assets/atmos-logo-wide.jpg") center/cover no-repeat;
  filter: contrast(1.12) brightness(0.82);
}

.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, transparent 0, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.92) 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: auto;
}

.kicker,
.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #d7d7d7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 0 0 35px rgba(255, 255, 255, 0.2);
}

.hero p {
  max-width: 790px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: 0.2s ease;
}

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

.primary {
  background: linear-gradient(135deg, #fff, #8e8e8e, #fff);
  color: #050505;
  box-shadow: 0 18px 55px rgba(255, 255, 255, 0.16);
}

.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.micro {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.48) !important;
}

.showcase {
  width: min(1160px, 92%);
  margin: -40px auto 40px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.showcase-card,
.panel,
.price-card,
.disclaimer {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 360px;
}

.copy-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copy-card h2,
.section-head h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.disclaimer h2 {
  width: 100%;
  display: block;
  text-align: center;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #f5d17c !important;
  text-shadow: 0 0 28px rgba(245, 209, 124, 0.28);
  margin: 0 0 22px 0;
}

.copy-card p,
.section-head p,
.panel p,
.disclaimer p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
}

.section {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 78px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.panel {
  padding: 26px;
}

.panel h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.dark-split {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #080808, #0d0d0f);
  padding-left: 4%;
  padding-right: 4%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-split .section-head,
.dark-split .feature-list {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 20px;
}

.feature-list strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feature-list span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 70px rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
}

.price-card h3 {
  text-transform: uppercase;
  font-size: 24px;
}

.price-card > p {
  color: rgba(255, 255, 255, 0.58);
}

.price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin: 18px 0;
}

.price span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.68);
}

.price-card li:before {
  content: "✦";
  margin-right: 10px;
  color: #fff;
}

.full {
  width: 100%;
}

.disclaimer-section {
  padding-top: 20px;
}

.disclaimer {
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(245, 209, 124, 0.25);
  box-shadow: 0 0 40px rgba(245, 209, 124, 0.08);
}

footer {
  padding: 44px 5vw;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
}

footer img {
  max-width: 250px;
  width: 70%;
  border-radius: 18px;
  opacity: 0.7;
  margin-bottom: 15px;
}

.access-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 30px auto 18px;
}

.access-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 15px;
}

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

.discord-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5865f2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.38);
}

.discord-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.discord-icon-btn:hover {
  transform: translateY(-2px);
}

.product-card {
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0.33;
  filter: contrast(1.1) brightness(0.75);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 35%);
}

.key-levels-card::before {
  background-image: url("assets/key-levels-indicator-logo.png");
}

.qqq-card::before {
  background-image: url("assets/atmos-qqq-indicator-logo.png");
}

.tsla-card::before {
  background-image: url("assets/atmos-tsla-indicator-logo.png");
}

.price-card .btn {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #050505 !important;
  border: 1px solid rgba(34, 197, 94, 0.65) !important;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.32);
}
.dark-split .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.price .old-price {
  display: block;
  position: relative;
  width: fit-content;
  font-size: 18px !important;
  color: rgba(255,255,255,.45) !important;
  letter-spacing: 0 !important;
  margin-bottom: 4px;
}

.price .old-price::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 2px;
  background: #ff2b2b;
  transform: rotate(-5deg);
}
@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 78vh;
  }

  .showcase,
  .grid.three,
  .feature-list,
  .pricing {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .image-card img {
    min-height: 250px;
  }

  .brand span {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 46px;
  }
}
.kicker,
.section-tag,
.badge {
  background: rgba(88,101,242,.16) !important;
  border-color: rgba(88,101,242,.55) !important;
  color: #8ea0ff !important;
  box-shadow: 0 0 22px rgba(88,101,242,.22);
}
.form-card .btn,
.hero-content .btn.primary,
.hero-buttons .btn.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #050505 !important;
  border: 1px solid rgba(34,197,94,.65) !important;
  box-shadow: 0 0 24px rgba(34,197,94,.32);
}
