@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/outfit-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/outfit-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/figtree-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/figtree-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --radius: 1rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.305 0.046 220);
  --primary: oklch(0.535 0.082 220);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.965 0.006 220);
  --muted: oklch(0.96 0.006 220);
  --muted-foreground: oklch(0.5 0.025 220);
  --accent: oklch(0.94 0.025 220);
  --border: oklch(0.305 0.046 220 / 8%);
  --input: oklch(0.305 0.046 220 / 12%);
  --destructive: oklch(0.577 0.245 27.325);
  --font-sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --gradient-aurora: radial-gradient(
      55% 70% at 15% 30%,
      color-mix(in oklab, var(--primary) 45%, transparent) 0%,
      transparent 70%
    ),
    radial-gradient(
      50% 65% at 60% 70%,
      color-mix(in oklab, oklch(0.68 0.14 285) 40%, transparent) 0%,
      transparent 70%
    ),
    radial-gradient(
      45% 60% at 90% 20%,
      color-mix(in oklab, oklch(0.8 0.09 20) 40%, transparent) 0%,
      transparent 70%
    );
  --gradient-tile: linear-gradient(
    135deg,
    var(--primary) 0%,
    color-mix(in oklab, var(--primary) 55%, var(--foreground)) 55%,
    var(--foreground) 100%
  );
  --shadow-float: 0 1px 2px oklch(0.305 0.046 220 / 6%),
    0 12px 32px -12px oklch(0.305 0.046 220 / 18%),
    0 40px 80px -40px oklch(0.305 0.046 220 / 22%);
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.font-display {
  font-family: var(--font-display);
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px -16px oklch(0.305 0.046 220 / 35%);
}

.site-header__inner {
  display: flex;
  height: 5.75rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.brand img {
  width: 135px;
  height: auto;
  display: block;
}

.site-footer__brand .brand {
  display: inline-flex;
}

.site-footer__brand .brand img {
  width: 135px;
  height: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header {
  display: none;
  border-radius: 0.375rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--foreground);
}

.btn-header:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.menu-toggle {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1rem;
}

.nav-mobile a {
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}

.nav-mobile a:hover {
  background: var(--muted);
}

.nav-mobile .btn-mobile-cta {
  margin-top: 0.5rem;
  background: var(--foreground);
  color: var(--background);
  text-align: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .btn-header {
    display: inline-flex;
  }
  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Footer */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--secondary) 40%, transparent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding-block: 4rem;
}

.site-footer__brand {
  grid-column: span 2;
}

.site-footer__brand p {
  max-width: 20rem;
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.footer-col h5 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}

.footer-col a:hover {
  color: var(--primary);
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.site-footer__bottom-inner span:last-child {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .site-footer__brand {
    grid-column: span 1;
  }
  .site-footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--secondary);
}

.btn-on-dark {
  background: transparent;
  color: var(--background);
  border-color: color-mix(in oklab, var(--background) 20%, transparent);
}

.btn-on-dark:hover {
  background: color-mix(in oklab, var(--background) 10%, transparent);
}

.btn-inverted {
  background: var(--background);
  color: var(--foreground);
  border-color: var(--background);
}

.btn-inverted:hover {
  background: var(--secondary);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Typography helpers */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.page-header {
  width: 100%;
  padding: 3.5rem 1.5rem 1rem;
  max-width: var(--max);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  max-width: none;
  width: 100%;
}

.page-header .intro {
  margin: 1.25rem 0 0;
  max-width: none;
  width: 100%;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Layout sections */
.stack {
  display: grid;
  gap: 6rem;
  padding-block: 3rem 4rem;
}

.panel {
  position: relative;
  border-radius: 1.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.panel-dark {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
  box-shadow: var(--shadow-float);
}

.panel-accent {
  background: var(--accent);
  border-color: color-mix(in oklab, var(--primary) 20%, transparent);
}

.ring {
  border: 1px solid var(--border);
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
}

.hero__main {
  position: relative;
  width: 100%;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 2rem;
}

.hero__main h1 {
  margin: 1.25rem 0 0;
  max-width: 48rem;
  width: 100%;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__main p {
  margin: 1.5rem 0 0;
  max-width: 44rem;
  width: 100%;
  margin-inline: auto;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  filter: blur(48px);
}

.hero__side {
  display: none;
}

@media (min-width: 768px) {
  .hero__main {
    padding: 3.5rem 4rem;
    min-height: 26rem;
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.5rem;
  background: var(--foreground);
  color: var(--background);
  padding: 1.5rem;
}

.stat-card .eyebrow {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.stat-card .value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
}

.now-card {
  border-radius: 1.5rem;
  background: var(--accent);
  border: 1px solid color-mix(in oklab, var(--primary) 20%, transparent);
  padding: 1.5rem;
}

.now-card__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  animation: pulse 1.5s ease infinite;
}

.progress {
  height: 0.375rem;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: var(--background);
}

.progress > span {
  display: block;
  height: 100%;
  width: 66%;
  border-radius: 999px;
  background: var(--primary);
}

@keyframes pulse {
  50% {
    opacity: 0.4;
  }
}

/* Trust / partners */
.trust-bar {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1.5rem 2rem;
}

.trust-bar p {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 1rem 2.5rem;
  opacity: 0.7;
}

.trust-bar__logos span {
  font-family: var(--font-display);
  font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 60%, transparent);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.partner-chip i {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--primary);
}

/* Cards / grids */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.link-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
}

.card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.card p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.card .card-link {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.card.is-accent {
  border-top: 2px solid var(--primary);
}

/* Case study cards */
.case-stack {
  display: grid;
  gap: 1.5rem;
}

.case-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--foreground);
  box-shadow: var(--shadow-float);
  color: var(--background);
}

.case-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s ease;
}

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

