:root {
  color-scheme: dark;
  --bg: #031015;
  --bg-deep: #02080c;
  --panel: rgba(4, 19, 26, 0.82);
  --panel-strong: rgba(5, 24, 32, 0.94);
  --line: rgba(103, 242, 238, 0.14);
  --line-strong: rgba(103, 242, 238, 0.24);
  --text: #effdff;
  --muted: #9abfc6;
  --accent: #14c7d7;
  --accent-strong: #73f2ec;
  --accent-soft: rgba(20, 199, 215, 0.14);
  --accent-glow: rgba(20, 199, 215, 0.35);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 199, 215, 0.12), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(115, 242, 236, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(20, 199, 215, 0.16), transparent 30%),
    linear-gradient(140deg, var(--bg), var(--bg-deep));
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(115, 242, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 242, 236, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

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

.site-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero {
  width: min(1200px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(4, 17, 22, 0.92), rgba(3, 10, 15, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.site-tag,
.brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-tag {
  color: var(--accent-strong);
}

.brand-chip {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(18, 68, 79, 0.88), rgba(8, 45, 53, 0.9));
  box-shadow: inset 0 0 0 1px rgba(115, 242, 236, 0.06), 0 12px 36px rgba(20, 199, 215, 0.12);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lede {
  max-width: 60ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #021014;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 12px 30px rgba(20, 199, 215, 0.24);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.status-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 31, 38, 0.72), rgba(5, 17, 22, 0.75));
}

.status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 22px var(--accent-glow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.feature-grid article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(115, 242, 236, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(115, 242, 236, 0.04));
}

.feature-grid h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-visual {
  min-width: 0;
}

.visual-frame {
  position: relative;
  min-height: 680px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 16%, rgba(115, 242, 236, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(6, 25, 32, 0.95), rgba(3, 12, 18, 0.9));
  overflow: hidden;
}

.visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(115, 242, 236, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 242, 236, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
}

.visual-frame::after {
  content: '';
  position: absolute;
  inset: auto 12% 5% 12%;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 199, 215, 0.3), rgba(20, 199, 215, 0));
  filter: blur(16px);
}

.brand-watermark {
  position: absolute;
  top: 9%;
  right: 5%;
  width: min(46%, 250px);
  opacity: 0.15;
  filter: drop-shadow(0 0 28px rgba(115, 242, 236, 0.28));
}

.logo-card,
.metric-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(5, 22, 29, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
}

.logo-card {
  top: 38px;
  left: 34px;
  width: 136px;
  aspect-ratio: 1;
  padding: 18px;
  border-radius: 26px;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(115, 242, 236, 0.22));
}

.metric-card {
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 18px;
}

.metric-card-top {
  top: 66px;
  right: 28px;
}

.metric-card-bottom {
  bottom: 34px;
  left: 28px;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  line-height: 1.45;
}

.headshot {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: min(94%, 700px);
  transform: translateX(-42%);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.28));
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 16px;
  }

  .hero {
    padding: 20px;
    border-radius: 24px;
  }

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

  .visual-frame {
    min-height: 520px;
  }

  .logo-card {
    width: 104px;
    left: 18px;
    top: 18px;
    border-radius: 20px;
  }

  .metric-card {
    position: absolute;
    max-width: 190px;
    padding: 14px 16px;
  }

  .metric-card-top {
    top: 26px;
    right: 18px;
  }

  .metric-card-bottom {
    left: 18px;
    bottom: 18px;
  }

  .headshot {
    width: min(104%, 560px);
    transform: translateX(-45%);
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 18vw, 4.1rem);
  }

  .lede {
    font-size: 1rem;
  }

  .visual-frame {
    min-height: 460px;
  }

  .brand-watermark {
    top: 18%;
    right: -4%;
    width: 170px;
  }

  .metric-card {
    max-width: 160px;
  }

  .metric-card strong {
    font-size: 0.95rem;
  }
}
