:root {
  --bg: #05050a;
  --bg-soft: #0d0f15;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --brand-cream: #fef6c9;
  --brand-mist: #d4dfc7;
  --brand-slate: #878e88;
  --brand-aqua: #96c0b7;
  --tint-rose: #efc7ca;
  --tint-lilac: #d6cef0;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  --radius-lg: 2rem;
  --radius-md: 1.35rem;
  --radius-sm: 999px;
  --content-width: min(1080px, calc(100vw - 4.5rem));
}

@font-face {
  font-family: "Transducer";
  src: url("./Assets/Font/transducer-font-family-1707458506-0/TransducerTest-Regular-BF645c3dd843c3b.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Transducer";
  src: url("./Assets/Font/transducer-font-family-1707458506-0/TransducerTest-Medium-BF645c3dd896377.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Transducer";
  src: url("./Assets/Font/transducer-font-family-1707458506-0/TransducerTest-ExtendedBold-BF645c3dd848b2a.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 199, 202, 0.2), transparent 22%),
    radial-gradient(circle at 78% 14%, rgba(214, 206, 240, 0.22), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(150, 192, 183, 0.16), transparent 26%),
    linear-gradient(180deg, #0a0b12 0%, #06070c 45%, #040509 100%);
  color: var(--text);
  font-family: "Transducer", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: clamp(2.75rem, 5vw, 4rem) clamp(2.75rem, 5vw, 4rem);
  mask-image: radial-gradient(circle at center, black 28%, transparent 80%);
  opacity: 0.18;
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.page-noise {
  position: fixed;
  inset: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.7) 1px, transparent 0),
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.25) 1px, transparent 0);
  background-size: 20px 20px, 31px 31px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ambient {
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.26;
  pointer-events: none;
}

.ambient-left {
  left: -10vw;
  top: -6vw;
  background: radial-gradient(circle, rgba(239, 199, 202, 0.52), rgba(239, 199, 202, 0) 70%);
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-right {
  right: -8vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(214, 206, 240, 0.46), rgba(214, 206, 240, 0) 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.ambient-center {
  left: 30vw;
  top: 24vh;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(150, 192, 183, 0.3), rgba(150, 192, 183, 0) 72%);
  animation: drift 22s ease-in-out infinite alternate;
}

.section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  width: min(calc(100vw - 5rem), 1180px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0 0;
}

.brand {
  --glow-x: 50%;
  --glow-y: 50%;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.brand-logo {
  width: min(240px, 42vw);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(20px);
}

.site-nav a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.95rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 10, 16, 0.82);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  min-height: clamp(38rem, 78vh, 48rem);
  padding: 4.5rem 0 1rem;
}

.hero-mobile-brand {
  display: none;
}

.hero-mobile-logo-wrap {
  position: relative;
  width: min(88vw, 32rem);
  aspect-ratio: 16 / 9;
}

.hero-mobile-logo-glow,
.hero-mobile-logo-mark {
  position: absolute;
  inset: 0;
}

.hero-mobile-logo-glow {
  filter: blur(58px);
  opacity: 0.34;
  background:
    radial-gradient(circle at 14% 28%, rgba(254, 246, 201, 0.72), transparent 28%),
    radial-gradient(circle at 35% 76%, rgba(212, 223, 199, 0.58), transparent 26%),
    radial-gradient(circle at 74% 24%, rgba(214, 206, 240, 0.62), transparent 22%),
    radial-gradient(circle at 88% 74%, rgba(239, 199, 202, 0.68), transparent 26%);
  transform: scale(0.88);
  animation: pulse 11s ease-in-out infinite;
}

.hero-mobile-logo-mark {
  overflow: hidden;
  -webkit-mask-image: url("./Assets/Logo/Full%20Logo/White/Alex%20Karim%20-%20Full%20Logo%20-%20White%20-%20v1.0.svg");
  mask-image: url("./Assets/Logo/Full%20Logo/White/Alex%20Karim%20-%20Full%20Logo%20-%20White%20-%20v1.0.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08)) drop-shadow(0 0 44px rgba(239, 199, 202, 0.16));
}

.hero-mobile-logo-mark::before,
.hero-mobile-logo-mark::after {
  content: "";
  position: absolute;
}

.hero-mobile-logo-mark::before {
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.14), transparent 22%, rgba(255, 255, 255, 0.06) 44%, transparent 66%);
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: sheenSweep 10s ease-in-out infinite;
}

.hero-mobile-logo-mark::after {
  inset: 0;
  opacity: 0.22;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-position: 0 0;
  mix-blend-mode: soft-light;
  filter: contrast(1.15);
  animation: grainDrift 1.1s steps(2) infinite;
}

.hero-mobile-logo-video {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01) brightness(1.02);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.hero-copy {
  max-width: 640px;
}

.headline {
  margin: 0;
  font-size: clamp(2.2rem, 4.35vw, 4.15rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 10ch;
  text-wrap: balance;
}

.interactive-heading {
  --glow-x: 50%;
  --glow-y: 50%;
  color: var(--text);
  transition: filter 180ms ease;
}

.hero-text,
.section-heading p,
.about-copy > p,
.story-copy p,
.showcase-notes p,
.footer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(212, 223, 199, 0.18), rgba(254, 246, 201, 0.3));
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-metrics {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-metrics li,
.story-card,
.showcase-frame,
.gallery-card,
.signal-strip,
.site-footer,
.portrait-card,
.showcase-notes > div,
.principles > div {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-metrics li {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.hero-metrics strong,
.story-copy h3,
.principles strong,
.showcase-notes .note-label {
  display: block;
  margin-bottom: 0.45rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  align-self: start;
  display: grid;
  gap: 1rem;
}

.portrait-card {
  position: relative;
  display: block;
  padding: 1rem;
  border-radius: clamp(1.4rem, 4vw, 2.4rem);
  overflow: hidden;
  min-height: 620px;
  cursor: pointer;
  transition: box-shadow 180ms ease;
  will-change: transform;
}

.portrait-card:hover {
  box-shadow: var(--shadow);
}

.portrait-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

@media (min-width: 781px) {
  html {
    font-size: 93.75%;
  }

  .hero {
    align-items: start;
  }

  .hero-text {
    max-width: 33rem;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-metrics {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .portrait-card {
    margin-top: -0.75rem;
    min-height: 36rem;
  }

  .portrait-image {
    clip-path: inset(0 0 10% 0 round 2rem);
    transform: translate3d(0, 1.25rem, 0) scale(1.04);
    transform-origin: center top;
  }
}

.portrait-orb {
  position: absolute;
  inset: 0;
  opacity: 0.75;
}

.portrait-orb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) blur(8px) brightness(0.78);
  transform: scale(1.18);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 10, 0.02), rgba(5, 5, 10, 0.42) 60%, rgba(5, 5, 10, 0.82));
}

.portrait-image,
.portrait-badge {
  position: relative;
  z-index: 1;
}

.portrait-image {
  width: min(100%, 540px);
  margin: 0.5rem auto 0;
  object-fit: contain;
  transform: translateZ(0);
  border-radius: 2rem;
}

.portrait-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: 0.78rem;
}

.signal-strip {
  margin: 0;
  width: var(--content-width);
  border-radius: 1.25rem;
  overflow: hidden;
}

.signal-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem;
}

