:root {
  --bg: #05070A;
  --panel: rgba(255,255,255,0.055);
  --panel-strong: rgba(255,255,255,0.09);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.58);
  --faint: rgba(255,255,255,0.14);
  --blue: #2563EB;
  --teal: #06B6D4;
  --line: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 50;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  mix-blend-mode: overlay;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark { width: 66px; height: auto; display: block; object-fit: contain; }
.brand span {
  letter-spacing: .28em;
  font-size: 13px;
  font-weight: 400;
}
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(37,99,235,.5);
}
.nav-cta:hover { border-color: var(--teal); }

.section-pad { padding: 120px 48px; }
.compact { padding-top: 80px; padding-bottom: 80px; }

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  margin: 0 0 24px;
  color: rgba(255,255,255,.48);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(64px, 9vw, 128px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 300;
  margin-bottom: 34px;
}
.hero-sub {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; margin-top: 46px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 14px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--blue); color: white; }
.btn.primary:hover { background: var(--teal); }
.btn.ghost { color: rgba(255,255,255,.72); border: 1px solid var(--line); }
.btn.ghost:hover { color: white; border-color: rgba(255,255,255,.28); }

.hero-visual {
  position: relative;
  height: min(650px, 70vw);
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  animation: breathe 5.5s ease-in-out infinite alternate;
}
.orb-one { width: 440px; height: 440px; background: rgba(37,99,235,.32); top: 60px; left: 30px; }
.orb-two { width: 360px; height: 360px; background: rgba(6,182,212,.22); bottom: 70px; right: 20px; animation-delay: 1s; }
.glass-object {
  width: min(470px, 82vw);
  height: min(470px, 82vw);
  position: relative;
  border-radius: 42px;
  transform: rotateX(58deg) rotateZ(-32deg);
  background: linear-gradient(145deg, rgba(37,99,235,.95), rgba(6,182,212,.78));
  box-shadow: 0 70px 160px rgba(37,99,235,.34), inset 0 1px 0 rgba(255,255,255,.38);
  animation: floatObject 7s ease-in-out infinite;
}
.glass-object::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 55%);
}
.glass-inner {
  position: absolute;
  inset: 90px;
  border-radius: 28px;
  background: rgba(5,7,10,.42);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
}
.glass-line {
  position: absolute;
  height: 2px;
  width: 58%;
  background: rgba(255,255,255,.35);
  left: 21%;
  transform: rotate(0deg);
}
.glass-line.one { top: 36%; }
.glass-line.two { top: 50%; width: 46%; }
.glass-line.three { top: 64%; width: 34%; }

.metrics {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.metric {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 150px;
}
.metric strong { display: block; font-size: 44px; line-height: 1; font-weight: 300; letter-spacing: -.04em; }
.metric span { display: block; color: var(--muted); margin-top: 18px; line-height: 1.35; }

.section-header { max-width: 820px; margin-bottom: 54px; }
.section-header.narrow { max-width: 700px; }
h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}
.section-header p:not(.eyebrow), .about-card p, .founder-copy p, .cta-card p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.services, .about, .industries, .founder, .final-cta { max-width: 1280px; margin: 0 auto; }
.service-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.service-tab {
  border: 1px solid var(--line);
  color: rgba(255,255,255,.58);
  background: transparent;
  padding: 14px 18px;
  cursor: pointer;
  transition: .25s ease;
}
.service-tab:hover, .service-tab.active { color: white; border-color: rgba(6,182,212,.65); background: rgba(6,182,212,.07); }
.service-panel {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  padding: 52px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.panel-kicker { color: var(--teal); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; }
.service-panel h3 { font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.045em; font-weight: 300; margin-bottom: 24px; }
.service-panel p { color: var(--muted); font-size: 19px; line-height: 1.58; }
.service-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.service-panel li { color: rgba(255,255,255,.75); padding-left: 22px; position: relative; }
.service-panel li::before { content: ""; width: 7px; height: 7px; background: linear-gradient(135deg,var(--blue),var(--teal)); position: absolute; left: 0; top: 8px; border-radius: 999px; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.industry-grid span {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.74);
}

.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; }
.about-card, .about-points div, .founder, .cta-card {
  border: 1px solid var(--line);
  background: var(--panel);
}
.about-card { padding: 50px; }
.about-points { display: grid; gap: 18px; }
.about-points div { padding: 34px; }
.about-points h3 { font-size: 28px; font-weight: 400; letter-spacing: -.03em; margin-bottom: 12px; }
.about-points p { color: var(--muted); line-height: 1.55; margin: 0; }

