:root {
  --paper:     #f4f1ea;
  --navy:      #1a2640;
  --tech-blue: #4a7b9d;
  --gold:      #c8a84b;
  --available: #3a7a5c;
  --booked:    #2a5580;
  --hairline:  rgba(26,38,64,0.13);
  --muted:     #5a6a7e;
  --white:     #ffffff;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--navy);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
a { color: var(--tech-blue); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 52px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.125rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-size: 0.8125rem; color: rgba(255,255,255,0.6);
  text-decoration: none; font-weight: 500; transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Mono', monospace; font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  padding: 3px 8px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1px; text-decoration: none; transition: border-color 0.15s;
}
.status-pill:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.65); text-decoration: none; }
.status-lamp { width: 6px; height: 6px; border-radius: 50%; }
.status-lamp.green { background: #4ade80; box-shadow: 0 0 5px rgba(74,222,128,0.5); }
.status-lamp.red   { background: #f87171; }
.nav-cta {
  color: var(--navy) !important;
  background: var(--gold); padding: 6px 16px; border-radius: 1px;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none; transition: background 0.15s;
}
.nav-cta:hover { background: #b8962f; text-decoration: none; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 80px 40px 88px; text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,168,75,0.35);
  padding: 4px 12px; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 20px;
  max-width: 780px; margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.hero p {
  font-size: 1.125rem; color: rgba(255,255,255,0.72);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.65;
}
.hero p a { color: rgba(255,255,255,0.9); font-weight: 600; text-decoration: none; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-cta {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 12px 28px; border-radius: 1px; font-weight: 700;
  text-decoration: none; font-size: 0.9375rem; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.hero-cta:hover { background: #b8962f; text-decoration: none; }
.hero-cta-sec {
  display: inline-block; color: rgba(255,255,255,0.7);
  padding: 11px 24px; border-radius: 1px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600; text-decoration: none; font-size: 0.9375rem;
  transition: border-color 0.15s, color 0.15s;
}
.hero-cta-sec:hover { border-color: rgba(255,255,255,0.45); color: var(--white); text-decoration: none; }
.hero-illustration {
  max-width: 900px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4); overflow: hidden;
}
.hero-illustration img { display: block; width: 100%; height: auto; }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--hairline); }
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 32px 40px;
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat a { text-decoration: none; color: inherit; }
.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.625rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em;
}
.stat-label { font-size: 0.8125rem; color: var(--muted); margin-top: 3px; }
.stat:hover .stat-value { color: var(--tech-blue); }

/* ── SECTIONS ── */
.section { max-width: 1100px; margin: 0 auto; padding: 72px 40px; }
.section-tag {
  display: block; text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tech-blue); margin-bottom: 14px;
}
.section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 700; text-align: center;
  margin-bottom: 12px; color: var(--navy); letter-spacing: -0.01em;
  text-wrap: balance;
}
.section .subtitle {
  text-align: center; color: var(--muted); font-size: 1.0625rem;
  max-width: 580px; margin: 0 auto 48px; line-height: 1.65;
}
.section .subtitle a { color: var(--tech-blue); font-weight: 500; }

/* ── FEATURES ── */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
}
.feature { background: var(--white); padding: 28px; transition: background 0.15s; }
.feature:hover { background: rgba(255,255,255,0.7); }
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(74,123,157,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--tech-blue); }
.feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--navy);
  letter-spacing: 0.01em;
}
.feature p { color: var(--muted); line-height: 1.6; font-size: 0.875rem; }
.feature p a { color: var(--tech-blue); font-weight: 500; }

