:root {
  --navy: #081426;
  --navy-2: #0d1e36;
  --blue: #4ca6ff;
  --aqua: #6ce5d2;
  --white: #f7f8f5;
  --muted: #aab9ca;
  --line: rgba(172, 204, 233, 0.18);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
}

* { box-sizing: border-box; }

html { font-size: 16px; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(76, 166, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 8% 88%, rgba(108, 229, 210, 0.08), transparent 23rem),
    var(--navy);
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(115deg, transparent 4%, #000 55%, transparent 94%);
}

.route {
  position: absolute;
  display: block;
  border-color: rgba(76, 166, 255, 0.27);
  border-style: solid;
}

.route-a {
  width: 42vw;
  height: 32vh;
  top: 10vh;
  right: -8vw;
  border-width: 1px 0 0 1px;
  border-radius: 6rem 0 0;
}

.route-b {
  width: 28vw;
  height: 52vh;
  top: 42vh;
  right: 16vw;
  border-width: 1px 1px 0 0;
  border-radius: 0 6rem 0 0;
}

.route-c {
  width: 34vw;
  height: 20vh;
  bottom: -4vh;
  left: -6vw;
  border-width: 1px 1px 0 0;
  border-radius: 0 7rem 0 0;
}

.node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(108, 229, 210, 0.09), 0 0 24px rgba(108, 229, 210, 0.45);
}

.node-a { top: 10vh; right: 34vw; }
.node-b { top: 42vh; right: 16vw; }
.node-c { bottom: 6vh; left: 28vw; }
.node-d { top: 73vh; right: 44vw; }

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  padding: clamp(1.5rem, 4vh, 2.7rem) 0 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.052em;
  text-decoration: none;
}

.brand strong { font-weight: 850; }
.brand .dot-com { margin-left: 0.11em; }

.header-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

main {
  min-width: 0;
  display: grid;
  align-items: center;
}

.hero {
  padding: clamp(3rem, 8vh, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.hero-copy { max-width: 810px; }

.eyebrow {
  margin: 0 0 clamp(1.7rem, 4vh, 3rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.7rem;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 0;
  font-size: clamp(4.1rem, 9.4vw, 9.5rem);
  font-weight: 780;
  line-height: 0.82;
  letter-spacing: -0.078em;
}

h1 em {
  color: var(--blue);
  font-style: normal;
  font-weight: 350;
}

.intro {
  max-width: 650px;
  margin: clamp(2rem, 4.5vh, 3.4rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.site-status {
  margin-top: clamp(2.4rem, 5vh, 4rem);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pulse {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(108, 229, 210, 0.11);
}

.site-status div { display: grid; gap: 0.25rem; }
.site-status strong { font-size: 0.88rem; }
.site-status span:last-child { color: var(--muted); font-size: 0.85rem; }

.work-card {
  overflow: hidden;
  border: 1px solid rgba(172, 204, 233, 0.25);
  border-radius: 1.15rem;
  background: rgba(13, 30, 54, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(16px);
}

.card-head,
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-head { border-bottom: 1px solid var(--line); }
.bracket-mark { color: var(--aqua); }

.work-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-card li {
  position: relative;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0 0.8rem;
  padding: 1.35rem;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding-left 180ms ease;
}

.work-card li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 180ms ease;
}

.work-card li:hover {
  padding-left: 1.65rem;
  background: rgba(76, 166, 255, 0.07);
}

.work-card li:hover::after { transform: scaleY(1); }

.work-card li > span {
  grid-row: span 2;
  padding-top: 0.2rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.work-card strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.work-card small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.79rem;
}

.card-foot {
  margin: 0;
  color: var(--aqua);
}

.review-stream {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(5, 14, 28, 0.78);
}

.review-track {
  width: max-content;
  padding: 1.25rem 0;
  display: flex;
  gap: 1rem;
  animation: review-scroll 48s linear infinite;
}

.review {
  width: min(76vw, 390px);
  min-height: 8.5rem;
  padding: 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(172, 204, 233, 0.2);
  border-radius: 0.8rem;
  background: var(--navy-2);
}

.review:first-child { margin-left: 1rem; }

.stars {
  color: var(--aqua);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.review p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
}

.review cite {
  color: var(--muted);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

footer {
  padding: 1.15rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-brand strong {
  color: var(--white);
  font-weight: 900;
}

.contact {
  color: var(--aqua);
  text-decoration: none;
  text-transform: lowercase;
}

.contact:hover,
.contact:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .work-card { width: min(100%, 580px); }
}

@media (max-width: 560px) {
  .header-note { display: none; }
  .hero { padding-block: 4rem; }

  h1 {
    font-size: clamp(4rem, 21vw, 6.4rem);
    line-height: 0.86;
  }

  footer {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: breathe 2.2s ease-in-out infinite; }
  .hero-copy { animation: arrive 650ms ease-out both; }
  .work-card { animation: arrive 650ms 120ms ease-out both; }
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes breathe {
  50% { box-shadow: 0 0 0 9px rgba(108, 229, 210, 0.04); }
}

@keyframes review-scroll {
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}
