:root {
  --bg0: #0c141c;
  --bg1: #13202c;
  --bg2: #1a2a38;
  --line: rgba(120, 190, 255, 0.2);
  --text: rgba(235, 242, 248, 0.92);
  --muted: rgba(190, 210, 225, 0.78);
  --accent: #7fd4ff;
  --accent-strong: #00aaff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0, 136, 255, 0.18), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(0, 80, 120, 0.22), transparent 50%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, var(--bg2) 100%);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(9, 14, 20, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f8fc;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

.page {
  padding: 40px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f4f8fc;
}

h2 {
  margin: 40px 0 12px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: #e8f3ff;
}

h3 {
  margin: 0 0 6px;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f2f7fb;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--muted);
}

li {
  margin: 0 0 10px;
}

.lead {
  font-size: 1.12rem;
  color: rgba(220, 230, 238, 0.9);
}

.offers {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}

.offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: center;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 18, 28, 0.55);
}

.offer p {
  margin: 0;
  font-size: 0.95rem;
}

.offer__price {
  color: var(--accent) !important;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0088ff 0%, #00d5ff 100%);
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}

.btn--ghost {
  color: var(--accent);
  border: 1px solid var(--line);
  background: rgba(8, 18, 28, 0.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(9, 14, 20, 0.55);
}

.site-footer__inner {
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__inner p {
  margin: 0 0 8px;
  font-size: inherit;
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .offer__price {
    text-align: left;
  }
}
