:root {
  --ink: #080808;
  --paper: #f3f0e8;
  --lime: #c7f464;
  --lime-hot: #d4ff7a;
  --bronze: #9b7653;
  --white: #ffffff;
  --line-light: rgba(243, 240, 232, 0.14);
  --line-dark: rgba(8, 8, 8, 0.16);
  --muted-light: rgba(243, 240, 232, 0.66);
  --muted-dark: rgba(8, 8, 8, 0.66);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Bebas Neue", "Archivo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Archivo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

body.story-open {
  overflow: hidden;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 4vw, 48px);
  color: var(--white);
  mix-blend-mode: difference;
}

.brand {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  align-content: center;
  justify-content: end;
  gap: 10px;
  padding: clamp(24px, 6vw, 90px);
  background: rgba(0, 0, 0, 0.96);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(46px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(-16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.menu-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.navlink {
  position: relative;
  text-decoration: none;
}

.navlink::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.4s var(--ease);
}

.navlink:hover::after,
.navlink:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: block;
  width: 52px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 42px;
  height: 3px;
  margin: 7px auto;
  background: currentColor;
}

.hero {
  order: 0;
  position: relative;
  min-height: 680px;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: -6% 0 auto;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.34;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 48%, rgba(199, 244, 100, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.05) 38%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 62%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 4vw, 48px) 60px;
  text-align: center;
}

.hero-name-wrap {
  display: grid;
  justify-items: center;
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.hero h1.hero-name {
  max-width: none;
  margin: 0 auto;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(88px, 18vw, 270px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 56ch;
  margin: 28px 0 0;
  color: rgba(243, 240, 232, 0.86);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.5;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(243, 240, 232, 0.16);
  color: rgba(243, 240, 232, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-sound {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 46px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid rgba(243, 240, 232, 0.28);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.42);
  color: var(--paper);
  cursor: pointer;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-sound::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(243, 240, 232, 0.55);
  content: "";
}

.hero-sound strong {
  color: var(--lime);
  font-size: 11px;
}

.hero-sound:hover {
  border-color: rgba(199, 244, 100, 0.74);
  background: rgba(9, 9, 9, 0.64);
  transform: translateY(-2px);
}

.hero-sound[aria-pressed="true"]::before {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199, 244, 100, 0.65);
}

.hero-loader {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  top: 112px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(243, 240, 232, 0.22);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.5);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  opacity: 1;
  transform: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.hero-loader span {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(243, 240, 232, 0.26);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.hero-loader.loaded {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  color: var(--lime);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 34px;
}

.section {
  padding: clamp(90px, 12vw, 170px) clamp(20px, 4vw, 48px);
}

.light {
  background: var(--paper);
  color: var(--ink);
}

.dark {
  background: var(--ink);
  color: var(--paper);
}

.wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(1000px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.lime {
  color: var(--lime);
}

.bronze {
  color: var(--bronze);
}

.section-title {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-title.mid {
  font-size: clamp(34px, 5vw, 80px);
}

.intro {
  order: 1;
  padding-top: clamp(90px, 12vw, 180px);
  padding-bottom: clamp(90px, 12vw, 180px);
}

.story-manifesto {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.story-grid.text-only {
  display: block;
  width: min(1040px, 100%);
}

.story-grid.text-only .story-title {
  max-width: 11ch;
}

.story-grid.text-only .story-copy {
  max-width: 58ch;
}

.story-title {
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(56px, 8.6vw, 140px);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.story-title::first-line {
  color: var(--lime);
}

.story-copy {
  max-width: 45ch;
  margin: 28px 0 0;
  color: rgba(243, 240, 232, 0.72);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  line-height: 1.55;
}

.story-portrait {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 60vw, 720px);
  border-radius: 0;
  background: #111;
}

.story-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.58));
  content: "";
}

.story-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 24%;
  filter: grayscale(1) contrast(1.1);
}

.intro .section-title {
  max-width: 18ch;
  font-size: clamp(36px, 5.6vw, 92px);
}

.statement {
  max-width: 24ch;
  margin: 32px 0 0;
  color: var(--bronze);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(24px, 2.6vw, 40px);
  font-style: italic;
  line-height: 1.3;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  max-width: 920px;
  margin-top: 64px;
  color: rgba(8, 8, 8, 0.78);
  font-family: "Spectral", Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(50px, 8vw, 110px);
}

.section-head.compact {
  margin-bottom: 0;
}

.head-copy {
  max-width: 34ch;
  margin: 0;
  color: var(--muted-light);
  font-family: "Spectral", Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.head-copy.wide {
  max-width: 52ch;
  margin-top: 26px;
  font-size: 19px;
}

.head-copy.ink {
  color: var(--muted-dark);
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding: clamp(38px, 5vw, 68px) 0;
  border-top: 0;
}

.chapter::before {
  grid-column: 2;
  grid-row: 1;
  width: 3px;
  min-height: 100%;
  background: var(--paper);
  content: "";
}

.chapter-side {
  grid-column: 1;
  position: sticky;
  top: 120px;
  text-align: right;
}

.chapter-num {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(78px, 11vw, 180px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.8;
  -webkit-text-stroke: 0;
}

.chapter-label {
  margin-top: 14px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.chapter h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.chapter > div:last-child {
  grid-column: 3;
  padding-top: clamp(18px, 4vw, 72px);
}

.chapter-lead {
  margin: 0;
  color: var(--paper);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.45;
}

.chapter-body {
  max-width: 52ch;
  margin: 22px 0 0;
  color: rgba(243, 240, 232, 0.62);
  font-family: "Spectral", Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

.ventures {
  order: 2;
  padding-left: 0;
  padding-right: 0;
}

#journey {
  order: 3;
}

.masterclass {
  order: 4;
}

.speaking {
  order: 5;
}

.media-story {
  order: 6;
}

.newsletter {
  order: 7;
}

.final-cta {
  order: 8;
}

.feature-card {
  position: relative;
  min-height: clamp(420px, 46vw, 560px);
  margin-top: clamp(50px, 7vw, 90px);
  overflow: hidden;
  border-radius: 0;
  background: var(--ink);
  isolation: isolate;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.45) 52%, rgba(8, 8, 8, 0.1));
  content: "";
}

.feature-card.real-estate {
  min-height: clamp(340px, 34vw, 420px);
  margin-top: 24px;
}

.feature-card.real-estate::after {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.84));
}

.visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  transition: transform 1.2s var(--ease);
}

