/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  color: #151515;
  background: #fff;
  line-height: 1.6;
}

::selection { background: rgba(75,95,252,0.15); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --orange: #E8943A;
  --orange-light: #FF9E43;
  --blue: #4B5FFC;
  --purple: #7C5CFC;
  --dark: #151515;
  --gray: #353535;
  --gray-light: #6B7280;
  --bg-lavender: #EEF0FF;
  --bg-pink: #FFF0EC;
  --blue-light: #EEF0FF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(75,95,252,0.12) 0%, transparent 70%);
  --gradient-text: linear-gradient(135deg, #4B5FFC, #7C5CFC);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== EYEBROW ===== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 96px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo-orange { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 24px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }

.beta-badge {
  display: inline-block;
  background: rgba(75,95,252,0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(75,95,252,0.2);
}

.nav-cta { margin-left: auto; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 64px;
  gap: 48px;
  position: relative;
}
.hero-content {
  max-width: 640px;
  animation: fadeUp 0.6s ease forwards;
}

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

/* Hero announce pill */
.hero-announce {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(75,95,252,0.3);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(75,95,252,0.04);
  color: var(--blue);
  margin-bottom: 24px;
}
.hero-announce span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-headline {
  font-family: 'Lato', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
}
.badge-blue {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border-radius: 40px;
  padding: 4px 20px;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.15;
  vertical-align: middle;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.email-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.email-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--blue); }
.privacy-note { font-size: 13px; color: var(--gray-light); margin-bottom: 40px; }
.privacy-note a { text-decoration: underline; }

.client-logos { margin-top: 8px; text-align: center; }
.trusted-label { font-size: 13px; color: var(--gray-light); margin-bottom: 12px; display: block; }
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logos-row img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
}

/* ===== HERO VISUAL PANEL ===== */
.hero-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-visual-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-kpi-row {
  display: flex;
  gap: 10px;
}
.kpi-chip {
  flex: 1;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi-chip-blue { background: var(--blue-light); }
.kpi-chip-green { background: #ECFDF5; }
.kpi-chip-orange { background: #FFF7ED; }
.kpi-label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-light); }
.kpi-value { font-size: 20px; font-weight: 700; font-family: 'Lato', sans-serif; color: var(--dark); }
.kpi-chip-blue .kpi-value { color: var(--blue); }
.kpi-chip-green .kpi-value { color: #059669; }
.kpi-chip-orange .kpi-value { color: var(--orange); }

.hero-table { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.hero-table-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  background: #F9FAFB;
  border-bottom: 1px solid var(--border);
}
.hero-table-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.hero-table-row:last-child { border-bottom: none; }
.hero-table-row:hover { background: #F9FAFB; }
.hero-table-cell {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-table-header .hero-table-cell {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.fw-bold { font-weight: 700; color: var(--dark); }

.deal-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.da-blue { background: var(--blue); }
.da-purple { background: var(--purple); }
.da-orange { background: var(--orange); }

.stage-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.stage-close { background: #ECFDF5; color: #059669; }
.stage-engage { background: var(--blue-light); color: var(--blue); }
.stage-build { background: #FFF7ED; color: var(--orange); }

/* ===== BROWSER CHROME ===== */
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #F1F3F5;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.browser-chrome-dark {
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.browser-url-bar {
  flex: 1;
  background: rgba(0,0,0,0.06);
  border-radius: 6px;
  height: 22px;
  font-size: 10px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: 'Inter', monospace;
  overflow: hidden;
  white-space: nowrap;
}
.browser-url-dark {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

/* ===== STAT BAR ===== */
.stat-bar {
  background: var(--blue);
  padding: 14px 0;
}
.stat-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.stat-icon { font-size: 18px; flex-shrink: 0; }
.stat-bar p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.stat-source {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  text-decoration: underline;
  white-space: nowrap;
}

/* ===== FEATURES OVERVIEW ===== */
.features-overview {
  padding: 96px 0;
  background: #fff;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 8px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-cards { display: flex; flex-direction: column; gap: 20px; }
.feature-card {
  padding: 24px 28px;
  border: 1.5px solid var(--border);
  border-left: 4px solid transparent;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--blue);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.feature-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--gray); }

/* Features mockup right */
.features-mockup { display: flex; justify-content: center; align-items: flex-start; }
.mockup-asset-container {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mockup-asset-container img {
  width: 100%;
  height: auto;
  display: block;
}
.mockup-orange-container {
  background: linear-gradient(135deg, #FF9E43, #E8733A);
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mockup-ui { width: 100%; display: flex; flex-direction: column; gap: 20px; padding: 24px; }
.mockup-row { display: flex; align-items: center; gap: 16px; }
.mockup-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.35);
  border-radius: 8px;
}
.mockup-icon.circle { border-radius: 50%; }
.mockup-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.line {
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 6px;
}
.line.long { width: 100%; }
.line.medium { width: 70%; }
.line.short { width: 45%; }

/* ===== BUILD / ENGAGE / CLOSE ===== */
.bec-section { padding: 80px 0; }
.bec-section:nth-of-type(even) { background: #FAFAFA; }

.bec-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.bec-heading h2 {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
}
.bec-active { color: var(--dark); }
.bec-dim { color: #C9CACC; }
.bec-heading p { font-size: 16px; color: var(--gray); }

.bec-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.bec-mockup {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 300px;
  box-shadow: var(--shadow-md);
}
.bec-mockup img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
}
.bec-mockup-orange { background: linear-gradient(135deg, #FFD2A8, #FFBA7A); }
.bec-mockup-lavender { background: var(--bg-lavender); }
.bec-mockup-pink { background: var(--bg-pink); }

.bec-mockup-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Skeleton rows inside BEC mockups */
.mockup-skeleton-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.sk-row {
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.5);
}
.sk-row:nth-child(even) { background: rgba(255,255,255,0.25); }
.sk-row-full { width: 100%; }
.sk-row-wide { width: 85%; }
.sk-row-med { width: 65%; }
.sk-row-short { width: 40%; }

.bec-text h3 {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.bec-text p { font-size: 16px; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }

.bec-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.bec-col {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.bec-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.bec-col p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* Column icons */
.col-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.col-icon-blue { background: var(--blue-light); }
.col-icon-lavender { background: #E8E4FF; }
.col-icon-pink { background: var(--bg-pink); }

/* ===== TEAM SPORT ===== */
.team-sport { padding: 80px 0; background: #fff; }
.team-sport > .container > h2 {
  font-family: 'Lato', sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 8px auto 32px;
  line-height: 1.25;
}

/* Pipeline bar */
.pipeline-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.pipeline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F9FAFB;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  position: relative;
}
.pipeline-step-active {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}
.pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.pipeline-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
}

.team-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.team-tab {
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
}
.team-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.team-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.team-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #F7F8FF;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 48px;
}

.team-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Avatar circles — replaces stick figures */
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.avatar-blue { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.avatar-dark { background: linear-gradient(135deg, #353535, #151515); }

.proposal-label {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.team-panel-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.team-panel-features { display: flex; flex-direction: column; gap: 32px; }
.team-feature {
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}
.team-feature h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.team-feature p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: #FAFAFA; }
.faq-heading {
  font-family: 'Lato', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  margin-top: 8px;
}

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  border-radius: 8px;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 16px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  border-radius: 8px;
}
.faq-q:hover { color: var(--blue); background: rgba(75,95,252,0.03); }
.faq-q[aria-expanded="true"] { color: var(--blue); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gray-light);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
  padding-left: 16px;
  padding-right: 16px;
}
.faq-a p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== FEATURE BANDS ===== */
.feature-band {
  padding: 80px 0;
  background: #fff;
}
.feature-band.feature-band-alt {
  background: #FAFAFA;
}
.feature-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-band-text h2 {
  font-family: 'Lato', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 8px;
}
.feature-band-intro {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.feature-band-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-band-list li {
  font-size: 15px;
  color: var(--gray);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.feature-band-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  top: 1px;
  line-height: 20px;
  text-align: center;
}
.feature-band-mockup {
  border-radius: 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-band-mockup-orange { background: linear-gradient(135deg, #FFD2A8, #FFBA7A); }
.feature-band-mockup-lavender { background: var(--bg-lavender); }
.feature-band-mockup-pink { background: var(--bg-pink); }
.feature-band-mockup-content {
  flex: 1;
  padding: 24px;
  display: flex;
  align-items: center;
}
.feature-band-mockup .mockup-ui { padding: 0; }

/* ===== BLOG ===== */
.blog {
  padding: 96px 0;
  background: #F7F8FF;
}
.blog-heading {
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.25;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Blog card header strip */
.blog-card-header {
  height: 120px;
  margin: 0 -28px 20px;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  position: relative;
  flex-shrink: 0;
}
.blog-card-header-blue {
  background: linear-gradient(135deg, #4B5FFC, #7C5CFC);
}
.blog-card-header-purple {
  background: linear-gradient(135deg, #7C5CFC, #A855F7);
}
.blog-card-header-orange {
  background: linear-gradient(135deg, #E8943A, #FF9E43);
}
.blog-category {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.blog-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
.blog-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.blog-card .learn-more {
  align-self: flex-start;
  font-size: 14px;
  padding: 10px 20px;
}

/* ===== WAITLIST ===== */
.waitlist { padding: 80px 0; background: #0A0D1A; }
.waitlist-card {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(75,95,252,0.3), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,148,58,0.25), transparent 60%),
    #0A0D1A;
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
}
.waitlist-card h2 {
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.waitlist-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.waitlist-card .email-form { justify-content: center; }
.email-input-dark {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
}
.email-input-dark::placeholder { color: rgba(255,255,255,0.45); }
.email-input-dark:focus { border-color: rgba(75,95,252,0.6); }

/* ===== FOOTER ===== */
.footer { background: #0A0D1A; padding-top: 56px; }
.footer-inner {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-left { display: flex; flex-direction: column; gap: 16px; }

/* Footer logo handling */
.logo-img-footer { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.logo-text-footer { color: #fff; }
.logo-text-footer .logo-orange { color: var(--orange-light); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,1); }
.footer-right h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-right a { font-size: 14px; color: rgba(75,95,252,0.85); transition: color 0.2s; }
.footer-right a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ===== HERO TAGLINE & BETA ===== */
.hero-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.hero-beta {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero-headline { font-size: 44px; }
  .badge-blue { font-size: 38px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .features-mockup { display: none; }
  .bec-content { grid-template-columns: 1fr; }
  .team-panel { grid-template-columns: 1fr; }
  .bec-columns { grid-template-columns: 1fr; gap: 20px; }
  .feature-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-band.feature-band-alt .feature-band-mockup { order: 1; }
  .feature-band.feature-band-alt .feature-band-text { order: 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .waitlist-card h2 { font-size: 36px; }
  .pipeline-bar { gap: 4px; flex-wrap: wrap; justify-content: center; }
  .pipeline-connector { width: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .beta-badge { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .hero-headline { font-size: 34px; }
  .badge-blue { font-size: 30px; padding: 3px 14px; }
  .hero-inner { padding-top: 48px; padding-bottom: 40px; }
  .section-header h2 { font-size: 28px; }
  .bec-heading h2 { font-size: 30px; }
  .faq-heading { font-size: 30px; }
  .waitlist-card { padding: 48px 24px; }
  .waitlist-card h2 { font-size: 28px; }
  .team-sport > .container > h2 { font-size: 28px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .feature-band-text h2 { font-size: 26px; }
  .blog-heading { font-size: 26px; }
  .blog-grid { grid-template-columns: 1fr; }
  .pipeline-bar { display: none; }
}

@media (max-width: 480px) {
  .email-form { flex-direction: column; }
  .email-input { min-width: unset; }
  .btn { width: 100%; text-align: center; }
  .logos-row { gap: 16px; }
  .logos-row img { height: 20px; }
  .team-panel { padding: 28px 20px; }
  .waitlist-card .email-form { flex-direction: column; }
  .waitlist-card .email-input { max-width: 100%; }
  .hero-kpi-row { flex-direction: column; }
}