.founder {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  padding: 54px;
}
.founder-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.founder-highlights span { border: 1px solid var(--line); padding: 22px; color: rgba(255,255,255,.76); background: rgba(255,255,255,.035); }

.cta-card {
  padding: 76px;
  background: radial-gradient(circle at top right, rgba(37,99,235,.2), transparent 34%), var(--panel);
}
.cta-card h2 { max-width: 760px; }

.footer {
  padding: 42px 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}
.footer a { color: white; }
.footer-brand { opacity: .86; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes breathe { from { transform: scale(.96); opacity: .72; } to { transform: scale(1.08); opacity: 1; } }
@keyframes floatObject { 0%,100% { transform: rotateX(58deg) rotateZ(-32deg) translateY(0); } 50% { transform: rotateX(60deg) rotateZ(-28deg) translateY(-18px); } }

@media (max-width: 960px) {
  .nav { padding: 22px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .section-pad { padding: 78px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 50px; }
  .hero-visual { height: 440px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .service-panel, .about, .founder { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 44px; }
  .footer { flex-direction: column; padding: 34px 24px; }
}
@media (max-width: 560px) {
  .brand span { letter-spacing: .18em; font-size: 12px; }
  h1 { font-size: 58px; }
  .metrics, .industry-grid, .founder-highlights { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .service-panel { padding: 30px; }
  .glass-object { width: 300px; height: 300px; border-radius: 30px; }
}


/* Subtle tech illustrations added to existing Industry Focus and Founder sections */
.industry-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: stretch;
}

.light-tech-illustration,
.founder-tech-illustration {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.16), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(6,182,212,.14), transparent 34%),
    rgba(255,255,255,.035);
  overflow: hidden;
}

.light-tech-illustration::before,
.founder-tech-illustration::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.07);
}

.tech-screen {
  position: absolute;
  left: 38px;
  top: 34px;
  width: 155px;
  height: 94px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,7,10,.38);
}

.tech-screen i {
  display: block;
  height: 8px;
  margin: 14px 18px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: .72;
}

.tech-people {
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: flex;
  gap: 14px;
}

.tech-people span,
.founder-avatar {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(37,99,235,.9), rgba(6,182,212,.72));
  box-shadow: 0 0 34px rgba(6,182,212,.14);
}

.tech-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,.65), transparent);
  transform-origin: left center;
}

.tech-line.line-one {
  width: 190px;
  left: 165px;
  top: 82px;
  transform: rotate(16deg);
}

.tech-line.line-two {
  width: 150px;
  left: 168px;
  top: 120px;
  transform: rotate(-12deg);
}

.founder-tech-illustration {
  margin-top: 34px;
  min-height: 150px;
}

.founder-avatar {
  position: absolute;
  left: 34px;
  top: 52px;
}

.founder-data {
  position: absolute;
  left: 120px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
}

.founder-data.short {
  top: 36px;
  width: 130px;
}

.founder-data.long {
  top: 92px;
  width: 235px;
}

.founder-signal {
  position: absolute;
  left: 82px;
  top: 74px;
  width: 275px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,.75), rgba(6,182,212,.75));
}

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

  .light-tech-illustration {
    min-height: 220px;
  }
}