.signal-track span {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2,
.footer-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

@media (hover: hover) and (pointer: fine) {
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .interactive-heading.is-glow-active {
      background-image:
        radial-gradient(
          circle clamp(1.8rem, 4.4vw, 2.7rem) at var(--glow-x) var(--glow-y),
          rgba(255, 248, 245, 0.98) 0%,
          rgba(246, 237, 244, 0.92) 42%,
          rgba(246, 237, 244, 0) 72%
        ),
        radial-gradient(
          circle clamp(6.2rem, 15vw, 9.5rem) at calc(var(--glow-x) - 18%) calc(var(--glow-y) + 12%),
          rgba(220, 231, 246, 0.98) 0%,
          rgba(220, 231, 246, 0.68) 36%,
          rgba(220, 231, 246, 0) 70%
        ),
        radial-gradient(
          circle clamp(6.8rem, 17vw, 10.6rem) at calc(var(--glow-x) + 20%) calc(var(--glow-y) - 16%),
          rgba(237, 178, 175, 0.94) 0%,
          rgba(237, 178, 175, 0.66) 34%,
          rgba(237, 178, 175, 0) 72%
        ),
        radial-gradient(
          circle clamp(7rem, 17vw, 10.8rem) at calc(var(--glow-x) + 2%) calc(var(--glow-y) + 4%),
          rgba(188, 183, 230, 0.9) 0%,
          rgba(188, 183, 230, 0.58) 42%,
          rgba(188, 183, 230, 0) 76%
        ),
        radial-gradient(
          circle clamp(8rem, 18vw, 11.8rem) at var(--glow-x) var(--glow-y),
          rgba(245, 239, 247, 0.42) 0%,
          rgba(245, 239, 247, 0) 82%
        ),
        linear-gradient(var(--text), var(--text));
      background-repeat: no-repeat;
      background-size: 100% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      filter: saturate(1.18) brightness(1.06);
    }
  }

  @supports ((mask-image: url("")) or (-webkit-mask-image: url(""))) {
    .brand.interactive-logo::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(
          circle clamp(1.6rem, 4vw, 2.4rem) at var(--glow-x) var(--glow-y),
          rgba(255, 248, 245, 0.98) 0%,
          rgba(246, 237, 244, 0.92) 42%,
          rgba(246, 237, 244, 0) 72%
        ),
        radial-gradient(
          circle clamp(5.4rem, 13vw, 8.4rem) at calc(var(--glow-x) - 18%) calc(var(--glow-y) + 12%),
          rgba(220, 231, 246, 0.98) 0%,
          rgba(220, 231, 246, 0.68) 36%,
          rgba(220, 231, 246, 0) 70%
        ),
        radial-gradient(
          circle clamp(5.8rem, 14vw, 8.8rem) at calc(var(--glow-x) + 20%) calc(var(--glow-y) - 16%),
          rgba(237, 178, 175, 0.94) 0%,
          rgba(237, 178, 175, 0.66) 34%,
          rgba(237, 178, 175, 0) 72%
        ),
        radial-gradient(
          circle clamp(6rem, 14vw, 9rem) at calc(var(--glow-x) + 2%) calc(var(--glow-y) + 4%),
          rgba(188, 183, 230, 0.9) 0%,
          rgba(188, 183, 230, 0.58) 42%,
          rgba(188, 183, 230, 0) 76%
        );
      opacity: 0;
      transition: opacity 180ms ease;
      pointer-events: none;
      -webkit-mask-image: url("./Assets/Logo/Full%20Logo/White/Alex%20Karim%20-%20Full%20Logo%20-%20White%20-%20v1.0.svg");
      mask-image: url("./Assets/Logo/Full%20Logo/White/Alex%20Karim%20-%20Full%20Logo%20-%20White%20-%20v1.0.svg");
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      -webkit-mask-size: contain;
      mask-size: contain;
    }

    .brand.interactive-logo.is-glow-active::after {
      opacity: 1;
    }
  }
}

