/* ===================== CSS VARIABLES ===================== */
:root {
  --background:           #fbfcfe;
  --foreground:           #0b1220;
  --border:               rgba(0,0,0,0.08);
  --primary:              #2563eb;
  --primary-foreground:   #ffffff;
  --secondary:            #f3f7fb;
  --secondary-foreground: #4b5563;
  --muted:                #f1f5f9;
  --muted-foreground:     #94a3b8;
  --accent:               #7c3aed;
  --accent-foreground:    #ffffff;
  --destructive:          #ef4444;
  --warning:              #f59e0b;
  --card:                 #ffffff;
  --card-foreground:      #0b1220;
  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  8px;
  --radius-xl:  12px;
}

/* ===================== RESET ===================== */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar { display: none; }

/* ===================== PAGE ===================== */
body { background: var(--background); color: var(--foreground); }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Top radial glow on the page */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, var(--muted) 0%, rgba(255,255,255,0) 38%),
    linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 18%);
  pointer-events: none;
  z-index: 0;
}

/* ===================== CONTAINER ===================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 0 0 116px;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.34) 100%);
}

.nav-links li::before {
  content: none !important;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title {
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--foreground);
}

.section-copy {
  margin: 0 auto;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary-foreground);
}

SURFACE CARD
.surface-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 40px rgba(15,23,36,0.06);
  backdrop-filter: blur(6px);
}

/* ===== NEW NAVBAR STYLE (FROM ANOTHER VERSION) ===== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f6f6f6;
  border-bottom: 1px solid #d4d7dc;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 59px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;   /* 🔥 increase spacing (was smaller) */
  margin-left: 40px;
}
.nav-links li {
  cursor: pointer;
  padding: 8px 6px;  /* 🔥 improves hover area */

  font-size: 14px;
  color: #1f2328;
  position: relative;
}

.nav-links li:hover {
  color: #367eed;
}




/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);

  width: 520px;              /* 🔥 wide layout */
  background: #ffffff;

  border-radius: 12px;
  border: 0px solid transparent;

  padding: 0;
  max-height: 0;
  overflow: hidden;

  display: block;
 
  gap: 30px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);

  transition: max-height 0.3s ease, padding 0.25s ease;
}


/* HEADER */
.dropdown-header {
  text-align: center;
  margin-bottom: 14px;
}

/* TITLE */
.dropdown-title {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.08em;
}

/* FULL WIDTH LINE */
.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin-top: 8px;
}

/* COLUMNS */
.dropdown-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* SECTION */
.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-title {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.08em;
}

.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 8px;
}
.nav-item {
  position: relative;
}

/* .dropdown {
  left: 50%;
  transform: translateX(-50%);
} */

#ebookBtn {
  cursor: pointer;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 500;
  color: #111827;

  padding: 8px 10px;
  border-radius: 8px;

  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background: #f3f4f6;
  color: #2563eb;
}

/* BUTTONS */
.header-actions {
  display: flex;
  gap: 10px;
}

.header-actions .btn {
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 30px;
}

/* PROFILE MENU FIX */
.profile-dropdown {
  top: 50px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

/* SHIMMER on primary */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: 0.55s;
}
.btn-primary:hover::before { left: 100%; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(37,99,235,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.36);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--muted); color: var(--foreground); }

.btn-outline {
  background: rgba(255,255,255,0.65);
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-hero {
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* ===================== PROFILE ===================== */
.profile-menu { position: relative; }

.profile-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.28);
}

.profile-dropdown {
  position: absolute;
  top: 48px; right: 0;
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px rgba(15,23,42,0.14);
  border: 1px solid var(--border);
  width: 220px;
  padding: 12px;
  display: none;
  z-index: 999;
}
.profile-menu:hover .profile-dropdown { display: block; }

.profile-info { font-size: 13px; padding: 4px 0; }
.profile-info strong { color: var(--foreground); font-size: 14px; }
.profile-info p { font-size: 12px; color: var(--muted-foreground); margin-top: 2px; }
.profile-divider { height: 1px; background: var(--border); margin: 10px 0; }

.profile-item {
  padding: 9px 8px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 8px;
  color: var(--secondary-foreground);
  transition: 0.18s;
}
.profile-item:hover { background: var(--muted); color: var(--primary); }
.hero-section-btn{
    border-radius: 10px;
}

