:root {
  --bg: #040407;
  --text-main: #f7f8fc;
  --text-muted: #a8b1cc;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-shine: rgba(255, 255, 255, 0.18);
  --accent-1: #9f88ff;
  --accent-2: #35d8ff;
  --transition-slow: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 12% -5%, #2f245e 0%, transparent 36%),
    radial-gradient(circle at 92% 18%, #123959 0%, transparent 36%),
    linear-gradient(180deg, #040407 0%, #090d1c 45%, #040407 100%);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, #000 50%, transparent 100%);
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(72px);
}

.ambient-one {
  width: 460px;
  height: 320px;
  top: -100px;
  left: -120px;
  background: radial-gradient(
    ellipse at center,
    rgba(159, 136, 255, 0.35) 0%,
    rgba(159, 136, 255, 0) 75%
  );
}

.ambient-two {
  width: 480px;
  height: 360px;
  right: -150px;
  top: 34%;
  background: radial-gradient(
    ellipse at center,
    rgba(53, 216, 255, 0.3) 0%,
    rgba(53, 216, 255, 0) 75%
  );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.6rem, 5vw, 3rem);
}

.glass {
  background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.03) 44%,
      rgba(255, 255, 255, 0.01)
    ),
    var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-shine), 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-wrap {
  min-height: 72px;
  padding-inline: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

.logo-img {
  display: none;
  height: 24px;
  width: auto;
}

.logo.has-image .logo-img {
  display: block;
}

.logo.has-image .logo-text {
  display: none;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.86;
  transition: var(--transition-fast);
}

.main-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  transition: var(--transition-fast);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  min-height: auto;
  display: block;
  padding-top: 126px;
  padding-bottom: 36px;
}

.hero-content {
  max-width: 980px;
}

.hero-title {
  font-size: clamp(2.2rem, 8vw, 6rem);
  margin-bottom: 1.2rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  margin-bottom: 1.2rem;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
}

.hero-sub {
  max-width: 860px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.btn-white {
  background: linear-gradient(130deg, #ffffff, #dfebff 55%, #beecff);
  color: #060810;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(191, 233, 255, 0.24);
}

.btn-glass {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  border-radius: 26px;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  transition: var(--transition-slow);
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}

.offer-card.featured {
  border-color: rgba(159, 136, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 28px rgba(61, 53, 133, 0.3);
}

.offer-name {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.offer-title {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  margin-bottom: 0.8rem;
}

.offer-price {
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.offer-price span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.subs-box {
  border-radius: 14px;
  padding: 0.92rem;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.84rem;
}

.features {
  list-style: none;
  margin-bottom: 1.6rem;
}

.features li {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #c7cee7;
  font-size: 0.9rem;
}

.offer-card .btn {
  margin-top: auto;
}

.ceo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ceo-card {
  border-radius: 22px;
  padding: 1.5rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.7rem;
}

.ceo-card h3 {
  font-size: 1.4rem;
}

.ceo-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ceo-link {
  margin-top: auto;
  text-decoration: none;
  color: #e7ebff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(231, 235, 255, 0.5);
  width: fit-content;
}

.ceo-link:hover {
  border-bottom-color: #ffffff;
}

.contact-section {
  text-align: center;
}

.big-mail {
  display: block;
  width: 100%;
  text-align: center;
  margin: 2rem 0 1.2rem;
  text-decoration: none;
  font-family: "Syne", sans-serif;
  color: #f4f6ff;
  font-size: clamp(1.5rem, 6vw, 5.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  overflow-wrap: anywhere;
  transition: var(--transition-fast);
}

.big-mail:hover {
  color: transparent;
  -webkit-text-stroke: 1px #f4f6ff;
}

.contact-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer {
  padding: 2.8rem 2.2rem 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: var(--transition-slow);
}

.js-animate .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-animate .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.js-animate .delay-1 {
  transition-delay: 0.1s;
}

.js-animate .delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1050px) {
  .offers-grid,
  .ceo-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .hero-sub {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .offer-title {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }
}

@media (max-width: 780px) {
  .container {
    padding: 0 2rem;
  }

  .site-header {
    border-left: 0;
    border-right: 0;
  }

  .nav-wrap {
    min-height: 64px;
    padding: 0.52rem 0;
    padding-inline: 0.3rem;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }

  .logo {
    margin-left: 0.1rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    margin-right: 0.1rem;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: max(2.1rem, env(safe-area-inset-left));
    right: max(2.1rem, env(safe-area-inset-right));
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    margin-left: 0;
    padding: 0.55rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.03) 44%,
        rgba(255, 255, 255, 0.01)
      ),
      rgba(7, 10, 20, 0.9);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px) saturate(145%);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: var(--transition-fast);
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    width: 100%;
    font-size: 0.72rem;
    text-align: center;
    padding: 0.64rem 0.55rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    opacity: 1;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 18px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-sub {
    font-size: 0.92rem;
    border-left: 0;
    padding-left: 0;
  }

  .section {
    padding: 5rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .offer-card {
    border-radius: 18px;
    padding: 1.15rem;
  }

  .offers-grid,
  .ceo-grid {
    padding-inline: 0.5rem;
  }

  .offer-price {
    font-size: 1.35rem;
    margin-bottom: 0.95rem;
  }

  .features {
    margin-bottom: 1.15rem;
  }

  .features li {
    font-size: 0.86rem;
    padding: 0.62rem 0;
  }

  .offer-card .btn {
    width: 100%;
  }

  .ceo-card {
    min-height: 180px;
    padding: 1.1rem;
  }

  .ceo-card h3 {
    font-size: 1.15rem;
  }

  .ceo-card p {
    font-size: 0.7rem;
    letter-spacing: 0.09em;
  }

  .ceo-link {
    font-size: 0.69rem;
  }

  .footer {
    padding: 2rem 1.1rem 2.6rem;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 1.8rem;
  }

  .logo-text {
    font-size: 0.82rem;
    letter-spacing: 0.11em;
  }

  .nav-wrap {
    min-height: 62px;
    padding-inline: 0.25rem;
  }

  .logo {
    margin-left: 0.1rem;
  }

  .nav-toggle {
    margin-right: 0.1rem;
  }

  .main-nav {
    left: max(1.9rem, env(safe-area-inset-left));
    right: max(1.9rem, env(safe-area-inset-right));
  }

  .main-nav a {
    font-size: 0.67rem;
    letter-spacing: 0.07em;
    padding: 0.58rem 0.28rem;
  }

  .section {
    padding: 4.35rem 0;
  }

  .section + .section {
    margin-top: 0.35rem;
  }

  .section-title {
    font-size: clamp(1.35rem, 10vw, 2rem);
    margin-bottom: 0.9rem;
  }

  .hero {
    padding-top: 100px;
  }

  .offers-grid,
  .ceo-grid {
    padding-inline: 0.45rem;
  }

  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .big-mail {
    font-size: clamp(1.05rem, 7.7vw, 1.7rem);
    letter-spacing: 0;
  }

  .footer p {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js-animate .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
