/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0f1729;
  --navy-light: #1a2340;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-dark: #2563eb;
  --cyan: #22d3ee;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --red: #ef4444;
  --yellow: #eab308;
  --green: #22c55e;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1440px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: var(--gray-400);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header--scrolled {
  background: rgba(15, 23, 41, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 36px;
}

.header__logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__actions .btn {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* Mobile menu toggle */
.header__menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.header__menu-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--white);
  margin: 4px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 32px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__legal {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.hero__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.hero__legal a:hover {
  color: #fff;
}

.hero__proof {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.hero__proof-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.hero__proof-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== PROBLEM SECTION ===== */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem__levels {
  background: var(--navy-light);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.problem__level {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.problem__level:last-child {
  border-bottom: none;
}

.problem__level-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.problem__level--stuck .problem__level-num {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.problem__level--target .problem__level-num {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue);
}

.problem__level--dim .problem__level-num {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-500);
}

.problem__level-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

.problem__level--dim .problem__level-name {
  color: var(--gray-500);
}

.problem__level-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-left: auto;
}

.problem__level-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: auto;
  white-space: nowrap;
}

.problem__level--stuck .problem__level-tag {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.problem__level--target .problem__level-tag {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-light);
}

/* ===== INSIGHT / HOW IT WORKS ===== */
.insight__card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  padding: 56px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.insight__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.insight__card-quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}

.insight__card-text {
  font-size: 1.0625rem;
  color: var(--gray-400);
  max-width: 100%;
  line-height: 1.7;
}

/* ===== AGENTS SECTION ===== */
.agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.agent-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.agent-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.agent-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.agent-card__icon--comms { background: rgba(59, 130, 246, 0.1); }
.agent-card__icon--financial { background: rgba(234, 179, 8, 0.1); }
.agent-card__icon--technical { background: rgba(34, 211, 238, 0.1); }
.agent-card__icon--legal { background: rgba(168, 85, 247, 0.1); }
.agent-card__icon--desktop { background: rgba(34, 197, 94, 0.1); }
.agent-card__icon--gong { background: rgba(239, 68, 68, 0.1); }

.agent-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.agent-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.agent-card__monitors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.agent-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--gray-50);
  border-radius: 6px;
  color: var(--gray-600);
}

/* ===== RESPONSE MODES ===== */
.response__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.response-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.response-card__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.response-card__indicator--red { background: var(--red); box-shadow: 0 0 16px rgba(239, 68, 68, 0.4); }
.response-card__indicator--yellow { background: var(--yellow); box-shadow: 0 0 16px rgba(234, 179, 8, 0.4); }
.response-card__indicator--green { background: var(--green); box-shadow: 0 0 16px rgba(34, 197, 94, 0.4); }

.response-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.response-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== AHA MOMENT / DEMO ===== */
.demo__examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.demo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.demo-card__channel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--gray-50);
  border-radius: 6px;
}

.demo-card__message {
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}

.demo-card__req {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  overflow-x: auto;
  margin-top: 56px;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--gray-200);
  color: var(--navy);
}

.comparison th:last-child {
  color: var(--blue);
}

.comparison td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.comparison tr:hover td {
  background: var(--gray-50);
}

.comparison .check {
  color: var(--green);
  font-weight: 700;
}

.comparison .cross {
  color: var(--gray-300);
}

.comparison .partial {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 600;
}

.comparison td:last-child {
  font-weight: 600;
}

/* ===== DIFFERENTIATORS ===== */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.diff-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s;
}

.diff-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.diff-card__number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}

.section--dark .diff-card__number {
  background: rgba(59, 130, 246, 0.15);
}

.diff-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.diff-card__desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.1);
}

