/* Design System CSS Variables */
:root {
  --c-primary: #2D5A4D;
  --c-accent: #A3E635;
  --c-bg: #0B1411;
  --c-surface: #14221F;
  --c-text: #F0F4F2;
  --c-muted: #8FA7A1;
  --c-dark: #050807;
  --f-heading: 'Syne', sans-serif;
  --f-body: 'Hanken Grotesk', sans-serif;
  --f-hero: clamp(3.5rem, 9vw, 8.5rem);
  --fw-heading: 800;
  --lh-body: 1.6;
  --fs-body: clamp(1rem, 0.3vw + 0.96rem, 1.08rem);
  --fs-lead: clamp(1.05rem, 0.45vw + 0.98rem, 1.22rem);
  --fs-h2: clamp(2rem, 3.2vw, 3.4rem);
  --spacing-base: 1rem;
  --section-padding: 10rem 0;
  --container-max: 1400px;
  --radius: 12px;
  --radius-btn: 8px;
  --shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(45,90,77,0.2);
}

/* nav */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

:root {
  --c-primary: #2D5A4D;
  --c-accent: #A3E635;
  --c-bg: #0B1411;
  --c-surface: #14221F;
  --c-text: #F0F4F2;
  --c-muted: #8FA7A1;
  --c-dark: #050807;
  --f-heading: 'Syne', sans-serif;
  --f-body: 'Hanken Grotesk', sans-serif;
  --f-hero: clamp(3.5rem, 9vw, 8.5rem);
  --fw-heading: 800;
  --lh-body: 1.6;
  --fs-body: clamp(1rem, 0.3vw + 0.96rem, 1.08rem);
  --fs-lead: clamp(1.05rem, 0.45vw + 0.98rem, 1.22rem);
  --fs-h2: clamp(2rem, 3.2vw, 3.4rem);
  --spacing-base: 1rem;
  --section-padding: 10rem 0;
  --container-max: 1400px;
  --radius: 12px;
  --radius-btn: 8px;
  --shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(45,90,77,0.2);
}

body {
  color: var(--c-text);
  font-size: var(--fs-body);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-nav {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 90, 77, 0.32) 0%, transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(125, 211, 196, 0.18) 0%, transparent 30%),
    radial-gradient(circle at 70% 72%, rgba(163, 230, 53, 0.14) 0%, transparent 26%),
    linear-gradient(135deg, #050807 0%, #09120f 24%, #0b1411 52%, #12201b 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--c-text);
  font-family: var(--f-body);
}

.section-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(45, 90, 77, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45, 90, 77, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.section-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.05) 0%, transparent 32%),
    radial-gradient(circle at center, transparent 0%, rgba(3, 5, 16, 0.22) 62%, rgba(3, 5, 16, 0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

#neural-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 74%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.96) 72%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.96) 72%, rgba(0, 0, 0, 0) 100%);
}

.section-nav > .wcont {
  z-index: 2;
}

.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(163, 230, 53, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 20, 17, 0.72);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.wcont {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  width: 100%;
  position: relative;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
  text-decoration: none;
}

.logo-brand {
  gap: 14px;
}

.logo-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: block;
  background: linear-gradient(145deg, rgba(20, 34, 31, 0.92), rgba(45, 90, 77, 0.78));
  border: 1px solid rgba(163, 230, 53, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 30px rgba(0, 0, 0, 0.25), 0 0 24px rgba(163, 230, 53, 0.12);
}

.logo-icon::before,
.logo-icon::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.55), rgba(125, 211, 196, 0.42));
  opacity: 0.8;
}

.logo-icon::before {
  left: 20px;
  top: 9px;
  width: 2px;
  height: 24px;
}

.logo-icon::after {
  left: 10px;
  top: 20px;
  width: 22px;
  height: 2px;
}

.logo-node {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ecfccb, #a3e635 58%, #7dd3c4 100%);
  box-shadow: 0 0 16px rgba(163, 230, 53, 0.32);
}

.node-core {
  width: 10px;
  height: 10px;
  left: 16px;
  top: 16px;
}

.node-top {
  width: 6px;
  height: 6px;
  left: 18px;
  top: 8px;
}

.node-right {
  width: 6px;
  height: 6px;
  left: 28px;
  top: 18px;
}

