:root {
  --bg: #071016;
  --surface: rgba(17, 30, 39, 0.88);
  --surface-strong: rgba(20, 38, 48, 0.95);
  --line: rgba(202, 229, 238, 0.15);

  --text: #f4fbfd;
  --muted: #9aafb8;
  --dim: #718791;

  --cyan: #52e8ff;
  --green: #50f5a8;
  --purple: #a68cff;

  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;

  color: var(--text);

  background:
    radial-gradient(
      700px 500px at 90% -10%,
      rgba(82, 232, 255, 0.10),
      transparent 70%
    ),
    radial-gradient(
      650px 500px at 5% 90%,
      rgba(166, 140, 255, 0.10),
      transparent 70%
    ),
    var(--bg);

  font-family: "Manrope", Arial, sans-serif;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}


/* ------------------------------
   COMMON
------------------------------ */

.container {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  z-index: -1;

  width: 20rem;
  height: 20rem;

  border-radius: 50%;

  filter: blur(100px);
  opacity: 0.12;

  pointer-events: none;
}

.glow-one {
  top: 12%;
  right: -9rem;
  background: var(--cyan);
}

.glow-two {
  bottom: -10rem;
  left: -9rem;
  background: var(--purple);
}

.eyebrow {
  margin: 0;

  color: var(--cyan);

  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-height: 50px;
  padding: 12px 19px;

  border: 1px solid transparent;
  border-radius: 12px;

  font-size: 0.88rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #021014;

  background:
    linear-gradient(
      105deg,
      var(--green),
      var(--cyan)
    );

  box-shadow:
    0 12px 30px rgba(82, 232, 255, 0.12);
}

.button-secondary {
  color: var(--text);

  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(82, 232, 255, 0.55);
}


/* ------------------------------
   HEADER
------------------------------ */

.site-header {
  position: relative;
  z-index: 20;

  padding: 18px 0;

  border-bottom: 1px solid rgba(202, 229, 238, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;

  color: var(--text);

  text-decoration: none;
}

.brand-logo {
  display: block;

  width: 132px;
  height: auto;

  max-height: 42px;

  object-fit: contain;

  opacity: 0;

  transform: scale(0.96);

  animation:
    glime-logo-in 0.65s cubic-bezier(0.22, 1, 0.36, 1)
    0.05s forwards;
}

@keyframes glime-logo-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;

  width: 44px;
  height: 44px;

  padding: 9px;

  color: var(--text);

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 2px;

  background: currentColor;
  border-radius: 99px;
}

.main-nav {
  position: absolute;

  top: calc(100% + 8px);
  right: 14px;
  left: 14px;

  display: none;
  flex-direction: column;

  padding: 8px;

  background: rgba(7, 16, 22, 0.98);

  border: 1px solid var(--line);
  border-radius: 14px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  padding: 12px;

  color: var(--muted);

  font-size: 0.84rem;
  font-weight: 700;

  text-decoration: none;

  border-radius: 9px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
  padding-top: 70px;
  padding-bottom: 65px;
}

.hero h1 {
  max-width: 850px;

  margin: 16px 0;

  font-size: clamp(2.45rem, 10vw, 5rem);
  line-height: 1.03;

  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 680px;

  margin: 0 0 28px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.hero-note {
  max-width: 650px;

  margin: 19px 0 0;

  color: var(--dim);

  font-size: 0.76rem;
  line-height: 1.6;
}


/* ------------------------------
   SECTION HEADING
------------------------------ */

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 10px 0 10px;

  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1.08;

  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  margin: 0;

  color: var(--muted);

  font-size: 0.92rem;
  line-height: 1.7;
}


/* ------------------------------
   PACKAGES
------------------------------ */

.packages-section {
  padding-bottom: 60px;
}

.package-grid {
  display: grid;
  gap: 15px;
}

.package-card {
  position: relative;

  min-width: 0;

  padding: 24px 21px;

  background: var(--surface);

  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.10);
}

