:root {
  --bg-main: #113273;
  --bg-mid: #0d234a;
  --bg-deep: #163878;

  --bg-soft: #162f66;

  --primary: #5a8cff;
  --primary-soft: rgba(90, 140, 255, 0.2);

  --secondary: #7fd8ff;

  --text: #eef3ff;
  --text-soft: #b5c0da;

  --line: rgba(255, 255, 255, 0.12);

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);

  --radius: 20px;
  --radius-sm: 14px;

  --container: 1220px;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #05102c;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}


@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #eaf4ff;
  box-shadow: 0 0 12px rgba(200, 230, 255, 0.9);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 1px solid rgba(200, 230, 255, 0.45);
  transition: width 0.25s var(--ease-out-quart),
              height 0.25s var(--ease-out-quart),
              margin 0.25s var(--ease-out-quart),
              border-color 0.25s var(--ease-out-quart),
              background 0.25s var(--ease-out-quart);
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: rgba(180, 220, 255, 0.75);
  background: rgba(120, 180, 255, 0.08);
}

@media (pointer: coarse), (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}


.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5a8cff, #7fd8ff, #eaf4ff);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 100;
  pointer-events: none;
}

/* Background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#waveCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}


.bg-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      ellipse at center,
      transparent 35%,
      rgba(3, 10, 30, 0.4) 75%,
      rgba(2, 6, 22, 0.7) 100%
    );
}

.bg-glow { display: none; }

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

/* Header */
.site-header {
  width: min(calc(100% - 40px), var(--container));
  margin: 24px auto 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 35, 74, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 16px;
  z-index: 20;
  transition: background 0.3s var(--ease-out-quart),
              border-color 0.3s var(--ease-out-quart),
              box-shadow 0.3s var(--ease-out-quart);
}

.site-header.is-scrolled {
  background: rgba(8, 22, 52, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.logo {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.96rem;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7fd8ff, transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-quart);
}

.logo:hover::after { transform: scaleX(1); }

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

.site-nav a {
  color: var(--text-soft);
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #7fd8ff;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease-out-quart);
}

.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  width: min(calc(100% - 40px), var(--container));
  margin: 28px auto 0;
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  padding: 54px 0 40px;
}

.hero-bg { display: none; } 

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.panel-topline,
.product-badge,
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  padding: 8px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fd8ff;
  box-shadow: 0 0 10px #7fd8ff;
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}

@keyframes eyebrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1,
.section-heading h2,
.vision-inner h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  max-width: 780px;
  margin: 18px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #c9d7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  transition: box-shadow 0.3s var(--ease-out-quart);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #7fd8ff, #4a5cff, #7fd8ff);
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -2;
  opacity: 0;
  animation: shimmer 3s linear infinite;
  transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn-primary {
  background: linear-gradient(135deg, #4a5cff 0%, #6f7cff 100%);
  color: white;
  box-shadow: 0 14px 34px rgba(74, 92, 255, 0.35);
}

.btn-primary:hover { box-shadow: 0 20px 50px rgba(74, 92, 255, 0.55); }

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}

.stat-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 18px;
  transition: border-color 0.3s var(--ease-out-quart),
              background 0.3s var(--ease-out-quart),
              transform 0.3s var(--ease-out-quart);
}

