:root {
  --ink: #101216;
  --ink-soft: #2b3037;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --signal: #14b8a6;
  --amber: #f4a938;
  --red: #ff454f;
  --blue: #2d7df0;
  --line: rgba(16, 18, 22, 0.12);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100svh;
  overflow-x: hidden;
}

.topbar {
  align-items: center;
  background: rgba(16, 18, 22, 0.9);
  backdrop-filter: blur(18px);
  color: #ffffff;
  display: flex;
  gap: 24px;
  inset: 0 0 auto 0;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  width: 100%;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  align-items: center;
  background: var(--red);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 24px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  margin-top: 5px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px);
  justify-content: flex-end;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.hero {
  align-items: end;
  background:
    linear-gradient(
      90deg,
      rgba(11, 13, 16, 0.95) 0%,
      rgba(11, 13, 16, 0.74) 42%,
      rgba(11, 13, 16, 0.28) 68%,
      rgba(11, 13, 16, 0.1) 100%
    ),
    linear-gradient(180deg, rgba(11, 13, 16, 0.25), rgba(11, 13, 16, 0.82)),
    url("hero-led.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  display: grid;
  min-height: 88svh;
  padding: 128px clamp(20px, 5vw, 72px) 30px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.14), transparent),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 5px
    );
  content: "";
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.hero-signal {
  background: linear-gradient(90deg, var(--red), var(--amber), var(--signal));
  border-radius: 999px;
  box-shadow: 0 0 42px rgba(20, 184, 166, 0.45);
  height: 4px;
  left: clamp(20px, 5vw, 72px);
  max-width: 440px;
  position: absolute;
  top: 104px;
  width: 34vw;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  padding-bottom: clamp(26px, 6vh, 80px);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 116px);
  letter-spacing: 0;
  line-height: 0.93;
  margin: 0;
  max-width: 780px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  margin: 28px 0 0;
  max-width: 720px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button-primary {
  background: var(--red);
  color: #ffffff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

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

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.hero-proof div {
  background: rgba(16, 18, 22, 0.45);
  min-height: 104px;
  padding: 22px;
}

.hero-proof strong {
  color: #ffffff;
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.section-band {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

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

.section-heading.compact {
  max-width: 620px;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  margin: 0;
}

.intro {
  background: var(--paper);
}

.intro-panel {
  display: grid;
  gap: 24px;
}

.intro-copy,
.vision-grid p,
.founder-copy > p:not(.section-kicker),
.contact-copy p {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  margin: 0;
}

.media-frame {
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.media-frame::after {
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 58%,
    transparent 100%
  );
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-90%);
}

.media-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.intro-image {
  aspect-ratio: 16 / 9;
}

.founder-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f8f5 100%);
  padding-top: clamp(58px, 8vw, 96px);
}

.founder-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
}

.founder-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16, 18, 22, 0.09);
  overflow: hidden;
  position: relative;
}

.founder-card::before {
  background: linear-gradient(90deg, var(--red), var(--amber), var(--signal));
  content: "";
  display: block;
  height: 6px;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  background: #eef2f5;
  border-radius: 0;
}

.founder-photo img {
  object-position: center top;
}

.founder-caption {
  display: grid;
  gap: 7px;
  padding: 20px 22px 24px;
}

.founder-caption strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.founder-caption span {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
}

.founder-copy {
  max-width: 760px;
}

.founder-copy h2 {
  margin-bottom: 22px;
}

.founder-copy .founder-tagline {
  border-left: 5px solid var(--red);
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
  margin-top: 22px;
  padding-left: 18px;
}

.values-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.value-pill {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 8px;
  padding: 16px;
}

.value-pill strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.value-pill span {
  color: var(--ink-soft);
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 7px;
}

