/* ── NAV ── */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}
.nav-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  letter-spacing: -0.02em;
  display: flex;
  font-size: 20px;
  align-items: center;
  gap: 10px;
  color: #03672e;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}

/* .nav-logo .claw-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #03672e, #05a043);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.elixr-icon {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 6rem;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: #334960;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.nav-links a:hover {
  color: #03672e;
}

.nav-cta {
  background: #03672e;
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  border-radius: 980px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition:
    transform 0.2s,
    background 0.2s;
}

.nav-cta:hover {
  transform: scale(1.04);
  background: #05a043;
}
/* Add to your existing CSS */

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: #03672e;
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 2px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -5px);
}

/* Mobile Navigation - UPDATED */
@media (max-width: 1025px) {
  .nav-div {
    position: relative;
  }

  .nav-hamburger {
    display: flex;
    order: 2; /* Position hamburger after logo */
  }

  .nav-cta {
    display: none; /* Hide CTA button on mobile */
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100vh - 76px);
    flex-direction: column;
    gap: 0;
    background: #fff;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    visibility: hidden; /* Hide it completely */

    opacity: 0;
    transition:
      opacity 0.3s ease,
      visibility 0.3s;
    z-index: 99;
  }

  .nav-links.active {
    transform: translateX(0); /* Slide in */
    opacity: 1;
    visibility: visible; /* Make it visible */
  }

  .nav-links li {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a {
    display: block;
    padding: 20px 24px;
    font-size: 14px;
    color: #334960;
  }

  .nav-links a:hover {
    background: rgba(3, 103, 46, 0.05);
  }

  /* Add mobile CTA inside menu */
  .nav-links::after {
    width: max-content;
    content: "Get Early Access";
    display: block;
    margin: 20px 24px;
    padding: 14px 32px;
    background: #03672e;
    color: #ffffff;
    border-radius: 980px;
    font-size: 12px;
    text-align: center;
    font-family: "ibm-plex-sans-medium", sans-serif;
    cursor: pointer;
  }
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 150px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #fff,
    #fff 35%,
    rgba(46, 204, 114, 0.08) 55%,
    #e9fff1
  );
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(3, 103, 46, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: hero-pulse 6s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
} */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 980px;
  background: #f1fced;
  color: #03632d;
  margin-bottom: 32px;
  opacity: 0;
  font-size: 15px;
  animation: fadeUp 0.8s ease forwards 0.2s;
  font-family: "Outfit", sans-serif;
}
/* 
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #03672e;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
} */

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.5rem, 8vw, 96px);
  margin-bottom: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 .gradient-text {
  background: #03672e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 600px;
  font-size: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

@media (max-width: 1540px) {
  .hero h1 {
    font-size: 74px;
  }
  .hero-sub {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .hero-badge {
    font-size: 2.3rem;
  }
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 6rem;
  }
  .hero-sub {
    font-size: 2.3rem;
  }
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
  background: #03672e;
  color: #ffffff;
  border: none;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 980px;
  cursor: pointer;
  /* font-family: "ibm-plex-sans-medium", sans-serif; */
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(3, 103, 46, 0.2);
  background: #05a043;
}

.btn-secondary {
  background: transparent;
  color: #03672e;
  border: 1px solid #03672e;
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 15px;
  cursor: pointer;
  /* font-family: "ibm-plex-sans-medium", sans-serif; */
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s;
}

.btn-secondary:hover {
  border-color: #05a043;
  background: rgba(3, 103, 46, 0.05);
  color: #05a043;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #03632d;
  border-radius: 13px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: #03632d;
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.2;
    top: 20px;
  }
}

/* ── AGENT DIAGRAM SECTION ── */
.diagram-section {
  margin: 12rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #ffffff;
}
.diagram-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.diagram-section .section-label,
.grid-card-section .section-label {
  text-transform: uppercase;
  color: #03672e;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
}

.diagram-section h2,
.grid-card-section h2 {
  margin: 0 auto 2rem;
  letter-spacing: -0.03em;
  font-size: clamp(2.5rem, 5vw, 54px);
  text-align: center;
  line-height: 1.1;
  max-width: 700px;
}

.diagram-section .section-desc,
.grid-card-section .grid-card-subtext {
  text-align: center;
  width: 50%;
}

