/* Lightweight reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.reveal-slow {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

/* Generic lightweight lift on hover (only shadow/translate) */
.lift {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.lift:hover,
.lift:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(57, 255, 20, 0.18);
}

/* Header elevation on scroll */
.site-header.elevated {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(22, 240, 255, 0.18) inset;
}

/* Zoom-in reveal for images/icons */
.reveal-zoom {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 380ms ease, transform 380ms ease;
}

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

/* Subtle hover motion for icon badges in stats/benefits/resources */
.stat .icon-badge,
.hero-benefits .icon-badge,
.resource-card .icon-badge {
  transition: transform 220ms ease, filter 220ms ease;
}

.stat:hover .icon-badge,
.hero-benefits li:hover .icon-badge,
.resource-card:hover .icon-badge {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.4));
}
:root {
  --bg-dark: #03050b;
  --glass-bg: rgba(4, 14, 28, 0.68);
  --accent: #39ff14;
  --accent-secondary: #92ff40;
  --accent-blue: #16f0ff;
  --text-primary: #f5fff0;
  --text-secondary: #90a6bf;
  --border-glow: rgba(57, 255, 20, 0.35);
  --shadow-glow: 0 16px 30px rgba(57, 255, 20, 0.12);
  --transition: all 0.3s ease;
  --pointer-x: 0.5;
  --pointer-y: 0.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 15% 0%, rgba(57, 255, 20, 0.2), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(22, 240, 255, 0.24), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(57, 255, 20, 0.16), transparent 70%),
    #02040a;
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Scroll progress bar removed */

.background {
  position: fixed;
  inset: -20vh 0 0 0;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(57, 255, 20, 0.18),
      transparent 48%
    ),
    radial-gradient(circle at 18% 25%, rgba(57, 255, 20, 0.18), transparent 45%),
    radial-gradient(circle at 74% 15%, rgba(22, 240, 255, 0.28), transparent 52%),
    radial-gradient(circle at 58% 78%, rgba(146, 255, 100, 0.16), transparent 52%);
  pointer-events: none;
  z-index: 0;
  filter: none;
  animation: bgDrift 26s ease-in-out infinite;
  will-change: filter, transform;
}

.background::after {
  content: '';
  position: absolute;
  inset: -15% -10% -15% -10%;
  background:
    radial-gradient(420px 320px at 20% 30%, rgba(57, 255, 20, 0.25), rgba(57, 255, 20, 0)),
    radial-gradient(360px 300px at 80% 20%, rgba(22, 240, 255, 0.22), rgba(22, 240, 255, 0)),
    radial-gradient(380px 320px at 60% 75%, rgba(146, 255, 100, 0.18), rgba(146, 255, 100, 0));
  filter: none;
  opacity: 0.85;
  animation: bgDrift2 34s ease-in-out infinite alternate;
  will-change: transform, filter, opacity;
}

@keyframes bgDrift {
  0% { transform: translate3d(0%, -3%, 0) scale(1.06); }
  25% { transform: translate3d(2.2%, -1%, 0) scale(1.06); }
  50% { transform: translate3d(0%, 3%, 0) scale(1.06); }
  75% { transform: translate3d(-2.2%, 1%, 0) scale(1.06); }
  100% { transform: translate3d(0%, -3%, 0) scale(1.06); }
}

@keyframes bgDrift2 {
  0% { transform: translate3d(2.5%, -2.5%, 0); }
  50% { transform: translate3d(-2.5%, 2.5%, 0); }
  100% { transform: translate3d(2.5%, -2.5%, 0); }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  display: none;
  pointer-events: none;
  z-index: 0;
}

.floating-objects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-objects span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 45%;
  background: radial-gradient(circle at 30% 30%, rgba(57, 255, 20, 0.55), rgba(57, 255, 20, 0)),
    radial-gradient(circle at 70% 70%, rgba(22, 240, 255, 0.45), rgba(22, 240, 255, 0));
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: none;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  animation: none;
}

main {
  position: relative;
  z-index: 1;
  padding: clamp(120px, 14vh, 160px) clamp(24px, 7vw, 108px)
    clamp(80px, 12vh, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(72px, 8vw, 110px);
}

main > section {
  width: min(1180px, 100%);
}

.glass {
  background: var(--glass-bg);
  border: 1px solid rgba(57, 255, 20, 0.32);
  border-radius: 24px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.glass::after {
  content: none;
}

/* Lighter continuous shine specifically for the heavy hero blocks */
/* shine effects removed */

.site-header {
  position: sticky;
  top: 32px;
  margin: 32px auto 0;
  width: min(1180px, calc(100% - 64px));
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 3;
  backdrop-filter: blur(20px) saturate(140%);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(22, 240, 255, 0.24);
  opacity: 0.6;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.4);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(57, 255, 20, 0.65));
}

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

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Lightweight underline effect */
.underline-link {
  position: relative;
}

