@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #111111;
  --navy-2: #1a1a1a;
  --green: #8ed63a;
  --green-soft: #b8e86e;
  --yellow: #f5c400;
  --yellow-soft: #ffd84a;
  --cyan: #1ac6f0;
  --cyan-soft: #6dddf6;
  --purple: #8a2bb5;
  --purple-soft: #b45ed4;
  --teal: #1ac6f0;
  --teal-dark: #1299bb;
  --teal-soft: rgba(26, 198, 240, 0.16);
  --cream: #f7f8fb;
  --white: #ffffff;
  --text: #111111;
  --muted: #5c6778;
  --line: #e6ebf2;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.1);
  --radius: 20px;
  --max: 1180px;
  --header-h: 72px;
  --logo-glow: linear-gradient(135deg, #8ed63a, #f5c400, #1ac6f0, #8a2bb5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#site-header {
  min-height: var(--header-h);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 10px;
  color: #fff;
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav a:focus-visible,
.nav-link:focus-visible {
  outline-offset: 4px;
}

h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 0.55em;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  background: #2a2a2a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: none;
}

.cta-band .btn,
.hero .btn:not(.btn-ghost) {
  background: var(--cyan);
  color: #111;
}

.cta-band .btn:hover,
.hero .btn:not(.btn-ghost):hover {
  background: #fff;
  color: #111;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 1.22rem;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 42px;
  border-radius: 0;
}

.brand-on-dark {
  background: #fff;
  border-radius: 14px;
  padding: 6px 10px;
}

.brand:hover {
  color: var(--teal-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
  border-radius: 0;
}

.nav-item {
  list-style: none;
  position: relative;
}

.nav a,
.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 999px;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.nav a:hover,
.nav-link:hover,
.nav a.active,
.nav-link.active {
  color: var(--navy);
  background: var(--cream);
  box-shadow: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  background: var(--cream);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  min-width: 240px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
  border: 1px solid var(--line);
}

.dropdown.wide {
  min-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  padding: 9px 12px;
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--text);
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 88vh;
  color: var(--white);
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 0 0 36px 36px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.9s ease, transform 8s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 280px at 12% 18%, rgba(142, 214, 58, 0.45), transparent 55%),
    radial-gradient(620px 320px at 88% 12%, rgba(245, 196, 0, 0.4), transparent 55%),
    radial-gradient(560px 300px at 18% 88%, rgba(26, 198, 240, 0.42), transparent 55%),
    radial-gradient(500px 280px at 90% 82%, rgba(138, 43, 181, 0.42), transparent 55%),
    linear-gradient(115deg, rgba(17, 17, 17, 0.9) 8%, rgba(17, 17, 17, 0.42) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 88px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(26, 198, 240, 0.45);
  border-radius: 999px;
  background: rgba(26, 198, 240, 0.14);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 13ch;
  margin-bottom: 18px;
}

.hero p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  font-weight: 500;
}

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

.hero-nav {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--yellow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.stat {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 72px 0;
}

.section-cream {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(142, 214, 58, 0.1), transparent 50%),
    radial-gradient(700px 280px at 100% 100%, rgba(138, 43, 181, 0.08), transparent 50%),
    var(--cream);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.split h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.split img,
.img-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
}

.img-frame {
  position: relative;
}

.img-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 28px;
  background: var(--logo-glow);
  z-index: -1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  color: inherit;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "→";
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.2s;
  font-weight: 700;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  color: inherit;
}

.card:hover::after {
  opacity: 1;
  transform: none;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.card:nth-child(4n + 1) .card-icon {
  background: rgba(142, 214, 58, 0.16);
  color: var(--green);
}

.card:nth-child(4n + 2) .card-icon {
  background: rgba(245, 196, 0, 0.16);
  color: var(--yellow);
}

.card:nth-child(4n + 3) .card-icon {
  background: rgba(26, 198, 240, 0.16);
  color: var(--cyan);
}

.card:nth-child(4n + 4) .card-icon {
  background: rgba(138, 43, 181, 0.16);
  color: var(--purple);
}

.card:nth-child(4n + 1):hover { border-color: var(--green); }
.card:nth-child(4n + 2):hover { border-color: var(--yellow); }
.card:nth-child(4n + 3):hover { border-color: var(--cyan); }
.card:nth-child(4n + 4):hover { border-color: var(--purple); }

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  padding-right: 16px;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.value {
  background: var(--cream);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  border-radius: 36px 36px 0 0;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 16ch;
}

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.page-hero {
  background: #0a0a0a !important;
  color: var(--white);
  padding: 52px 0 44px;
  position: relative;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 240px at 90% 10%, rgba(26, 198, 240, 0.22), transparent 50%),
    radial-gradient(420px 220px at 10% 80%, rgba(142, 214, 58, 0.12), transparent 50%);
}

.page-hero::after {
  display: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.crumb {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.crumb a {
  color: var(--teal);
}

.underline {
  width: 48px;
  height: 4px;
  background: var(--cyan);
  border-radius: 99px;
  margin: 18px 0 20px;
}

.prose {
  max-width: none;
}

.page-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.page-layout .prose {
  max-width: none;
}

.page-aside {
  position: sticky;
  top: 96px;
}

.page-aside img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 16px;
}

.page-aside-card {
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 24px;
}

.page-aside-card strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.page-aside-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.page-aside-card a:not(.btn) {
  color: var(--cyan);
}

.page-aside-card .btn {
  width: 100%;
}

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

  .page-aside {
    position: static;
  }
}