.node-bottom {
  width: 6px;
  height: 6px;
  left: 18px;
  top: 28px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-word {
  font-family: var(--f-heading);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(163, 230, 53, 0.18);
  background: rgba(163, 230, 53, 0.08);
  color: rgba(240, 244, 242, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.menu a {
  position: relative;
  text-decoration: none;
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.82;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  transition: color 0.25s ease, opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.menu a:hover,
.menu a:focus-visible {
  opacity: 1;
  color: var(--c-accent);
  background: rgba(163, 230, 53, 0.08);
  text-shadow: 0 0 16px rgba(163, 230, 53, 0.18);
  transform: translateY(-1px);
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* New Modern Hero Button */
.btn-hero-main {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1.1rem 2.8rem;
  background: var(--c-accent);
  color: #050807;
  text-decoration: none;
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(163, 230, 53, 0.2);
  border: 1px solid rgba(163, 230, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-hero-main span {
  position: relative;
  z-index: 2;
}

.btn-hero-main i {
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s ease;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.btn-hero-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(163, 230, 53, 0.4), 0 0 20px rgba(163, 230, 53, 0.2);
  background: #b6f04d;
}

.btn-hero-main:hover .btn-hero-glow {
  transform: translate(-50%, -50%) scale(1);
}

.btn-hero-main:hover i {
  transform: translateX(6px) rotate(-10deg);
}

.btn-hero-main::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: rotate(35deg);
  z-index: 3;
}

.btn-hero-main:hover::after {
  animation: btn-shimmer 0.8s forwards;
}

@keyframes btn-shimmer {
  100% {
    left: 150%;
  }
}

.nav-sticky .btn-ghost {
  text-decoration: none;
  color: var(--c-text);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 44px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-sticky .btn-ghost:hover,
.nav-sticky .btn-ghost:focus-visible {
  color: var(--c-text);
  background: rgba(125, 211, 196, 0.08);
  border-color: rgba(125, 211, 196, 0.24);
  transform: translateY(-1px);
}

.nav-sticky .btn-primary {
  background: linear-gradient(135deg, #a3e635 0%, #d9f99d 100%);
  color: #06100b;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(236, 252, 203, 0.45);
  box-shadow: 0 10px 30px rgba(163, 230, 53, 0.18), 0 10px 42px rgba(45, 90, 77, 0.22);
}

.nav-sticky .btn-primary:hover,
.nav-sticky .btn-primary:focus-visible {
  background: linear-gradient(135deg, #bef264 0%, #ecfccb 100%);
  border-color: rgba(163, 230, 53, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(163, 230, 53, 0.22), 0 16px 48px rgba(45, 90, 77, 0.28);
}

.hero-main {
  max-width: 65%;
  padding: 0 8vw;
  z-index: 5;
  animation: fadeInUp 0.8s both;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.24));
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ambient-orb,
.ambient-ring {
  position: absolute;
  display: block;
}

.ambient-orb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  border: 1px solid rgba(163, 230, 53, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 30px 100px rgba(0,0,0,0.34), 0 0 50px rgba(163, 230, 53, 0.06);
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: -110px;
  right: 10%;
}

.orb-b {
  width: 180px;
  height: 180px;
  bottom: 12%;
  right: 28%;
  animation-delay: -5s;
}

.orb-c {
  width: 140px;
  height: 140px;
  top: 24%;
  left: 6%;
  animation-delay: -8s;
}

.ambient-ring {
  border-radius: 999px;
  border: 1px solid rgba(163, 230, 53, 0.18);
  box-shadow: 0 0 30px rgba(163, 230, 53, 0.12), inset 0 0 30px rgba(125, 211, 196, 0.06);
  animation: driftRing 18s linear infinite;
}

.ring-a {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 4%;
}

.ring-b {
  width: 340px;
  height: 340px;
  left: -80px;
  bottom: -40px;
  animation-direction: reverse;
}

.s-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--c-accent);
  text-shadow: 0 0 18px rgba(163, 230, 53, 0.22);
}

.hero-h1 {
  font-family: var(--f-heading);
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  line-height: 0.96;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
  max-width: 13ch;
  text-wrap: balance;
  display: grid;
  gap: 0.24rem;
  color: #ffffff;
  text-shadow: 0 14px 46px rgba(0,0,0,0.22);
}

.hero-h1-line {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f7 42%, #dce8e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-h1-accent-wrap {
  display: inline-flex;
  align-items: center;
}

.hero-h1-accent {
  display: inline-flex;
  align-items: center;
  min-height: 1.12em;
  padding: 0.14em 0.42em 0.18em;
  border-radius: 0.42em;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04) 42%, rgba(163, 230, 53, 0.08) 100%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 44px rgba(125, 211, 196, 0.06);
  color: #f6fbf8;
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  animation: heroAccentGlow 7.5s ease-in-out infinite;
}

.hero-h1-accent::before {
  content: "";
  position: absolute;
  left: -18%;
  width: 58%;
  top: 0.08em;
  height: 52%;
  border-radius: 0.28em;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.3), rgba(255,255,255,0.04));
  opacity: 0.62;
  transform: skewX(-18deg) translateX(0);
  animation: luxurySheen 8.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-h1-accent::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 211, 196, 0.08), rgba(255,255,255,0.65), rgba(163, 230, 53, 0.28));
  box-shadow: 0 0 18px rgba(255,255,255,0.18);
  pointer-events: none;
}

@keyframes luxurySheen {
  0%, 16%, 100% {
    transform: skewX(-18deg) translateX(0);
    opacity: 0;
  }
  24% {
    opacity: 0.22;
  }
  42% {
    transform: skewX(-18deg) translateX(245%);
    opacity: 0.62;
  }
  52% {
    opacity: 0;
  }
}

@keyframes heroAccentGlow {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 44px rgba(125, 211, 196, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 26px 54px rgba(0, 0, 0, 0.24), 0 0 52px rgba(163, 230, 53, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-h1-accent,
  .hero-h1-accent::before {
    animation: none;
  }
}

.hero-subtext {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  max-width: 520px;
  color: rgba(240, 244, 242, 0.86);
  margin-bottom: 3rem;
}

/* Floating Cards Area */
.floating-ui-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
}

.card-f {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  pointer-events: auto;
}

.card-1 {
  top: 25%;
  right: 15%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(163, 230, 53, 0.14);
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 30px rgba(163, 230, 53, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--c-text);
  width: 220px;
}

.card-1 .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(163, 230, 53, 0.14);
  color: var(--c-accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(163, 230, 53, 0.14);
}

.card-1 .info b {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--f-heading);
}

.card-1 .info span {
  font-size: 0.8rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-2 {
  top: 48%;
  right: 5%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(163, 230, 53, 0.12);
  border-radius: 12px;
  padding: 16px;
  width: 180px;
  animation-delay: 1.5s;
  box-shadow: 0 0 30px rgba(45, 90, 77, 0.16);
}

.card-2-line {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 8px;
  width: 100%;
}

.card-2-line.accent { background: linear-gradient(90deg, #a3e635, #7dd3c4); width: 60%; box-shadow: 0 0 12px rgba(163, 230, 53, 0.25); }

.card-3 {
  top: 70%;
  right: 20%;
  background: #FFF;
  border-radius: 40px;
  padding: 8px 16px 8px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation-delay: 0.8s;
  color: #0B1411;
  border: 1px solid rgba(255,255,255,0.55);
}

.card-3 img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.card-3-txt {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.connect-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(1px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(18px, -22px, 0) scale(1.02); }
  50% { transform: translate3d(-10px, 18px, 0) scale(0.97); }
  75% { transform: translate3d(14px, 12px, 0) scale(1.04); }
}

@keyframes driftRing {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.03); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .menu { display: none; }
  .hero-main { max-width: 80%; padding: 0 4vw; }
  .floating-ui-container { opacity: 0.5; transform: scale(0.8); right: -10%; }
  .orb-a { width: 240px; height: 240px; }
  .ring-a { width: 420px; height: 420px; }
}

@media (max-width: 768px) {
  .section-nav { align-items: flex-end; padding-bottom: 10vh; }
  .hero-main { max-width: 100%; text-align: left; padding: 0 20px; }
  .hero-h1 { font-size: clamp(2.05rem, 8vw, 3.4rem); max-width: 12ch; }
  .hero-h1-accent { padding: 0.16em 0.3em 0.18em; }
  .floating-ui-container { display: none; }
  .nav-btns { display: none; }
  .orb-c,
  .ring-b { display: none; }
}

/* hero_main */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;600;700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

:root {
  --c-primary: #2D5A4D;
  --c-accent: #A3E635;
  --c-bg: #0B1411;
  --c-surface: #14221F;
  --c-text: #F0F4F2;
  --c-muted: #5C716D;
  --c-dark: #050807;
  --f-heading: 'Syne', sans-serif;
  --f-body: 'Hanken Grotesk', sans-serif;
  --f-hero: clamp(3rem, 7.5vw, 7rem);
  --fw-heading: 800;
  --lh-body: 1.6;
  --spacing-base: 1rem;
  --section-padding: 10rem 0;
  --container-max: 1400px;
  --radius: 12px;
  --radius-btn: 8px;
  --shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(45,90,77,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-hero-main {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(to right, rgba(11, 20, 17, 0.95) 40%, rgba(11, 20, 17, 0.4)), 
              url('assets/ai-hero-bg.svg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-text);
  font-family: var(--f-body);
}

.section-hero-main .wcont {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(16px, 8vw, 120px);
  position: relative;
  z-index: 10;
}

.section-hero-main .hero-content {
  max-width: 65%;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-hero-main .s-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: 2rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--c-accent);
}

.section-hero-main h1 {
  font-family: var(--f-heading);
  font-size: var(--f-hero);
  font-weight: var(--fw-heading);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #FFF;
}

.section-hero-main .subtitle {
  font-size: 1.125rem;
  line-height: var(--lh-body);
  color: rgba(240, 244, 242, 0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.section-hero-main .cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.section-hero-main .btn {
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-btn);
  font-family: var(--f-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.section-hero-main .btn-primary {
  background: var(--c-primary);
  color: #FFF;
  border: none;
  box-shadow: 0 4px 20px rgba(45, 90, 77, 0.3);
}

.section-hero-main .btn-primary:hover {
  transform: translateY(-3px);
  background: #366d5d;
  box-shadow: 0 8px 30px rgba(45, 90, 77, 0.5);
}

.section-hero-main .btn-ghost {
  color: var(--c-text);
  border: 1px solid rgba(240, 244, 242, 0.2);
  background: transparent;
}

.section-hero-main .btn-ghost:hover {
  background: rgba(240, 244, 242, 0.05);
  border-color: var(--c-accent);
}

.section-hero-main .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 600px;
  border-top: 1px solid rgba(240, 244, 242, 0.1);
  padding-top: 2rem;
}

.section-hero-main .stat-item span {
  display: block;
}

.section-hero-main .stat-val {
  font-family: var(--f-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-accent);
}

.section-hero-main .stat-label {
  font-size: 0.875rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-hero-main .floating-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}

.section-hero-main .float-card {
  position: absolute;
  pointer-events: auto;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow);
}

.section-hero-main .card-1 {
  top: 15%;
  right: 15%;
  background: #FFF;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--c-dark);
}

.section-hero-main .card-1 .icon-box {
  width: 48px;
  height: 48px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--c-dark);
}

.section-hero-main .card-2 {
  top: 45%;
  right: 5%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 1.25rem;
  animation-delay: 1.5s;
  color: #FFF;
  width: 240px;
}

.section-hero-main .card-2 .line {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.section-hero-main .card-2 .line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 65%;
  background: var(--c-accent);
}

.section-hero-main .card-3 {
  bottom: 20%;
  right: 20%;
  background: #FFF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-dark);
  animation-delay: 0.8s;
  min-width: 280px;
}

.section-hero-main .card-3 img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.section-hero-main .card-3 .status-dot {
  width: 8px;
  height: 8px;
  background: #A3E635;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 0 10px #A3E635;
}

.section-hero-main .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: clamp(16px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
}

.section-hero-main .scroll-indicator i {
  animation: scrollAnim 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

@media (max-width: 1024px) {
  .section-hero-main .hero-content { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .section-hero-main h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
  .section-hero-main .subtitle { margin-inline: auto; }
  .section-hero-main .floating-container { display: none; }
  .section-hero-main .stats-grid { margin-inline: auto; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .section-hero-main .cta-group { justify-content: center; width: 100%; }
}

@media (max-width: 768px) {
  .section-hero-main .cta-group { flex-direction: column; }
  .section-hero-main .btn { width: 100%; text-align: center; }
}

/* agent_ecosystem */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;600;700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-primary: #2D5A4D;
  --c-accent: #A3E635;
  --c-bg: #0B1411;
  --c-surface: #14221F;
  --c-text: #F0F4F2;
  --c-muted: #5C716D;
  --c-dark: #050807;
  --f-heading: 'Syne', sans-serif;
  --f-body: 'Hanken Grotesk', sans-serif;
  --f-hero: clamp(3.5rem, 9vw, 8.5rem);
  --fw-heading: 800;
  --lh-body: 1.6;
  --radius: 12px;
  --radius-btn: 8px;
  --shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(45,90,77,0.2);
  --section-padding: clamp(60px, 8vw, 120px) 0;
  --container-max: 1400px;
}

.section-agent-ecosystem {
  position: relative;
  background-color: var(--c-bg);
  color: var(--c-text);
  padding: var(--section-padding);
  font-family: var(--f-body);
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(45, 90, 77, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(163, 230, 53, 0.05) 0%, transparent 40%);
}

.section-agent-ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--c-primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  pointer-events: none;
}

.section-agent-ecosystem .wcont {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

/* Status Line */
.live-orchestration {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--c-accent);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
}
.live-orchestration::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.s-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-accent);
  margin-bottom: 1.5rem;
}

.section-agent-ecosystem h2 {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.08;
  margin-bottom: 4rem;
  max-width: 800px;
}

/* Bento Grid */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.agent-card {
  background: rgba(20, 34, 31, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 90, 77, 0.3);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s both;
}

.agent-card:hover {
  transform: translateY(-8px);
  background: rgba(45, 90, 77, 0.2);
  border-color: var(--c-accent);
  box-shadow: var(--shadow);
}

.agent-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(163, 230, 53, 0.1), transparent);
  pointer-events: none;
}

.icon-box {
  width: 64px;
  height: 64px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--c-accent);
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(45, 90, 77, 0.3);
}

.agent-card h3 {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.agent-card p {
  color: var(--c-muted);
  line-height: var(--lh-body);
  margin-bottom: 2rem;
  font-size: var(--fs-body);
}

.integration-logos {
  margin-top: auto;
  display: flex;
  gap: 16px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.integration-logos i {
  font-size: 1.1rem;
  color: var(--c-muted);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.agent-card:hover .integration-logos i {
  opacity: 1;
  color: var(--c-text);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.agent-card:nth-child(1) { animation-delay: 0.1s; }
.agent-card:nth-child(2) { animation-delay: 0.2s; }
.agent-card:nth-child(3) { animation-delay: 0.3s; }
.agent-card:nth-child(4) { animation-delay: 0.4s; }
.agent-card:nth-child(5) { animation-delay: 0.5s; }
.agent-card:nth-child(6) { animation-delay: 0.6s; }

/* Large Bg Letter */
.bg-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-heading);
  font-size: 40vw;
  font-weight: 800;
  color: var(--c-primary);
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .section-agent-ecosystem h2 { max-width: 100%; }
}

@media (max-width: 768px) {
  .agent-grid { grid-template-columns: 1fr; }
  .section-agent-ecosystem { padding: 80px 0; }
}

/* process_flow */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;600;700;800;900&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-process-flow {
  --grid-color: rgba(45, 90, 77, 0.15);
  position: relative;
  overflow: hidden;
  background-color: var(--c-bg);
  background-image: 
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--c-text);
  font-family: var(--f-body);
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

.section-process-flow .wcont {
  display: grid;
  grid-template-columns: 55fr 45fr;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Status Line Hook */
.section-process-flow .status-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(11, 20, 17, 0.8);
  border-bottom: 1px solid var(--c-primary);
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--c-accent);
  z-index: 10;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
}

/* Left Panel */
.section-process-flow .content-panel {
  background: var(--c-dark);
  padding: clamp(80px, 10vw, 120px) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid var(--c-primary);
}

.section-process-flow .category-tag {
  font-family: monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.section-process-flow .category-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--c-accent);
  margin-right: 15px;
}

.section-process-flow .headline {
  font-family: var(--f-heading);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: var(--c-text);
}

.section-process-flow .headline span.outline {
  -webkit-text-stroke: 2px rgba(240, 244, 242, 0.72);
  color: transparent;
  display: block;
}

/* Descriptor List */
.section-process-flow .step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.section-process-flow .step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.section-process-flow .step-bullet {
  width: 2px;
  height: 24px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.section-process-flow .step-label {
  font-weight: 700;
  color: var(--c-text);
  min-width: 140px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-process-flow .step-value {
  color: var(--c-muted);
  font-size: 0.95rem;
}

/* Buttons */
.section-process-flow .cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.section-process-flow .btn-main {
  background: var(--c-accent);
  color: var(--c-dark);
  padding: 18px 48px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: var(--f-heading);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-process-flow .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(163, 230, 53, 0.3);
}

.section-process-flow .btn-link {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.section-process-flow .btn-link:hover {
  gap: 15px;
  color: var(--c-accent);
}

/* Social Proof */
.section-process-flow .social-proof {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-process-flow .avatar-stack {
  display: flex;
}

.section-process-flow .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--c-dark);
  margin-left: -12px;
  object-fit: cover;
}

.section-process-flow .avatar:first-child { margin-left: 0; }

.section-process-flow .social-text {
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 600;
}

/* Right Panel */
.section-process-flow .visual-panel {
  position: relative;
  overflow: hidden;
}

.section-process-flow .visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}

.section-process-flow:hover .visual-panel img {
  transform: scale(1.15);
}

.section-process-flow .stat-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: #FFFFFF;
  color: #050807;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
  min-width: 220px;
}

.section-process-flow .stat-icon {
  width: 48px;
  height: 48px;
  background: var(--c-accent);
  color: #050807;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.section-process-flow .stat-data {
  display: flex;
  flex-direction: column;
}

.section-process-flow .stat-num {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.section-process-flow .stat-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .section-process-flow .wcont { grid-template-columns: 1fr 1fr; }
  .section-process-flow .headline { font-size: 4rem; }
}

@media (max-width: 1024px) {
  .section-process-flow .content-panel { padding: 80px 40px; }
  .section-process-flow .stat-card { right: 20px; top: 80px; padding: 16px; }
}

@media (max-width: 768px) {
  .section-process-flow .wcont { grid-template-columns: 1fr; }
  .section-process-flow .visual-panel { height: 400px; order: -1; }
  .section-process-flow .content-panel { padding: 60px 24px; }
  .section-process-flow .headline { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .section-process-flow .social-proof { position: relative; bottom: 0; left: 0; margin-top: 40px; }
}

/* portfolio_showcase */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { margin: 0; padding: 0; overflow-x: hidden; }

.section-portfolio-showcase {
    position: relative;
    overflow: hidden;
    background-color: var(--c-bg);
    padding: var(--section-padding);
    color: var(--c-text);
    font-family: var(--f-body);
}

.section-portfolio-showcase::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.section-portfolio-showcase .wcont {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.section-portfolio-showcase .status-line {
    font-family: monospace;
    font-size: 11px;
    color: var(--c-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.section-portfolio-showcase .status-line::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-accent);
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.section-portfolio-showcase .s-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 4px;
    margin-bottom: 1.5rem;
}

.section-portfolio-showcase h2 {
    font-family: var(--f-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: var(--fw-heading);
    line-height: 1.1;
    margin-bottom: 3.5rem;
    letter-spacing: -0.03em;
}

.section-portfolio-showcase h2 span {
    color: var(--c-muted);
}

/* Portfolio Masonry Grid */
.section-portfolio-showcase .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: clamp(16px, 2.5vw, 32px);
}

.section-portfolio-showcase .p-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-surface);
    border: 1px solid rgba(45, 90, 77, 0.3);
    box-shadow: var(--shadow);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.section-portfolio-showcase .p-item:nth-child(1) { grid-row: span 2; animation-delay: 0.1s; }
.section-portfolio-showcase .p-item:nth-child(2) { grid-column: span 1; animation-delay: 0.2s; }
.section-portfolio-showcase .p-item:nth-child(3) { grid-row: span 2; animation-delay: 0.3s; }
.section-portfolio-showcase .p-item:nth-child(4) { grid-column: span 1; animation-delay: 0.4s; }
.section-portfolio-showcase .p-item:nth-child(5) { grid-row: span 2; animation-delay: 0.5s; }
.section-portfolio-showcase .p-item:nth-child(6) { grid-column: span 1; animation-delay: 0.6s; }

.section-portfolio-showcase .p-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--c-accent);
}

.section-portfolio-showcase .p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: saturate(0.8);
}

