.damion-regular {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Matches .eyebrow / "A VR Experience" accent */
.title-accent-way {
  color: var(--accent);
}

:root {
  --bg: #060815;
  --panel: rgba(18, 25, 45, 0.62);
  --panel-border: rgba(255, 255, 255, 0.18);
  --text: #e7ecff;
  --muted: #b2bcdd;
  --accent: #7ee7ff;
  --accent-2: #a78bfa;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}


* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background-color: #04050d;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  position: relative;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 18% 12%, #101d46 0%, #060815 48%, #04050d 100%);
  overflow-x: hidden;
}

main a {
  color: var(--accent);
}

.background-blur {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.bg-1 {
  background: rgba(126, 231, 255, 0.18);
  top: -8rem;
  left: -7rem;
}

.bg-2 {
  background: rgba(167, 139, 250, 0.2);
  bottom: -10rem;
  right: -8rem;
}

.layout,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.layout {
  width: min(1120px, 92vw);
  margin: 0 auto 4rem;
  display: grid;
  gap: 1.2rem;
}

.glass {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-header {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: rgba(12, 18, 36, 0.52);
}

.logo-wrap h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(0.95rem, 1.85vw, 1.35rem);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-logo {
  width: 86px;
  height: 86px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  /* border-radius: 50%;
  border: 3px solid #ffffff; /* This creates a white ring */
  /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22); */
  flex-shrink: 0;
  transform: scale(1.5);
  transform-origin: center;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-list a {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-list a:hover {
  border-color: var(--panel-border);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item-dropdown > a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.9;
  transition: transform 0.18s ease;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.38rem;
  position: absolute;
  left: 0;
  top: calc(100% + 0.28rem);
  min-width: 170px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(10, 15, 32, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 30;
}

.dropdown-menu a {
  display: block;
  padding: 0.42rem 0.56rem;
  border-radius: 8px;
  color: #dce5ff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item-dropdown:hover > a::after,
.nav-item-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(-1px);
}

/* This fills the gap between the nav item and the dropdown */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.32rem; /* Slightly larger than your 0.28rem gap to ensure overlap */
  left: 0;
  width: 100%;
  height: 0.32rem;
  background: transparent; /* It's invisible but "catchable" by the mouse */
}

.section {
  padding: 1.35rem;
}

.shots-section {
  margin-top: 1.5rem;
  margin-bottom: 4.75rem;
  padding: 0;
}

.shots-section > h2 {
  text-align: center;
  padding: 0 min(1.35rem, 4vw);
  margin-bottom: 0.85rem;
}

.devlog-section .section-intro {
  margin-bottom: 0.25rem;
}

.timeline-wrap {
  position: relative;
  margin-top: 1.75rem;
  padding: 0.25rem 0 0.5rem;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(126, 231, 255, 0.15),
    rgba(167, 139, 250, 0.45),
    rgba(126, 231, 255, 0.15)
  );
  border-radius: 999px;
  pointer-events: none;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.timeline-item {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #e8f7ff, var(--accent));
  box-shadow: 0 0 0 4px rgba(6, 8, 21, 0.65);
  z-index: 3;
  pointer-events: none;
}

.timeline-row {
  --timeline-card-w: 300px;
  --timeline-thumb-h: 158px;
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr min(2.75rem, 7vw) 1fr;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
}

.timeline-row:hover .timeline-card {
  transform: translateY(-3px);
  border-color: rgba(126, 231, 255, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.timeline-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.timeline-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  width: fit-content;
  max-width: min(var(--timeline-card-w), 40vw);
  padding: 0.55rem 0.6rem;
  border-radius: 14px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Image left, text right (toward center line) */
.timeline-item--media-left .timeline-card {
  grid-column: 1;
  justify-self: end;
}

.timeline-item--media-left .timeline-meta {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  align-items: flex-start;
}

/* Text left, image right */
.timeline-item--media-right .timeline-card {
  grid-column: 3;
  justify-self: start;
}

.timeline-item--media-right .timeline-meta {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  align-items: flex-end;
}

.timeline-thumb {
  width: var(--timeline-card-w);
  max-width: 100%;
  height: var(--timeline-thumb-h);
  min-height: var(--timeline-thumb-h);
  max-height: var(--timeline-thumb-h);
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--panel-border);
  background: linear-gradient(135deg, rgba(126, 231, 255, 0.14), rgba(167, 139, 250, 0.1));
  color: #d3ddff;
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

.timeline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-meta {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: min(260px, 100%);
  max-width: min(280px, 44vw);
  text-align: left;
  align-items: flex-start;
  padding: 0.15rem 0;
  background: none;
  border: none;
  box-shadow: none;
}

.timeline-name {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
}

.timeline-date {
  display: block;
  width: 100%;
  font-size: 0.72rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  line-height: 1.25;
}

.section h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
}

.section-intro {
  margin-top: 0;
  color: var(--muted);
}

.hero {
  padding: 0;
  display: grid;
  gap: 1rem;
  margin-top: -1px;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 45vw, 520px);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  background-image: url("assets/hero-main.png");
  background-position: center calc(50% + var(--hero-parallax-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    0 6px 0 rgba(255, 255, 255, 0.08) inset;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.42) 70%,
    rgba(0, 0, 0, 0.56) 100%
  );
}

.hero-banner-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  max-width: min(92vw, 36rem);
  padding: 0 0.75rem;
}

.hero-banner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 6.5vw, 4.5rem);
  font-family: "Damion", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-banner-tagline {
  margin: 0.55rem 0 0;
  font-size: clamp(0.78rem, 1.85vw, 1.05rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero-description {
  padding: 1.15rem 1.2rem;
}

.hero-description p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.hero-tagline {
  margin: 0.45rem 0 0;
  font-size: clamp(1.05rem, 2.25vw, 1.4rem);
  line-height: 1.35;
  color: #eef3ff;
}

.pillars-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.pillar-card {
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem;
}

.pillar-card h3 {
  margin: 0 0 0.45rem;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.p3-criteria-section .section-intro {
  margin-bottom: 0.25rem;
}

.p3-criteria-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
  align-items: stretch;
}

.p3-criteria-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  min-height: 0;
}

.p3-criteria-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.p3-criteria-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.p3-criteria-media {
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  border-bottom: 1px solid var(--panel-border);
  background: rgba(6, 8, 21, 0.45);
  overflow: hidden;
}

.p3-criteria-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p3-criteria-card h3 {
  margin: 0.75rem 0.85rem 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.p3-criteria-card p {
  margin: 0.45rem 0.85rem 0.9rem;
  flex: 1;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.p3-criteria-card.reveal-slide {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.p3-criteria-card.reveal-slide.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p3-criteria-card.reveal-slide:nth-child(1) {
  transition-delay: 0s;
}
.p3-criteria-card.reveal-slide:nth-child(2) {
  transition-delay: 0.07s;
}
.p3-criteria-card.reveal-slide:nth-child(3) {
  transition-delay: 0.14s;
}
.p3-criteria-card.reveal-slide:nth-child(4) {
  transition-delay: 0.1s;
}
.p3-criteria-card.reveal-slide:nth-child(5) {
  transition-delay: 0.17s;
}

.mission-section p {
  margin: 0.35rem 0 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-tags span {
  font-size: 0.84rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.06);
}

.shot-placeholder {
  border-radius: 14px;
  min-height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid var(--panel-border);
  background: linear-gradient(135deg, rgba(126, 231, 255, 0.16), rgba(167, 139, 250, 0.12));
  color: #d3ddff;
  font-weight: 600;
  overflow: hidden;
}

.shot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-scroll {
  position: relative;
  margin-top: 0.6rem;
}

.story-spacer {
  height: 120vh;
}

.story-sticky {
  position: sticky;
  top: calc(50vh - 245px);
}

.stack-stage {
  width: min(760px, 88vw);
  height: 460px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.stack-card {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  will-change: transform;
  transition: none;
  box-shadow: none;
}

.stack-card h3 {
  margin: 0.85rem 0 0;
  line-height: 1.25;
}

.stack-card p {
  margin: 1rem 0 0;
  line-height: 1.5;
  color: var(--muted);
}

.stack-card[data-stack-index="0"] {
  z-index: 4;
}
.stack-card[data-stack-index="1"] {
  z-index: 3;
}
.stack-card[data-stack-index="2"] {
  z-index: 2;
}
.stack-card[data-stack-index="3"] {
  z-index: 1;
}

.list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.entry-list {
  display: grid;
  gap: 0.8rem;
}

.entry {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
}

.entry h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.entry p {
  margin: 0;
  color: var(--muted);
}

.playtest-report .q {
  margin-top: 1.15rem;
  margin-bottom: 0.4rem;
}

.playtest-report .section-intro + .q {
  margin-top: 0.85rem;
}

.playtest-report h2 {
  margin: 1.65rem 0 0.55rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.playtest-report > p:not(.q):not(.eyebrow):not(.section-intro) {
  margin: 0 0 0.65rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(126, 231, 255, 0.45);
  outline-offset: 2px;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 231, 255, 0.55);
  background: var(--accent);
  color: #060815;
}

.contact-form button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.pricing-cta-section {
  text-align: center;
}

.pricing-cta-section .section-intro {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta-actions {
  margin: 1.1rem 0 0;
}

.btn-pill-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 231, 255, 0.55);
  background: var(--accent);
  color: #060815;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn-pill-accent:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.btn-pill-accent:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.pricing-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.pricing-card .price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.pricing-card .price-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.pricing-card .price-period {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.team-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.team-card {
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-photo {
  aspect-ratio: 1;
  max-height: 220px;
  margin: 0 auto;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: linear-gradient(135deg, rgba(126, 231, 255, 0.12), rgba(167, 139, 250, 0.08));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.team-bio {
  margin: 0;
  flex: 1;
  min-height: 4.5rem;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: rgba(6, 8, 21, 0.35);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-card .list {
  margin: 0.35rem 0 0;
  flex: 1;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  max-width: min(720px, 100%);
  margin: 1rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: #0a0e1a;
  box-shadow: var(--shadow);
}

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

.video-description {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
}

.video-description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.video-description p + p {
  margin-top: 0.65rem;
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto 1.4rem;
  text-align: center;
  color: #b9c4e7;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    top: 0;
  }

  .dropdown-menu {
    position: static;
    margin-top: 0.35rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero {
    gap: 0.85rem;
  }

  .brand-row {
    align-items: center;
  }

  .site-logo {
    width: 76px;
    height: 76px;
    padding: 0;
    transform: scale(1.1);
  }

  .hero-banner {
    min-height: clamp(220px, 56vw, 380px);
  }

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

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

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

  .shots-section {
    margin-bottom: 3.25rem;
  }

  .story-sticky {
    top: calc(50vh - 215px);
  }

  .story-spacer {
    height: 112vh;
  }

  .stack-stage {
    width: min(680px, 90vw);
    height: 420px;
  }

  .shot-placeholder {
    min-height: 150px;
  }

  .timeline-wrap::before {
    left: 14px;
    transform: none;
  }

  .timeline-dot {
    left: 14px;
    transform: translate(-50%, -50%);
  }

  .timeline-item {
    padding-left: 2.6rem;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.65rem;
    width: 100%;
    max-width: min(var(--timeline-card-w), 100%);
    margin: 0;
    justify-self: stretch;
  }

  .timeline-item--media-left .timeline-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    max-width: 100%;
    width: 100%;
  }

  .timeline-item--media-left .timeline-meta {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    text-align: left;
    align-items: flex-start;
  }

  .timeline-item--media-right .timeline-meta {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    text-align: left;
    align-items: flex-start;
  }

  .timeline-item--media-right .timeline-card {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    max-width: 100%;
    width: 100%;
  }

  .timeline-thumb {
    width: 100%;
    max-width: 100%;
  }

  .p3-criteria-grid {
    grid-template-columns: 1fr;
  }

  .p3-criteria-card,
  .p3-criteria-card:nth-child(4),
  .p3-criteria-card:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .p3-criteria-card.reveal-slide {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