.focus,
.about,
.gallery,
.site-footer {
  padding: 7rem 0 0;
}

.focus-carousel {
  position: relative;
  overflow: hidden;
  margin-inline: calc((100vw - var(--content-width)) / -2);
  padding-inline: calc((100vw - var(--content-width)) / 2);
}

.focus-carousel::before,
.focus-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 7vw, 6rem);
  z-index: 1;
  pointer-events: none;
}

.focus-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 11, 18, 0.98), rgba(10, 11, 18, 0));
}

.focus-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 11, 18, 0.98), rgba(10, 11, 18, 0));
}

.focus-track {
  --carousel-gap: 1.2rem;
  display: flex;
  gap: var(--carousel-gap);
  width: max-content;
  will-change: transform;
  animation: focusScroll var(--focus-carousel-duration, 34s) linear infinite;
}

.story-card,
.gallery-card,
.showcase-frame {
  border-radius: clamp(1.25rem, 3vw, 1.8rem);
  overflow: hidden;
}

.story-card img,
.gallery-card img,
.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card img {
  aspect-ratio: 1.14 / 1;
}

.story-card-carousel {
  flex: 0 0 clamp(21rem, 38vw, 34rem);
  min-height: 33rem;
}

.story-card-carousel img {
  aspect-ratio: auto;
  min-height: 33rem;
}

.story-copy {
  padding: 1.3rem 1.3rem 1.45rem;
}

.card-kicker {
  margin-bottom: 0.75rem;
  color: var(--brand-aqua);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.story-copy h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1.35rem;
}

