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

/* ==========================================
   FONTS
========================================== */

@font-face {
  font-family: 'inter-regular';
  src: url('/assets/fonts/Inter-Tight/InterTight-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'inter-medium';
  src: url('/assets/fonts/Inter-Tight/InterTight-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'inter-semi-bold';
  src: url('/assets/fonts/Inter-Tight/InterTight-SemiBold.ttf');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'inter-bold';
  src: url('/assets/fonts/Inter-Tight/InterTight-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}

/* ==========================================
   DESIGN TOKENS
========================================== */

:root {
  /* Colors */
  --bg-base: #050607;
  --bg-card: #0c0c0c;
  --bg-card-alt: #0f0f0f;
  --bg-footer: rgba(10, 10, 10, 0.9);
  --border-subtle: #1e1e1e;
  --border-mid: #484848;
  --border-strong: #3a3a3a;

  --color-primary: #3ECF8E;
  --color-primary-dark: #19A974;
  --color-primary-glow: rgba(62, 207, 142, 0.15);

  --color-text: #ffffff;
  --color-muted: #8a8a8a;
  --color-para: #b0b0b0;
  --color-subheading: #3ECF8E;

  /* Typography scale */
  /* ── Typography scale — calibrated for 1920×1080 baseline ── */
  --fs-nav: clamp(12px, 0.73vw, 14px);
  /* 14px @ 1920 */
  --fs-btn: clamp(13px, 0.78vw, 15px);
  /* 15px @ 1920 */
  --fs-sm: clamp(13px, 0.83vw, 16px);
  /* 16px @ 1920 */
  --fs-para: clamp(14px, 0.88vw, 17px);
  /* 17px @ 1920 */
  --fs-body: clamp(14px, 0.94vw, 18px);
  /* 18px @ 1920 */
  --fs-sub: clamp(16px, 1.04vw, 20px);
  /* 20px @ 1920 */
  --fs-h4: clamp(15px, 1.15vw, 22px);
  /* 22px @ 1920 */
  --fs-h3: clamp(18px, 1.46vw, 28px);
  /* 28px @ 1920 */
  --fs-h2: clamp(26px, 2.19vw, 42px);
  /* 42px @ 1920 */
  --fs-h1: clamp(32px, 2.92vw, 56px);
  /* 56px @ 1920 */

  /* Spacing */
  --section-px: clamp(1.5rem, 8.8vw, 11rem);
  /* 168px @ 1920 */
  --section-py: clamp(2.8rem, 4vw, 4rem);
  /* 80px  @ 1920 */

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
}

/* ==========================================
   BODY & SCROLLBAR
========================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'inter-regular', system-ui, sans-serif;
  background-color: var(--bg-base);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* ==========================================
   GLOBAL AMBIENT GLOWS (body pseudo-elements)
========================================== */

body::before {
  content: "";
  position: fixed;
  top: 15%;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 200, 110, 0.18), transparent 70%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  animation: floatLeft 10s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  bottom: 8%;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 200, 110, 0.13), transparent 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  animation: floatRight 12s ease-in-out infinite;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(50px);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-50px);
  }
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1 {
  font-family: 'inter-medium', sans-serif;
  font-size: var(--fs-h1);
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h2 {
  font-family: 'inter-medium', sans-serif;
  font-size: var(--fs-h2);
  line-height: 1.15;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 6px;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

h3 {
  font-family: 'inter-medium', sans-serif;
  font-size: var(--fs-h3);
  line-height: 1.25;
  font-weight: 500;
  color: var(--color-text);
}

h4 {
  font-family: 'inter-medium', sans-serif;
  font-size: var(--fs-h4);
  line-height: 1.3;
  font-weight: 500;
  color: var(--color-text);
}

.sub-heading {
  font-family: 'inter-semi-bold', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-subheading);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.abstract-regular {
  font-family: 'inter-regular', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-para);
}

.abstract-medium {
  font-family: 'inter-medium', sans-serif;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-para);
}

.abstract-bold {
  font-family: 'inter-bold', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 700;
  color: var(--color-para);
}

.paragraph-regular {
  font-family: 'inter-regular', sans-serif;
  font-size: var(--fs-para);
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-para);
}
.text-gray{
  color: var(--color-para);
}
.button-text {
  font-family: 'inter-medium', sans-serif;
  font-size: var(--fs-btn);
  font-weight: 500;
}

.text-green {
  color: var(--color-primary) !important ;
}

.three-col-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}


.width-p{
  width: 300px;
}