/* ===================== HERO ===================== */
.hero-section {
  padding-top: 72px; /* offset fixed navbar */
  padding-bottom: 116px;
  text-align: center;
  position: relative;
  
}

/* BADGE */
.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  color: var(--secondary-foreground);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  white-space: nowrap;
  cursor: pointer;
}

.badge-tag {
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-title {
  margin: 0 auto 24px;
  max-width: 880px;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--foreground);
}

.hero-subtitle {
  margin: 0 auto 36px;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--secondary-foreground);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
}

/* ===== HERO ANIMATION (NEW STYLE) ===== */

.homePageHeroImageContainer {
  max-height: 450px;
  overflow: hidden;

  /* 🔥 fade mask effect */
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 12%
  );
}

.homePageHeroImage {
  width: 100%;
  max-width: 1242px;
  height: auto;
  max-height: 640px;
  aspect-ratio: 1.94;

  display: block;
  margin: 0 auto;
}

.homePageHeroImageContainer {
  margin-top: 40px;
  
}



.homePageHeroImage {
  animation: floatHero 6s ease-in-out infinite;
}
/* ===== HORIZONTAL GRID LINES ===== */
/* .section {
   border-bottom: 1.5px solid #cfd4dc;
} */
/* CENTER DIVIDER */
/* .statsig-grid {
  position: relative;
} */

/* .statsig-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #cfd4dc;
} */

/* ===== PAGE GRID FRAME ===== */
.page-frame {
  max-width: 1240px;
  margin: 0 auto;
border-left: 1.5px solid #cfd4dc;
  border-right: 1.5px solid #cfd4dc;
}

@keyframes floatHero {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ===================== SCROLL ANIMATIONS ===================== */
/* Hero fades in via CSS — no JS needed */
.hero-section .fade-up {
  animation: heroFadeUp 0.75s cubic-bezier(.16,1,.3,1) both;
}
.hero-section .fade-up:nth-child(1) { animation-delay: 0.08s; }
.hero-section .fade-up:nth-child(2) { animation-delay: 0.20s; }
.hero-section .fade-up:nth-child(3) { animation-delay: 0.33s; }
.hero-section .fade-up:nth-child(4) { animation-delay: 0.46s; }
.hero-section .fade-up:nth-child(5) { animation-delay: 0.60s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* All other sections — JS IntersectionObserver adds .active */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 0.8s cubic-bezier(.16,1,.3,1),
    transform 0.8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== STACK SECTION ===================== */
.stack-section { padding-top: 8px; }

.stack-layout {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
   gap: 220px;
  align-items: center;
}



.stack-copy-col { padding-left: 12px; }

.stack-title {
  margin: 0 0 24px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--foreground);
}

.stack-description {
  margin: 0 0 32px;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--secondary-foreground);
}

/* SCROLLING TRACK WRAPPER */
.stack-track-wrap {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* horizontal center line */
.stack-track-wrap::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(148,163,184,0.38);
}

/* fade edges */
.stack-track-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--background) 10%, transparent 12%, transparent 88%);
  pointer-events: none;
  z-index: 2;
}

.stack-cards-row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
}

/* OLD SCROLLING ANIMATION — UNCHANGED */
.stack-track {
  display: flex;
  gap: 20px;
  animation: stackMove 24s linear infinite;
  width: max-content;
}

@keyframes floatY {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes stackMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stack-card {
  width: 150px;
  height: 106px;
  flex: 0 0 auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-foreground);
  background: linear-gradient(
    135deg,
    #2563eb 0%,
    #4f46e5 50%,
    #7c3aed 100%
  );
  box-shadow: 0 18px 34px rgba(37,99,235,0.16);
  white-space: nowrap;
  animation: floatY 6s ease-in-out infinite;
    box-shadow:
    0 20px 40px rgba(37,99,235,0.18),
    0 4px 10px rgba(0,0,0,0.05);
}

.stack-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 30px 60px rgba(37,99,235,0.25);
}

.stack-card:nth-child(odd) {
  transform: scale(0.96);
  opacity: 0.9;
}

.stack-card:nth-child(even) {
  transform: scale(1);
}

.stack-card-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
}

/* ===================== PRODUCT SHOWCASE ===================== */
.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 200px;
  align-items: center;
}