.principles,
.showcase-notes {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.principles > div,
.showcase-notes > div {
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
}

.principles p,
.showcase-notes p {
  margin-top: 0.25rem;
  font-size: 0.96rem;
}

.about-showcase {
  display: grid;
  gap: 1rem;
}

.about-rotator {
  position: relative;
  min-height: 580px;
}

.showcase-frame {
  min-height: 580px;
}

.showcase-frame img {
  min-height: 580px;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 420ms ease, transform 900ms ease;
  pointer-events: none;
}

.about-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-slide img {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.about-slide-motorsport img {
  object-position: right center;
}

.about-rotator::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(1.25rem, 3vw, 1.8rem);
  background: linear-gradient(180deg, rgba(5, 5, 10, 0) 30%, rgba(5, 5, 10, 0.2) 58%, rgba(5, 5, 10, 0.82) 100%);
  pointer-events: none;
}

.about-rotator-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 16, 0.56);
  backdrop-filter: blur(20px);
}

.about-rotator-overlay strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.about-rotator-overlay p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.note-label {
  color: var(--brand-cream);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.46fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.blog {
  padding-top: 8.8rem;
}

.blog-list-panel,
.blog-feature {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: clamp(1.25rem, 3vw, 1.8rem);
}

.blog-list-panel {
  padding: 1rem;
}

.blog-panel-head h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.1;
}