.list-item {
  display: flex;
  align-items: center;
}

/* ==========================================
   LAYOUT UTILITIES
========================================== */

.section-padding {
  padding: var(--section-py) var(--section-px);
}

.center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--radius-md);
  font-size: var(--fs-btn);
  font-family: 'inter-medium', sans-serif;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #000;
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #000;
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--border-strong);
}

.btn-outline-primary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #555;
  color: var(--color-para);
}

.cta-btn {
  /* header cta — inherits outline style */
}

/* ==========================================
   HEADER & NAVIGATION
========================================== */

.header-padding{
  padding: 2rem 10rem
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 700px;
  /* floor so it never collapses on very short screens */
}

/* Smooth bottom fade into body */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(120px, 18vh, 240px);
  background: linear-gradient(to bottom, transparent 0%, var(--bg-base) 100%);
  z-index: 6;
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 67%);
  z-index: 5;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.logo {
  width: 140px;
  display: block;
}

/* Nav container */
.nav {
  display: flex;
  align-items: center;
}

.nav-border {
  border: 1px solid var(--border-mid);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  background: transparent;
  backdrop-filter: blur(12px);
}

.nav-border ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}

.nav-border ul li a {
  font-family: 'inter-regular', sans-serif;
  font-size: var(--fs-nav);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-border ul li a:hover {
  color: var(--color-para);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 270px;
  height: 100%;
  background: #0d0d0d;
  border-left: 1px solid var(--border-subtle);
  padding: 30px;
  transition: right 0.35s ease;
  z-index: 999;
}

.sidebar.active {
  right: 0;
}

.sidebar ul {
  list-style: none;
  margin-top: 48px;
}

.sidebar ul li {
  margin-bottom: 22px;
}

.sidebar a {
  color: var(--color-para);
  text-decoration: none;
  font-size: var(--fs-body);
  transition: color 0.2s;
}

.sidebar a:hover {
  color: var(--color-primary);
}

.close-btn {
  color: var(--color-para);
  font-size: 20px;
  cursor: pointer;
}

/* ==========================================
   HERO SECTION BLOBS & STARS
========================================== */

.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.scene-blur {
  position: absolute;
  inset: 0;
  filter: blur(55px) saturate(1.4);
  transform: scale(1.1);
}

/* BLOB A — Deep teal, anchored upper-left */
.blob-teal {
  position: absolute;
  width: 70%;
  height: 75%;
  top: -20%;
  left: -8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 60% 55%,
      #12e5c4 0%, #0cbb9c 16%, #077a65 38%, #033d3a 65%, transparent 100%);
  filter: blur(55px);
  mix-blend-mode: screen;
  transform-origin: 62% 55%;
  animation: orbit-teal 13s linear infinite;
  opacity: 1;
  will-change: transform, opacity;
}

/* BLOB B — Bright emerald, upper-right */
.blob-green {
  position: absolute;
  width: 58%;
  height: 62%;
  top: -12%;
  right: -4%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 45% 50%,
      #22ffb8 0%, #12e094 18%, #0aaa6e 44%, #055840 70%, transparent 100%);
  filter: blur(52px);
  mix-blend-mode: screen;
  transform-origin: 50% 50%;
  animation: orbit-green 13s linear infinite;
  opacity: 0.95;
  will-change: transform, opacity;
}

/* BLOB C — Coral/orange, lower-right */
.blob-coral {
  position: absolute;
  width: 56%;
  height: 55%;
  bottom: -12%;
  right: 6%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 42% 38%,
      #ff7a5a 0%, #f04828 20%, #b02810 50%, #600808 74%, transparent 100%);
  filter: blur(56px);
  mix-blend-mode: screen;
  transform-origin: 50% 50%;
  animation: orbit-coral 13s linear infinite;
  opacity: 0.88;
  will-change: transform, opacity;
}

/* BLOB D — Warm peach highlight (center convergence) */
.blob-peach {
  position: absolute;
  width: 40%;
  height: 38%;
  top: 26%;
  left: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
      #ffe8cc 0%, #f0b888 28%, #c07048 58%, transparent 100%);
  filter: blur(48px);
  mix-blend-mode: screen;
  transform-origin: 50% 50%;
  animation: orbit-peach 13s linear infinite;
  opacity: 0.45;
  will-change: transform, opacity;
}

/* VOID */
.void {
  position: absolute;
  width: 36%;
  height: 34%;
  top: 18%;
  left: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
      #000c16 0%, #001520 55%, transparent 100%);
  filter: blur(36px);
  z-index: 10;
  animation: void-drift 13s linear infinite;
  will-change: transform, opacity;
}

/* STARS */
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.2;
    transform: scale(1);
  }

  to {
    opacity: 0.9;
    transform: scale(1.5);
  }
}