/* grid bg inside visual */
.insight-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.75;
  border-radius: 22px;
}

.insight-glow {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--primary) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.08;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* OLD FLOATING DASHBOARD CARDS */
.dashboard-preview {
  width: 420px;
  height: 340px;
  position: relative;
  z-index: 2;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  inset: -40px; /* expand a bit for padding look */
  background: var(--background); /* same as page bg */
  border-radius: 24px;
  z-index: -1;
}


.card {
  position: absolute;
  background: rgba(255,255,255,0.94);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(15,23,42,0.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.card h4 {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.03em;
}

/* BIG CARD */
.big {
  width: 240px; height: 150px;
  top: 95px; left: 90px;
  z-index: 2;
  animation: floatBig 6s ease-in-out infinite;
}

.big::after {
  content: "";
  position: absolute;
  width: 80%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  top: 38px; left: 18px;
  border-radius: 2px;
}

/* SMALL CARDS */
.small { width: 130px; height: 84px; z-index: 3; }

.one::after, .two::after {
  content: "";
  position: absolute;
  width: 70%; height: 3px;
  background: linear-gradient(90deg, var(--primary), #06B6D4);
  top: 18px; left: 14px;
  border-radius: 2px;
}

.one  { top: -18px;    left: -18px;  animation: floatSmall 5s ease-in-out infinite; }
.two  { bottom: -18px; left: -18px;  animation: floatSmall 5s ease-in-out infinite 0.5s; }
.three{ top: -18px;    right: -18px; animation: floatSmall 5s ease-in-out infinite 1s; }
.four { bottom: -18px; right: -18px; animation: floatSmall 5s ease-in-out infinite 1.5s; }

/* OLD FLOAT KEYFRAMES — UNTOUCHED */
@keyframes floatBig {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes floatSmall {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.insight-copy { max-width: 470px; }

.insight-title {
  margin: 0 0 24px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--foreground);
}

.insight-description {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--secondary-foreground);
}

/* ===================== FEATURES / TOOLS ===================== */
/* ===== GRID ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.tool-card {
  position: relative;
  overflow: hidden;

  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;

  padding: 26px 24px;
  min-height: 150px;

  backdrop-filter: blur(10px);

  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}

/* ===== TOP ACCENT ===== */
.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    #2563eb,
    #7c3aed
  );

  border-top-left-radius: 18px;
  border-top-right-radius: 18px;

  opacity: 0.6;
}

/* ===== HEADER ===== */
.tool-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}



.tool-card:hover .tool-icon {
  transform: scale(1.1);
}

/* ICON */
.tool-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(37,99,235,0.08);
  color: #2563eb;

  font-size: 16px;
  transition: all 0.3s ease;
}

/* TITLE */
.tool-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* TEXT */
.tool-card-copy {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* ===== HOVER ===== */
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 20px rgba(0,0,0,0.05),
    0 25px 50px rgba(0,0,0,0.08);

  border-color: rgba(37,99,235,0.2);
}

/* ICON HOVER */
.tool-card:hover .tool-icon {
  background: rgba(37,99,235,0.15);
}


/* ===================== TESTIMONIALS ===================== */

.testimonial-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  z-index: 2;
}

/* REMOVE GRID BEHIND */
.testimonial-container::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: var(--background);
  z-index: -1;
  border-radius: 24px;
}

/* SLIDER */
.testimonial-slider {
  display: flex;
  gap: 28px;
  width: max-content;

  animation: scrollLoop 30s linear infinite;
}

.testimonial-inner {
  max-width: 1350px;   /* 👈 control width here */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* AUTO SCROLL */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.testimonial-container:hover .testimonial-slider {
  animation-play-state: paused;
}

/* CARDS */
.solution-card {
  min-width: 320px;
  max-width: 320px;
  min-height: 200px;

  padding: 28px 24px;
  border-radius: 16px;

  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);

  backdrop-filter: blur(8px);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  overflow: hidden;

  transition: all 0.35s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}

/* GLOW EFFECT */
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37,99,235,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* LEFT ACCENT */
.solution-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: height 0.35s ease;
  border-radius: 0 2px 2px 0;
}

/* HOVER */
.solution-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 60px rgba(15,23,42,0.14);
  border-color: rgba(37,99,235,0.25);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover::after {
  height: 100%;
}

/* TEXT */
.solution-copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary-foreground);
}