.underline-link::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.7), rgba(22, 240, 255, 0.7));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  border-radius: 2px;
}

.underline-link:hover::after,
.underline-link:focus-visible::after {
  transform: scaleX(1);
}
/* header shrink on scroll removed */

/* Stagger helpers */
[data-stagger] > * {
  transition-delay: var(--reveal-delay, 0ms);
}

.main-nav a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(57, 255, 20, 0.18), rgba(22, 240, 255, 0.12));
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.25);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.7);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-blue));
  color: #041009;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 16px 45px rgba(57, 255, 20, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 55px rgba(57, 255, 20, 0.45);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: stretch;
}

.hero-left,
.hero-right {
  display: flex;
}

.hero-left {
  align-items: stretch;
}

.hero-right {
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  padding: 52px 52px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(57, 255, 20, 0.28), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(22, 240, 255, 0.22), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-text > * {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.16);
  color: var(--accent-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.25);
  animation: none;
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin: 0;
  text-shadow: 0 0 32px rgba(57, 255, 20, 0.35);
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 1.07rem;
  line-height: 1.75;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-blue));
  color: #031909;
  box-shadow: 0 18px 38px rgba(57, 255, 20, 0.32);
}

.btn.primary::after {
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 48px rgba(57, 255, 20, 0.42);
}

.btn.primary:hover::after,
.btn.primary:focus-visible::after {
  opacity: 0.35;
}

.btn.ghost {
  border: 1px solid rgba(22, 240, 255, 0.35);
  color: var(--text-primary);
  background: rgba(6, 16, 28, 0.6);
}

.btn.ghost::after {
  background: linear-gradient(120deg, rgba(22, 240, 255, 0.18), rgba(57, 255, 20, 0.18));
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.25);
}

.btn.ghost:hover::after,
.btn.ghost:focus-visible::after {
  opacity: 0.25;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  margin-top: auto;
}

.hero-stats .stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(3, 12, 22, 0.78);
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 14px 30px rgba(57, 255, 20, 0.15);
  width: 100%;
}

.hero-stats dt {
  font-weight: 700;
}

.hero-stats dd {
  grid-column: 2;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Allow long headings/descriptions to wrap properly inside stats */
.hero-stats .stat > dt,
.hero-stats .stat > dd {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hero-visual {
  position: relative;
  padding: clamp(32px, 4vw, 40px) clamp(28px, 3.6vw, 36px) clamp(34px, 4vw, 46px);
  background: linear-gradient(150deg, rgba(57, 255, 20, 0.18), rgba(2, 14, 24, 0.94));
  border: 1px solid rgba(22, 240, 255, 0.25);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 420px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 12% -30% -35% 45%;
  background: radial-gradient(circle, rgba(22, 240, 255, 0.32), rgba(22, 240, 255, 0));
  filter: blur(60px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-visual-badge {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(22, 240, 255, 0.16);
  color: var(--accent-blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(22, 240, 255, 0.4);
}

.hero-visual img {
  width: min(100%, 360px);
  aspect-ratio: 16 / 11;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 32px 48px rgba(57, 255, 20, 0.25));
  transition: filter 0.6s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, filter;
}

.hero-visual:hover img {
  filter: drop-shadow(0 36px 60px rgba(57, 255, 20, 0.35));
}

/* Prevent "frame" from appearing on lifted images during hover */
img.lift:hover,
img.lift:focus-visible {
  box-shadow: none;
}

/* Smoother lift animation specifically for hero-visual image */
.hero-visual img.lift {
  transition: transform 520ms cubic-bezier(.22, .61, .36, 1),
    filter 520ms cubic-bezier(.22, .61, .36, 1),
    box-shadow 520ms cubic-bezier(.22, .61, .36, 1);
  transform: translateZ(0);
}

.hero-visual img.lift:hover,
.hero-visual img.lift:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.hero-visual-hint {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-end;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--text-primary);
  font-size: 0.85rem;
  gap: 4px;
  text-align: right;
  box-shadow: 0 18px 32px rgba(57, 255, 20, 0.2);
}

.hero-visual-hint span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-card {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 420px;
  background: rgba(3, 10, 20, 0.86);
  border: 1px solid rgba(57, 255, 20, 0.24);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(57, 255, 20, 0.22), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}

.hero-benefits {
  list-style: none;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  margin-top: auto;
}

.hero-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(2, 16, 28, 0.82);
  border: 1px solid rgba(57, 255, 20, 0.25);
  box-shadow: 0 16px 36px rgba(57, 255, 20, 0.18);
}

.hero-benefits h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.hero-benefits p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: radial-gradient(circle at 30% 30%, rgba(57, 255, 20, 0.6), rgba(57, 255, 20, 0.08));
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.5), inset 0 0 22px rgba(22, 240, 255, 0.35);
  border: 1px solid rgba(22, 240, 255, 0.32);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 16px rgba(57, 255, 20, 0.7));
}

