:root {
  --navy: #05244e;
  --navy-deep: #021530;
  --lime: #b5db1c;
  --lime-hot: #d4f04a;
  --ink: #070d18;
  --panel: #0c1628;
  --panel-2: #122038;
  --text: #f2f6ff;
  --muted: #9aacc8;
  --line: rgba(181, 219, 28, 0.22);
  --radius: 18px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --aff: https://cutt.ly/PytItuoA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(181, 219, 28, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(5, 36, 78, 0.9), transparent 50%),
    linear-gradient(180deg, #050b14 0%, var(--ink) 40%, #040912 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--lime-hot);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 11, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(181, 219, 28, 0.35);
}

.brand span {
  background: linear-gradient(135deg, #fff 20%, var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(181, 219, 28, 0.1);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  margin-left: 0.35rem;
  padding: 0.55rem 1rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--lime), #9bc412) !important;
  color: #0a1400 !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 24px rgba(181, 219, 28, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    inset: calc(100% + 1px) 1rem auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(8, 14, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
  }

  .nav.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0 !important;
    justify-content: center;
  }
}

/* Hero — full-bleed brand plane */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0.35) 0%, rgba(4, 9, 18, 0.55) 45%, rgba(4, 9, 18, 0.96) 100%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(181, 219, 28, 0.18), transparent 60%);
}

.hero-content {
  padding: 5rem 0 3.5rem;
  max-width: 680px;
  animation: rise 0.8s ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-brand em {
  font-style: normal;
  color: var(--lime);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.85rem;
}

.hero .lead {
  margin: 0 0 1.5rem;
  color: #d5deef;
  font-size: 1.05rem;
  max-width: 36ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--lime-hot), var(--lime));
  color: #0a1400;
  box-shadow: 0 12px 30px rgba(181, 219, 28, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

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

/* Sections */
.section {
  padding: 4rem 0;
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.prose {
  max-width: 70ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--lime);
}

.prose p,
.prose li {
  color: #c9d4e8;
}

.prose ul {
  padding-left: 1.2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb span {
  opacity: 0.5;
}

/* Offer tiles — interaction containers */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  min-height: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 219, 28, 0.4);
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-card .label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px #000;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(20deg, rgba(0, 0, 0, 0.75), transparent 55%);
}

/* Bot list */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.bot-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 32, 56, 0.95), rgba(8, 16, 30, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.bot-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.bot-card code {
  color: var(--lime);
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
}

.faq details {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 22, 40, 0.7);
  padding: 0.95rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Related links */
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.related a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(181, 219, 28, 0.06);
}

.related a:hover {
  background: rgba(181, 219, 28, 0.16);
  color: var(--lime-hot);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.75rem;
}

.page-hero .lead {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 6.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--lime);
}

.legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: #7d8aa3;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(4, 9, 18, 0.95) 30%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sticky-cta a {
  pointer-events: auto;
  width: min(100%, 420px);
  text-align: center;
}

@media (min-width: 901px) {
  .sticky-cta {
    display: none;
  }
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