.feature-card:hover .visual {
  transform: scale(1.04);
}

.visual-unovia {
  background:
    radial-gradient(circle at 78% 30%, rgba(199, 244, 100, 0.22), transparent 18%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.3), rgba(8, 8, 8, 0.05)),
    url("./assets/brand/unovia-ai.jpg") center / cover;
}

.visual-realestate {
  background:
    radial-gradient(circle at 72% 20%, rgba(155, 118, 83, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.4)),
    url("./assets/brand/real-estate-site.jpg") center 28% / cover;
}

.venture-logo {
  display: block;
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.mini-visual {
  min-height: 230px;
  margin: calc(clamp(30px, 4vw, 48px) * -1) calc(clamp(30px, 4vw, 48px) * -1) 28px;
  background-position: center;
  background-size: cover;
}

.visual-lana-logo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.74)),
    url("./assets/brand/lana-logo.jpg") center 58% / cover;
}

.feature-copy {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  max-width: 720px;
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
}

.feature-copy h3,
.venture-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 94px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.feature-copy p:not(.eyebrow),
.venture-card p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(243, 240, 232, 0.78);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.55;
}

.feature-copy.bottom h3 {
  max-width: 22ch;
  font-size: clamp(24px, 3vw, 44px);
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.venture-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 0;
  padding: clamp(30px, 4vw, 48px);
}

.dark-card {
  background: var(--ink);
  color: var(--white);
}

.pale-card {
  background: var(--white);
  color: var(--ink);
}

.pale-card p:not(.eyebrow) {
  color: rgba(8, 8, 8, 0.6);
}