.case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, var(--foreground), color-mix(in oklab, var(--foreground) 70%, transparent), transparent);
}

.case-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
}

.case-card__client {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--background) 60%, transparent);
}

.case-card__body h3 {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}

.case-card__body p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  color: color-mix(in oklab, var(--background) 70%, transparent);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-items: center;
}

.tag {
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--background) 80%, transparent);
  border: 1px solid color-mix(in oklab, var(--background) 25%, transparent);
}

.tag-dark {
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
  border-color: var(--border);
  background: var(--secondary);
}

.case-card__cta {
  margin-left: auto;
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.case-card:hover .case-card__cta {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .case-card img {
    height: 440px;
  }
  .case-card__body {
    padding: 3rem;
  }
  .case-card__cta {
    display: inline;
  }
}

/* Capability tiles */
.tile {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.4s ease;
}

.tile:hover {
  transform: translateY(-4px);
}

.tile-gradient {
  color: var(--background);
  background-image: var(--gradient-tile);
}

.tile-surface {
  background: var(--secondary);
  border: 1px solid var(--border);
}

.tile__glyph {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

.tile-gradient .tile__glyph {
  background: color-mix(in oklab, var(--background) 15%, transparent);
}

.tile-surface .tile__glyph {
  background: var(--accent);
  color: var(--primary);
}

.tile h3 {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.2;
}

.tile p {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
}

.tile-gradient p {
  color: color-mix(in oklab, var(--background) 75%, transparent);
}

.tile-surface p {
  color: var(--muted-foreground);
}

.tile__more {
  margin-top: 1.5rem;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.tile:hover .tile__more {
  transform: translateX(4px);
}

/* Insights */
.insight img {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.7s ease;
}

.insight:hover img {
  transform: scale(1.05);
}

.insight__media {
  overflow: hidden;
  border-radius: 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.insight .cat {
  margin-top: 1.25rem;
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.insight h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.insight .meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Masjid spotlight / dark panels */
.spotlight {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--foreground);
  color: var(--background);
  box-shadow: var(--shadow-float);
}

.spotlight__grid {
  display: grid;
}

.spotlight__copy {
  padding: 2.5rem;
}

.spotlight__copy h2 {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.spotlight__copy p {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  color: color-mix(in oklab, var(--background) 70%, transparent);
}

.feature-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.feature-list li::before {
  content: "";
  margin-top: 0.4rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--primary);
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 20%, transparent);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight__media {
  background: color-mix(in oklab, var(--primary) 5%, transparent);
  padding: 1.5rem;
}

.spotlight__media img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-float);
}

@media (min-width: 1024px) {
  .spotlight__grid {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight__copy {
    padding: 4rem;
  }
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* AI teaser */
.ai-teaser {
  display: grid;
  gap: 1rem;
}

.ai-teaser__intro {
  border-radius: 1.5rem;
  background: var(--accent);
  border: 1px solid color-mix(in oklab, var(--primary) 15%, transparent);
  padding: 2.5rem;
}

.ai-teaser__intro h2 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}

.ai-teaser__list {
  display: grid;
  gap: 1rem;
}

.ai-teaser__item {
  border-radius: 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1.25rem;
}

.ai-teaser__item .num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .ai-teaser {
    grid-template-columns: 5fr 7fr;
  }
}

/* Quote / CTA */
.quote {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 4rem 2rem;
  text-align: center;
}

.quote blockquote {
  margin: 1.5rem auto 0;
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.875rem);
  font-weight: 500;
  line-height: 1.35;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 2.5rem;
  text-align: center;
}

.final-cta h2 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
}

