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

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0B1325;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

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

.container--wide {
  max-width: 1440px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === TYPOGRAPHY === */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 6vw + 0.5rem, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #0B1325;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw + 0.3rem, 1.35rem);
  font-weight: 400;
  line-height: 1.65;
  color: #4A5568;
  max-width: 640px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw + 0.3rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0B1325;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lead-paragraph {
  font-size: clamp(1.05rem, 1.3vw + 0.25rem, 1.2rem);
  line-height: 1.7;
  color: #4A5568;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.body-text {
  font-size: clamp(0.95rem, 1.1vw + 0.15rem, 1.05rem);
  line-height: 1.75;
  color: #4A5568;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mono {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00D4A0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8ECF1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(64px, 8vw, 80px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #0B1325;
  flex-shrink: 0;
}

.header-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5568;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  word-wrap: break-word;
}

.header-nav-link:hover {
  color: #0B1325;
  background: #F4F6F9;
}

.header-nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #0B1325;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  margin-left: 0.75rem;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.header-nav-cta:hover {
  background: #1A2744;
  transform: translateY(-1px);
}

.header-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.header-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0B1325;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === BUTTONS === */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw + 0.15rem, 1rem);
  color: #FFFFFF;
  background: #0B1325;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  word-wrap: break-word;
}

.primary-button:hover {
  background: #1A2744;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 19, 37, 0.25);
}

.primary-button--cyan {
  background: #00D4A0;
  color: #0B1325;
}

.primary-button--cyan:hover {
  background: #00E5AF;
  box-shadow: 0 8px 24px rgba(0, 212, 160, 0.35);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.15rem, 1rem);
  color: #0B1325;
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1.5px solid #D1D5DB;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  word-wrap: break-word;
}

.secondary-button:hover {
  border-color: #0B1325;
  background: #F4F6F9;
  transform: translateY(-1px);
}

/* === HERO === */
.page-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--center .hero-actions {
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #F0FDF9;
  border: 1px solid #BBF7D0;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D4A0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 160, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 212, 160, 0); }
}

.hero-status-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #065F46;
}

/* === SECTIONS === */
.section-wrapper {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-wrapper--gray {
  background: #F4F6F9;
}

.section-wrapper--dark {
  background: #0B1325;
  color: #FFFFFF;
}

.section-wrapper--dark .section-heading {
  color: #FFFFFF;
}

.section-wrapper--dark .lead-paragraph {
  color: #94A3B8;
}

.section-wrapper--dark .body-text {
  color: #94A3B8;
}

.section-wrapper--dark .eyebrow {
  color: #00D4A0;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.section-header--center .section-heading,
.section-header--center .lead-paragraph {
  margin-left: auto;
  margin-right: auto;
}

.section-heading + .lead-paragraph {
  margin-top: 1rem;
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.card {
  background: #FFFFFF;
  border: 1px solid #E8ECF1;
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card:hover {
  border-color: #00D4A0;
  box-shadow: 0 4px 20px rgba(0, 212, 160, 0.1);
  transform: translateY(-3px);
}

.card--dark {
  background: #131B2E;
  border-color: #1E293B;
}

.card--dark:hover {
  border-color: #00D4A0;
  box-shadow: 0 4px 20px rgba(0, 212, 160, 0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0FDF9;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.3vw + 0.15rem, 1.2rem);
  line-height: 1.3;
  color: #0B1325;
  margin-bottom: 0.6rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card--dark .card-title {
  color: #FFFFFF;
}

.card-body {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.65;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card--dark .card-body {
  color: #94A3B8;
}

/* === PRICING CARDS === */
.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E8ECF1;
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 2.5rem);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 19, 37, 0.1);
}

.pricing-card--featured {
  border: 2px solid #00D4A0;
  box-shadow: 0 8px 32px rgba(0, 212, 160, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B1325;
  background: #00D4A0;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #0B1325;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0B1325;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.pricing-price .pricing-currency {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #E8ECF1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pricing-features li .pricing-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D4A0;
  margin-top: 2px;
}

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid #E8ECF1;
  border-bottom: 1px solid #E8ECF1;
}

.stat-item {
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0B1325;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* === CODE BLOCK === */
.code-block {
  background: #0B1325;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.8rem, 0.9vw + 0.1rem, 0.9rem);
  line-height: 1.8;
  color: #E2E8F0;
  overflow-x: auto;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.code-block .code-comment {
  color: #64748B;
}

.code-block .code-key {
  color: #00D4A0;
}

.code-block .code-string {
  color: #7DD3FC;
}

.code-block .code-value {
  color: #FBBF24;
}

/* === TABLE === */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid #E8ECF1;
  border-radius: 8px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.25rem;
  background: #F4F6F9;
  color: #0B1325;
  border-bottom: 1px solid #E8ECF1;
  white-space: nowrap;
  word-wrap: break-word;
}

.table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #E8ECF1;
  color: #4A5568;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.table tr:last-child td {
  border-bottom: none;
}

/* === IMAGE / VISUAL === */
.image {
  border-radius: 8px;
  overflow: hidden;
  background: #F4F6F9;
}

.image--dashboard {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0B1325 0%, #1A2744 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #1E293B;
}

/* === FOOTER === */
.site-footer {
  background: #0B1325;
  color: #94A3B8;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid #1E293B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748B;
  max-width: 280px;
  margin-top: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2E8F0;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #64748B;
  transition: color 0.2s ease;
  word-wrap: break-word;
}

.footer-links a:hover {
  color: #00D4A0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #1E293B;
  font-size: 0.8rem;
  color: #475569;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #475569;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #00D4A0;
}

/* === LOGO (FOOTER) === */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

/* === MOBILE NAV === */
.header-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header-mobile-menu--open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.header-mobile-menu .header-nav-link {
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
}

.header-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: clamp(1.25rem, 4vw, 3rem);
  font-size: 1.5rem;
  cursor: pointer;
  color: #0B1325;
  background: none;
  border: none;
  padding: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

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

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

@media (max-width: 600px) {
  .header-inner {
    height: 60px;
  }

  .header-logo {
    font-size: 1.05rem;
  }

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

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

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

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

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}

/* === ANIMATIONS === */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fade-in-up 0.6s ease forwards;
}

/* === ACCENT LINE === */
.accent-line {
  width: 48px;
  height: 3px;
  background: #00D4A0;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.accent-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* === GRID LAYOUT HELPERS === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* === BADGE / TAG === */
.tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  background: #F0FDF9;
  color: #065F46;
  border: 1px solid #BBF7D0;
}

/* === DIVIDER === */
.divider {
  border: none;
  border-top: 1px solid #E8ECF1;
  margin: clamp(2rem, 5vw, 4rem) 0;
}

/* === STATUS INDICATOR === */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-indicator--up .status-dot {
  background: #00D4A0;
}

.status-indicator--down .status-dot {
  background: #EF4444;
}

.status-indicator--warn .status-dot {
  background: #FBBF24;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
/* 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}