.venture-card h3 {
  max-width: 20ch;
  font-size: clamp(44px, 4.6vw, 74px);
  line-height: 0.92;
}

.chat-demo,
.scan-demo {
  margin-top: 24px;
  border-radius: 14px;
  min-height: 188px;
}

.chat-demo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(243, 240, 232, 0.1);
  background: #111111;
}

.bubble {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  animation: popin 0.55s var(--ease) forwards;
}

.bubble.left {
  align-self: flex-start;
  background: #1d1d1d;
  color: var(--paper);
}

.bubble.right {
  align-self: flex-end;
  background: var(--lime);
  color: var(--ink);
  animation-delay: 0.65s;
}

.bubble:nth-child(3) {
  animation-delay: 1.25s;
}

.scan-demo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: scandown 2.6s ease-in-out infinite;
}

.checkmark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-size: 26px;
}

.scan-demo small {
  color: rgba(243, 240, 232, 0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

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

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-lime:hover,
.button-lime:focus-visible {
  background: var(--lime-hot);
}

.button-outline {
  border: 1px solid rgba(243, 240, 232, 0.44);
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.button-ink {
  border: 1px solid rgba(8, 8, 8, 0.3);
  color: var(--ink);
}

.button-ink:hover,
.button-ink:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.button-dark {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button-row.centered {
  justify-content: center;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  margin: clamp(48px, 7vw, 90px) 0 48px;
  border: 1px solid rgba(243, 240, 232, 0.14);
  background: rgba(243, 240, 232, 0.14);
}

.lesson {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 16px;
  padding: clamp(30px, 3.4vw, 48px);
  background: var(--ink);
}

.lesson strong {
  color: var(--bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.lesson h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.lesson p {
  margin: auto 0 0;
  color: rgba(243, 240, 232, 0.6);
  font-family: "Spectral", Georgia, serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: clamp(48px, 6vw, 80px);
}

.idea-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.5s var(--ease);
}

.idea-card:hover,
.idea-card:focus-visible {
  transform: translateY(-6px);
}

.idea-art {
  min-height: 200px;
  background:
    radial-gradient(circle at 30% 28%, rgba(199, 244, 100, 0.72), transparent 17%),
    linear-gradient(135deg, rgba(8, 8, 8, 0.12), transparent 38%),
    var(--idea-bg, linear-gradient(135deg, #101010, #9b7653));
}

.idea-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 26px 30px;
}

.idea-body h3 {
  margin: 14px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.idea-arrow {
  margin-top: auto;
  padding-top: 24px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.35s var(--ease);
}

.idea-card:hover .idea-arrow,
.idea-card:focus-visible .idea-arrow {
  transform: translate(4px, -4px);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.talk-list {
  border-top: 1px solid rgba(243, 240, 232, 0.16);
}

.talk {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(243, 240, 232, 0.16);
}

.talk span {
  min-width: 30px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.talk strong {
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}

.media-story {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.media-story .wrap {
  padding: 0 clamp(20px, 4vw, 48px);
}

.story-portals {
  display: grid;
  grid-template-columns: repeat(6, minmax(240px, 1fr));
  gap: 1px;
  width: max-content;
  min-width: 100%;
  margin-top: clamp(46px, 7vw, 96px);
  background: rgba(243, 240, 232, 0.18);
  border-top: 1px solid rgba(243, 240, 232, 0.18);
  border-bottom: 1px solid rgba(243, 240, 232, 0.18);
}

.story-portal {
  position: relative;
  display: flex;
  min-height: clamp(360px, 42vw, 580px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  background: #111;
  color: var(--paper);
  cursor: pointer;
  padding: clamp(22px, 3vw, 42px);
  text-align: left;
}

.story-portal::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    var(--portal-image, linear-gradient(135deg, #1c1c1c, #0a0a0a));
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(0.85) contrast(1.08);
  transition: filter 0.45s var(--ease), transform 0.7s var(--ease);
}

.story-portal:nth-child(1) { --portal-image: url("./assets/brand/lana-logo.jpg"); }
.story-portal:nth-child(2) { --portal-image: url("./assets/brand/unovia-ai.jpg"); }
.story-portal:nth-child(3) { --portal-image: url("./assets/media/pal-07.jpg"); }
.story-portal:nth-child(4) { --portal-image: url("./assets/media/pal-18.jpg"); }
.story-portal:nth-child(5) { --portal-image: url("./assets/brand/real-estate-site.jpg"); }
.story-portal:nth-child(6) { --portal-image: url("./assets/media/pal-01.jpg"); }

.story-portal::after {
  position: absolute;
  top: 26px;
  left: clamp(22px, 3vw, 42px);
  z-index: 1;
  color: var(--lime);
  content: "→";
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
  transform: translateX(-8px);
  transition: transform 0.45s var(--ease);
}

.story-portal:hover::before,
.story-portal:focus-visible::before {
  filter: grayscale(0.1) contrast(1.02);
  transform: scale(1.05);
}

.story-portal:hover::after,
.story-portal:focus-visible::after {
  transform: translateX(0);
}

.story-portal > * {
  position: relative;
  z-index: 1;
}

.portal-kicker {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story-portal strong {
  max-width: 8ch;
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(46px, 5.5vw, 86px);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
}

.story-portal small {
  margin-top: 14px;
  color: rgba(243, 240, 232, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-portal.featured {
  min-width: clamp(360px, 36vw, 560px);
}

.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.96);
  color: var(--paper);
  padding: clamp(76px, 10vw, 120px) clamp(16px, 4vw, 48px) clamp(34px, 5vw, 70px);
}

.story-viewer.open {
  display: block;
}

.story-close {
  position: fixed;
  top: 24px;
  right: clamp(20px, 4vw, 48px);
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(243, 240, 232, 0.34);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.story-panel {
  display: none;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.story-panel.active {
  display: block;
}

.story-panel-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 64px);
}

.story-panel-copy .eyebrow {
  grid-column: 1;
}

.story-panel-copy h2 {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 126px);
  font-weight: 400;
  line-height: 0.82;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.gallery-panel .story-panel-copy {
  align-items: center;
  margin-bottom: 20px;
}

.gallery-panel .story-panel-copy h2 {
  font-size: clamp(48px, 7vw, 104px);
}

.gallery-panel .media-rail {
  margin-top: 14px;
}

.story-panel-copy p:last-child {
  grid-column: 1;
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  line-height: 1.55;
}

.video-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 45%, rgba(199, 244, 100, 0.2), transparent 24%),
    #101010;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-rail {
  width: 100%;
  overflow: hidden;
  margin-top: clamp(30px, 5vw, 62px);
  border-top: 1px solid rgba(243, 240, 232, 0.1);
  border-bottom: 1px solid rgba(243, 240, 232, 0.1);
}

.rail-two {
  margin-top: 18px;
}

.media-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: mediaSlide 58s linear infinite;
}

.media-track.reverse {
  animation-name: mediaSlideReverse;
  animation-duration: 66s;
}

.media-rail:hover .media-track {
  animation-play-state: paused;
}

.media-frame {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(220px, 24vw, 380px);
  height: clamp(280px, 34vw, 520px);
  margin: 0;
  background: #111;
}

.media-frame.wide {
  flex-basis: clamp(360px, 42vw, 680px);
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.54)),
    linear-gradient(90deg, rgba(199, 244, 100, 0.1), transparent 32%);
  content: "";
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65) contrast(1.04);
  transition: filter 0.45s var(--ease), transform 0.7s var(--ease);
}

.media-frame:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

.video-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1200px, calc(100% - clamp(40px, 8vw, 96px)));
  margin: 24px auto 0;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 32vw, 460px);
  margin: 0;
  background: #111;
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
  content: "";
  pointer-events: none;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.08);
}

.video-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.9;
  text-transform: uppercase;
}

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

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

.press-grid a {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(243, 240, 232, 0.18);
  background:
    radial-gradient(circle at 22% 18%, rgba(199, 244, 100, 0.18), transparent 24%),
    #0c0c0c;
  color: var(--paper);
  padding: clamp(24px, 4vw, 48px);
  text-decoration: none;
}

.press-grid span,
.press-grid small {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.press-grid strong {
  margin: 20px 0 28px;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.newsletter {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 48px);
  background: var(--bronze);
  color: var(--ink);
}

.newsletter .section-title {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(36px, 5.6vw, 84px);
}

.newsletter-copy {
  max-width: 46ch;
  margin: 24px auto 0;
  color: rgba(8, 8, 8, 0.78);
  font-family: "Spectral", Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
}

.signup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 510px;
  margin: 38px auto 0;
}

.signup input {
  flex: 1;
  min-width: 220px;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.08);
  color: var(--ink);
  font: 500 15px "Archivo", system-ui, sans-serif;
  outline: none;
  padding: 16px 24px;
}

.signup input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(8, 8, 8, 0.12);
}

