:root {
  --bg-deep: #050a14;
  --bg-mid: #0d1b2a;
  --panel: #111f33;
  --card: #152a42;
  --muted: #94a8c4;
  --text: #f0f4fb;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.85);
  --accent-2: #ff8c00;
  --accent-blue: #3d7cff;
  --outline: rgba(255, 255, 255, 0.07);
  --glow-green: 0 0 28px rgba(57, 255, 20, 0.35);
  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow-1: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-2: 0 12px 40px rgba(0, 0, 0, 0.4);
  --max-width: 1180px;
}

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

body {
  margin: 0;
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse 90% 60% at 15% 0%, rgba(57, 255, 20, 0.08), transparent 45%),
    radial-gradient(ellipse 70% 50% at 95% 20%, rgba(255, 140, 0, 0.12), transparent 42%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(61, 124, 255, 0.1), transparent 50%),
    linear-gradient(168deg, var(--bg-deep) 0%, var(--bg-mid) 45%, #0a1628 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

main {
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 20, 0.82);
  border-bottom: 1px solid var(--outline);
  box-shadow: 0 1px 0 rgba(57, 255, 20, 0.04);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent) 0%, #1a5c12 100%);
  display: grid;
  place-items: center;
  color: #041008;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  box-shadow: var(--glow-green), var(--shadow-2);
  border: 1px solid rgba(57, 255, 20, 0.5);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text span:first-child {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.brand-text span:last-child {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  border: 1px solid var(--outline);
}

.nav-link {
  padding: 9px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #041008;
  background: linear-gradient(135deg, var(--accent), #7fff5a);
  box-shadow: var(--glow-green);
}

.contact-inline {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  display: none;
}

.button,
button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #6fe04a);
  color: #041008;
  padding: 12px 20px;
  border-radius: 14px;
  box-shadow: var(--glow-green), 0 12px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.45), 0 16px 40px rgba(0, 0, 0, 0.4);
}

.button.ghost {
  border: 1px solid var(--outline);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.button.ghost:hover {
  border-color: rgba(57, 255, 20, 0.35);
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.25);
  color: var(--accent-dim);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero {
  padding: 52px 0 36px;
}

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

.hero-card {
  background: linear-gradient(165deg, rgba(21, 42, 66, 0.9) 0%, rgba(13, 27, 42, 0.6) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(1.85rem, 2.5vw + 1rem, 2.75rem);
  margin: 14px 0 12px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-tagline {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: none;
}

.lead {
  color: #d8e4f5;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--outline);
  padding: 10px 14px;
  border-radius: 12px;
}

.bullet-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.7);
}

.hero-visual {
  position: relative;
  background: linear-gradient(155deg, rgba(61, 124, 255, 0.18), rgba(13, 27, 42, 0.95));
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1), inset 0 0 60px rgba(57, 255, 20, 0.04);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(57, 255, 20, 0.12);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.hero-visual img {
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
  position: relative;
  z-index: 1;
}

.section {
  padding: 28px 0;
}

.panel {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(17, 31, 51, 0.92) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.section-title {
  font-size: clamp(1.35rem, 1.8vw + 0.65rem, 1.95rem);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 900px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(165deg, var(--card) 0%, #0f1f35 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-2);
}

.feature-card h3,
.card h3 {
  margin: 8px 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(61, 124, 255, 0.06));
  border: 1px solid rgba(57, 255, 20, 0.18);
}

.info-block {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(61, 124, 255, 0.06));
  border: 1px solid rgba(255, 140, 0, 0.22);
}

.image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--outline);
}

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

.lifestyle-grid .image-frame {
  aspect-ratio: 4/3;
}

.lifestyle-grid .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--outline);
  border-radius: 14px;
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #5fd63a);
  display: grid;
  place-items: center;
  color: #041008;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--glow-green);
}

.callout {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  padding: 18px;
}

.order-section {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.12), rgba(255, 140, 0, 0.1));
  border: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  align-items: center;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(5, 10, 20, 0.75);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.input:focus {
  outline: none;
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.15);
}

.footer {
  margin-top: 36px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--outline);
  background: rgba(5, 10, 20, 0.85);
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer a {
  color: var(--text);
  font-weight: 600;
}

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

.footer small,
.footer .legal-line {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.content-page {
  padding: 40px 0 24px;
}

.content-card {
  background: linear-gradient(165deg, rgba(21, 42, 66, 0.75) 0%, rgba(13, 27, 42, 0.55) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.content-card h1,
.content-card h2 {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 16px;
}

.list-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  gap: 10px;
}

.blog-card img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--outline);
}

.blog-card h3 {
  margin: 0;
}

.blog-meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.post-hero {
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--outline);
}

.post-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.legal-text p {
  color: #dbe5f5;
}

.legal-text p strong {
  color: var(--accent);
}

.page-home .hero h1 .accent-word {
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .site-header .inner {
    flex-wrap: wrap;
  }

  .contact-inline {
    display: block;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 22px;
    --radius-md: 14px;
  }

  body {
    background: linear-gradient(170deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  }

  .hero {
    padding-top: 36px;
  }

  .panel,
  .hero-card,
  .hero-visual,
  .content-card {
    padding: 18px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }
}
