@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --color-bg: #f6f8fb;
  --color-surface: #ffffff;
  --color-surface-raised: #ffffff;
  --color-text: #0e1a2b;
  --color-text-secondary: #4a5568;
  --color-text-tertiary: #7a8599;
  --color-deep-blue: #0b1929;
  --color-blue-mid: #142d4a;
  --color-blue-accent: #0a6abf;
  --color-cyan: #00b4d8;
  --color-cyan-soft: #00d4aa;
  --color-neon: #00ff88;
  --color-neon-soft: rgba(0, 255, 136, 0.12);
  --color-gray-100: #f1f3f7;
  --color-gray-200: #e2e6ee;
  --color-gray-300: #cdd3df;
  --color-gray-400: #9ba3b3;
  --color-gray-500: #6b7588;
  --color-border: #dfe3ec;
  --color-border-light: #eef1f7;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(11, 25, 41, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 25, 41, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 25, 41, 0.10);
  --shadow-neon: 0 0 24px rgba(0, 255, 136, 0.15);

  --max-width: 1200px;
  --header-height: 72px;
  --section-gap: clamp(80px, 12vw, 140px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ===== CONTAINERS ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container--narrow {
  max-width: 860px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(246, 248, 251, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--color-deep-blue);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.header-logo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.header-nav__link {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-cyan-soft);
  transition: width 0.25s ease;
}

.header-nav__link:hover {
  color: var(--color-deep-blue);
}

.header-nav__link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--color-deep-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--color-blue-mid);
  transform: translateY(-1px);
}

.header-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 9px 14px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header-login:hover {
  color: var(--color-deep-blue);
}

/* Mobile menu toggle */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-deep-blue);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--header-height) + clamp(48px, 8vw, 100px));
  padding-bottom: clamp(48px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 106, 191, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 500;
  color: var(--color-cyan-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding: 6px 16px;
  background: var(--color-neon-soft);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 100px;
}

.hero-eyebrow__indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--color-deep-blue);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-cyan-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  background: var(--color-deep-blue);
}

.hero-visual__inner {
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-visual__status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-visual__status--up {
  background: var(--color-neon);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.hero-visual__status--warn {
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.hero-visual__name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}

.hero-visual__uptime {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-neon);
  font-weight: 500;
}

.hero-visual__response {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  min-width: 70px;
  text-align: right;
}

.hero-visual__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.hero-visual__header-title {
  font-family: var(--font-heading);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-visual__header-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 10px;
  background: rgba(0, 255, 136, 0.12);
  color: var(--color-neon);
  border-radius: 100px;
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--color-deep-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(11, 25, 41, 0.2);
}

.btn--primary:hover {
  background: var(--color-blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 25, 41, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--color-deep-blue);
  border: 1.5px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-cyan-soft);
  color: var(--color-blue-accent);
  background: rgba(0, 212, 170, 0.04);
}

.btn--neon {
  background: linear-gradient(135deg, var(--color-cyan-soft), var(--color-cyan));
  color: var(--color-deep-blue);
  font-weight: 700;
}

.btn--neon:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-neon);
}

.btn--small {
  font-size: 13px;
  padding: 10px 22px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.section--dark {
  background: var(--color-deep-blue);
  color: #fff;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-deep-blue);
  margin-bottom: 16px;
}

.section--dark .section-heading {
  color: #fff;
}

.section-heading--center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cyan-soft);
  margin-bottom: 12px;
}

.lead-paragraph {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}

.lead-paragraph--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== CARDS ===== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-cyan-soft));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  border-color: var(--color-gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-neon-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-cyan-soft);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 600;
  color: var(--color-deep-blue);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-text {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-deep-blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat__value span {
  background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--color-text-tertiary);
  font-weight: 500;
}

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 40px 0;
  text-align: center;
}

.logos-bar__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-tertiary);
  margin-bottom: 24px;
}

.logos-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
  opacity: 0.4;
}

.logos-bar__item {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  color: var(--color-deep-blue);
  letter-spacing: -0.02em;
}

/* ===== CODE BLOCK ===== */
.code-block {
  background: var(--color-deep-blue);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  overflow-x: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.code-block__label {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.code-block .token-key {
  color: var(--color-cyan);
}

.code-block .token-string {
  color: var(--color-neon);
}

.code-block .token-comment {
  color: rgba(255, 255, 255, 0.25);
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
  background: linear-gradient(135deg, var(--color-blue-mid) 0%, var(--color-deep-blue) 100%);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.image-placeholder__content {
  padding: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.25s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

.testimonial__quote {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: normal;
}

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

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-soft));
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-deep-blue);
}

.testimonial__role {
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-deep-blue) 0%, #0f2847 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 clamp(20px, 4vw, 48px);
}

.cta-section__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-heading {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section .lead-paragraph {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-deep-blue);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(48px, 8vw, 80px) 0 32px;
  margin-top: var(--section-gap);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-brand__desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-col__link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-col__link:hover {
  color: var(--color-cyan-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-bottom__link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== STATUS INDICATOR ===== */
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.status-dot__circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.4);
}

.status-dot__circle--warn {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header-nav__list {
    display: none;
  }

  .header-actions .header-login {
    display: none;
  }

  .header-menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero-title {
    letter-spacing: -0.025em;
  }

  .hero-visual__inner {
    padding: 20px;
    min-height: 240px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid--3,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    border-radius: var(--radius-lg);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .stat:last-child {
    border-bottom: none;
  }
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
