:root {
  color-scheme: dark;
  --bg: #050606;
  --ink: #f3f7f2;
  --muted: #9ba8a1;
  --soft: #d6ded8;
  --line: rgba(219, 235, 226, 0.14);
  --panel: rgba(13, 16, 15, 0.76);
  --panel-strong: #111513;
  --green: #52f6b7;
  --blue: #56c7ff;
  --yellow: #e9f36e;
  --orange: #ff8a4c;
  --red: #ff5f6d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  --sans: "Sora", "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(82, 246, 183, 0.12), transparent 26rem),
    linear-gradient(180deg, #070908 0%, var(--bg) 28rem, #080908 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  opacity: 0.52;
  z-index: -2;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.09;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 19% 21%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 5px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(219, 235, 226, 0.1);
  background: rgba(5, 6, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.button,
.copy-email {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--soft);
  font-weight: 700;
}

.brand-mark {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(82, 246, 183, 0.55);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(82, 246, 183, 0.9) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(86, 199, 255, 0.8) 46% 54%, transparent 54%);
  box-shadow: 0 0 26px rgba(82, 246, 183, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.nav-links a {
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.nav-links .nav-cta {
  color: #07100c;
  background: var(--green);
  border-color: var(--green);
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 132px clamp(20px, 5vw, 84px) 64px;
  border-bottom: 1px solid var(--line);
}

.hero-art {
  position: absolute;
  inset: -3% -8% auto auto;
  width: min(124rem, 146vw);
  height: min(66rem, 110vh);
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.06) contrast(1.05);
  transform: translate3d(0, var(--art-y, 0), 0);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.78) 40%, rgba(5, 6, 6, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.28) 0%, rgba(5, 6, 6, 0.68) 100%);
}

.hero-inner {
  width: min(980px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  max-width: 920px;
  font-size: clamp(58px, 11vw, 152px);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 710px;
  color: rgba(243, 247, 242, 0.82);
  font-size: clamp(19px, 2.2vw, 30px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: #07100c;
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
}

.mail-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-panel {
  position: absolute;
  right: clamp(20px, 5vw, 84px);
  bottom: 54px;
  z-index: 2;
  width: min(435px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(219, 235, 226, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 9, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(82, 246, 183, 0.8);
}

dl,
dd {
  margin: 0;
}

.signal-panel dl {
  display: grid;
  gap: 10px;
}

.signal-panel dl div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.signal-panel dt {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
}

.signal-panel dd {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  scroll-margin-top: 92px;
}

#fit {
  scroll-margin-top: 92px;
}

.proof-strip article {
  min-height: 190px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip span {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.9;
}

.proof-strip p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.section {
  padding: clamp(78px, 10vw, 150px) clamp(20px, 5vw, 84px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-bottom: 46px;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(36px, 5.8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p,
.closing p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fit-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.fit-card::before {
  content: "";
  width: 100%;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent, var(--green));
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent, var(--green)), transparent 48%);
}

.accent-green {
  --accent: var(--green);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-yellow {
  --accent: var(--yellow);
}

.accent-orange {
  --accent: var(--orange);
}

.card-label {
  color: var(--accent, var(--green));
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.fit-card h3 {
  margin: 36px 0 18px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0;
}

.fit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.links-section h2 {
  margin-bottom: 38px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.link-grid a {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-grid a:hover,
.link-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(82, 246, 183, 0.45);
  background: rgba(82, 246, 183, 0.055);
  outline: none;
}

.link-grid span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
}

.link-grid strong {
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.14;
}

.closing {
  min-height: 72svh;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(78px, 10vw, 160px) clamp(20px, 5vw, 84px);
  background:
    linear-gradient(90deg, rgba(82, 246, 183, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 138, 76, 0.08), transparent 42%);
}

.closing h2 {
  max-width: 1080px;
  margin-bottom: 26px;
}

.closing p {
  max-width: 760px;
  margin-bottom: 34px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 84px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.copy-email {
  min-height: 38px;
  padding: 0 12px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.copy-email.is-copied {
  color: #07100c;
  background: var(--yellow);
  border-color: var(--yellow);
}

@media (max-width: 1100px) {
  .signal-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }

  .hero {
    align-items: end;
  }

  .proof-strip,
  .fit-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 174px;
    line-height: 1.2;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-art {
    width: 210vw;
    height: 720px;
    inset: 0 auto auto -66vw;
    opacity: 0.54;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.54) 0%, rgba(5, 6, 6, 0.95) 58%, #050606 100%),
      linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.2));
  }

  h1 {
    font-size: clamp(54px, 18vw, 94px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .proof-strip,
  .fit-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fit-card {
    min-height: 280px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