.services-band {
  background:
    radial-gradient(circle at 18% 8%, rgba(20, 184, 166, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
}

.services-intro {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
}

.service-summary {
  background:
    linear-gradient(135deg, rgba(255, 69, 79, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(20, 184, 166, 0.22), transparent 45%),
    var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.service-summary::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 12px 12px;
  content: "";
  inset: 0 0 auto auto;
  height: 120px;
  opacity: 0.35;
  position: absolute;
  width: 180px;
}

.service-summary span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-summary strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  margin-top: 22px;
}

.service-summary p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
  margin: 20px 0 0;
}

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

.service-card {
  background:
    linear-gradient(135deg, rgba(255, 69, 79, 0.08), transparent 48%),
    linear-gradient(315deg, rgba(20, 184, 166, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 18, 22, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 18, 22, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 210px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.service-card::after {
  background-image:
    linear-gradient(rgba(16, 18, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 22, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  inset: auto 0 0 auto;
  height: 72px;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  width: 98px;
}

.service-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card-top span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.service-card-top i {
  background: linear-gradient(90deg, var(--red), var(--amber), var(--signal));
  border-radius: 999px;
  display: block;
  height: 6px;
  width: 58px;
}

.service-card h3 {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.18;
  margin: 0;
  max-width: 95%;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  margin: 14px 0 0;
  position: relative;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.showcase-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.showcase-card .media-frame {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.showcase-card div:last-child {
  padding: 20px;
}

.showcase-card h3 {
  font-size: 21px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.showcase-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.approach-band {
  background: var(--ink);
  color: #ffffff;
}

.approach-band .section-kicker {
  color: var(--amber);
}

.approach-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
}

.approach-image {
  aspect-ratio: 16 / 10;
}

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

.delivery-step {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  min-height: 260px;
  padding: 26px;
}

.delivery-step span {
  color: var(--signal);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 52px;
}

.delivery-step h3 {
  font-size: 28px;
  line-height: 1;
  margin: 0 0 14px;
}

.delivery-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.industries-band {
  background: #eef7f4;
}

.industry-image {
  aspect-ratio: 16 / 10;
  margin-top: 30px;
}

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

.industry-list span {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 8px;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  min-height: 58px;
  padding: 14px 16px;
}

.vision-band {
  background: #ffffff;
}

.vision-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vision-grid article {
  border-left: 6px solid var(--red);
  padding: 8px 0 8px 28px;
}

.vision-grid article:nth-child(2) {
  border-color: var(--blue);
}

.vision-grid h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(255, 69, 79, 0.14), transparent 30%),
    linear-gradient(315deg, rgba(20, 184, 166, 0.2), transparent 30%),
    var(--ink);
  color: #ffffff;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.contact-inner {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  max-width: 1180px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy .button {
  margin-top: 30px;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-detail {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: block;
  font-style: normal;
  padding: 20px;
}

.contact-detail span {
  color: var(--amber);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-detail strong {
  color: #ffffff;
  display: block;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.2;
  margin-top: 10px;
}

.contact-detail small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}

.contact-detail:hover,
.contact-detail:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .hero-proof div,
  .section-heading,
  .intro-panel,
  .founder-card,
  .founder-copy,
  .value-pill,
  .service-card,
  .showcase-card,
  .delivery-step,
  .industry-list span,
  .vision-grid article,
  .contact-copy,
  .contact-detail {
    animation: fade-up 0.8s ease both;
  }

  .hero-content {
    animation-delay: 0.12s;
  }

  .hero-proof div:nth-child(2),
  .value-pill:nth-child(2n),
  .service-card:nth-child(2n),
  .showcase-card:nth-child(2),
  .delivery-step:nth-child(2),
  .industry-list span:nth-child(2n),
  .vision-grid article:nth-child(2) {
    animation-delay: 0.12s;
  }

  .hero-proof div:nth-child(3),
  .value-pill:nth-child(3n),
  .service-card:nth-child(3n),
  .showcase-card:nth-child(3),
  .delivery-step:nth-child(3),
  .industry-list span:nth-child(3n) {
    animation-delay: 0.2s;
  }

  .hero {
    animation: hero-drift 18s ease-in-out infinite alternate;
  }

  .hero-signal {
    animation: signal-pulse 2.8s ease-in-out infinite;
  }

  .media-frame img {
    transition: transform 0.7s ease;
  }

  .media-frame:hover img {
    transform: scale(1.04);
  }

  .media-frame:hover::after {
    animation: screen-sweep 1.1s ease;
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    background-position: center;
  }

  to {
    background-position: 54% center;
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.94);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes screen-sweep {
  from {
    transform: translateX(-90%);
  }

  to {
    transform: translateX(90%);
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    min-height: 90svh;
    padding-top: 154px;
  }

  .split,
  .vision-grid,
  .founder-grid,
  .approach-head,
  .services-intro,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section[id] {
    scroll-margin-top: 138px;
  }

  .topbar {
    min-height: 104px;
  }

  .brand-symbol {
    flex-basis: 38px;
    height: 38px;
  }

  .nav-links {
    gap: 10px 16px;
    justify-content: flex-start;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero {
    background-position: 58% center;
    min-height: 86svh;
    padding-bottom: 20px;
    padding-top: 142px;
  }

  .hero h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .hero-signal {
    top: 124px;
    width: 62vw;
  }

  .hero-proof,
  .service-grid,
  .industry-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 1.05;
  }

  .hero-proof div {
    min-height: auto;
    padding: 16px 0;
  }

  .button {
    width: 100%;
  }

  .section-band,
  .contact-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-band {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .service-summary {
    min-height: auto;
    padding: 20px;
  }

  .service-summary strong {
    margin-top: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
  }

  .service-card-top {
    margin-bottom: 14px;
  }

  .founder-caption,
  .contact-detail {
    padding: 18px;
  }
}