.signup input::placeholder {
  color: rgba(8, 8, 8, 0.58);
}

.final-cta {
  text-align: center;
}

.final-cta .section-title {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(38px, 6vw, 100px);
}

.footer {
  padding: 0 clamp(20px, 4vw, 48px) 60px;
  border-top: 1px solid rgba(243, 240, 232, 0.12);
  background: var(--ink);
  color: var(--paper);
}

.footer-marquee {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 30px 0 50px;
  color: var(--white);
  font-size: clamp(56px, 12vw, 170px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.footer-links,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(1400px, 100%);
  margin: 0 auto;
  gap: 28px;
  border-top: 1px solid rgba(243, 240, 232, 0.12);
  padding-top: 36px;
}

.footer-links a {
  color: rgba(243, 240, 232, 0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 0;
  padding-top: 0;
  color: rgba(243, 240, 232, 0.5);
  font-family: "Spectral", Georgia, serif;
  font-size: 15px;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1.15s var(--ease), transform 1.15s var(--ease);
}

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

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

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

@keyframes popin {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scandown {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-video {
  filter: grayscale(0.25) contrast(1.04);
  opacity: 0.58;
}

.hero-shade {
  background:
    radial-gradient(circle at 52% 52%, rgba(199, 244, 100, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.14) 62%);
}

.hero h1.hero-name {
  font-size: clamp(82px, 11vw, 180px);
}

.hero-statement {
  max-width: 15ch;
  margin: 22px auto 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-subcopy {
  max-width: 58ch;
  margin: 22px auto 0;
  color: rgba(243, 240, 232, 0.78);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 24px;
}

.hero .scroll-cue {
  left: clamp(20px, 4vw, 48px);
  bottom: 34px;
  font-size: 24px;
  transform: none;
}

#intro {
  order: 1;
}

#unovia {
  order: 2;
}

#products {
  order: 3;
}

#journey {
  order: 4;
}

#speaking {
  order: 5;
}