.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.12);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-card__period {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.pricing-card__features {
  margin-bottom: 32px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-card__feature::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section__text {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  position: relative;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.cta-section__legal {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.cta-section__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.cta-section__legal a:hover {
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8125rem;
  color: var(--gray-600);
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--gray-400);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vision__quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  border-left: 4px solid var(--blue);
  padding-left: 24px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FRAMEWORK LOGOS ===== */
.frameworks__logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.framework-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  min-width: 120px;
}

.framework-badge__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}

.framework-badge__type {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== ARCHITECTURE DIAGRAM ===== */
.arch__diagram {
  margin-top: 48px;
  padding: 48px;
  background: var(--navy);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.arch__core {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.05);
  margin-bottom: 32px;
}

.arch__core-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 8px;
}

.arch__core-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.arch__core-desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.arch__agents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.arch__agent {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.arch__agent-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.arch__agent-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .agents__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hide desktop nav, show hamburger */
  .header__nav,
  .header__actions {
    display: none;
  }

  .header__menu-btn {
    display: block;
  }

  .header__inner {
    padding: 0 24px;
  }

  /* Mobile menu overlay */
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }

  .header__nav.open a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header__actions.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__actions.open .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header__inner {
    padding: 0 20px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 0 60px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__proof {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    justify-content: center;
  }

  .problem__grid,
  .vision__grid,
  .demo__examples {
    grid-template-columns: 1fr;
  }

  .agents__grid,
  .response__grid,
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .arch__agents {
    grid-template-columns: 1fr;
  }

  .insight__card {
    padding: 32px;
  }

  .insight__card-quote {
    font-size: 1.375rem;
  }

  .cta-section {
    padding: 64px 0;
  }

  .cta-section__title {
    font-size: 1.5rem;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero {
    padding: 120px 0 56px;
  }

  .page-hero__title {
    font-size: 1.75rem;
  }

  .page-hero__subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .frameworks__logos {
    gap: 16px;
  }

  .framework-badge {
    min-width: 100px;
    padding: 16px 20px;
  }
}

/* ===== TEAM ===== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 16px;
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.team-card:hover .team-card__avatar {
  filter: grayscale(0%);
}

.team-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

@media (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ===== INTEGRATIONS / BRAND LOGOS ===== */
.integrations {
  margin-top: 56px;
}

.integrations__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.section--dark .integrations__label {
  color: var(--gray-500);
}

.integrations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.integration-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
}

.section--dark .integration-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .integration-chip:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.integration-chip__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.integration-chip__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.section--dark .integration-chip__name {
  color: var(--gray-300);
}

/* ===== NAME WORDPLAY ===== */
.wordplay {
  text-align: center;
  padding: 48px 0;
}

.wordplay__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

.wordplay__text strong {
  color: var(--white);
}

.wordplay__text .wp-blue {
  color: var(--blue-light);
}

.wordplay__sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* Hero integrations strip */
.hero__integrations {
  margin-top: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__integrations-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero__integrations-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__int-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s;
}

.hero__int-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero__int-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__int-chip span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .integrations__grid {
    gap: 10px;
  }

  .integration-chip {
    padding: 8px 14px;
  }

  .integration-chip__name {
    font-size: 0.8125rem;
  }

  .wordplay__text {
    font-size: 1.125rem;
  }

  .hero__integrations-logos {
    gap: 8px;
  }
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--navy);
}

.legal-content a {
  color: var(--blue);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===== SPLIT HERO ===== */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

/* Mock Dashboard */
.mock-dashboard {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.mock-dashboard__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dashboard__dot--red { background: #ef4444; }
.mock-dashboard__dot--yellow { background: #eab308; }
.mock-dashboard__dot--green { background: #22c55e; }

.mock-dashboard__url {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--gray-500);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 6px;
  margin-left: 8px;
}

.mock-dashboard__body {
  padding: 20px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  min-height: 320px;
}

.mock-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-sidebar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: all 0.2s;
}

.mock-sidebar__item--active {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-light);
}

.mock-sidebar__icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
}

.mock-sidebar__item--active .mock-sidebar__icon {
  background: rgba(59, 130, 246, 0.2);
}

.mock-dashboard__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.mock-dashboard__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
}

.mock-dashboard__badge {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-radius: 100px;
}

