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

:root {
  --bg: #050506;
  --bg-elev: #101013;
  --bg-soft: #17171c;
  --text: #f4f4f6;
  --muted: #b5b5be;
  --line: #25252c;
  --line-strong: #34343d;
  --accent: #2f8cff;
  --accent-warm: #52d4ff;
  --accent-soft: rgba(47, 140, 255, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  --mouse-x: 50vw;
  --mouse-y: 20vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 2%, rgba(47, 140, 255, 0.17), transparent 35%),
    radial-gradient(circle at 84% 4%, rgba(82, 212, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #080809 0%, #050506 100%);
  letter-spacing: -0.01em;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(460px circle at var(--mouse-x) var(--mouse-y), rgba(47, 140, 255, 0.11), transparent 60%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image: radial-gradient(#ffffff 0.4px, transparent 0.4px);
  background-size: 4px 4px;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  z-index: 999;
}

.skip-link:focus {
  top: 1rem;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #3f73ff, var(--accent-warm));
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 6, 0.83);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: #e1e1e6;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 170ms ease;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.site-nav a:hover::after,
.site-nav a.current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  margin-left: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #111116;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: #f3f3f3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 47px;
  padding: 0.72rem 1.2rem;
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(120deg, var(--accent), #3f73ff 40%, var(--accent-warm));
  box-shadow: 0 12px 30px rgba(47, 140, 255, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: #f3f3f4;
}

main {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding-bottom: 3rem;
}

section {
  margin-top: 4.4rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  line-height: 1.03;
}

h3 {
  font-size: clamp(1.13rem, 2.4vw, 1.34rem);
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  line-height: 1.68;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(84, 149, 255, 0.55);
  background: linear-gradient(90deg, rgba(47, 140, 255, 0.28), rgba(82, 212, 255, 0.18));
  color: #d6e7ff;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-weight: 800;
}

.lead {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  color: #d0d0d7;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
}

.hero {
  margin-top: 3.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-title {
  max-width: 12ch;
}

.hero-media {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 570px;
  background: #0d0d10;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(47, 140, 255, 0.09));
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-proof,
.stat-grid,
.grid-2,
.grid-3,
.grid-4,
.services-layout,
.blog-grid,
.case-grid,
.process-grid,
.kpi-grid,
.contact-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-proof,
.stat-grid,
.grid-4,
.process-grid,
.kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  background: linear-gradient(180deg, #111115, #0c0c10);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 140, 255, 0.52);
}

.card p {
  margin: 0.5rem 0 0;
}

.card ul,
.card ol {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.43rem;
}

.stat-value,
.kpi-value {
  font-size: clamp(1.8rem, 4.4vw, 2.45rem);
  color: #fff;
  display: block;
  font-weight: 800;
  line-height: 1;
}

.stat-label,
.kpi-label {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.client-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 140, 255, 0.52);
  color: #deebff;
  background: rgba(47, 140, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.case-meta {
  margin: 0 0 0.6rem;
  color: #c9dcff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}

.case-link,
.read-link {
  display: inline-flex;
  margin-top: 0.7rem;
  font-weight: 700;
  color: #dbe9ff;
}

.case-link::after,
.read-link::after {
  content: "\2192";
  margin-left: 0.42rem;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-link {
  display: block;
  height: 100%;
}

.blog-card .card-body {
  padding: 1rem 1.05rem 1.1rem;
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(47, 140, 255, 0.11);
  border: 1px solid rgba(47, 140, 255, 0.35);
  color: #d7e8ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.69rem;
  font-weight: 700;
}

.search-wrap {
  margin-top: 0.9rem;
  max-width: 560px;
}

.search-input,
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101015;
  color: #ececf0;
  font: inherit;
  padding: 0.76rem 0.84rem;
}

.search-input:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47, 140, 255, 0.68);
  outline: 2px solid rgba(47, 140, 255, 0.24);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
  color: #bdbdc4;
}

.form-status {
  margin: 0;
  padding: 0.7rem 0.82rem;
  border-radius: 11px;
  border: 1px solid transparent;
  min-height: 2.4rem;
  font-size: 0.9rem;
}

.form-status.ok {
  border-color: rgba(120, 214, 140, 0.48);
  background: rgba(120, 214, 140, 0.12);
  color: #d8ffe0;
}

.form-status.err {
  border-color: rgba(255, 88, 88, 0.55);
  background: rgba(255, 88, 88, 0.13);
  color: #ffe1e1;
}

.page-hero {
  margin-top: 3.3rem;
  display: grid;
  gap: 0.9rem;
  max-width: 930px;
}

.page-hero h1 {
  max-width: 14ch;
}

.kicker,
.post-meta,
.meta {
  margin: 0;
  color: #c0c0c8;
  font-size: 0.88rem;
}

.blog-post {
  max-width: 920px;
}

.blog-post h1 {
  max-width: none;
  font-size: clamp(2.05rem, 5vw, 3.8rem);
}

.blog-post h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.34rem, 3.2vw, 2.08rem);
}

.blog-post h3 {
  margin-top: 1rem;
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
}

.post-image {
  margin: 1rem 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}

.insight-box {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(47, 140, 255, 0.52);
  background: linear-gradient(130deg, rgba(47, 140, 255, 0.2), rgba(82, 212, 255, 0.13));
  color: #dbe9ff;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1rem;
}

.toc {
  position: sticky;
  top: 92px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: #101014;
}

.toc h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ol {
  margin: 0.72rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.42rem;
}

.toc a {
  color: #e1e1e6;
  font-size: 0.88rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101014;
  padding: 0.74rem 0.88rem;
}

details + details {
  margin-top: 0.65rem;
}

summary {
  cursor: pointer;
  color: #f6f6f8;
  font-weight: 700;
}

.article-nav {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.empty-state {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

footer {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
  color: #b8b8bf;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 0.9rem;
  font-size: 0.88rem;
}

.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--accent), #3f73ff, var(--accent-warm));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 140, 255, 0.33);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 100;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
}

.ink-mark {
  position: relative;
  display: inline-block;
  color: #fff;
}

.ink-mark[data-scribble="circle"] {
  white-space: nowrap;
}

.ink-svg {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}

.ink-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 1px rgba(47, 140, 255, 0.24));
}

.js .ink-path {
  opacity: 0;
}

.js.page-ready .ink-path.draw {
  animation: ink-draw 900ms cubic-bezier(0.2, 0.86, 0.32, 1) forwards;
  animation-delay: var(--scribble-delay, 0.25s);
}

@keyframes ink-draw {
  from {
    stroke-dashoffset: var(--dash-len);
    opacity: 0.15;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}


.hero-immersive {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 1.05rem;
  padding: 0 clamp(0.6rem, 2vw, 1.2rem);
}

.immersive-shell {
  position: relative;
  min-height: min(82vh, 860px);
  border-radius: 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #090b10;
}

.immersive-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(23, 94, 214, 0.32), transparent 52%),
    linear-gradient(105deg, rgba(6, 7, 10, 0.9) 0%, rgba(6, 7, 10, 0.62) 44%, rgba(6, 7, 10, 0.16) 78%);
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.scene-shot {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.33);
  transform: translate3d(0, 0, 0) scale(1.04);
}

.scene-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.scene-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(2, 4, 9, 0.2));
}