#lions-path {
  order: 6;
}

#ideas {
  order: 7;
}

#media {
  order: 8;
}

#global {
  order: 9;
}

#contact {
  order: 10;
}

.copy-intro {
  min-height: auto;
  padding-top: clamp(100px, 10vw, 150px);
  padding-bottom: clamp(100px, 10vw, 150px);
}

.intro-composition {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.copy-intro .story-title {
  max-width: 12ch;
  font-size: clamp(52px, 6.8vw, 108px);
}

.intro-copy-block {
  padding-top: 42px;
  border-top: 1px solid rgba(243, 240, 232, 0.16);
}

.intro-copy-block p,
.global-card p {
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 300;
  line-height: 1.58;
}

.intro-copy-block p + p {
  margin-top: 24px;
}

.unovia-section {
  padding-top: clamp(40px, 6vw, 90px);
}

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

.waitlist-card {
  border: 1px solid rgba(243, 240, 232, 0.14);
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 244, 100, 0.18), transparent 20%),
    #111;
  color: var(--paper);
}

.journey-section {
  padding-top: clamp(90px, 10vw, 145px);
}

.journey-stack {
  display: grid;
  gap: 28px;
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(243, 240, 232, 0.14);
  background: rgba(243, 240, 232, 0.035);
}

.journey-card.reverse .journey-media {
  order: 2;
}