/* Agent Hub Visual */
.agent-hub {
  margin-top: 5rem;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1 / 1;
  max-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(3, 103, 46, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Center Agent */
.agent-center {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #03672e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-shadow:
    0 0 60px rgba(3, 103, 46, 0.15),
    0 0 120px rgba(3, 103, 46, 0.08);
  animation: center-breathe 4s ease-in-out infinite;
}

@keyframes center-breathe {
  0%,
  100% {
    box-shadow:
      0 0 60px rgba(3, 103, 46, 0.15),
      0 0 120px rgba(3, 103, 46, 0.08);
  }
  50% {
    box-shadow:
      0 0 80px rgba(3, 103, 46, 0.2),
      0 0 160px rgba(3, 103, 46, 0.1);
  }
}

.agent-center svg {
  width: 30px;
  height: 30px;
  stroke: #03672e;
}

.agent-center span {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  color: #03672e;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

/* Orbit Ring */
.orbit-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px dashed #03672e;
  animation: orbit-spin 120s linear infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #03672e, #05a043);
  box-shadow:
    0 0 20px rgba(3, 103, 46, 0.6),
    0 0 40px rgba(3, 103, 46, 0.3);
  z-index: 6;
  animation: orbit-travel 16s linear infinite;
}

@keyframes orbit-travel {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateX(300px) rotate(0deg);
  }
  100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg) translateX(300px)
      rotate(-360deg);
  }
}

/* Satellite Nodes */
.sat-node {
  position: absolute;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
  cursor: default;
  transition: transform 0.3s;
}

.sat-node:hover {
  transform: scale(1.08);
}

.sat-node .node-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #03672e;
  background: #ffffff;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

.sat-node:hover .node-icon {
  box-shadow: 0 0 30px rgba(3, 103, 46, 0.15);
}

.sat-node .node-icon svg {
  width: 28px;
  height: 28px;
  stroke: #03672e;
  transition: stroke 0.3s;
}

.sat-node:hover .node-icon svg {
  stroke: #03672e;
}

.sat-node .node-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #656565;
  text-align: center;
  transition: color 0.3s;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

/* .sat-node:hover .node-label {
  color: #213047;
} */

/* Positioned around center */
.sat-node:nth-child(3) {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}
.sat-node:nth-child(4) {
  top: 14%;
  right: 20%;
}
.sat-node:nth-child(5) {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.sat-node:nth-child(6) {
  bottom: 14%;
  right: 20%;
}
.sat-node:nth-child(7) {
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}
.sat-node:nth-child(8) {
  bottom: 14%;
  left: 18%;
}
.sat-node:nth-child(9) {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.sat-node:nth-child(10) {
  top: 14%;
  left: 20%;
}
@media (max-width: 767px) {
  .sat-node .node-label {
    font-size: 10px;
  }
}
/* Connection lines */
.conn-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  transform-origin: left center;
  z-index: 1;
}

.conn-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #03672e 0%, transparent 100%);
  opacity: 0.2;
}

/* ── FEATURES SECTION ── */
.features-section {
  padding: 10rem 0;
  margin: 12rem 0;
  background: #f0fdf460;
}

.features-section .section-label,
.showcase-section .section-label {
  text-transform: uppercase;
  text-align: center;
  color: #03672e;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
}
.features-section .section-desc {
  text-align: center;
  max-width: 50%;
  margin: 0 auto 5rem;
  font-family: "Outfit", sans-serif;
}
.showcase-section .section-desc {
  text-align: center;
  max-width: 50%;
  margin: 0 auto 7rem;
  font-family: "Outfit", sans-serif;
}

.features-section h2,
.showcase-section h2 {
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 54px);
  text-align: center;
  max-width: 700px;
  font-family: "Outfit", sans-serif;
}

/* Feature Card Grid */
.feature-grid {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  border-radius: 24px;
  padding: 6rem 5rem;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.3s;
}

.feature-card:hover {
  /* border-color: #cccccc; */
  transform: translateY(-4px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(3, 103, 46, 0.04), transparent);
}
.feature-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(5, 160, 67, 0.04), transparent);
}
.feature-card:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(38, 166, 91, 0.04), transparent);
}
.feature-card:nth-child(4)::before {
  background: linear-gradient(180deg, rgba(77, 184, 125, 0.04), transparent);
}
.feature-card:nth-child(5)::before {
  background: linear-gradient(180deg, rgba(102, 204, 153, 0.04), transparent);
}
.feature-card:nth-child(6)::before {
  background: linear-gradient(180deg, rgba(3, 103, 46, 0.04), transparent);
}

