:root {
  color-scheme: dark;
  --canvas: #f6f7fb;
  --card-top: rgba(9, 57, 111, 0.97);
  --card-bottom: rgba(7, 31, 71, 0.98);
  --panel-edge: rgba(255, 255, 255, 0.15);
  --text-main: #f8fbff;
  --text-muted: rgba(233, 241, 255, 0.86);
  --text-soft: rgba(233, 241, 255, 0.74);
  --linkedin-bg: rgba(255, 255, 255, 0.08);
  --linkedin-border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", sans-serif;
  background: linear-gradient(135deg, var(--card-top) 0%, #1d4fa3 58%, var(--card-bottom) 100%);
  color: var(--text-main);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: stretch;
  padding: 0;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(24, 54, 103, 0.14) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.hero-card {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, var(--card-top) 0%, #1d4fa3 58%, var(--card-bottom) 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(to right, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-glow,
.hero-haze {
  position: absolute;
  filter: blur(42px);
  pointer-events: none;
}

.hero-glow-top {
  top: -10%;
  right: -6%;
  width: 40%;
  height: 34%;
  background: radial-gradient(circle, rgba(77, 140, 255, 0.72) 0%, rgba(77, 140, 255, 0) 68%);
}

.hero-glow-bottom {
  left: -10%;
  bottom: -8%;
  width: 48%;
  height: 32%;
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 103, 103, 0.52) 0%, rgba(255, 103, 103, 0) 42%),
    radial-gradient(circle at 42% 54%, rgba(255, 196, 116, 0.44) 0%, rgba(255, 196, 116, 0) 34%),
    radial-gradient(circle at 74% 62%, rgba(71, 125, 214, 0.28) 0%, rgba(71, 125, 214, 0) 36%);
}

.hero-haze {
  inset: auto auto -3% 0;
  width: 56%;
  height: 27%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 90%),
    linear-gradient(90deg, rgba(10, 32, 69, 0.12) 0%, rgba(10, 32, 69, 0.02) 100%);
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(56px, 9vw, 120px) clamp(24px, 5vw, 64px);
}

.brand-mark {
  width: min(44vw, 420px);
  height: auto;
  margin-bottom: clamp(44px, 8vw, 86px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.3vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.tagline {
  margin: 26px 0 0;
  font-size: clamp(1.5rem, 2.7vw, 4rem);
  line-height: 1.16;
  max-width: 17ch;
  color: var(--text-muted);
  letter-spacing: -0.04em;
}

.meta-row {
  margin-top: clamp(46px, 8vw, 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footnote {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.65rem);
  line-height: 1.45;
  color: var(--text-soft);
  letter-spacing: -0.02em;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--linkedin-border);
  background: var(--linkedin-bg);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.linkedin-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.linkedin-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .hero-card {
    min-height: 100vh;
  }

  .brand-mark {
    width: min(72vw, 340px);
    margin-bottom: 44px;
  }

  .tagline {
    max-width: 12ch;
  }

  .footnote {
    max-width: 28ch;
  }
}
