:root {
  --bg: #060b12;
  --panel: rgba(15, 25, 37, 0.8);
  --panel-soft: rgba(16, 24, 34, 0.55);
  --text: #e7edf3;
  --muted: #9eb0c2;
  --line: rgba(147, 178, 206, 0.24);
  --accent: #44d7c0;
  --accent-soft: #8ae9dc;
  --gold: #efc97f;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 85% 10%, #0f1b2a 0%, transparent 48%), var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.82;
  pointer-events: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(110, 145, 172, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 145, 172, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 35%, black 0%, transparent 72%);
  animation: gridDrift 22s linear infinite;
}

.bg-orb {
  position: fixed;
  width: 40vw;
  height: 40vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 50%;
  filter: blur(58px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
}

.bg-orb-1 {
  left: -10vw;
  top: -12vh;
  background: radial-gradient(circle at 35% 35%, rgba(112, 232, 213, 0.7), rgba(112, 232, 213, 0));
  animation: floatA 15s ease-in-out infinite;
}

.bg-orb-2 {
  right: -12vw;
  top: 18vh;
  background: radial-gradient(circle at 45% 45%, rgba(143, 183, 255, 0.6), rgba(143, 183, 255, 0));
  animation: floatB 17s ease-in-out infinite;
}

.bg-orb-3 {
  right: 18vw;
  bottom: -20vh;
  background: radial-gradient(circle at 50% 50%, rgba(239, 201, 127, 0.55), rgba(239, 201, 127, 0));
  animation: floatC 19s ease-in-out infinite;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 18, 0.65);
  border-bottom: 1px solid rgba(118, 143, 166, 0.18);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  box-shadow: 0 8px 24px rgba(89, 214, 198, 0.25);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: rgba(5, 17, 20, 0.85);
}

.brand-mark::before {
  width: 9px;
  height: 22px;
  transform: rotate(36deg);
}

.brand-mark::after {
  width: 22px;
  height: 9px;
  transform: rotate(36deg);
}

.brand-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-sub {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.hero {
  padding-top: 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 1.6px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent-soft);
}

.hero-text {
  color: var(--muted);
  margin: 20px 0 0;
  max-width: 640px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  color: #c6d5e4;
  font-size: 0.84rem;
  background: rgba(19, 30, 43, 0.62);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(13, 28, 40, 0.9) 0%, rgba(11, 18, 28, 0.72) 100%);
  padding: 28px;
  box-shadow: var(--shadow);
  animation: panelBreathe 6.4s ease-in-out infinite;
}

.hero-panel h3 {
  margin: 0 0 15px;
  font-family: "Sora", sans-serif;
}

.hero-panel ul {
  margin: 0;
  padding-left: 16px;
  line-height: 1.7;
  color: #c7d8e7;
}

.compliance {
  margin: 16px 0 0;
  color: #89a2ba;
  font-size: 0.86rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
}

.offer-grid,
.price-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  padding: 24px;
  backdrop-filter: blur(3px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 226, 206, 0.65);
  background: rgba(17, 29, 42, 0.92);
}

.card-tag {
  display: inline-block;
  margin: 0 0 10px;
  color: #8ac6bb;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.card h3,
.price-card h3,
.step h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.card p,
.price-card p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}

.card ul,
.price-card ul {
  padding-left: 16px;
  line-height: 1.65;
  color: #c7d8e7;
}

.timeline {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  border-radius: 14px;
  padding: 20px;
  background: rgba(13, 23, 33, 0.65);
  border: 1px solid var(--line);
}

.step span {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(68, 215, 192, 0.15);
  color: var(--accent-soft);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.featured {
  position: relative;
  border-color: rgba(239, 201, 127, 0.56);
  background: linear-gradient(160deg, rgba(33, 29, 20, 0.88), rgba(18, 25, 34, 0.88));
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #231f16;
  color: #f2d59a;
  border: 1px solid rgba(242, 213, 154, 0.56);
  border-radius: 999px;
  padding: 5px 10px;
}

.price {
  color: #d4e8f8;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price span {
  color: #9eb0c2;
  font-weight: 400;
  font-size: 0.92rem;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(17, 24, 34, 0.94), rgba(15, 36, 47, 0.92));
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.contact-box h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

.contact-box p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
}

.social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  color: #dce9f6;
  border: 1px solid var(--line);
  background: rgba(17, 28, 39, 0.52);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 233, 220, 0.7);
  background: rgba(17, 28, 39, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 600;
  color: #062122;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.btn-ghost {
  color: #dce9f6;
  border-color: var(--line);
  background: rgba(17, 28, 39, 0.5);
}

.btn-small {
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 0.84rem;
}

.site-footer {
  padding: 34px 0 55px;
}

.site-footer p {
  margin: 0;
  color: #8da2b7;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.delay-3 {
  transition-delay: 0.3s;
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5vw, 4vh, 0); }
}

@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-6vw, 3vh, 0); }
}

@keyframes floatC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-2vw, -5vh, 0); }
}

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, -48px, 0); }
}

@keyframes panelBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 1060px) {
  .hero-grid,
  .offer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links a:not(.btn-small) {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

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

  .contact-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-sub {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-grid,
  .bg-orb,
  .hero-panel {
    animation: none !important;
  }
}