.final-cta p {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 36rem;
  color: color-mix(in oklab, var(--background) 75%, transparent);
}

.final-cta .actions {
  position: relative;
  margin-top: 2rem;
}

.cta-band {
  border-radius: 1.5rem;
  background: var(--foreground);
  color: var(--background);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cta-band h2,
.cta-band h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  max-width: 40rem;
}

.cta-band p {
  margin: 0.75rem auto 1.25rem;
  max-width: 36rem;
  opacity: 0.85;
  line-height: 1.55;
  color: color-mix(in oklab, var(--background) 85%, transparent);
}

.cta-band .actions {
  margin-top: 0.5rem;
}

.cta-band .btn-primary {
  background: var(--background);
  color: var(--foreground);
}

.cta-band .btn-primary:hover {
  opacity: 0.92;
}

/* Work filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: var(--secondary);
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--foreground);
  color: var(--background);
}

.work-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--foreground);
  color: var(--background);
  min-height: 20rem;
  box-shadow: var(--shadow-float);
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s ease;
}

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

.work-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, var(--foreground), color-mix(in oklab, var(--foreground) 70%, transparent), transparent);
}

.work-card__body {
  position: relative;
  margin-top: auto;
  padding: 2rem;
  z-index: 1;
}

.work-card__body h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.work-card.is-hidden {
  display: none;
}

/* Forms */
.form-layout {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .form-layout {
    grid-template-columns: 5fr 7fr;
  }
}

.form-card {
  position: relative;
  border-radius: 1.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

.form-error {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--destructive);
}

.form-success {
  border-radius: 1.5rem;
  background: var(--accent);
  border: 1px solid color-mix(in oklab, var(--primary) 20%, transparent);
  padding: 2.5rem;
}

.form-success h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Case detail */
.case-hero-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.psr-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: 2rem 4rem;
}

@media (min-width: 768px) {
  .psr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.psr-grid article h3 {
  margin: 0;
}

.psr-grid article p {
  margin: 1rem 0 0;
  line-height: 1.6;
}

.case-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 6rem;
}

/* Aurora / reveal */
.aurora-wrap {
  position: relative;
  isolation: isolate;
}

.aurora-band {
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  pointer-events: none;
  background-image: var(--gradient-aurora);
  background-size: 180% 180%;
  filter: blur(60px);
  opacity: 0.45;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.aurora-band.is-soft {
  opacity: 0.2;
}

.aurora-band.is-strong {
  opacity: 0.6;
  z-index: 0;
}

@keyframes aurora-drift {
  0% {
    background-position: 0% 50%;
    transform: scale(1);
  }
  100% {
    background-position: 100% 50%;
    transform: scale(1.12);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .aurora-band {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}

.prose-lg p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 1rem 0 0;
}

.prose-lg ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  font-size: 1.125rem;
}

/* Boutique positioning — content sections (Option A: center constrained text) */
.band,
.page-section,
.stack > section:not(.hero):not(.cta-final) {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  margin: 0.75rem auto 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 48rem;
  width: 100%;
}

.lede {
  margin: 1rem auto 0;
  max-width: 48rem;
  width: 100%;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.band {
  padding: 2.5rem 0;
}

.check-list {
  margin: 1.25rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
  width: 100%;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.name-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.name-row span {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  opacity: 0.85;
}

.product-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: color-mix(in oklab, var(--secondary) 70%, transparent);
  transition: border-color 0.2s ease, transform 0.2s ease;
  width: 100%;
  text-align: left;
}

.product-card:hover {
  border-color: color-mix(in oklab, var(--primary) 35%, var(--border));
  transform: translateY(-2px);
}

.product-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.product-card p {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.cta-final {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: 100%;
}

.cta-final h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 36rem;
}

.cta-final > p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.fine-print {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.offer-title {
  margin: 1rem 0 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
}

.offer-note {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.team-card {
  margin-top: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}

.team-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
}

.team-card p {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.believe-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.believe-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.55;
}

.believe-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.mt-12 {
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .hero__actions .btn-ghost {
    text-align: left;
  }
}