/* Mock stat cards */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
}

.mock-stat__value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
}

.mock-stat__label {
  font-size: 0.5625rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.mock-stat--alert .mock-stat__value { color: var(--red); }
.mock-stat--warn .mock-stat__value { color: var(--yellow); }
.mock-stat--ok .mock-stat__value { color: var(--green); }

/* Mock incident rows */
.mock-incidents {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}

.mock-incidents__header {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-incident {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.6875rem;
}

.mock-incident:last-child { border-bottom: none; }

.mock-incident__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-incident__dot--red { background: var(--red); }
.mock-incident__dot--yellow { background: var(--yellow); }
.mock-incident__dot--green { background: var(--green); }

.mock-incident__text {
  color: var(--gray-400);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-incident__tag {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.mock-incident__tag--intervene {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
}

.mock-incident__tag--alert {
  background: rgba(234, 179, 8, 0.12);
  color: var(--yellow);
}

.mock-incident__tag--log {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
}

.mock-incident__time {
  font-size: 0.5625rem;
  color: var(--gray-600);
  white-space: nowrap;
}

/* ===== MOCK CHAT / INTERVENTION UI ===== */
.demo-visual {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.demo-visual:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.demo-visual__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.demo-visual__header-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.demo-visual__header-channel {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.demo-visual__header-badge {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.demo-visual__header-badge--intervene {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.demo-visual__header-badge--alert {
  background: rgba(234, 179, 8, 0.1);
  color: #b45309;
}

.demo-visual__header-badge--log {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.demo-visual__body {
  padding: 16px 20px;
}

/* Chat-style messages */
.demo-msg {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.demo-msg:last-child { margin-bottom: 0; }

.demo-msg__avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.demo-msg__avatar--user {
  background: var(--gray-300);
}

.demo-msg__avatar--govantic {
  background: var(--blue);
}

.demo-msg__avatar--govantic img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.demo-msg__content {
  flex: 1;
  min-width: 0;
}

.demo-msg__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.demo-msg__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.demo-msg__name--govantic {
  color: var(--blue);
}

.demo-msg__time {
  font-size: 0.6875rem;
  color: var(--gray-400);
}

.demo-msg__text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.demo-msg__text code {
  background: var(--gray-100);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--red);
  font-family: var(--font-mono);
}

.demo-msg__text--violation {
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin-top: 6px;
}

.demo-msg__text--violation p {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.demo-msg__text--violation strong {
  color: var(--navy);
}

.demo-visual__footer {
  padding: 10px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.6875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-visual__footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mock-dashboard__body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-dashboard__sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .mock-dashboard {
    display: none;
  }
}

/* ===== CONTACT PAGE ===== */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.contact-card:hover .contact-card__arrow {
  transform: translateX(4px);
  color: var(--blue);
}

.contact-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.contact-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-card__arrow {
  color: var(--gray-400);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.contact-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.contact-card__email {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.contact-card:hover .contact-card__email {
  text-decoration: underline;
}

/* Office section */
.contact__office {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact__office-info .section-title {
  margin-bottom: 24px;
}

.contact__office-details {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.contact__office-details a {
  color: var(--blue);
  font-weight: 500;
  transition: color 0.2s;
}

.contact__office-details a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.contact__office-hours {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.contact__office-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__office-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .contact__office {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact__cards {
    grid-template-columns: 1fr;
  }

  .contact__office-photos {
    grid-template-columns: 1fr;
  }

  .contact__office-photo {
    height: 180px;
  }
}

/* ===== BLOG ===== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.section--gray .blog-card {
  background: var(--white);
}

.blog-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.blog-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-card__category--pillar {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}

.blog-card__category--guide {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.blog-card__category--comparison {
  background: rgba(234, 179, 8, 0.1);
  color: #b45309;
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.blog-card__date {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.blog-card__read {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}

.blog-card:hover .blog-card__read {
  color: var(--blue-dark);
}

@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .diff__grid {
    margin-top: 32px;
  }

  .btn--large {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