.section-portfolio-showcase .p-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.1);
}

.section-portfolio-showcase .p-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 20, 17, 0.95) 0%, rgba(11, 20, 17, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
    backdrop-filter: blur(4px);
}

.section-portfolio-showcase .p-item:hover .p-overlay {
    opacity: 1;
    transform: translateY(0);
}

.section-portfolio-showcase .p-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-accent);
    margin-bottom: 0.5rem;
}

.section-portfolio-showcase .p-title {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.section-portfolio-showcase .btn-view {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-btn);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-portfolio-showcase .btn-view:hover {
    background: var(--c-accent);
    color: var(--c-dark);
    border-color: var(--c-accent);
}

/* Tablet (768px-1024px) */
@media (max-width: 1024px) {
    .section-portfolio-showcase .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-portfolio-showcase .p-item:nth-child(3) { grid-row: span 1; }
    .section-portfolio-showcase .p-item:nth-child(5) { grid-row: span 1; grid-column: span 2; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .section-portfolio-showcase { padding: 4rem 0; }
    .section-portfolio-showcase .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }
    .section-portfolio-showcase .p-item, 
    .section-portfolio-showcase .p-item:nth-child(n) {
        grid-row: span 1;
        grid-column: span 1;
    }
    .section-portfolio-showcase h2 { font-size: 2.4rem; }
    .section-portfolio-showcase .p-overlay { opacity: 1; transform: translateY(0); background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
}

/* Phone (≤480px) */
@media (max-width: 480px) {
    .section-portfolio-showcase .p-title { font-size: 1.25rem; }
}

/* stats_bar */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800;900&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-stats-bar {
    --bg-white: #fafafa;
    --text-dark: #111111;
    position: relative;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 0;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--f-body);
}

.section-stats-bar .wcont {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 120px) clamp(16px, 4vw, 40px);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Ghost Letter BG */
.section-stats-bar::before {
    content: "O";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-heading);
    font-size: 50vw;
    font-weight: 900;
    color: var(--c-primary);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Top Meta Row */
.stats-top-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
    font-size: 0.72rem;
    font-family: var(--f-body);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.stats-top-meta hr {
    flex-grow: 1;
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

/* Headline Styling */
.stats-headline {
    text-align: center;
    font-family: var(--f-heading);
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
    font-weight: 900;
  line-height: 0.95;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stats-headline span {
    display: block;
}

.stats-line-1 { color: var(--c-primary); }
.stats-line-2 { color: var(--text-dark); }
.stats-line-3 { 
    -webkit-text-stroke: 3px var(--text-dark); 
    color: transparent; 
}
.stats-line-4 { color: var(--text-dark); }

/* Subtext & CTA */
.stats-content-footer {
    max-width: 580px;
    margin: 3rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-subtext {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.stats-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-btn {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-btn);
    font-family: var(--f-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--c-accent);
    color: var(--c-dark);
    border: none;
    box-shadow: 0 10px 20px rgba(163, 230, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(163, 230, 53, 0.4);
    filter: brightness(1.05);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--c-muted);
    color: var(--text-dark);
}

.btn-ghost:hover {
    background: var(--c-primary);
    color: white;
    border-color: var(--c-primary);
}

.stats-trust-badges {
    display: flex;
    gap: 2rem;
    color: var(--c-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-item i {
    color: var(--c-accent);
    margin-right: 0.5rem;
}

/* Marquee */
.stats-marquee-strip {
    background: var(--c-accent);
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.marquee-inner {
    display: flex;
    gap: 64px;
    width: fit-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
    font-family: var(--f-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--c-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
}

.marquee-item::after {
    content: "/";
    margin-left: 64px;
    opacity: 0.3;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .stats-headline { font-size: clamp(3rem, 10vw, 6rem); }
}

@media (max-width: 768px) {
    .section-stats-bar .wcont { padding: 40px 24px; }
    .stats-cta-group { flex-direction: column; width: 100%; }
    .stats-btn { text-align: center; }
    .stats-headline { font-size: clamp(2rem, 12vw, 4.5rem); -webkit-text-stroke: 1.5px var(--text-dark); }
    .stats-trust-badges { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .stats-headline { font-size: clamp(1.8rem, 14vw, 3.5rem); }
    .stats-top-meta span:last-child { display: none; }
}

/* pricing_plans */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;600;700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-pricing-plans {
  --section-accent-glow: rgba(163, 230, 53, 0.1);
  position: relative;
  background-color: var(--c-bg);
  padding: var(--section-padding);
  color: var(--c-text);
  font-family: var(--f-body);
  overflow: hidden;
  border-bottom: 1px solid rgba(45, 90, 77, 0.2);
}

.section-pricing-plans::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--section-accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.section-pricing-plans .live-status {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 5vw;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--c-muted);
  border-bottom: 1px solid rgba(92, 113, 109, 0.2);
  display: flex;
  gap: 20px;
  background: rgba(5, 8, 7, 0.5);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.section-pricing-plans .status-blink {
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7); }
  70% { opacity: 0.5; box-shadow: 0 0 0 10px rgba(163, 230, 53, 0); }
  100% { opacity: 1; }
}

.section-pricing-plans .wcont {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.section-pricing-plans .s-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-pricing-plans .s-label::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--c-accent);
}

.section-pricing-plans h2 {
  font-family: var(--f-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  margin-bottom: 4rem;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.section-pricing-plans h2 em {
  font-style: italic;
  color: var(--c-accent);
}

.section-pricing-plans .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.section-pricing-plans .card {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(45, 90, 77, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.section-pricing-plans .card:hover {
  transform: translateY(-10px);
  border-color: var(--c-primary);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(45, 90, 77, 0.1);
}

.section-pricing-plans .card.popular {
  border-color: var(--c-accent);
  background: linear-gradient(145deg, var(--c-surface) 0%, #1a2e2a 100%);
  scale: 1.05;
  z-index: 3;
}

.section-pricing-plans .pop-badge {
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--c-accent);
  color: var(--c-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.section-pricing-plans .card-type {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.section-pricing-plans .price {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.section-pricing-plans .price span {
  font-size: 1rem;
  font-family: var(--f-body);
  color: var(--c-muted);
  font-weight: 400;
}

.section-pricing-plans .desc {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: var(--lh-body);
}

.section-pricing-plans .features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.section-pricing-plans .features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(92, 113, 109, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.section-pricing-plans .features i {
  color: var(--c-accent);
  font-size: 0.8rem;
}

.section-pricing-plans .cta-btn {
  display: inline-block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-text);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--f-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.section-pricing-plans .popular .cta-btn {
  background: var(--c-accent);
  color: var(--c-dark);
  border-color: var(--c-accent);
}

.section-pricing-plans .cta-btn:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-dark);
  box-shadow: 0 10px 25px rgba(163, 230, 53, 0.3);
}

.section-pricing-plans .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--c-primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  pointer-events: none;
}

@media(max-width: 1024px) {
  .section-pricing-plans .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-pricing-plans .card.popular {
    grid-column: span 2;
    order: -1;
    scale: 1;
  }
}

@media(max-width: 768px) {
  .section-pricing-plans {
    padding: clamp(60px, 8vw, 80px) 0;
  }
  .section-pricing-plans .pricing-grid {
    grid-template-columns: 1fr;
  }
  .section-pricing-plans .card.popular {
    grid-column: span 1;
  }
}

/* faq_section */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;600;700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-faq-section {
    position: relative;
    background-color: var(--c-bg);
    padding: var(--section-padding);
    color: var(--c-text);
    overflow: hidden;
    font-family: var(--f-body);
}

.section-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, var(--c-primary) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 1;
}

.section-faq-section .wcont {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
}

.section-faq-section .status-line {
    font-family: monospace;
    font-size: 10px;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-faq-section .status-line::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--c-accent), transparent);
}

.section-faq-section .s-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 4px;
    margin-bottom: 1.5rem;
}

.section-faq-section h2 {
    font-family: var(--f-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--fw-heading);
    line-height: 1.1;
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-faq-section .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.section-faq-section .faq-item {
    background: var(--c-surface);
    border: 1px solid rgba(45, 90, 77, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-faq-section .faq-item:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.section-faq-section input[type="checkbox"] {
    display: none;
}

.section-faq-section .faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    font-family: var(--f-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
}

.section-faq-section .faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(163, 230, 53, 0.1);
    border-radius: 50%;
    position: relative;
    transition: transform 0.4s ease, background 0.4s ease;
}

.section-faq-section .faq-icon::before,
.section-faq-section .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--c-accent);
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease;
}

.section-faq-section .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.section-faq-section .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 2rem;
}

.section-faq-section .faq-inner {
    padding-bottom: 2.5rem;
    color: var(--c-muted);
    line-height: var(--lh-body);
    font-size: var(--body-size);
}

.section-faq-section input[type="checkbox"]:checked ~ .faq-content {
    max-height: 400px;
}

.section-faq-section input[type="checkbox"]:checked ~ .faq-trigger .faq-icon {
    background: var(--c-accent);
}

.section-faq-section input[type="checkbox"]:checked ~ .faq-trigger .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.section-faq-section input[type="checkbox"]:checked ~ .faq-trigger .faq-icon::before {
    background: var(--c-bg);
}

.section-faq-section .bg-letter {
    position: absolute;
    right: -5%;
    bottom: -5%;
    font-family: var(--f-heading);
    font-size: 35vw;
    color: var(--c-primary);
    opacity: 0.05;
    font-weight: 800;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

@media(max-width: 1024px) {
    .section-faq-section h2 { font-size: clamp(2rem, 4vw, 3rem); }
}

@media(max-width: 768px) {
    .section-faq-section { padding: 4rem 0; }
    .section-faq-section .faq-trigger { padding: 1.5rem; }
    .section-faq-section .faq-content { padding: 0 1.5rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* final_cta */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Hanken+Grotesk:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-final-cta {
    --local-bg-light: #F8FAFA;
    position: relative;
    overflow: hidden;
    background-color: var(--local-bg-light);
    font-family: var(--f-body, 'Hanken Grotesk', sans-serif);
    display: flex;
    flex-direction: column;
}

.section-final-cta .top-strip {
    width: 100%;
    min-height: 65vh;
    background-color: var(--c-primary);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(163, 230, 53, 0.15) 0%, transparent 50%),
        url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    color: white;
    padding: clamp(60px, 10vh, 120px) 8vw;
    display: flex;
    align-items: center;
    position: relative;
}

.section-final-cta .vertical-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--c-muted);
    opacity: 0.6;
    white-space: nowrap;
    z-index: 5;
}

.section-final-cta .cta-content {
    max-width: 55%;
    position: relative;
    z-index: 20;
    animation: fadeInUp 1s ease-out both;
}

.section-final-cta .s-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--c-accent);
    margin-bottom: 2rem;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-accent);
}

.section-final-cta .main-headline {
    font-family: var(--f-heading, 'Syne', sans-serif);
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 1.05;
    font-weight: var(--fw-heading, 800);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.section-final-cta .cta-subtext {
  font-size: var(--fs-lead);
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: var(--lh-body, 1.6);
}

.section-final-cta .cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.section-final-cta .btn {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-btn, 8px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-final-cta .btn-primary {
    background: var(--c-accent);
    color: var(--c-dark);
}

.section-final-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(163, 230, 53, 0.3);
}

.section-final-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.section-final-cta .overlapping-image {
    position: absolute;
    right: 8vw;
    top: 10%;
    width: 38%;
    height: 80vh;
    max-height: 850px;
    z-index: 30;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}

.section-final-cta .overlapping-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.section-final-cta .overlapping-image:hover img {
    transform: scale(1.05);
}

.section-final-cta .bottom-strip {
    background-color: var(--local-bg-light);
    padding: clamp(60px, 8vh, 120px) 8vw;
    min-height: 35vh;
}

.section-final-cta .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: calc(62% - 8vw);
}

.section-final-cta .stat-box {
    border: 1px solid #E2E8E4;
    padding: 2rem;
    border-radius: var(--radius, 12px);
    transition: border-color 0.3s ease;
    background: white;
    animation: fadeInUp 0.8s ease-out both;
}

.section-final-cta .stat-box:nth-child(2) { animation-delay: 0.1s; }
.section-final-cta .stat-box:nth-child(3) { animation-delay: 0.2s; }
.section-final-cta .stat-box:nth-child(4) { animation-delay: 0.3s; }

.section-final-cta .stat-box:hover {
    border-color: var(--c-primary);
}

.section-final-cta .stat-num {
    display: block;
    font-family: var(--f-heading);
    font-size: 2.2rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
}

.section-final-cta .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-muted);
}

.section-final-cta .trust-row {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.section-final-cta .trust-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section-final-cta .logo-group {
    display: flex;
    gap: 3rem;
    filter: grayscale(1) opacity(0.5);
}

.section-final-cta .logo-item {
    font-weight: 800;
    font-family: var(--f-heading);
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .section-final-cta .cta-content { max-width: 50%; }
    .section-final-cta .stats-grid { width: 100%; grid-template-columns: repeat(2, 1fr); }
    .section-final-cta .overlapping-image { width: 30%; height: 50vh; }
}

@media (max-width: 768px) {
    .section-final-cta .top-strip { min-height: auto; padding-top: 100px; padding-bottom: 180px; }
    .section-final-cta .cta-content { max-width: 100%; }
    .section-final-cta .overlapping-image { 
        position: relative; 
        right: auto; 
        top: -120px; 
        width: 100%; 
        height: 400px; 
        margin: 0 auto;
    }
    .section-final-cta .stats-grid { margin-top: -60px; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .section-final-cta .bottom-strip { padding-top: 2rem; }
    .section-final-cta .cta-group { flex-direction: column; }
    .section-final-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .section-final-cta .stats-grid { grid-template-columns: 1fr; }
    .section-final-cta .logo-group { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
}

/* footer_main */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Hanken+Grotesk:wght@300;400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.section-footer-main {
    --c-primary: #2D5A4D;
    --c-accent: #A3E635;
    --c-bg: #0B1411;
    --c-surface: #14221F;
    --c-text: #F0F4F2;
    --c-muted: #5C716D;
    --c-dark: #050807;
    --f-heading: 'Syne', sans-serif;
    --f-body: 'Hanken Grotesk', sans-serif;
    --radius: 12px;
    --container-max: 1400px;
    
    position: relative;
    background-color: var(--c-dark);
    color: var(--c-text);
    font-family: var(--f-body);
    padding: clamp(60px, 8vw, 120px) 0 40px;
    overflow: hidden;
    border-top: 1px solid rgba(45, 90, 77, 0.2);
}

.section-footer-main .live-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(163, 230, 53, 0.05);
    padding: 12px 0;
    font-family: monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-accent);
    border-bottom: 1px solid rgba(163, 230, 53, 0.1);
    white-space: nowrap;
    overflow: hidden;
}

.section-footer-main .status-track {
    display: inline-block;
    animation: statusScroll 40s linear infinite;
}

@keyframes statusScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-footer-main .wcont {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section-footer-main .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: 80px;
}

.section-footer-main .brand-side .logo {
    display: flex;
    align-items: center;
  gap: 14px;
    color: var(--c-text);
  margin-bottom: 14px;
    text-decoration: none;
}

.section-footer-main .brand-side .logo-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 30px rgba(163, 230, 53, 0.12);
}

.section-footer-main .brand-side .logo-badge {
  background: rgba(163, 230, 53, 0.1);
  color: rgba(240, 244, 242, 0.82);
}

.section-footer-main .footer-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 230, 53, 0.14);
  background: rgba(163, 230, 53, 0.06);
  color: rgba(240, 244, 242, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-footer-main .brand-desc {
  color: rgba(240, 244, 242, 0.72);
  font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 32px;
  max-width: 360px;
}

.section-footer-main .social-links {
    display: flex;
    gap: 16px;
}

.section-footer-main .social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
  background: linear-gradient(145deg, rgba(20, 34, 31, 0.92), rgba(45, 90, 77, 0.38));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(163, 230, 53, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.section-footer-main .social-btn:hover {
    background: linear-gradient(135deg, #a3e635 0%, #d9f99d 100%);
    color: var(--c-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(163, 230, 53, 0.18);
}

.section-footer-main .col-title {
    font-family: var(--f-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-accent);
    margin-bottom: 32px;
}

.section-footer-main .nav-list {
    list-style: none;
}

.section-footer-main .nav-item {
    margin-bottom: 16px;
}

.section-footer-main .nav-link {
  color: rgba(240, 244, 242, 0.64);
    text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.45rem 0.7rem;
  margin-left: -0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.section-footer-main .nav-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(163, 230, 53, 0.34);
  box-shadow: 0 0 10px rgba(163, 230, 53, 0.14);
}

.section-footer-main .nav-link:hover {
  color: var(--c-text);
  transform: translateX(4px);
  background: rgba(255,255,255,0.03);
  border-color: rgba(163, 230, 53, 0.12);
}

.section-footer-main .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-muted);
    font-size: 0.9rem;
}

.section-footer-main .bottom-accent {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-accent), transparent);
}

@media (max-width: 1024px) {
    .section-footer-main .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-footer-main .brand-side {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-footer-main { padding-top: 80px; }
    .section-footer-main .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-footer-main .brand-side {
        grid-column: span 1;
    }
    .section-footer-main .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

body.modal-open {
  overflow: hidden;
}

#pricing_plans,
.section-pricing-plans {
  display: none !important;
}

.coming-soon-modal[hidden] {
  display: none !important;
}

.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 7, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.coming-soon-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(163, 230, 53, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(11, 20, 17, 0.96), rgba(20, 34, 31, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(125, 211, 196, 0.08);
  color: var(--c-text);
  text-align: left;
}

.coming-soon-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(163, 230, 53, 0.12), transparent 32%);
  pointer-events: none;
}

.coming-soon-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(240, 244, 242, 0.82);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.coming-soon-close:hover,
.coming-soon-close:focus-visible {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.coming-soon-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(163, 230, 53, 0.08);
  border: 1px solid rgba(163, 230, 53, 0.14);
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.coming-soon-copy {
  color: rgba(240, 244, 242, 0.76);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 34ch;
}

.coming-soon-action {
  margin-top: 24px;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(236, 252, 203, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #a3e635 0%, #d9f99d 100%);
  color: #06100b;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(163, 230, 53, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coming-soon-action:hover,
.coming-soon-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(163, 230, 53, 0.22);
}

@media (max-width: 640px) {
  .coming-soon-dialog {
    padding: 24px 20px 20px;
    border-radius: 20px;
  }

  .coming-soon-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
}

body.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
  animation: none !important;
}

body.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  body.reveal-ready .scroll-reveal,
  body.reveal-ready .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