.solution-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--foreground);
}

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.pricing-card {
  min-height: 360px;
  padding: 38px 30px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.32s ease;
  cursor: pointer;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(37,99,235,0.13);
  border-color: rgba(37,99,235,0.26);
}

.pricing-card.featured {
  border-color: rgba(124,58,237,0.34);
  box-shadow: 0 18px 44px rgba(124,58,237,0.12);
}

.pricing-plan {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--foreground);
}

.pricing-price {
  margin-bottom: 8px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--foreground);
}

.pricing-period {
  margin-bottom: 28px;
  font-size: 16px;
  color: var(--secondary-foreground);
}

.pricing-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-feature {
  font-size: 16px;
  line-height: 1.45;
  color: var(--secondary-foreground);
}

.pricing-cta {
  margin-top: auto;
  min-width: 148px;
  height: 44px;
}

/* ===================== BLOG ===================== */
/* OLD SUPABASE SLIDER */
/* .blogs-wrapper { overflow: hidden; }

.blogs-slider {
  display: flex;
  gap: 22px;
  transition: 0.5s ease;
} */

/* BLOG = TESTIMONIAL STYLE */

.vocContainer {
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 15%,
    rgba(0,0,0,1) 85%,
    rgba(0,0,0,0) 100%);
}

.vocInnerContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-height: 600px;
}

.vocColumn {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.vocColumnScroller {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.vocColumnScroller.reverse {
  animation: scrollReverse 20s linear infinite;
}

@keyframes scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollReverse {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}


.blog-card {
   min-width: 360px;   /* 🔥 increase */
  max-width: 360px;
   min-height: 200px;      /* 🔥 reduced */
  padding: 22px 20px;     /* 🔥 tighter */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: 0.32s ease;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 40px rgba(15,23,36,0.06);
  backdrop-filter: blur(6px);
}

.blog-card h4 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--foreground);
}

.blog-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-foreground);
}

.blog-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-foreground);
}

.blog-meta span:first-child {
  font-weight: 600;
  color: var(--accent);
}

.blog-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: 0.35s;
  border-radius: 2px;
}

.blog-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 20px 48px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.22);
}
.blog-card:hover::after { width: 100%; }

.blog-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===================== FOOTER ===================== */
.footer-section {
  position: relative;
  padding: 0;
  background: var(--foreground); /* DARK FULL WIDTH */
  z-index: 2;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--foreground); /* cover grid */
  z-index: -1;
}

.footer-wrap {
  border-radius: 0;
  overflow: hidden;
}

/* FULL WIDTH CTA */
.footer-cta {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  padding: 88px 0;
  border-radius: 0;
}

/* Optional: remove container side gap feeling */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-cta::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px; right: -80px;
}

.footer-cta-title {
  margin: 0 auto 18px;
  max-width: 940px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--foreground);
  position: relative;
  z-index: 1;
}

.footer-cta-copy {
  margin: 0 auto 28px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(11,18,32,0.72);
  position: relative;
  z-index: 1;
}

.footer-cta-button {
  background: rgba(255,255,255,0.16);
  color: var(--primary-foreground);
  border: 1px solid rgba(255,255,255,0.28);
  font-weight: 600;
  height: 46px;
  padding: 0 28px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-size: 15px;
  transition: 0.22s;
}
.footer-cta-button:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-2px);
}

.footer-main {
  background: var(--foreground);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(120px, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-brand-name {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--background);
}

.footer-brand-copy {
  margin: 0;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246,248,251,0.68);
}

.footer-col-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(246,248,251,0.92);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(246,248,251,0.7);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.18s;
}
.footer-link:hover { color: rgba(246,248,251,0.95); }

.footer-bottom {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-size: 15px;
  color: rgba(246,248,251,0.54);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .stack-layout  { grid-template-columns: 1fr; }
  .insight-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .nav-links   { display: none; }
  .hero-title  { font-size: 48px; }
  .stack-title { font-size: 40px; }
  .section-title { font-size: 40px; }
  .insight-title { font-size: 36px; }
  .tools-grid  { grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 48px 28px; }
  .footer-cta  { padding: 60px 24px; }
  .footer-cta-title { font-size: 36px; }
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(148,163,184,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.15) 1px, transparent 1px);

  background-size: 70px 70px;
}