.shot-a {
  left: -2%;
  top: -8%;
  width: 39%;
  height: 54%;
}

.shot-b {
  left: 34%;
  top: -10%;
  width: 25%;
  height: 40%;
}

.shot-c {
  right: 6%;
  top: -5%;
  width: 28%;
  height: 47%;
}

.shot-d {
  left: 6%;
  bottom: -10%;
  width: 30%;
  height: 47%;
}

.shot-e {
  left: 39%;
  bottom: -8%;
  width: 24%;
  height: 45%;
}

.shot-f {
  right: -4%;
  bottom: -11%;
  width: 35%;
  height: 54%;
}

.immersive-overlay {
  position: relative;
  z-index: 3;
  min-height: inherit;
  width: min(92%, 760px);
  padding: clamp(2rem, 6vw, 4.8rem) clamp(1.2rem, 3vw, 2.4rem);
  display: grid;
  align-content: end;
  gap: 1rem;
}

.hero-immersive .hero-title {
  max-width: 9.7ch;
  font-size: clamp(2.55rem, 7.6vw, 6.25rem);
  line-height: 0.9;
}

.sticky-headline {
  margin-top: 2.2rem;
}

.sticky-headline-stage {
  min-height: 160vh;
  position: relative;
}

.sticky-headline-copy {
  position: sticky;
  top: 17vh;
  max-width: 920px;
}