.feature-card .card-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.feature-card .card-icon img {
  width: 45px;
  height: 45px;
}

/* .feature-card:nth-child(1) .card-icon {
  background: rgba(3, 103, 46, 0.1);
} 
.feature-card:nth-child(2) .card-icon {
  background: rgba(5, 160, 67, 0.1);
}
.feature-card:nth-child(3) .card-icon {
  background: rgba(38, 166, 91, 0.1);
}
.feature-card:nth-child(4) .card-icon {
  background: rgba(77, 184, 125, 0.1);
}
.feature-card:nth-child(5) .card-icon {
  background: rgba(102, 204, 153, 0.1);
}
.feature-card:nth-child(6) .card-icon {
  background: rgba(3, 103, 46, 0.1);
} */

.feature-card:nth-child(1) .card-icon svg {
  stroke: #03672e;
}
.feature-card:nth-child(2) .card-icon svg {
  stroke: #05a043;
}
.feature-card:nth-child(3) .card-icon svg {
  stroke: #26a65b;
}
.feature-card:nth-child(4) .card-icon svg {
  stroke: #4db87d;
}
.feature-card:nth-child(5) .card-icon svg {
  stroke: #66cc99;
}
.feature-card:nth-child(6) .card-icon svg {
  stroke: #03672e;
}

.feature-card .card-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.feature-card .card-tag {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
  padding: 4px 12px;
  border-radius: 28px;
  background: transparent;
  color: #03672e;
  border: 1px solid #03672e;
}

/* ── BIG FEATURE SHOWCASES ── */
.showcase-section {
  margin: 12rem 0;
}
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* align-items: center; */
  margin-bottom: 80px;
}

.showcase-item:nth-child(even) {
  direction: rtl;
}

.showcase-item:nth-child(even) > * {
  direction: ltr;
}

