:root {
  --bg: #f7fbff;
  --bg-soft: #edf6ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --line: rgba(32, 68, 128, 0.12);
  --line-strong: rgba(49, 100, 225, 0.28);
  --text: #182133;
  --muted: #5f6f86;
  --blue: #3868f2;
  --blue-deep: #2146b5;
  --green: #49b46e;
  --shadow: 0 24px 60px rgba(18, 45, 92, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 104, 242, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(73, 180, 110, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(32, 68, 128, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

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

.brand-logo {
  width: 88px;
  height: auto;
  object-fit: contain;
}

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

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: 0 10px 20px rgba(20, 48, 96, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  padding: 56px 0 36px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  top: 60px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(56, 104, 242, 0.18), transparent 70%);
}

.hero::after {
  bottom: -70px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(73, 180, 110, 0.14), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

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

.hero-text,
.section-intro p,
.licensing-text {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #4d74f7 100%);
  box-shadow: 0 18px 30px rgba(56, 104, 242, 0.22);
}

.button-secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.station-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(69, 115, 223, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(233, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(56, 104, 242, 0.08), rgba(73, 180, 110, 0.06));
  box-shadow: var(--shadow);
}

.station-top,
.station-body,
.station-footer {
  display: flex;
  align-items: center;
}

.station-top {
  justify-content: space-between;
  margin-bottom: 28px;
}

.station-badge,
.station-price {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.station-badge {
  color: var(--blue);
  background: rgba(56, 104, 242, 0.1);
}

.station-price {
  color: #fff;
  background: linear-gradient(135deg, #0b1d4d, #2c50be);
}

.station-body {
  gap: 20px;
  align-items: flex-end;
}

.bottle {
  position: relative;
  width: 132px;
  height: 256px;
  border-radius: 52px 52px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(152, 192, 255, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 55%);
  border: 4px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 -18px 38px rgba(71, 127, 227, 0.2);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 48px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #77aaff, #2f64ef);
}

.station-panel {
  flex: 1;
  min-height: 318px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #dfeaff, #f9fcff);
  border: 1px solid rgba(49, 100, 225, 0.16);
}

.panel-line,
.panel-screen {
  border-radius: 999px;
  background: rgba(38, 72, 150, 0.14);
}

.panel-line {
  height: 16px;
  margin-bottom: 12px;
}

.panel-line.short {
  width: 64%;
}

.panel-screen {
  height: 180px;
  margin-top: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(56, 104, 242, 0.24), rgba(73, 180, 110, 0.1)),
    #f4f9ff;
}

.station-footer {
  gap: 14px;
  width: fit-content;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(18, 45, 92, 0.14);
}

.check-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--green);
  border-radius: 999px;
  position: relative;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(38deg);
}

.section {
  padding: 92px 0;
}

.section-intro {
  max-width: 760px;
  text-align: center;
}

.section-intro,
.section-heading {
  margin: 0 auto 40px;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  line-height: 1.05;
}

.feature-section,
.benefits-section {
  background: linear-gradient(180deg, rgba(237, 246, 255, 0.68), rgba(255, 255, 255, 0.6));
}

.feature-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.benefit-card,
.step-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(18, 45, 92, 0.06);
}

.feature-card,
.benefit-card {
  padding: 28px;
}

.feature-card h3,
.benefit-card h3,
.step-card h3,
.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.feature-card p,
.benefit-card p,
.step-card p,
.footer-copy,
.site-footer li,
.site-footer a,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.step-card {
  padding: 26px 22px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(56, 104, 242, 0.12);
  color: var(--blue);
  font-weight: 800;
}

.licensing-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-label {
  margin: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card h3,
.contact-number {
  margin: 0;
}

.contact-number {
  font-weight: 800;
  color: var(--text);
}

.site-footer {
  padding: 54px 0 28px;
  background: #14213f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand .brand-logo {
  width: 92px;
}

.site-footer .brand-text small,
.site-footer a,
.site-footer li,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .licensing-grid,
  .footer-grid,
  .feature-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header .container {
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 32px;
  }

  .hero-grid,
  .feature-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .station-card {
    padding: 20px;
  }

  .station-body {
    flex-direction: column;
    align-items: center;
  }

  .station-panel {
    width: 100%;
    min-height: 240px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlights li {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