.blog-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.blog-list-item {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.blog-list-item:hover,
.blog-list-item:focus-visible,
.blog-list-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.blog-list-item time,
.blog-list-item span {
  display: block;
}

.blog-list-item time {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.blog-list-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.25;
}

.blog-list-item span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.blog-feature {
  overflow: hidden;
}

.blog-feature-media-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-feature-media {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.blog-feature-copy {
  padding: 1.35rem;
}

.blog-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-feature-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.blog-feature-summary {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.blog-tags span {
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.blog-feature-body {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.blog-feature-body-extra {
  display: grid;
  gap: 1rem;
}

.blog-feature-body-extra[hidden] {
  display: none !important;
}

.blog-feature-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.blog-read-more {
  justify-self: start;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, rgba(239, 199, 202, 0.22), rgba(214, 206, 240, 0.2) 48%, rgba(150, 192, 183, 0.26));
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 7rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  padding: 2rem;
  border-radius: clamp(1.4rem, 3vw, 2rem);
}

.footer-copy {
  max-width: 700px;
}

.footer-notes,
.footer-links,
.partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-notes {
  margin-top: 1.7rem;
}

.footer-notes span,
.footer-links a,
.partner-points span {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.footer-actions {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.footer-prompt {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.5;
}

.footer-button {
  width: 100%;
}

.partner-form {
  display: grid;
  gap: 0.8rem;
}

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

.partner-form-grid-inline {
  grid-template-columns: 1fr;
}

.partner-form-grid label {
  display: grid;
  gap: 0.55rem;
}

.partner-form-grid span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.partner-form-grid input,
.partner-form-grid select,
.partner-form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.partner-form-grid input::placeholder,
.partner-form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.partner-form-grid input:focus,
.partner-form-grid select:focus,
.partner-form-grid textarea:focus {
  outline: 2px solid rgba(150, 192, 183, 0.35);
  outline-offset: 2px;
}

.partner-form-grid textarea {
  resize: vertical;
  min-height: 9rem;
}

.partner-form-grid__full {
  grid-column: 1 / -1;
}

.partner-form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.partner-form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.back-to-top {
  display: none;
}

.partner-form-status.is-error {
  color: #f3b8bf;
}

.partner-form-status.is-success {
  color: #c8ebde;
}

.partner-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1rem;
}

.partner-form-actions-inline {
  margin-top: 0.35rem;
}

.partner-submit[disabled] {
  opacity: 0.7;
  cursor: progress;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal="left"] {
  transform: translate3d(28px, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes pulse {
  0% {
    transform: scale(0.88);
    opacity: 0.34;
  }

  50% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  100% {
    transform: scale(0.88);
    opacity: 0.34;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(4vw, 2vw, 0) scale(1.08);
  }
}

@keyframes focusScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 0.6rem), 0, 0);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 1rem;
  }

  .hero,
  .about,
  .blog-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .partner-form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .portrait-card,
  .showcase-frame,
  .showcase-frame img,
  .about-rotator {
    min-height: 480px;
    transform: translate3d(0, 1.8rem, 0);
  }

  .story-card-carousel {
    flex-basis: clamp(18rem, 72vw, 26rem);
    min-height: 26rem;
  }

  .story-card-carousel img {
    min-height: 26rem;
  }
}

@media (max-width: 780px) {
  :root {
    --content-width: min(100vw - 1.2rem, 100%);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    display: none;
  }

  .brand-logo {
    width: min(180px, 48vw);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.4rem;
    padding: 0.7rem;
    border-radius: 1.25rem;
    background: rgba(5, 5, 10, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: none;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: max(0px, calc(env(safe-area-inset-top) - 0.5rem));
    gap: 0;
  }

  .hero-mobile-brand {
    display: grid;
    justify-items: start;
    width: calc(100% + 1.2rem);
    margin-left: -0.6rem;
    margin-top: -0.35rem;
    margin-bottom: -0.55rem;
  }

  .hero-mobile-logo-wrap {
    width: min(100vw, 30rem);
    aspect-ratio: 2.08 / 1;
    margin-left: -0.35rem;
  }

  .hero-mobile-logo-glow {
    transform: translateX(-18.5%) scale(1.32);
    transform-origin: left center;
  }

  .hero-mobile-logo-mark {
    -webkit-mask-position: left center;
    mask-position: left center;
    transform: translateX(-18.5%) scale(1.5);
    transform-origin: left center;
  }

  .hero-mobile-logo-video {
    pointer-events: none;
  }

  .hero-mobile-logo-video::-webkit-media-controls,
  .hero-mobile-logo-video::-webkit-media-controls-start-playback-button,
  .hero-mobile-logo-video::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
  }

  .hero-copy {
    max-width: none;
  }

  .hero [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
  }

  .headline {
    font-size: clamp(2.05rem, 9.2vw, 3rem);
    max-width: 11.4ch;
  }

  .about-slide img {
    object-position: center center;
    transform-origin: center center;
  }

  .about-slide-technology img {
    transform: translate3d(0, -7%, 0) scale(1.16);
  }

  .about-slide-podcast img {
    transform: translate3d(0, -8%, 0) scale(1.16);
  }

  .about-slide-motorsport img {
    object-position: right center;
    transform: translate3d(0, -6%, 0) scale(1.16);
  }

  .hero-text,
  .section-heading p,
  .about-copy > p,
  .story-copy p,
  .showcase-notes p,
  .footer-copy p {
    font-size: 0.98rem;
  }

  .portrait-card,
  .showcase-frame,
  .showcase-frame img,
  .about-rotator {
    min-height: 420px;
    touch-action: pan-y;
  }

  .about-rotator::after {
    background: linear-gradient(180deg, rgba(5, 5, 10, 0) 38%, rgba(5, 5, 10, 0.16) 64%, rgba(5, 5, 10, 0.7) 100%);
  }

  .about-rotator-overlay {
    left: 0.75rem;
    right: auto;
    bottom: 0.75rem;
    width: min(82%, 20rem);
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: rgba(8, 10, 16, 0.5);
    backdrop-filter: blur(16px);
    touch-action: pan-y;
  }

  .about-rotator-overlay strong {
    margin-top: 0.35rem;
    font-size: 0.92rem;
    line-height: 1.12;
  }

  .about-rotator-overlay p {
    margin-top: 0.45rem;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .about-rotator-overlay .note-label {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .focus,
  .about,
  .blog {
    padding-top: 4.7rem;
  }

  .site-footer {
    padding-top: 2.8rem;
    align-items: start;
    padding-bottom: 2rem;
    padding-inline: 1.1rem;
  }

  .back-to-top {
    position: fixed;
    right: 0.85rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.85rem);
    z-index: 30;
    display: inline-flex;
    min-height: 2.9rem;
    padding-inline: 1rem;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(8, 10, 16, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.4rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .footer-notes {
    display: none;
  }

  .partner-dialog {
    width: min(100vw - 1rem, 100%);
  }

  .partner-form-actions {
    flex-direction: column-reverse;
  }

  .partner-form-actions .button {
    width: 100%;
  }

  .focus-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: 0;
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .focus-carousel::-webkit-scrollbar {
    display: none;
  }

  .focus-track {
    min-width: max-content;
    padding-inline: 0.6rem;
    animation: none;
    transform: none;
    will-change: auto;
  }

  .focus-track .story-card-carousel[aria-hidden='true'] {
    display: none;
  }

  .story-card-carousel {
    flex-basis: min(86vw, 24rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes grainDrift {
  0% {
    background-position: 0 0, center, 0% 50%;
  }

  50% {
    background-position: 24px -18px, center, 18% 48%;
  }

  100% {
    background-position: -16px 20px, center, 0% 50%;
  }
}

@keyframes sheenSweep {
  0%,
  100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.3;
  }
}