.journey-card h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.journey-card p:not(.eyebrow) {
  max-width: 54ch;
  margin: 22px 0 0;
  color: rgba(243, 240, 232, 0.66);
  font-family: "Spectral", Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.62;
}

.journey-media {
  min-height: clamp(360px, 34vw, 520px);
  overflow: hidden;
  background: #111;
}

.journey-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.04);
}

.image-media {
  background-size: cover;
}

.real-estate-media {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.32)),
    url("./assets/brand/real-estate-site.jpg") center 30% / cover;
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.community-photo {
  min-height: clamp(420px, 44vw, 680px);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.44)),
    url("./assets/media/pal-18.jpg") center / cover;
  filter: grayscale(0.18) contrast(1.04);
}

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

.idea-card {
  border-radius: 0;
}

.idea-art {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.26)),
    var(--idea-bg, linear-gradient(135deg, #101010, #9b7653));
  background-size: cover;
  filter: grayscale(0.45) contrast(1.08);
}

.media-story {
  padding-top: clamp(90px, 10vw, 150px);
}

.story-portals {
  width: min(1200px, calc(100% - clamp(40px, 8vw, 96px)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
}

.story-portal,
.story-portal.featured {
  min-width: 0;
  min-height: clamp(330px, 31vw, 440px);
}

.story-portal strong {
  max-width: 10ch;
  font-size: clamp(38px, 4vw, 64px);
}

.global-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(199, 244, 100, 0.24);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 244, 100, 0.12), transparent 18%),
    rgba(243, 240, 232, 0.04);
}

.global-card .eyebrow {
  margin-bottom: 0;
}

.global-card .button {
  margin-top: 28px;
}

.global-image {
  min-height: clamp(360px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #111;
}

.global-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.12) contrast(1.04);
}

.final-cta .section-title {
  font-size: clamp(46px, 5.5vw, 92px);
}

@media (max-width: 1100px) {
  .products-section .venture-grid,
  .ideas-section .idea-grid,
  .story-portals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card,
  .intro-composition,
  .community-grid,
  .global-card {
    grid-template-columns: 1fr;
  }

  .journey-card.reverse .journey-media {
    order: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .media-track {
    animation: none;
  }
}

@media (max-width: 760px) {
  .site-nav {
    mix-blend-mode: normal;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-content: end;
    gap: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    font-size: clamp(42px, 16vw, 76px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 4px 0;
    border-bottom: 0;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: center 24%;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-sound {
    right: 20px;
    bottom: 24px;
  }

  .hero-loader {
    top: 86px;
    left: 20px;
  }

  .hero .scroll-cue {
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
  }

  .hero h1.hero-name {
    max-width: 100%;
    font-size: clamp(68px, 22vw, 96px);
    line-height: 0.8;
    overflow-wrap: anywhere;
  }

  .hero-statement,
  .hero-subcopy,
  .hero-actions {
    max-width: 100%;
  }

  .hero-tags {
    gap: 12px 20px;
    margin-top: 32px;
    font-size: 10px;
  }

  .button {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-row {
    width: 100%;
  }

  .section-head,
  .chapter {
    display: block;
  }

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

  .story-portrait {
    min-height: 420px;
  }

  .story-title {
    font-size: clamp(54px, 16vw, 84px);
  }

  .journey-card {
    width: 100%;
    min-width: 0;
  }

  .journey-card > *,
  .journey-media {
    min-width: 0;
  }

  .head-copy {
    margin-top: 22px;
  }

  .chapter-side {
    position: static;
    text-align: left;
  }

  .chapter::before {
    display: none;
  }

  .chapter-lead {
    margin-top: 26px;
  }

  .feature-card,
  .feature-card.real-estate {
    min-height: 580px;
    border-radius: 14px;
  }

  .feature-card::after {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.92));
  }

  .feature-copy {
    padding: 28px;
  }

  .life-grid {
    grid-auto-rows: 150px;
    grid-template-columns: repeat(2, 1fr);
  }

  .life-tile.large,
  .life-tile.wide {
    grid-column: span 2;
  }

  .media-frame {
    flex-basis: 240px;
    height: 330px;
  }

  .media-frame.wide {
    flex-basis: 330px;
  }

  .video-rail {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .video-card {
    min-height: 420px;
  }

  .story-portals {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .story-portal {
    min-height: 460px;
  }

  .story-panel-copy {
    display: block;
  }

  .story-panel-copy p:last-child {
    margin-top: 20px;
  }

  .press-grid,
  .local-video-grid {
    grid-template-columns: 1fr;
  }

  .press-grid a {
    min-height: 300px;
  }
}

@media (max-width: 420px) {
  .section,
  .newsletter {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(36px, 13vw, 56px);
  }

  .venture-grid,
  .idea-grid,
  .lesson-grid {
    grid-template-columns: 1fr;
  }

  .life-grid {
    grid-auto-rows: 132px;
    gap: 10px;
  }
}

main > #top {
  order: 0 !important;
}

main > #intro {
  order: 1 !important;
}

main > #unovia {
  order: 2 !important;
}

main > #products {
  order: 3 !important;
}