.sticky-headline h2 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 5.4vw, 4.85rem);
  line-height: 0.92;
  max-width: 14ch;
}

.brand-mosaic {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -10vh;
  padding: 0 clamp(0.55rem, 2vw, 1.15rem);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.55rem;
}

.mosaic-tile {
  grid-column: span 3;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
  transform: translate3d(0, 0, 0) scale(1.02);
}

.mosaic-tile-wide {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.mosaic-tile-tall {
  grid-row: span 2;
  aspect-ratio: 4 / 10;
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-strip {
  margin-top: 2.15rem;
}

.client-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.65rem;
}

.client-strip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0.45rem 0.84rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #f0f2f8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

[data-parallax-layer] {
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .card[data-tilt],
  .btn[data-magnetic],
  .blog-card-link {
    will-change: transform;
    transition: transform 190ms ease;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-4,
  .stat-grid,
  .process-grid,
  .contact-grid,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-immersive {
    padding: 0 0.6rem;
  }

  .immersive-shell {
    min-height: 74vh;
    border-radius: 24px;
  }

  .scene-shot {
    border-radius: 14px;
  }

  .sticky-headline-stage {
    min-height: 136vh;
  }

  .sticky-headline-copy {
    top: 14vh;
  }

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

  .mosaic-tile {
    grid-column: span 3;
  }

  .mosaic-tile-wide {
    grid-column: span 6;
  }

  .mosaic-tile-tall {
    grid-row: span 1;
    aspect-ratio: 4 / 5;
  }

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

  .grid-3,
  .grid-2,
  .services-layout,
  .case-grid,
  .blog-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header .container {
    flex-wrap: wrap;
    padding: 0.55rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(11, 11, 14, 0.96);
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  main,
  footer,
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .hero,
  .page-hero {
    margin-top: 2.3rem;
  }

  .hero-immersive {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .immersive-shell {
    min-height: 74vh;
    border-radius: 18px;
  }

  .immersive-overlay {
    width: 100%;
    padding: 1.2rem 1rem 1.35rem;
  }

  .sticky-headline-stage {
    min-height: 110vh;
  }

  .sticky-headline-copy {
    top: 11vh;
  }

  .brand-mosaic {
    width: 100%;
    margin-left: 0;
    margin-top: -7vh;
    padding: 0;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .mosaic-tile,
  .mosaic-tile-wide {
    grid-column: span 1;
    aspect-ratio: 1 / 1.2;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-title {
    max-width: 9ch;
  }
}

/* Option 1 Premium Homepage */
.approach-panel {
  margin-top: 2.2rem;
}

.approach-head {
  max-width: 1100px;
}

.approach-head h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.1vw, 3.45rem);
  line-height: 0.98;
}

.approach-cards {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
  max-width: 1120px;
}

.approach-cards .card {
  padding: 1.05rem 1.15rem;
}

.logo-strip {
  margin-top: 2rem;
}

.logo-carousel {
  margin-top: 0.65rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #0d1018, #0a0c12);
  padding: 0.62rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #0d1018 0%, rgba(13, 16, 24, 0) 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #0d1018 0%, rgba(13, 16, 24, 0) 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: logo-marquee var(--logo-duration, 20s) linear infinite;
}

.logo-carousel:hover .logo-carousel-track {
  animation-play-state: paused;
}

.logo-carousel-item {
  flex: 0 0 auto;
  width: 232px;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
}

.logo-carousel-item img {
  width: auto;
  height: 36px;
  max-width: 90%;
  object-fit: contain;
  filter: brightness(1.03) contrast(1.04);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--logo-loop-distance, 360px)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .approach-head h2 {
    max-width: none;
  }

  .logo-carousel-item {
    width: 204px;
    min-height: 68px;
  }

  .logo-carousel-item img {
    height: 32px;
  }
}

@media (max-width: 560px) {
  .logo-carousel {
    border-radius: 12px;
  }

  .logo-carousel-item {
    width: 176px;
    min-height: 62px;
    padding: 0.35rem 0.58rem;
  }

  .logo-carousel-item img {
    height: 28px;
  }
}