.prose h2 {
  margin-top: 1.5em;
  font-size: 1.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26, 198, 240, 0.18);
}

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

.info-cards {
  display: grid;
  gap: 12px;
}

.info-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
}

.info-card h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 6px;
}

.info-card p,
.info-card a {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.form-ok {
  display: none;
  background: #e7f7f4;
  color: var(--teal-dark);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.form-ok.show {
  display: block;
}

.form-err {
  color: #b42318;
  font-size: 0.88rem;
  display: none;
}

.form-err.show {
  display: block;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--teal);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0 0 9px;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 14px;
  display: inline-flex;
  width: fit-content;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.48);
}

.news-ok {
  display: none;
  color: var(--teal);
  font-size: 0.85rem;
  margin-top: 8px;
}

.news-ok.show {
  display: block;
}

@media (max-width: 980px) {
  .cards,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid,
  .footer-grid,
  .values,
  .cta-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .split img,
  .img-frame img {
    height: 280px;
  }

  .dropdown.wide {
    min-width: 280px;
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 24px;
  }

  .hero,
  .page-hero {
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-bar {
    position: static;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    border-radius: 0 0 18px 18px;
    z-index: 30;
  }

  body.nav-open .nav {
    display: flex;
  }

  .dropdown,
  .dropdown.wide {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    background: transparent;
  }

  .nav-item.open .dropdown {
    display: grid;
  }

  .cards,
  .stats {
    grid-template-columns: 1fr;
  }
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 12% 20%, rgba(142, 214, 58, 0.35), transparent 55%),
    radial-gradient(640px 360px at 88% 10%, rgba(245, 196, 0, 0.28), transparent 50%),
    radial-gradient(720px 400px at 80% 90%, rgba(138, 43, 181, 0.38), transparent 55%),
    radial-gradient(600px 340px at 10% 90%, rgba(26, 198, 240, 0.32), transparent 50%),
    #0a0a0a;
}

.hero-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 40px;
}

.section-intro p:last-child {
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
}

.bento-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
  border-color: #111;
}

.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 340px;
  background: #111;
  color: #fff;
  border-color: #111;
}

.bento-lg h3,
.bento-lg p {
  color: #fff;
}

.bento-lg:hover {
  border-color: var(--cyan);
}

.bento-cell h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.bento-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.bento-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(26, 198, 240, 0.12);
  color: var(--teal-dark);
}

.bento-tag.yellow,
.bento-tag.cyan,
.bento-tag.purple {
  background: rgba(26, 198, 240, 0.12);
  color: var(--teal-dark);
}

.bento-lg .bento-tag {
  background: rgba(26, 198, 240, 0.18);
  color: var(--cyan-soft);
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--white);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.marquee-track span {
  white-space: nowrap;
}

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

.process-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.process-list strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--navy);
}

.panel {
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 12px 8px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.panel-row a,
.panel-row b {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .bento,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .bento-lg {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .bento,
  .process-list {
    grid-template-columns: 1fr;
  }
}

.hero-split {
  position: relative;
  z-index: 2;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 64px;
}

.hero-split h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.lede {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.hero-meta li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.product {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.product-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #1c1c1c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
  display: block;
}

.product-bar i:first-child { background: #8ed63a; }
.product-bar i:nth-child(2) { background: #f5c400; }
.product-bar i:nth-child(3) { background: #1ac6f0; }

.product-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 280px;
}

.product-side {
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

.product-side span {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
}

.product-side span.on {
  background: rgba(26, 198, 240, 0.15);
  color: var(--cyan-soft);
}

.product-main {
  padding: 18px;
}

.row-line {
  height: 10px;
  border-radius: 6px;
  background: #2a2a2a;
  margin-bottom: 10px;
}

.row-line.w1 { width: 88%; }
.row-line.w2 { width: 64%; background: rgba(26, 198, 240, 0.35); }
.row-line.w3 { width: 76%; }
.row-line.w4 { width: 42%; }

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  padding: 8px 0 4px;
}

.platforms span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  letter-spacing: -0.02em;
}

.work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.work-card .kicker {
  margin-bottom: 16px;
}

.work-card h3 {
  font-size: 1.2rem;
}

.work-card p {
  color: var(--muted);
  margin: 0;
  margin-top: auto;
}

.faq {
  max-width: 760px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.map-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  margin-top: 14px;
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.jobs {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.job {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

.job h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.job p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 32px 0;
  border-left: 2px solid var(--line);
  padding-left: 22px;
}

.timeline div {
  margin-bottom: 22px;
}

.timeline strong {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero-split,
  .work,
  .job {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .product-side {
    display: none;
  }
}

.hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.35));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transform: scale(1.02);
}

.float-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 240px;
}

.float-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.float-card span {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

a.work-card {
  padding: 0;
  overflow: hidden;
  color: inherit;
  min-height: 0;
}

a.work-card:hover {
  color: inherit;
  border-color: #111;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

a.work-card:hover img {
  transform: scale(1.05);
}

.work-card .work-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.photo-bleed {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  margin: 8px 0 28px;
}

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

.metric {
  background: var(--cream);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.case-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 0 0 32px 32px;
  margin-top: -1px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}