.interface {
  padding: 56px 60px 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  background: rgba(4, 14, 26, 0.78);
  border: 1px solid rgba(22, 240, 255, 0.22);
}

.interface::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 14%, rgba(57, 255, 20, 0.2), transparent 55%),
    radial-gradient(circle at 88% 12%, rgba(22, 240, 255, 0.18), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}

.interface-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.interface-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 0;
}

.interface-head p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.interface-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.interface-gallery figure {
  margin: 0;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: 22px;
  background: rgba(2, 12, 24, 0.9);
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 24px 45px rgba(57, 255, 20, 0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.interface-gallery figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(57, 255, 20, 0.22);
}

.interface-gallery img {
  width: 100%;
  border-radius: 16px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px 10px;
  background: radial-gradient(circle at 50% 20%, rgba(22, 240, 255, 0.08), transparent 60%);
  filter: drop-shadow(0 20px 32px rgba(22, 240, 255, 0.22));
}

.interface-gallery figcaption {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: auto;
}

.why {
  padding: 56px 60px 64px;
  text-align: center;
}

.why h2,
.resources h2,
.process-inner h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 36px;
}

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

.feature-card {
  padding: 32px 28px;
  border-radius: 22px;
  background: rgba(4, 12, 24, 0.75);
  border: 1px solid rgba(57, 255, 20, 0.22);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 18px 34px rgba(57, 255, 20, 0.14);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(57, 255, 20, 0.22);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process {
  position: relative;
}

.process::after {
  content: '';
  position: absolute;
  inset: -40px 20% auto;
  height: 220px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.22), transparent 65%);
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}

.process-inner {
  position: relative;
  padding: 56px 60px;
  overflow: hidden;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(3, 12, 22, 0.75);
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 16px 32px rgba(57, 255, 20, 0.15);
}

.step-index {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
}

.process-steps h3 {
  margin: 0 0 6px;
}

.process-steps p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-note {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(22, 240, 255, 0.32);
  box-shadow: 0 18px 36px rgba(57, 255, 20, 0.18);
}

.process-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.resources {
  padding: 56px 60px 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.resource-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.resource-card {
  background: rgba(4, 12, 24, 0.78);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(57, 255, 20, 0.24);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 40px rgba(57, 255, 20, 0.16);
}

.resource-card h3 {
  margin: 0;
}

.resource-card p {
  margin: 0;
  color: var(--text-secondary);
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 32px;
  border-radius: 22px;
  background: rgba(3, 12, 22, 0.82);
  border: 1px solid rgba(57, 255, 20, 0.26);
  box-shadow: 0 18px 36px rgba(57, 255, 20, 0.2);
}

.cta-panel h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
}

.cta-panel p {
  margin: 0;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  margin: 80px auto 40px;
  width: min(1180px, calc(100% - 64px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-left: 18px;
  transition: color 0.2s ease;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

/* removed glassShine animation */

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.25);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
    opacity: 0.85;
  }
}

@keyframes backgroundPulse {
  0% {
    filter: saturate(120%) hue-rotate(0deg);
  }
  50% {
    filter: saturate(135%) hue-rotate(4deg);
  }
  100% {
    filter: saturate(120%) hue-rotate(-4deg);
  }
}

/* removed floatOrbit animation */

@media (prefers-reduced-motion: reduce) {
  .background,
  .floating-objects span,
  .glass::after,
  .hero-label {
    animation: none !important;
  }

  .hero-visual img {
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .hero-card,
  .hero-visual {
    min-height: unset;
  }

  .hero-card {
    order: initial;
  }
}

@media (max-width: 900px) {
  main {
    padding: 120px 24px 80px;
  }

  .site-header {
    width: calc(100% - 48px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-text,
  .hero-card,
  .hero-visual,
  .interface,
  .why,
  .resources,
  .process-inner {
    padding: 36px 32px;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: static;
    margin-top: 24px;
    gap: 16px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .main-nav a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .cta-link {
    width: 100%;
    justify-content: center;
  }

  .hero-text {
    padding: 32px 24px 36px;
  }

  .hero-visual {
    padding: 28px 24px 32px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 32px 24px;
  }

  .hero-benefits li {
    grid-template-columns: 1fr;
  }

  .icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .process-inner {
    padding: 32px 24px;
  }

  .process-steps li {
    grid-template-columns: 1fr;
  }

  .process-note {
    grid-template-columns: 1fr;
  }

  .interface,
  .resources {
    padding: 32px 24px;
  }

  .interface-gallery {
    grid-template-columns: 1fr;
  }

  .interface-gallery figure {
    min-height: auto;
  }

  .site-footer {
    width: calc(100% - 48px);
    margin: 60px auto 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    margin-left: 0;
  }
}