.showcase-text .showcase-eyebrow {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.showcase-item:nth-child(2) .showcase-eyebrow {
  color: #03672e;
}
.showcase-item:nth-child(3) .showcase-eyebrow {
  color: #92400e;
}
.showcase-item:nth-child(4) .showcase-eyebrow {
  color: #4338ca;
}

.showcase-text h3 {
  margin-bottom: 20px;
  font-size: 32px;
  width: 90%;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.showcase-text p {
  margin-bottom: 32px;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

.showcase-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showcase-text ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

.showcase-text ul li .check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* .showcase-item:nth-child(1) .check {
  background: rgba(3, 103, 46, 0.1);
  color: #03672e;
}
.showcase-item:nth-child(2) .check {
  background: rgba(5, 160, 67, 0.1);
  color: #05a043;
}
.showcase-item:nth-child(3) .check {
  background: rgba(38, 166, 91, 0.1);
  color: #26a65b;
} */
.card-sub-tag {
  /* font-family: "ibm-plex-sans-medium", "sans-serif"; */
}
.arch-image img {
  width: 34px;
  height: 34px;
}
.showcase-visual {
  aspect-ratio: 1 / 0.65;
  border-radius: 24px;
  background: #f0fdf460;
  border: 1px solid #00912c70;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#showcase-visual-two {
  border: 1px solid #f59f0b74;
  background: #fffbeb;
}
#showcase-visual-three {
  border: 1px solid #989aed4f;
  background: #f5f3ff;
}
@media (max-width: 1540px) {
  .showcase-visual {
    aspect-ratio: 1 / 0.75;
  }
}
@media (max-width: 1024px) {
  .showcase-visual {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 768px) {
  .showcase-visual {
    aspect-ratio: 1 / 0.55;
  }
}
.showcase-visual .visual-content {
  padding: 40px;
  width: 100%;
  height: 100%;
  position: relative;
}
.showcase-visual .visual-content p {
  font-size: 15px;
}

/* Code block visual */
.code-visual {
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

.code-visual .line-num {
  color: #606060;
  opacity: 0.4;
  user-select: none;
  display: inline-block;
  width: 28px;
}

.code-visual .kw {
  color: #05a043;
}
.code-visual .fn {
  color: #03672e;
}
.code-visual .str {
  color: #26a65b;
}
.code-visual .cm {
  color: #606060;
  opacity: 0.5;
}
.code-visual .op {
  color: #606060;
}

/* Orchestration visual */
.orch-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
}

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

.orch-node {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid;
  white-space: nowrap;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

.orch-arrow {
  color: #92400e;
}

.orch-node.primary {
  border-color: #92400e70;
  color: #92400e;
  background: #92400e20;
  /* background: rgba(3, 103, 46, 0.05); */
}
.orch-node.secondary {
  border-color: #92400e70;
  color: #92400e;
  /* background: rgba(5, 160, 67, 0.05); */
}
.orch-node.tertiary {
  border-color: #92400e70;
  color: #92400e;
  background: #92400e20;
  /* background: rgba(38, 166, 91, 0.05); */
}
.orch-node.info {
  border-color: #92400e70;
  color: #92400e;
  background: #92400e20;
  /* background: rgba(77, 184, 125, 0.05); */
}

.orch-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #e0e0e0, transparent);
}

/* ── STATS BAND ── */
.stats-band {
  padding: 120px 24px;
  background: #f0f9f4;
  border-top: 1px solid #03672e;
  border-bottom: 1px solid #03672e;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-item {
  padding-right: 2rem;
  border-right: 1px solid #ababab;
}

.stat-item .stat-value {
  font-size: 36px;
  background: linear-gradient(135deg, #03672e, #05a043);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.stat-item .stat-label {
  color: #666666;
  margin-top: 8px;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: #14532d;
}
.cta-section .btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}
.cta-section .btn-primary {
  background: #388b39;
}
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .cta-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(3, 103, 46, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.4;
} */

.cta-section h2 {
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 6vw, 64px);
  text-align: center;
  line-height: 1.1;
  max-width: 700px;
  color: #fff;
}
@media (max-width: 767px) {
  .cta-section h2 {
    width: 80%;
    color: #fff;
  }
}
.cta-section .hero-actions {
  margin-top: 48px;
  opacity: 1;
  animation: none;
}
.cta-section p {
  color: #bdd4c7;
}

/* ── FOOTER ── */
footer {
  padding: 5rem 0;
  border-top: 1px solid #e0e0e0;
  color: #606060;
  background: #ffffff;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}
.footer-wrapper {
  font-size: 1.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: #606060;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #03672e;
}

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-item:nth-child(even) {
    direction: ltr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .agent-hub {
    margin-top: 7rem;
    max-width: 500px;
    max-height: 500px;
  }
  .orbit-ring {
    width: 500px;
    height: 500px;
  }
  .sat-node:nth-child(3) {
    top: -3%;
  }
  .sat-node:nth-child(7) {
    bottom: -10%;
  }
  .sat-node:nth-child(5) {
    right: -10%;
  }
  .sat-node:nth-child(8) {
    left: -6%;
  }
  .sat-node:nth-child(9) {
    left: -10%;
  }
  .sat-node:nth-child(6) {
    right: -5%;
  }
  .sat-node:nth-child(10) {
    left: -0%;
  }
  .sat-node:nth-child(4) {
    right: 4%;
  }
  .orbit-dot {
    display: none;
  }
  .agent-center {
    width: 100px;
    height: 100px;
  }
  .agent-center svg {
    width: 36px;
    height: 36px;
  }
  .sat-node .node-icon {
    width: 48px;
    height: 48px;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ── ENTERPRISE DEPLOY SECTION ── */
.enterprise-section {
  margin: 12rem 0;
  background: #ffffff;
}

.enterprise-section .section-label {
  text-align: center;
  text-transform: uppercase;
  color: #03672e;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
}

.enterprise-section h2 {
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 54px);
  max-width: 700px;
  text-align: center;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.enterprise-section .section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

/* Deploy Options Row */
.deploy-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.deploy-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}

.deploy-card:hover {
  border-color: #cccccc;
  transform: translateY(-3px);
}

.deploy-card .deploy-badge {
  display: inline-flex;
  align-self: flex-start;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 980px;
  text-transform: uppercase;
  margin-bottom: 24px;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.deploy-card:nth-child(1) .deploy-badge {
  background: rgba(5, 160, 67, 0.1);
  color: #03672e;
}
.deploy-card:nth-child(2) .deploy-badge {
  background: rgba(5, 160, 67, 0.1);
  color: #03672e;
}
.deploy-card:nth-child(3) .deploy-badge {
  background: rgba(5, 160, 67, 0.1);
  color: #03672e;
}

.deploy-card .deploy-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* .deploy-card:nth-child(1) .deploy-icon {
  background: rgba(3, 103, 46, 0.08);
}
.deploy-card:nth-child(2) .deploy-icon {
  background: rgba(5, 160, 67, 0.08);
}
.deploy-card:nth-child(3) .deploy-icon {
  background: rgba(38, 166, 91, 0.08);
} */

.deploy-card:nth-child(1) .deploy-icon svg {
  stroke: #03672e;
}
.deploy-card:nth-child(2) .deploy-icon svg {
  stroke: #03672e;
}
.deploy-card:nth-child(3) .deploy-icon svg {
  stroke: #03672e;
}

.deploy-card .deploy-icon svg {
  width: 24px;
  height: 24px;
}

.deploy-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.deploy-card p {
  margin-bottom: 24px;
  flex: 1;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}
.deploy-card .deploy-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.deploy-card .deploy-specs .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deploy-card .deploy-specs .spec-row .spec-label {
  color: #606060;
  font-size: 1.7rem;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

.deploy-card .deploy-specs .spec-row .spec-value {
  font-size: 1.7rem;
  text-align: end;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}
@media (max-width: 767px) {
  .deploy-card .deploy-specs .spec-row .spec-label,
  .deploy-card .deploy-specs .spec-row .spec-value {
    font-size: 1.9rem;
  }
}
/* Popular badge */
.deploy-card.popular {
  border-color: rgba(3, 103, 46, 0.3);
  background: #f0f9f480;
}

.deploy-card.popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #03672e90, #05a043);
}

/* ── SECURITY SECTION ── */
.security-section {
  margin: 15rem 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.security-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(3, 103, 46, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.security-section .section-label {
  text-align: center;
  text-transform: uppercase;
  color: #03672e;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
}

.security-section h2 {
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 54px);
  max-width: 700px;
  text-align: center;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.security-section .section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

/* Security Bento Grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.security-card {
  background: #f4f7f5;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.security-card:hover {
  transform: translateY(-2px);
}

/* Span first card across 2 cols */
.security-card.wide {
  grid-column: span 2;
}
.security-card.wide-3 {
  grid-column: span 3;
}
.security-card .sec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(3, 103, 46, 0.1);
}

.security-card .sec-icon svg {
  width: 22px;
  height: 22px;
  stroke: #03672e;
}

.security-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.security-card p {
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

.security-card .sec-tag {
  display: inline-block;
  margin-top: 16px;
  /* font-family: "ibm-plex-sans-medium", sans-serif; */
  padding: 3px 10px;
  border-radius: 5px;
  background: #2e75b60d;
  color: #2e75b6;
  border: 1px solid #2e75b6;
}

/* Compliance badges row */
.compliance-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  background: #f4f7f5;
  /* border: 1px solid #e0e0e0; */
  transition: border-color 0.3s;
}

.compliance-badge:hover {
  border-color: rgba(3, 103, 46, 0.3);
}

.compliance-badge .badge-shield {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(3, 103, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-badge .badge-shield svg {
  width: 16px;
  height: 16px;
  stroke: #03672e;
}

.compliance-badge .badge-text {
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #000;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}

.compliance-badge .badge-sub {
  color: #606060;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}

/* Responsive */
@media (max-width: 900px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-card.wide {
    grid-column: span 2;
  }

  .security-card.wide-3 {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card,
  .security-card.wide,
  .security-card.wide-3 {
    grid-column: span 1;
  }
}

/* ── PARTICLE CANVAS ── */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

section,
footer {
  position: relative;
  z-index: 1;
}
@media (max-width: 1540px) {
  .deploy-card:nth-child(3) .deploy-icon svg,
  .deploy-card:nth-child(2) .deploy-icon svg,
  .deploy-card:nth-child(1) .deploy-icon svg {
    width: 20px;
  }
  .deploy-card .deploy-icon {
    width: 40px;
    height: 40px;
  }
}
.grid-card-section {
  background: #f0f9f4;
  padding: 10rem 0;
  margin: 12rem 0;
}
.grid-card-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0rem auto 0 auto;
}
.grid-card-heading {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.grid-card-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  text-align: center;
  gap: 8px;
}
.grid-card-metric:not(:nth-child(4)):not(:nth-child(8)) {
  border-right: 1px solid #dcdfe5;
}
.grid-card-metric:nth-child(5),
.grid-card-metric:nth-child(6),
.grid-card-metric:nth-child(7),
.grid-card-metric:nth-child(8) {
  border-top: 1px solid #e0e6f0;
}
.metric-value {
  font-size: 42px;
  background: linear-gradient(135deg, #03672e, #05a043);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* font-family: "ibm-plex-sans-semibold", sans-serif; */
}
.metric-label {
  font-size: 15px;
  color: #606060;
  /* font-family: "ibm-plex-sans-regular", sans-serif; */
}
@media (max-width: 992px) {
  .grid-card-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-card-metric {
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid #e0e6f0;
  }
  .grid-card-metric:nth-child(even) {
    border-left: 1px solid #e0e6f0;
  }
}
@media (max-width: 576px) {
  .grid-card-title {
    font-size: 26px;
  }
  .grid-card-subtext {
    font-size: 14px;
  }
  .metric-value {
    font-size: 18px;
  }
  .metric-label {
    font-size: 14px;
  }
  .grid-card-metrics {
    grid-template-columns: 1fr;
  }
  .grid-card-metric {
    align-items: flex-start;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid #e0e6f0;
  }
}
@media (max-width: 1024px) {
  .showcase-text ul li {
    font-size: 2.3rem;
  }
}
@media (max-width: 767px) {
  .footer-wrapper {
    gap: 2rem;
    font-size: 12px;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .agent-hub {
    margin-top: 4rem;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .compliance-row {
    justify-content: space-between;
    row-gap: 3rem;
  }
  .showcase-visual .visual-content p {
    display: none;
  }
  .arch-image img {
    width: 24px;
    height: 24px;
  }
  .security-card h4 {
    font-size: 18px;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 2.3rem;
  }
  .hero {
    min-height: auto;
    padding: 24rem 24px 15rem;
  }
  .features-section .section-desc,
  .showcase-section .section-desc,
  .diagram-section .section-desc,
  .grid-card-section .grid-card-subtext,
  .enterprise-section .section-desc,
  .security-section .section-desc {
    max-width: 100%;
    text-align: left;
    width: 100%;
    margin: 0;
  }
  .features-section h2,
  .showcase-section h2,
  .diagram-section h2,
  .grid-card-section h2,
  .enterprise-section h2,
  .security-section h2 {
    text-align: left;
    width: 100%;
  }
  .features-section .section-label,
  .showcase-section .section-label,
  .enterprise-section .section-label,
  .security-section .section-label,
  .grid-card-heading,
  .diagram-wrapper {
    font-size: 10px;
    align-items: flex-start;
    text-align: left;
  }
  .deploy-options {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
  .scroll-indicator .mouse {
    display: none;
  }
  .showcase-header {
    margin-bottom: 8rem;
  }
  .showcase-visual {
    aspect-ratio: 1/ 0.95;
  }
  .security-grid {
    margin-top: 5rem;
  }
  .orbit-ring {
    width: 300px;
    height: 300px;
  }
  .sat-node .node-icon {
    width: 30px;
    height: 30px;
  }
  .sat-node .node-icon svg {
    width: 20px;
    height: 20px;
  }
  .agent-center svg {
    width: 30px;
    height: 30px;
  }
  .feature-card .card-icon img {
    width: 32px;
    height: 32px;
  }
  .showcase-text h3 {
    width: 100%;
  }
  .feature-card .card-icon {
    margin-bottom: 15px;
  }
  .sat-node:nth-child(3) {
    top: 6%;
  }
  .sat-node:nth-child(5) {
    right: -5%;
  }
  .sat-node:nth-child(4) {
    right: 14%;
  }
  .sat-node:nth-child(9) {
    left: -5%;
  }
  .sat-node:nth-child(8) {
    left: 4%;
  }
  .sat-node:nth-child(6) {
    right: 6%;
  }
  .sat-node:nth-child(10) {
    left: 14%;
  }
  .sat-node:nth-child(7) {
    bottom: 0%;
  }
  .showcase-item {
    margin-bottom: 60px;
  }
  .showcase-item {
    gap: 30px;
  }
  .hero-actions {
    margin-top: 4rem !important;
    flex-direction: column;
  }
}