.stat-card:hover {
  border-color: rgba(127, 216, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff, #7fd8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Hero 3D */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-frame {
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(121, 212, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(121, 212, 255, 0.10) 50%,
    transparent 100%
  );
  transform: translateY(-100%);
  animation: scan 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scan {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  60%  { opacity: 0.8; }
  100% { transform: translateY(100%); opacity: 0; }
}

.visual-label {
  position: absolute;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 14, 34, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  animation: label-float 4s ease-in-out infinite;
}

.label-one   { top: 18%;    left: 6%;  animation-delay: 0s;   }
.label-two   { bottom: 12%; left: 14%; animation-delay: 1.2s; }
.label-three { top: 24%;    right: 6%; animation-delay: 2.4s; }

@keyframes label-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Intro */
.intro-strip,
.section,
.contact-card {
  width: min(calc(100% - 40px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0 0;
}

.intro-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease-out-quart),
              color 0.3s var(--ease-out-quart),
              transform 0.3s var(--ease-out-quart);
}

.intro-chip:hover {
  border-color: rgba(127, 216, 255, 0.4);
  color: var(--text);
  transform: translateY(-2px);
}

.section {
  padding: 100px 0 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.03;
  margin-top: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #b9c7f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards */
.about-grid,
.product-grid,
.experience-layout {
  display: grid;
  gap: 18px;
}

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

.about-card,
.product-card,
.experience-panel,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color 0.4s var(--ease-out-quart),
              background 0.4s var(--ease-out-quart),
              box-shadow 0.4s var(--ease-out-quart),
              transform 0.4s var(--ease-out-quart);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}


.about-card::before,
.product-card::before,
.experience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(127, 216, 255, 0.22),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
  pointer-events: none;
}

.about-card:hover::before,
.product-card:hover::before,
.experience-panel:hover::before {
  opacity: 1;
}

.about-card:hover,
.product-card:hover,
.experience-panel:hover {
  border-color: rgba(127, 216, 255, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 70px rgba(74, 92, 255, 0.25);
}

.about-card-large {
  min-height: auto;
  background:
    linear-gradient(180deg, rgba(74, 92, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.about-card h3,
.product-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.about-card p,
.product-card p,
.experience-panel p,
.contact-card p,
.feature-list li,
.vision-inner p {
  color: var(--text-soft);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.product-grid { grid-template-columns: repeat(3, 1fr); }

.product-card { min-height: 280px; }

.featured {
  background: linear-gradient(180deg, rgba(74, 92, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #9fb0ff;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.text-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-out-quart);
}

.text-link:hover::after { transform: translateX(4px); }

.coming-soon { margin-top: 16px; }

.experience-layout { grid-template-columns: 1fr 1fr 1fr; }

.experience-panel.accent {
  background: linear-gradient(180deg, rgba(121, 212, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #79d4ff, #4a5cff);
  position: absolute;
  left: 0;
  top: 10px;
  box-shadow: 0 0 8px rgba(121, 212, 255, 0.6);
}


.vision-section { padding-bottom: 0; }

.vision-inner {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
  background:
    radial-gradient(circle at 70% 20%, rgba(74, 92, 255, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.vision-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(127, 216, 255, 0.10), transparent 60%);
  animation: vision-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes vision-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(30%, 20%); }
}

.vision-inner h2 {
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1.04;
  margin: 14px 0 16px;
  max-width: 860px;
  position: relative;
}

.vision-inner p {
  max-width: 720px;
  margin-bottom: 24px;
  position: relative;
}

.vision-inner .btn { position: relative; }

/* Contact */
.contact-section { padding-bottom: 100px; }

.contact-card a {
  color: #aab8ff;
  transition: color 0.3s ease;
}

.contact-card a:hover { color: #7fd8ff; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-enter 1s var(--ease-out-expo) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.30s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content > *:nth-child(4) { animation-delay: 0.60s; }
.hero-content > *:nth-child(5) { animation-delay: 0.75s; }

.hero-visual {
  opacity: 0;
  animation: hero-visual-enter 1.4s var(--ease-out-expo) 0.3s forwards;
}

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-visual-enter {
  from { opacity: 0; transform: scale(0.85) rotate(-4deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}


@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual { order: -1; }

  .about-grid,
  .product-grid,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header { margin-top: 14px; }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 11, 22, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav.open { display: flex; }

  .hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }

  .visual-frame { max-width: 360px; }

  .section,
  .contact-section { padding-top: 72px; }

  .vision-inner,
  .about-card,
  .product-card,
  .experience-panel,
  .contact-card { padding: 22px; }

  .vision-inner { padding: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}

/* Product images */
.product-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
  display: block;
}

@media (max-width: 760px) {
  .product-img {
    max-height: 480px;
  }
}

.product-img--blur {
  filter: blur(4px);
  opacity: 0.55;
}

/* Pricing */
.pricing-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(74, 92, 255, 0.10), rgba(255, 255, 255, 0.03));
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: var(--shadow);
}

.pricing-tagline {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 520px;
}

.pricing-amount {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #7fd8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-btn {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pricing-btn:hover::before {
  opacity: 0 !important;
}

.video-section .section-heading {
  padding-left: 3px;
}

/* Video */
.video-frame {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(127, 216, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 60px rgba(74, 92, 255, 0.20), var(--shadow);
  overflow: hidden;
  padding: 3px;
}

.video-el {
  width: 100%;
  display: block;
  border-radius: 22px;
}


.video-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(121, 212, 255, 0.06) 50%,
    transparent 100%
  );
  transform: translateY(-100%);
  animation: scan 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}


.video-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  pointer-events: none;
}

.corner-tl { top: 12px;    left: 12px;  border-top: 2px solid #7fd8ff;  border-left: 2px solid #7fd8ff; }
.corner-tr { top: 12px;    right: 12px; border-top: 2px solid #7fd8ff;  border-right: 2px solid #7fd8ff; }
.corner-bl { bottom: 12px; left: 12px;  border-bottom: 2px solid #7fd8ff; border-left: 2px solid #7fd8ff; }
.corner-br { bottom: 12px; right: 12px; border-bottom: 2px solid #7fd8ff; border-right: 2px solid #7fd8ff; }


/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 0;
  color: var(--text-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  width: min(calc(100% - 40px), var(--container));
  margin-left: auto;
  margin-right: auto;
}