/* Blob keyframes */
@keyframes orbit-teal {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.95;
  }

  25% {
    transform: translate(10px, -15px) rotate(45deg);
    opacity: 0.80;
  }

  50% {
    transform: translate(0px, 0px) rotate(90deg);
    opacity: 0.90;
  }

  75% {
    transform: translate(-12px, 18px) rotate(180deg);
    opacity: 0.82;
  }

  100% {
    transform: translate(0px, 0px) rotate(360deg);
    opacity: 0.95;
  }
}

@keyframes orbit-green {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.92;
  }

  25% {
    transform: translate(-50px, 80px) rotate(90deg);
    opacity: 0.80;
  }

  50% {
    transform: translate(-130px, 80px) rotate(180deg);
    opacity: 0.88;
  }

  75% {
    transform: translate(-60px, -20px) rotate(270deg);
    opacity: 0.85;
  }

  100% {
    transform: translate(0px, 0px) rotate(360deg);
    opacity: 0.92;
  }
}

@keyframes orbit-coral {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.90;
  }

  25% {
    transform: translate(-100px, 0px) rotate(90deg);
    opacity: 0.82;
  }

  50% {
    transform: translate(-120px, -80px) rotate(180deg);
    opacity: 0.85;
  }

  75% {
    transform: translate(10px, -50px) rotate(270deg);
    opacity: 0.88;
  }

  100% {
    transform: translate(0px, 0px) rotate(360deg);
    opacity: 0.90;
  }
}

@keyframes orbit-peach {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.50;
  }

  25% {
    transform: translate(-30px, 40px) scale(1.1);
    opacity: 0.45;
  }

  50% {
    transform: translate(-70px, 20px) scale(0.95);
    opacity: 0.55;
  }

  75% {
    transform: translate(-40px, -30px) scale(1.05);
    opacity: 0.48;
  }

  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.50;
  }
}

@keyframes void-drift {
  0% {
    transform: translate(0px, 0px);
    opacity: 0.90;
  }

  25% {
    transform: translate(-15px, 20px);
    opacity: 0.80;
  }

  50% {
    transform: translate(-30px, 10px);
    opacity: 0.85;
  }

  75% {
    transform: translate(-15px, -15px);
    opacity: 0.80;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 0.90;
  }
}

/* ==========================================
   HERO CONTENT
========================================== */

/*
  Flex-based vertical centering so it scales cleanly from 1920px down.
  padding-top offsets the fixed header (~70px).
  The inner wrapper constrains content width.
*/
.hero-content {
  position: absolute;
  inset: 0;
  /* stretch to full hero */
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: clamp(200px, 6.5vh, 90px);
  /* pushes below header gracefully */
  padding-bottom: clamp(20px, 4vh, 60px);
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

/* Width-constrain children individually */
.hero-content>* {
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(30px, 2.92vw, 56px);
  /* 56px @ 1920 */
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(12px, 1.2vh, 20px);
  max-width: min(820px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-content .abstract-regular {
  font-size: clamp(15px, 1.04vw, 20px);
  /* 20px @ 1920 */
  color: rgba(176, 176, 176, 0.9);
  max-width: min(520px, 90%);
  margin: 0 auto clamp(20px, 2.4vh, 36px);
  line-height: 1.65;
}

/* CTA buttons row */
.hero-content .d-flex {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(24px, 3.2vh, 48px);
}

/* ==========================================
   PROMPT BOX  (hero chat input)
========================================== */

.prompt-box {
  background: rgba(5, 6, 7, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid #484848;
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-md);
  color: #fff;
  position: relative;
  z-index: 20;
  margin-top: 18px;
  /* padding: 18px 18px 0; */
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.placeholder-border {
  border-top: 0.5px solid #484848;
}

.placeholder-text {
  position: absolute;
  top: 20px;
  left: 22px;
  color: #fff;
  font-size: var(--fs-btn);
  pointer-events: none;
  display: flex;
  align-items: center;
  font-family: 'inter-regular', sans-serif;
}

.cursor {
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.prompt-input {
  width: 100%;
  min-height: 100px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: var(--fs-btn);
  font-family: 'inter-regular', sans-serif;
  resize: none;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.prompt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 14px;
  margin-top: 4px;
}

.options {
  display: flex;
  align-items: center;
  gap: 0;
}

.options span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5a6966;
  font-size: var(--fs-nav);
  font-family: 'inter-regular', sans-serif;
  padding: 0 14px;
  position: relative;
}

.options span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(62, 207, 142, 0.2);
}

.options span img {
  width: 14px;
  opacity: 0.6;
}

.send-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.send-btn:hover {
  background: var(--color-primary-dark);
}

.send-btn img {
  width: 15px;
}

/* ==========================================
   BRAND LOGOS (MARQUEE)
========================================== */

.brand-logos {
  overflow: hidden;
  position: relative;
  width: 60%;
  margin: 0 auto;
}

.brand-logos::before,
.brand-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-base) 0%, transparent 100%);
}