main > #journey {
  order: 4 !important;
}

main > #speaking {
  order: 5 !important;
}

main > #lions-path {
  order: 6 !important;
}

main > #ideas {
  order: 7 !important;
}

main > #media {
  order: 8 !important;
}

main > #story-viewer {
  order: 9 !important;
}

main > #global {
  order: 10 !important;
}

main > #contact {
  order: 11 !important;
}

.featured-section {
  overflow: hidden;
}

.featured-section .section-head {
  align-items: flex-start;
}

.featured-portals {
  width: min(1200px, calc(100% - clamp(40px, 8vw, 96px)));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
}

.featured-section .story-portal,
.featured-section .story-portal.featured {
  min-height: clamp(420px, 35vw, 560px);
}

.featured-section .story-portal::before {
  filter: grayscale(0.12) contrast(1.02);
}

.featured-section .story-portal.tedx-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("./assets/media/tedx-cover.jpeg") center / cover;
}

.featured-section .story-portal.ai-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("./assets/media/ai-lecture-cover.JPG") center / cover;
}

.press-showcase {
  margin-top: clamp(80px, 10vw, 150px);
}

.press-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(34px, 5vw, 70px);
}

.press-shot {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 232, 0.16);
  background: #111;
}

.press-shot::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.press-shot:hover::after,
.press-shot:focus-visible::after {
  border-color: rgba(199, 244, 100, 0.78);
  background: rgba(199, 244, 100, 0.05);
}

.press-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top left;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.6s var(--ease);
}

.press-shot:hover img,
.press-shot:focus-visible img {
  transform: scale(1.03);
}

.hall-of-fame {
  margin-top: clamp(80px, 10vw, 150px);
}

.fame-rail {
  width: 100%;
  margin-top: clamp(34px, 5vw, 70px);
  overflow: hidden;
  border-top: 1px solid rgba(243, 240, 232, 0.14);
  border-bottom: 1px solid rgba(243, 240, 232, 0.14);
  background: rgba(243, 240, 232, 0.035);
}

.fame-track {
  display: flex;
  gap: 1px;
  width: max-content;
  animation: mediaSlide 90s linear infinite;
}

.fame-rail:hover .fame-track {
  animation-play-state: paused;
}

.fame-frame {
  flex: 0 0 clamp(220px, 18vw, 340px);
  height: clamp(280px, 26vw, 440px);
  margin: 0;
  overflow: hidden;
  background: #111;
}

.fame-frame.tall {
  flex-basis: clamp(260px, 22vw, 420px);
}

.fame-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.04);
  transition: filter 0.35s var(--ease), transform 0.45s var(--ease);
}

.fame-frame:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .featured-portals,
  .press-shot-grid {
    grid-template-columns: 1fr;
  }

  .featured-section .story-portal,
  .featured-section .story-portal.featured {
    min-height: 420px;
  }

  .press-shot {
    min-height: 300px;
  }

  .fame-frame {
    flex-basis: 230px;
    height: 310px;
  }
}
