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

:root {
  --bg: #050810;
  --bg2: #080d1a;
  --bg3: #0d1525;
  --surface: #101828;
  --surface2: #141e30;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --text: #f0f4ff;
  --text2: #8b9dc3;
  --text3: #4a5a7a;
  --accent: #3b82f6;
  --accent2: #60a5fa;
  --green: #10b981;
  --green2: #34d399;
  --amber: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --font-display: "Montserrat", sans-serif;
  /* --font-display: "Plus Jakarta Sans", sans-serif; */
  --font-body: "DM Sans", sans-serif;
  --font-mono: "DM Mono", monospace;
  --r: 12px;
  --r2: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── GLOW ORBS ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-blue {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18) 0%,
    transparent 70%
  );
  width: 700px;
  height: 700px;
}
.orb-purple {
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.12) 0%,
    transparent 70%
  );
  width: 600px;
  height: 600px;
}
.orb-cyan {
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
  width: 500px;
  height: 500px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(5, 8, 16, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 8px 18px;
  border-radius: var(--r2);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--r2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.45);
}

/* ─── SECTIONS ─── */
section {
  position: relative;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--accent2);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-h1 .grad {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.55);
}

.btn-hero-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text3);
}

.hero-trust-item .check {
  color: var(--green);
  font-size: 14px;
}

/* ─── DASHBOARD MOCKUP ─── */
.hero-visual {
  position: relative;
}

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.dash-topbar {
  background: var(--surface2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-r {
  background: #ff5f57;
}
.dot-y {
  background: #febc2e;
}
.dot-g {
  background: #28c840;
}

.dash-url {
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
  flex: 1;
  text-align: center;
}

.dash-content {
  padding: 20px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.dash-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.dash-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.dash-stat-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-monitors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.monitor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  animation: slideUp 0.4s both;
}

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

.monitor-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.up {
  background: var(--green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.down {
  background: var(--red);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}
.degraded {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.monitor-name {
  font-size: 12px;
  font-weight: 500;
  flex: 1;
  color: var(--text);
}
.monitor-url {
  font-size: 10px;
  color: var(--text3);
  font-family: var(--font-mono);
}
.monitor-uptime {
  font-size: 11px;
  font-family: var(--font-mono);
  margin-left: auto;
}
.monitor-uptime.good {
  color: var(--green2);
}
.monitor-uptime.bad {
  color: var(--red);
}
.monitor-uptime.warn {
  color: var(--amber);
}

.uptime-bars {
  display: flex;
  gap: 2px;
  margin-left: 10px;
}

.bar {
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.7;
}

.bar.miss {
  background: var(--red);
  opacity: 0.9;
}
.bar.warn {
  background: var(--amber);
  opacity: 0.8;
}

/* ─── FLOATING BADGE ─── */
.float-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

.float-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-alert {
  top: -20px;
  right: -30px;
  animation-delay: 0.5s;
}
.badge-ssl {
  bottom: 20px;
  left: -30px;
  animation-delay: 1.2s;
}

/* ─── STATS BAR ─── */
#statsbar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 5%;
}

.statsbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text3);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── FEATURES ─── */
#features {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent2);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border2);
  background: var(--surface2);
  transform: translateY(-3px);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-icon-blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.feature-icon-green {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.feature-icon-purple {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.feature-icon-amber {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.feature-icon-cyan {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.feature-icon-red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
}

/* ─── HOW IT WORKS ─── */
#how {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border2),
    var(--accent),
    var(--border2),
    transparent
  );
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 24px;
  color: var(--accent2);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ─── ALERTS SECTION ─── */
#alerts {
  padding: 100px 0;
}

.alerts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.alert-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
  animation: slideLeft 0.5s both;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.alert-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.alert-down {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.alert-up {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.alert-ssl {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.alert-slack {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.alert-body {
  flex: 1;
}
.alert-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}
.alert-meta {
  font-size: 12px;
  color: var(--text3);
}
.alert-time {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.alert-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.channel-pill {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ─── PRICING ─── */
#pricing {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  transition: all 0.25s;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.plan-featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.07) 0%,
    var(--surface) 60%
  );
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.12);
}

.plan-featured:hover {
  border-color: rgba(59, 130, 246, 0.6);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--text2);
  align-self: flex-start;
  margin-top: 8px;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.plan-period {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 20px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}

.plan-feature .check {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-cta {
  width: 100%;
  padding: 13px;
  border-radius: var(--r2);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  display: block;
  text-decoration: none;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.cta-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cta-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
}
.cta-blue:hover {
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}

.cta-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.3);
}
.cta-gold:hover {
  box-shadow: 0 0 36px rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
}

/* ─── TESTIMONIALS ─── */
#social {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all 0.25s;
}
.testimonial:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
}
.author-role {
  font-size: 12px;
  color: var(--text3);
}

/* ─── CTA SECTION ─── */
#cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text3);
}

/* About page */

/* ─── MISSION ─── */
#mission {
  padding: 100px 0;
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mission-text p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.mission-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: border-color 0.2s;
}
.mission-stat:hover {
  border-color: var(--border2);
}

.mission-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.mission-stat-label {
  font-size: 13px;
  color: var(--text3);
}

/* ─── VALUES ─── */
#values {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.value-card:hover::before {
  opacity: 1;
}