.brand-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-base) 0%, transparent 100%);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 44px;
  align-items: center;
  animation: scroll 28s linear infinite;
}

.marquee-content img {
  height: 22px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.marquee-content img:hover {
  opacity: 0.9;
  transform: scale(1.08);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   CARDS
========================================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--color-text);
  height: 100%;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: var(--border-mid);
}

.card h3 {
  margin-bottom: 12px;
}

.headles-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--color-text);
  height: 100%;
  overflow: hidden;
  transition: border-color 0.3s;
}

.headles-card:hover {
  border-color: var(--border-mid);
}

.headless-padding {
  padding: 28px 28px 12px;
}

/* Fullstack card — background image */
.fullstack-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  min-height: 260px;
}

.fullstack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/full-stack.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 327px;
  z-index: 1;
  opacity: 0.65;
}

.fullstack-card .row {
  position: relative;
  z-index: 2;
}

/* Agentic card — background image */
.agentic-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  min-height: 220px;
}

.agentic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/ai.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 210px;
  z-index: 1;
  opacity: 0.6;
}

.agentic-card .row {
  position: relative;
  z-index: 2;
}

.Integration-logo-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.logo-box {
  border: 1px solid #484848;
  background: transparent;
  padding: 5px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.logo-box img {
  max-height: 30px;
  max-width: 100%;
  object-fit: contain;
}

/* Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Card icons */
.card-icon-1,
.card-icon-2,
.card-icon-3,
.card-icon-4 {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* ==========================================
   PARAGRAPH / INTRO TEXT
========================================== */

.center.paragraph-regular {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--color-para);
}

/* ==========================================
   TABS (Built for Scale)
========================================== */

.custom-tabs2 {
  text-align: center;
}

.tab-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  background: transparent;
  color: var(--color-para);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  font-size: var(--fs-nav);
  font-family: 'inter-regular', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.badge:hover {
  border-color: var(--border-strong);
  color: var(--color-text);
}

.badge.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000;
  font-family: 'inter-medium', sans-serif;
}

/* Tab content text */
.tab-content {
  min-height: 60px;
  margin-bottom: 24px;
}

.tab-content .content {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  text-align: left;
}

.tab-content .content.active {
  display: flex;
}

.tab-content p {
  color: var(--color-para);
  font-size: var(--fs-sm);
  font-family: 'inter-regular', sans-serif;
  margin: 4px 0;
}

/* Tab image */
.tab-image img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.tab-image .abstract-regular {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-top: 12px;
}

/* ==========================================
   SLIDER SECTION (Built for Enterprise)
========================================== */

.slider-section {
  height: 400vh;
}