/* ── WHY SECTION ── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 40px;
}
.why-card { padding: 28px; background: var(--paper); border: 1px solid var(--hairline); border-top: 2px solid var(--tech-blue); }
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.why-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.why-card p a { color: var(--tech-blue); font-weight: 500; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
}
.step { padding: 28px; background: var(--white); position: relative; }
.step::after { display: none; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--navy); color: var(--white);
  font-family: 'DM Mono', monospace; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 14px;
}
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--navy);
}
.step p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.step p a { color: var(--tech-blue); font-weight: 500; }
.step-detail {
  margin-top: 10px; font-family: 'DM Mono', monospace;
  font-size: 0.6875rem; color: var(--tech-blue); letter-spacing: 0.03em;
}

/* ── USE CASES ── */
.use-cases {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
}
.use-case { padding: 22px 24px; background: var(--white); transition: background 0.15s; }
.use-case:hover { background: rgba(255,255,255,0.7); }
.use-case-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.use-case-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(74,123,157,0.1);
  display: flex; align-items: center; justify-content: center;
}
.use-case-icon svg { width: 18px; height: 18px; stroke: var(--tech-blue); }
.use-case strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; color: var(--navy); font-weight: 700; letter-spacing: 0.01em;
}
.use-case p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }
.use-case p a { color: var(--tech-blue); font-weight: 500; }

/* ── FAQ ── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); padding: 18px 0; }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  font-weight: 600; color: var(--navy); margin-bottom: 8px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 0.9375rem;
}
.faq-q::after {
  content: '+'; font-family: 'DM Mono', monospace;
  font-size: 1rem; color: var(--tech-blue); font-weight: 400; flex-shrink: 0;
}
.faq-a { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.faq-a a { color: var(--tech-blue); font-weight: 500; }

/* ── INTEGRATIONS ── */
.int-card {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--hairline); padding: 28px 32px;
}
.int-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; color: var(--navy); margin: 0 0 10px;
}
.int-card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.65; margin: 0 0 12px; }
.int-card a { color: var(--tech-blue); font-weight: 500; }

/* ── SUPPORT ── */
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.support-img {
  width: 100%; object-fit: cover; max-height: 440px;
  display: block; border: 1px solid var(--hairline);
}

/* ── PRODUCT SCREENSHOT ── */
.product-screenshot {
  max-width: 1000px; margin: 0 auto 40px;
  border: 1px solid var(--hairline); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.product-screenshot img { display: block; width: 100%; height: auto; }

/* ── CTA BOX ── */
.cta-box {
  background: var(--navy); color: var(--white);
  padding: 64px 40px; text-align: center;
  margin: 0 40px 64px; border: 1px solid rgba(255,255,255,0.07);
}
.cta-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--white); font-size: 2rem; margin-bottom: 14px; letter-spacing: -0.01em;
}
.cta-box p {
  font-size: 1rem; opacity: 0.75; margin-bottom: 28px;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
.cta-box a.email {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 12px 32px; font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; letter-spacing: 0.02em; transition: background 0.15s;
}
.cta-box a.email:hover { background: #b8962f; text-decoration: none; }
.cta-note {
  margin-top: 14px; font-family: 'DM Mono', monospace;
  font-size: 0.6875rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--hairline);
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); flex-wrap: wrap; gap: 12px;
}
footer > div:first-child {
  font-family: 'DM Mono', monospace; font-size: 0.6875rem; color: var(--muted);
}
footer a { color: var(--tech-blue); text-decoration: none; }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 0; }
footer nav a { font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: color 0.15s; }
footer nav a:hover { color: var(--navy); }
footer > div:last-child {
  font-family: 'DM Mono', monospace; font-size: 0.6875rem; color: rgba(26,38,64,0.25);
}

/* ── SECTION ALT ── */
.section-alt { background: var(--white); }
.section-alt .section { background: transparent; }

@media (max-width: 1024px) {
  .support-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 0 20px; }
  .hero { padding: 56px 20px 64px; }
  .stats-inner { gap: 32px; padding: 24px 20px; }
  .section { padding: 56px 20px; }
  .cta-box { margin: 0 20px 48px; padding: 48px 24px; }
  footer { padding: 20px; }
}