.vc1::before {
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}
.vc2::before {
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}
.vc3::before {
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}
.vc4::before {
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}
.vc5::before {
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}
.vc6::before {
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.value-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ─── TEAM ─── */
#team {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}

.team-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.team-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.team-social {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-mono);
}
.team-social:hover {
  color: var(--accent2);
}

/* ─── TIMELINE ─── */
#story {
  padding: 100px 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline {
  margin-top: 60px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent),
    var(--border),
    transparent
  );
}

.timeline-item {
  display: flex;
  gap: 48px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-year {
  width: 120px;
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent2);
  padding-top: 4px;
}

.timeline-dot {
  position: absolute;
  left: 112px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg3);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  transition: border-color 0.2s;
}
.timeline-content:hover {
  border-color: var(--border2);
}

.timeline-event {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ─── CTA ─── */
#about-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-hero {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.55);
}

.btn-hero-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* About page end here */

/* contact us page */

.grad {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent2);
  margin-bottom: 16px;
}

/* ─── HERO ─── */
#page-hero {
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--accent2);
  margin-bottom: 24px;
}

.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sub {
  font-size: 19px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CONTACT GRID ─── */
#contact-main {
  padding: 0 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

/* ─── CONTACT CHANNELS ─── */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ch-email::before {
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}
.ch-slack::before {
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}
.ch-twitter::before {
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}
.ch-office::before {
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.channel-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.channel-card:hover::before {
  opacity: 1;
}

.channel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.ci-purple {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.ci-cyan {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.ci-green {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.channel-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.channel-handle {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
}
.channel-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
.channel-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green2);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
  font-family: var(--font-mono);
}

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: var(--bg2);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  border-radius: var(--r2);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
  margin-top: 8px;
}

.form-submit:hover {
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}
.form-submit:active {
  transform: translateY(0);
}

.form-note {
  font-size: 12px;
  color: var(--text3);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* ─── TOPIC TAGS ─── */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.topic-tag {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.topic-tag:hover,
.topic-tag.selected {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--accent2);
}

/* ─── FAQ ─── */
#faq {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-toggle {
  color: var(--accent2);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  display: none;
  margin-top: 10px;
}
.faq-item.open .faq-a {
  display: block;
}

/* ─── OFFICE HOURS ─── */
#office-hours {
  padding: 80px 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  transition: all 0.25s;
}

.hours-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.hours-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.hours-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hours-time {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 6px;
}
.hours-zone {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

.status-open {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green2);
}
.status-closed {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #fc8181;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.success-sub {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* end of contact us */

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text3);
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--text2);
}

/* ─── UPTIME GRID ─── */
#uptime-grid {
  padding: 100px 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.uptime-demo {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 28px;
  margin-top: 40px;
}

.uptime-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.uptime-row:last-child {
  border-bottom: none;
}

.uptime-site {
  width: 200px;
  flex-shrink: 0;
}

.uptime-site-name {
  font-size: 13px;
  font-weight: 500;
}
.uptime-site-url {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
}

.uptime-bars-long {
  display: flex;
  gap: 2px;
  flex: 1;
}

.ubar {
  flex: 1;
  height: 24px;
  border-radius: 3px;
  background: var(--green);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.ubar:hover {
  opacity: 1;
}
.ubar.down {
  background: var(--red);
  opacity: 0.9;
}

.uptime-pct {
  font-family: var(--font-mono);
  font-size: 13px;
  width: 60px;
  text-align: right;
  flex-shrink: 0;
}

.uptime-pct.perfect {
  color: var(--green2);
}
.uptime-pct.good {
  color: var(--accent2);
}

/* ─── INTEGRATIONS ─── */
#integrations {
  padding: 80px 0;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  justify-content: center;
}

.integration-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.integration-pill:hover {
  border-color: var(--border2);
  background: var(--surface2);
}

.integration-icon {
  font-size: 18px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .alerts-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .dash-stats {
    grid-template-columns: 2fr 2fr;
  }
  nav .nav-links {
    display: none;
  }
  .statsbar-inner {
    gap: 20px;
    justify-content: center;
  }
  .stat-divider {
    display: none;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .mission-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-year {
    display: none;
  }
  .timeline-item {
    padding-left: 48px;
    gap: 0;
  }
  .timeline-dot {
    left: 12px;
  }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}