.package-card h3 {
  margin: 14px 0 7px;

  font-size: 1.55rem;
  line-height: 1.1;

  letter-spacing: -0.04em;
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.package-number {
  color: var(--green);

  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
}

.package-label {
  color: var(--dim);

  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.package-for {
  min-height: 48px;

  margin: 0;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.55;
}

.price {
  display: flex;
  flex-direction: column;

  margin-top: 21px;
}

.price-prefix {
  color: var(--dim);

  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.price strong {
  margin-top: 4px;

  font-size: 2rem;
  line-height: 1;

  letter-spacing: -0.04em;
}

.price-note {
  min-height: 34px;

  margin: 8px 0 0;

  color: var(--dim);

  font-size: 0.7rem;
  line-height: 1.45;
}

.package-divider {
  height: 1px;

  margin: 21px 0;

  background: var(--line);
}

.included-label {
  margin: 0;

  color: var(--cyan);

  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.feature-list {
  display: grid;
  gap: 11px;

  padding: 0;
  margin: 17px 0 24px;

  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.45;
}

.feature-list li::before {
  flex: 0 0 auto;

  width: 6px;
  height: 6px;

  margin-top: 0.47em;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 10px rgba(80, 245, 168, 0.55);

  content: "";
}

.package-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;

  min-height: 48px;
  padding: 12px 14px;

  color: var(--text);

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid var(--line);
  border-radius: 10px;

  font-size: 0.8rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.package-button:hover {
  transform: translateY(-2px);

  border-color: rgba(82, 232, 255, 0.5);

  background: rgba(82, 232, 255, 0.06);
}


/* ------------------------------
   GROW / MOST POPULAR
------------------------------ */

.package-featured {
  background:
    linear-gradient(
      145deg,
      rgba(22, 60, 69, 0.82),
      rgba(17, 30, 39, 0.96)
    );

  border-color: rgba(82, 232, 255, 0.42);

  box-shadow:
    0 20px 55px rgba(82, 232, 255, 0.08);
}

.popular-badge {
  display: inline-flex;

  padding: 7px 10px;

  color: #021014;

  background: linear-gradient(
    105deg,
    var(--green),
    var(--cyan)
  );

  border-radius: 999px;

  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.package-button-featured {
  color: #021014;

  background:
    linear-gradient(
      105deg,
      var(--green),
      var(--cyan)
    );

  border-color: transparent;
}


/* ------------------------------
   CARE
------------------------------ */

.care-section {
  padding-bottom: 60px;
}

.care-card {
  padding: 24px 21px;

  background:
    linear-gradient(
      145deg,
      rgba(47, 33, 80, 0.55),
      rgba(17, 30, 39, 0.94)
    );

  border: 1px solid rgba(166, 140, 255, 0.28);
  border-radius: var(--radius);
}

.care-heading h2 {
  margin: 9px 0 8px;

  font-size: 2rem;
  letter-spacing: -0.045em;
}

.care-intro {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.65;
}

.care-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 24px;
}

.care-price span {
  color: var(--dim);

  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
}

.care-price strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.care-price small {
  color: var(--muted);
  font-size: 0.8rem;
}

.care-grid {
  display: grid;
  gap: 9px;

  margin-top: 24px;
}

.care-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(202, 229, 238, 0.08);
  border-radius: 10px;
}

.care-item strong {
  color: var(--purple);

  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
}

.care-item span {
  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.4;
}

.care-note {
  margin: 20px 0;

  color: var(--dim);

  font-size: 0.7rem;
  line-height: 1.55;
}

.care-button {
  width: 100%;
}


/* ------------------------------
   RECOMMENDATION
------------------------------ */

.recommendation {
  padding-bottom: 60px;
}

.recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 24px;

  padding: 25px 21px;

  background:
    linear-gradient(
      105deg,
      rgba(80, 245, 168, 0.10),
      rgba(82, 232, 255, 0.08),
      rgba(166, 140, 255, 0.09)
    );

  border: 1px solid rgba(82, 232, 255, 0.23);
  border-radius: var(--radius);
}

.recommendation-copy h2 {
  max-width: 700px;

  margin: 9px 0;

  font-size: clamp(1.55rem, 7vw, 2.35rem);
  line-height: 1.1;

  letter-spacing: -0.045em;
}

.recommendation-copy p:last-child {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  font-size: 0.85rem;
  line-height: 1.65;
}


/* ------------------------------
   FUTURE
------------------------------ */

.future-section {
  padding-bottom: 70px;
}

.future-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.future-flow span {
  padding: 8px 10px;

  color: var(--text);

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid var(--line);
  border-radius: 8px;

  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
}

.future-flow i {
  color: var(--purple);

  font-style: normal;
}


/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
  padding: 28px 0 34px;

  border-top: 1px solid rgba(202, 229, 238, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-links a {
  color: var(--muted);

  font-size: 0.75rem;
  font-weight: 700;

  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-inner > p {
  margin: 0;

  color: var(--dim);

  font-size: 0.68rem;
}


/* ------------------------------
   TABLET
------------------------------ */

@media (min-width: 650px) {

  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-card {
    padding: 30px;
  }

}


/* ------------------------------
   DESKTOP
------------------------------ */

@media (min-width: 900px) {

  .site-header {
    padding: 22px 0;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;

    display: flex;
    flex-direction: row;

    padding: 0;

    background: transparent;

    border: 0;
    border-radius: 0;

    box-shadow: none;
  }

  .main-nav a {
    padding: 8px 10px;

    font-size: 0.76rem;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 100px;
  }

  .hero h1 {
    max-width: 900px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .package-card {
    padding: 28px 24px;
  }

  .package-featured {
    transform: translateY(-8px);
  }

  .care-card {
    padding: 34px;
  }

  .care-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .care-button {
    width: auto;
  }

  .recommendation-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 36px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    width: 140px;
    max-height: 44px;
  }

}


/* ------------------------------
   REDUCED MOTION
------------------------------ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .brand-logo {
    opacity: 1;
    transform: none;
    animation: none;
  }

}