:root {
  color-scheme: dark;
  --bg: #050709;
  --bg-2: #0b1014;
  --panel: #10171d;
  --panel-strong: #151d24;
  --line: rgba(231, 238, 244, 0.16);
  --line-strong: rgba(231, 238, 244, 0.28);
  --text: #f2f6f7;
  --muted: #a9b5bb;
  --soft: #d6dee2;
  --accent: #b9ff39;
  --accent-cyan: #55d7ff;
  --accent-amber: #ffbc4b;
  --danger: #ff6d75;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --header: 76px;
  --page-pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--accent);
  color: #071006;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 9, 0.68);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 7, 9, 0.9);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  color: var(--text);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030506;
}

#signal-canvas,
.hero-noise {
  position: absolute;
  inset: 0;
}

#signal-canvas {
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero-noise {
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: end;
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  min-height: 88svh;
  margin: 0 auto;
  padding: 132px 0 72px;
}

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

.eyebrow,
.panel-label,
.role-label,
.work-type {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 5.1rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  color: var(--soft);
  font-size: 1.22rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.button-primary {
  background: var(--accent);
  color: #071006;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d1ff70;
  outline: none;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent-cyan);
  outline: none;
}

.trust-line {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mission-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(13, 20, 25, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 18px;
}

.signal-list {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.signal-list span {
  grid-row: span 2;
  color: var(--accent-cyan);
  font-weight: 900;
}

.signal-list strong {
  line-height: 1.1;
}

.signal-list small {
  color: var(--muted);
  line-height: 1.4;
}

.ticker-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: #071006;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  gap: 0;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-group span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 28px;
  border-radius: 50%;
  background: #071006;
  opacity: 0.8;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.intro-section,
.journey-section,
.stack-section {
  background: var(--bg-2);
}

.section-grid,
.service-grid,
.founder-layout,
.identity-panel,
.work-grid,
.engagement-grid,
.contact-layout,
.site-footer {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.section > .section-heading {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.section-heading {
  max-width: 680px;
}

.section > .section-heading {
  max-width: none;
  margin-bottom: 42px;
}

.section > .section-heading h2 {
  max-width: 760px;
}

.section > .section-heading + .service-grid,
.section > .section-heading + .founder-layout,
.section > .section-heading + .engagement-grid {
  margin-top: 0;
}

.section-copy,
.journey-copy {
  max-width: 760px;
  padding-top: 31px;
  color: var(--soft);
  font-size: 1.05rem;
}

.section-grid > .stack-cloud {
  padding-top: 31px;
}

.section-copy p:last-child,
.journey-copy p:last-child {
  margin-bottom: 0;
}

.service-grid,
.work-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-card,
.work-card,
.engagement-card,
.founder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.service-card {
  min-height: 390px;
}

.service-card:nth-child(2),
.work-card:nth-child(2),
.engagement-card:nth-child(2) {
  background: #111a21;
}

.service-card:nth-child(3),
.work-card:nth-child(3),
.engagement-card:nth-child(3) {
  background: #13191a;
}

.service-card:hover,
.work-card:hover,
.engagement-card:hover,
.founder-card:hover {
  border-color: var(--line-strong);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--accent-cyan);
  font-weight: 900;
}

.service-card p,
.work-card p,
.engagement-card p,
.founder-card p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 17px;
  color: var(--soft);
  font-size: 0.94rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}

.journey-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 52px auto 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.journey-rail li {
  min-height: 260px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.journey-rail li:last-child {
  border-right: 0;
}

.journey-rail span {
  display: block;
  margin-bottom: 58px;
  color: var(--accent-amber);
  font-weight: 900;
}

.journey-rail p {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.founder-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 270px;
}

.masked-portrait {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 215, 255, 0.22), transparent 38%),
    linear-gradient(45deg, rgba(185, 255, 57, 0.2), transparent 46%),
    #071014;
}

.masked-portrait::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  width: 78px;
  height: 78px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(242, 246, 247, 0.1);
}

.masked-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 132px;
  height: 118px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px 42px 0 0;
  background: rgba(242, 246, 247, 0.08);
}

.masked-portrait span {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.42) 9px,
    rgba(0, 0, 0, 0.42) 11px
  );
}