.slider-wrapper {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide {
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.slide h4 {
  font-family: 'inter-semi-bold', sans-serif;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 10px;
}

.slide-img {
  width: 100%;
  display: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.slide-img.active {
  display: block;
}

/* Slider navigation */
.slider-nav {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.slider-item {
  font-family: 'inter-regular', sans-serif;
  font-size: var(--fs-nav);
  color: #4a4a4a;
  margin: 16px 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  padding-right: 44px;
}

.slider-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: #333;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.slider-item.active {
  color: var(--color-primary);
  font-family: 'inter-medium', sans-serif;
}

.slider-item.active::after {
  width: 40px;
  background: var(--color-primary);
}
.tab-main-desc {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-bottom: 16px;
  padding: 0 1rem;
}
/* ==========================================
   ACCORDION (Use Cases)
========================================== */

.accordion-container {}

.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  transition: all 0.2s;
}

.accordion-header h3 {
  font-size: var(--fs-h4);
  color: var(--color-para);
  transition: color 0.2s;
}

.accordion-item.active .accordion-header h3 {
  color: var(--color-text);
}

.icon {
  font-size: 22px;
  color: var(--color-subheading);
  line-height: 1;
  transition: color 0.2s;
}

.accordion-item.active .icon {
  color: var(--color-text);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 18px;
  color: var(--color-para);
}

.accordion-item.active .accordion-body {
  max-height: 380px;
  padding: 4px 18px 18px;
}

.label {
  font-family: 'inter-semi-bold', sans-serif;
  font-size: var(--fs-nav);
  color: var(--color-subheading);
  letter-spacing: 0.08em;
  margin-top: 14px;
  margin-bottom: 4px;
}

/* ==========================================
   FAQ ACCORDION
========================================== */

.faq-accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
}

.faq-accordion .faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-accordion .faq-item:last-child {
  border-bottom: none;
}

.faq-accordion .faq-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-accordion .faq-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-accordion .arrow {
  font-size: 18px;
  color: var(--color-subheading);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion h4 {
  margin: 0;
  font-size: var(--fs-btn);
  color: var(--color-para);
  transition: color 0.3s;
  font-family: 'inter-regular', sans-serif;
  font-weight: 400;
}

.faq-accordion .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  color: var(--color-para);
}

.faq-accordion .faq-item.active .faq-body {
  max-height: 220px;
  /* padding: 0 20px 18px 52px; */
}

.faq-accordion .faq-item.active .faq-header h4,
.faq-accordion .faq-item.active .arrow {
  color: var(--color-text);
}

.faq-accordion .faq-item.active .arrow {
  transform: rotate(45deg);
}

/* ==========================================
   MARKETPLACE SECTION
========================================== */

section ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-para);
  font-size: var(--fs-body);
  font-family: 'inter-regular', sans-serif;
  padding: 5px 0;
}

section ul li img {
  width: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ==========================================
   COMPARISON TABLE (hidden but keeping styles)
========================================== */

.comparison-table {
  width: 100%;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.table-row>div {
  padding: 16px;
  border-right: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  color: var(--color-para);
  font-size: var(--fs-nav);
}

.table-row>div:last-child {
  border-right: none;
}

.table-header {
  background: #0f0f0f;
  font-weight: 600;
}

.table-header div {
  color: var(--color-text);
}

.icon-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  margin-right: 8px;
  font-size: 11px;
  border: 1px solid var(--color-primary);
}

.check {
  background: rgba(62, 207, 142, 0.12);
  color: var(--color-primary);
}

.cross {
  background: rgba(255, 80, 80, 0.12);
  color: #ff4d4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  margin-right: 8px;
  font-size: 11px;
  border: 1px solid #ff4d4d;
}

.positive {
  color: #b8ffd8;
}

.negative {
  color: #ffb3b3;
}

/* ==========================================
   FOOTER
========================================== */

.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  color: var(--color-text);
  position: relative;
}

.border-t {
  border-top: 1px solid var(--border-mid);
  padding-top: 4px;
}

.footer ul li {
  font-family: 'inter-regular', sans-serif;
  font-size: var(--fs-para);
  font-weight: 400;
  color: var(--color-para);
  padding-bottom: 10px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer ul li:hover {
  color: var(--color-text);
}

.footer .abstract-regular {
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

.stratesfy-logo {
  width: 120px;
  opacity: 0.7;
  margin-top: 4px;
}

/* Footer big logo */
.logo-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.focus {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition: background 0.15s ease;
}

.octopus-logo {
  position: relative;
  z-index: 1;
  display: block;
  opacity: 0.35;
}

/* Social icons */
.github {
  width: 20px;
}

.facebook {
  width: 20px;
}

.instagram {
  width: 18px;
}

.youtube {
  width: 22px;
}

.linkedin {
  width: 20px;
}

.footer ul.d-flex li img {
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer ul.d-flex li:hover img {
  opacity: 1;
}

/* ==========================================
   HEADER NAV LINK ADDITIONAL
========================================== */

.header a {
  text-decoration: none;
}

/* ==========================================
   GLOW DIVIDERS (dark-to-transparent section transitions)
========================================== */

/* Subtle horizontal rule between sections */
section+section,
section+div[class*="section-padding"],
div[class*="section-padding"]+section {
  position: relative;
}

/* ==========================================
   RESPONSIVE @MEDIA QUERIES
========================================== */

@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section-padding {
    padding: 3.5rem clamp(1rem, 5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .brand-logos {
    width: 90%;
  }

  .center {
    padding: 0 1rem;
  }
}