.portrait-two {
  background:
    linear-gradient(135deg, rgba(255, 188, 75, 0.22), transparent 34%),
    linear-gradient(45deg, rgba(85, 215, 255, 0.18), transparent 50%),
    #0b1116;
}

.company-line {
  color: var(--accent-cyan) !important;
  font-weight: 800;
}

.founder-note {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 22px auto 0;
  color: var(--muted);
}

.identity-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  border: 1px solid rgba(85, 215, 255, 0.24);
  border-radius: 8px;
  background: #0a1115;
  padding: 24px;
}

.identity-panel h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

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

.identity-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 16px;
}

.identity-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.identity-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  min-height: 330px;
}

.tag-row,
.stack-cloud,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row {
  margin-top: 30px;
}

.tag-row span,
.stack-cloud span,
.contact-points span {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 10px;
}

.engagement-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.engagement-card {
  min-height: 220px;
}

.stack-cloud {
  align-content: start;
}

.stack-cloud span {
  background: rgba(255, 255, 255, 0.035);
}

.stack-cloud span:nth-child(3n + 1) {
  border-color: rgba(185, 255, 57, 0.38);
}

.stack-cloud span:nth-child(3n + 2) {
  border-color: rgba(85, 215, 255, 0.38);
}

.stack-cloud span:nth-child(3n + 3) {
  border-color: rgba(255, 188, 75, 0.36);
}

.contact-section {
  background: var(--bg);
}

.contact-section .eyebrow {
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.contact-copy p {
  color: var(--soft);
  font-size: 1.04rem;
}

.contact-points {
  margin-top: 28px;
}

.contact-points span {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.whatsapp-card {
  margin-top: 22px;
  border: 1px solid rgba(185, 255, 57, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(185, 255, 57, 0.12), transparent 48%),
    var(--panel);
  padding: 20px;
}

.whatsapp-card .channel-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.whatsapp-card h3 {
  margin-bottom: 10px;
}

.whatsapp-card p {
  color: var(--soft);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #071006;
  font-weight: 850;
  padding: 11px 13px;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: #d1ff70;
  color: #071006;
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 13px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 255, 57, 0.14);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.contact-form .button-primary {
  background: var(--accent);
  color: #071006;
}

.contact-form .button-primary:hover,
.contact-form .button-primary:focus-visible {
  background: #d1ff70;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 36px;
  padding: 58px 0 28px;
  color: var(--muted);
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
}

.footer-main {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-cta {
  width: fit-content;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  font-weight: 850;
  padding: 11px 13px;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--soft);
  font-weight: 800;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent-cyan);
  outline: none;
}

.footer-contact span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  color: #7f8d95;
  font-size: 0.9rem;
}

.copyright {
  grid-column: 1 / -1;
  color: #7f8d95;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 34px;
  }

  .mission-panel {
    max-width: 640px;
  }

  .service-grid,
  .engagement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-panel,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .journey-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-rail li {
    border-bottom: 1px solid var(--line);
  }

  .journey-rail li:nth-child(3n) {
    border-right: 0;
  }

  .journey-rail li:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 68px;
    --page-pad: clamp(18px, 5vw, 28px);
  }

  .site-header {
    padding: 0 var(--page-pad);
  }

  .brand span {
    max-width: 168px;
    font-size: 0.92rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 18px var(--page-pad);
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 9, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-inner {
    padding-top: 110px;
    padding-bottom: 46px;
  }

  .section {
    padding: 72px 0;
  }

  .section-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-copy,
  .journey-copy,
  .section-grid > .stack-cloud {
    padding-top: 0;
  }

  .work-grid,
  .journey-rail {
    grid-template-columns: 1fr;
  }

  .journey-rail {
    width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  }

  .journey-rail li,
  .journey-rail li:nth-child(3n),
  .journey-rail li:nth-last-child(-n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-rail li:last-child {
    border-bottom: 0;
  }

  .journey-rail span {
    margin-bottom: 28px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .masked-portrait {
    min-height: 220px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  :root {
    --page-pad: clamp(18px, 5.6vw, 22px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand span {
    max-width: 138px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .work-card,
  .engagement-card,
  .founder-card,
  .contact-form {
    min-height: auto;
    padding: 18px;
  }
}
