@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --background: oklch(0.115 0.008 260);
  --foreground: oklch(0.94 0.012 90);
  --card: oklch(0.15 0.01 260);
  --card-foreground: oklch(0.94 0.012 90);
  --popover: oklch(0.15 0.01 260);
  --popover-foreground: oklch(0.94 0.012 90);
  --primary: oklch(0.67 0.16 270);
  --primary-foreground: oklch(0.1 0 0);
  --secondary: oklch(0.2 0.01 260);
  --secondary-foreground: oklch(0.8 0.01 90);
  --muted: oklch(0.2 0.01 260);
  --muted-foreground: oklch(0.63 0.015 90);
  --accent: oklch(0.67 0.16 270);
  --accent-foreground: oklch(0.1 0 0);
  --border: oklch(1 0 0 / 14%);
  --input: oklch(1 0 0 / 14%);
  --ring: oklch(0.67 0.16 270);
  --radius: 0rem;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: #0b0c0f;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
}

button, a {
  cursor: pointer;
}

button:focus-visible, a:focus-visible {
  outline: 1px solid #2EC6FF;
  outline-offset: 5px;
}

.site-shell {
  background: #0b0c0f;
  color: #f0efe9;
  overflow: hidden;
}
.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-nav {
  height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 10;
  width: 100%;
  color: #f0efe9;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  background: none;
  border: 0;
  font-weight: 700;
  text-align: left;
  font-size: 12px;
  line-height: .86;
  letter-spacing: .05em;
}
.brand-name {
  display: inline-block;
  color: inherit;
  font: 700 12px/0.86 'Space Grotesk', sans-serif;
  letter-spacing: .05em;
  text-align: left;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: .65;
}
.nav-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link, .menu-trigger {
  background: none;
  border: 0;
  color: inherit;
  display: flex;
  gap: 8px;
  align-items: center;
  font: inherit;
}
.nav-link {
  font-family: 'IBM Plex Mono';
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.nav-link:hover, .text-link:hover, .contact-email:hover {
  color: #2EC6FF;
}
.menu-trigger {
  padding: 5px;
}
.hero-section {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 8.5vh;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0b0c0f;
  filter: saturate(.68) contrast(1.12);
  opacity: .6;
}
.hero-image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6,7,9,.82) 0%, rgba(6,7,9,.33) 56%, rgba(6,7,9,.76) 100%), linear-gradient(0deg, rgba(6,7,9,.85), transparent 45%);
}
.hero-section:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 790px;
  animation: rise .8s cubic-bezier(.23,1,.32,1) both;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9c8c1;
  margin: 0 0 27px;
}
.blue-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2EC6FF;
  box-shadow: 0 0 18px #2EC6FF;
}
.eyebrow-line {
  width: 38px;
  height: 1px;
  background: #2EC6FF;
  opacity: .75;
}
h1, h2, h3, p {
  margin: 0;
}
h1 {
  font-size: clamp(60px, 10vw, 142px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 700;
}
h1 em, h2 i {
  font-style: italic;
  font-weight: 400;
}
.play-button {
  margin-top: 35px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(240,239,233,.55);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(10,11,15,.3);
  transition: transform .2s ease-out, background .2s ease-out, border-color .2s ease-out;
}
.play-button:hover {
  transform: scale(1.08);
  background: #2EC6FF;
  border-color: #2EC6FF;
  color: #0b0c0f;
}
.hero-meta {
  position: absolute;
  right: 8vw;
  bottom: 9vh;
  display: flex;
  gap: 35px;
  line-height: 1.55;
  color: #c9c8c1;
  z-index: 4;
}
.hero-index {
  position: absolute;
  right: 4vw;
  top: 50%;
  writing-mode: vertical-rl;
  color: #f0efe9;
  z-index: 4;
}
.hero-index span {
  color: #2EC6FF;
  margin: 7px 0;
}
.section-pad {
  padding: 145px 8vw;
}
.work-section {
  background: #f0efe9;
  color: #0b0c0f;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: end;
  margin-bottom: 78px;
}
.chapter {
  color: #5964a0;
  align-self: start;
}
.section-heading h2, .manifesto-content h2, .contact-body h2 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: .86;
  letter-spacing: -.07em;
}
.intro-copy {
  font-family: 'IBM Plex Mono';
  font-size: 11px;
  line-height: 1.6;
  padding-bottom: 4px;
}
.project-list {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 46px 30px;
  align-items: start;
}
.project-card:nth-child(1) {
  grid-column: 1 / -1;
}
.project-card:nth-child(2) {
  margin-top: 60px;
}
.project-card:nth-child(3) {
  margin-top: 0;
}
.project-card:nth-child(4) {
  margin-top: 110px;
}
.project-card:nth-child(5) {
  margin-top: 36px;
}
.project-card:nth-child(6) {
  margin-top: 50px;
}
.project-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #c2c1bc;
}
.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.23,1,.32,1);
  filter: saturate(.75);
}
.project-card:hover img {
  transform: scale(1.045);
}
.reels-section {
  background: #d8d7d1;
  color: #0b0c0f;
}
.reels-heading {
  margin-bottom: 72px;
}
.reels-rails {
  display: block;
  margin: 0 -8vw;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #2EC6FF transparent;
}
.reel-rail {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 8vw 12px;
}
.reel-card {
  width: 178px;
  flex: 0 0 178px;
}
.reel-featured {
  width: 205px;
  flex-basis: 205px;
}
.reel-placeholder {
  height: 316px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f0efe9;
  background-color: #17181d;
}
.reel-placeholder:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,5,7,.1), rgba(4,5,7,.68));
}
.reel-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.74) contrast(1.05);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.reel-card:hover .reel-placeholder img {
  transform: scale(1.045);
}
.reel-one {
  background: linear-gradient(145deg, #181b29, #4b526c);
}
.reel-two {
  background: linear-gradient(145deg, #18181a, #6b4537);
}
.reel-three {
  background: linear-gradient(145deg, #12151a, #36526c);
}
.reel-placeholder > span {
  position: relative;
  z-index: 2;
}
.reel-label {
  color: #f0efe9;
}
.reel-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240,239,233,.75);
  background: rgba(11,12,15,.28);
  color: #fff;
  transition: background .2s, transform .2s;
}
.reel-play:hover {
  background: #2EC6FF;
  color: #0b0c0f;
  transform: translate(-50%, -50%) scale(1.08);
}
.reel-status {
  color: #2EC6FF;
}
.reel-card-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #999894;
  margin-top: 14px;
}
.reel-card-info strong {
  font: 600 14px 'Space Grotesk';
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.reels-note {
  margin-top: 52px;
  color: #5e6061;
}
.project-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240,239,233,.75);
  background: rgba(11,12,15,.28);
  color: #fff;
  transition: background .2s, transform .2s;
}
.project-play:hover {
  background: #2EC6FF;
  color: #0b0c0f;
  transform: translate(-50%, -50%) scale(1.08);
}
.project-arrow {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #0b0c0f;
  color: #f0efe9;
  transition: background .2s, color .2s;
}
.project-arrow:hover {
  background: #2EC6FF;
  color: #0b0c0f;
}
.project-info {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-top: 16px;
  border-top: 1px solid #999894;
  margin-top: 14px;
  gap: 5px;
}
.project-info h3 {
  grid-column: 1;
  font-family: 'Space Grotesk';
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.project-info h3 small {
  display: block;
  font: 400 10px 'IBM Plex Mono';
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #696965;
  margin-top: 5px;
}
.project-info span:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: #61615d;
}
.text-link {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  padding: 0;
  color: inherit;
  transition: color .2s;
}
.process-section {
  background: #111318;
  color: #f0efe9;
  min-height: 620px;
}
.process-heading {
  margin-bottom: 100px;
}
.process-heading .chapter {
  color: #2EC6FF;
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  height: 1px;
  background: rgba(240,239,233,.3);
}
.process-line-seg {
  position: absolute;
  top: 13px;
  width: 0;
  height: 1px;
  background: #2EC6FF;
  box-shadow: 0 0 10px 1px rgba(46,198,255,.6);
  transition: width 1.3s ease-out;
}
.process-line-seg[data-seg="1"] { left: 0%; }
.process-line-seg[data-seg="2"] { left: 25%; }
.process-line-seg[data-seg="3"] { left: 50%; }
.process-line-seg[data-seg="4"] { left: 75%; }
.process-visible .process-line-seg { width: 25%; }
.process-visible .process-line-seg[data-seg="1"] { transition-delay: 300ms; }
.process-visible .process-line-seg[data-seg="2"] { transition-delay: 1600ms; }
.process-visible .process-line-seg[data-seg="3"] { transition-delay: 2900ms; }
.process-visible .process-line-seg[data-seg="4"] { transition-delay: 4200ms; }
.process-step {
  position: relative;
  padding-top: 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(.23,1,.32,1), transform 1.2s cubic-bezier(.23,1,.32,1);
}
.process-visible .process-step {
  opacity: 1;
  transform: translateY(0);
}
.process-visible .process-step:nth-of-type(1) {
  transition-delay: 100ms;
}
.process-visible .process-step:nth-of-type(2) {
  transition-delay: 1400ms;
}
.process-visible .process-step:nth-of-type(3) {
  transition-delay: 2700ms;
}
.process-visible .process-step:nth-of-type(4) {
  transition-delay: 4000ms;
}
.process-node {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 1px solid #2EC6FF;
  background: #111318;
  display: grid;
  place-items: center;
}
.process-node span {
  width: 5px;
  height: 5px;
  background: #2EC6FF;
}
.process-number {
  color: #2EC6FF;
}
.process-step h3 {
  margin: 28px 0 18px;
  font: 600 clamp(24px, 3vw, 38px)/.95 'Space Grotesk';
  letter-spacing: -.06em;
}
.process-step p {
  max-width: 230px;
  margin: 0;
  color: #adaea9;
  font-size: 15px;
  line-height: 1.45;
}
.process-cta {
  color: #f0efe9;
  margin-top: 86px;
}
.manifesto-section {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  background: #111318;
}
.manifesto-index {
  color: #2EC6FF;
}
.manifesto-content {
  align-self: center;
}
.blue-label {
  color: #2EC6FF;
  margin-bottom: 32px;
}
.manifesto-content h2 {
  font-size: clamp(52px, 7vw, 105px);
}
.manifesto-content h2 .highlight {
  color: #2EC6FF;
}
.manifesto-content h2 .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s ease, transform 1.1s ease;
  transition-delay: calc(var(--i) * 45ms);
}
.manifesto-visible .manifesto-content h2 .letter {
  opacity: 1;
  transform: translateY(0);
}
.manifesto-copy {
  font-size: 17px;
  line-height: 1.45;
  max-width: 410px;
  color: #adaea9;
  margin-top: 45px;
}
.manifesto-note {
  align-self: end;
  line-height: 1.6;
  color: #6c6f78;
  padding-bottom: 3px;
}
.contact-section {
  min-height: 650px;
  background: #2EC6FF;
  color: #0b0c0f;
  display: flex;
  flex-direction: column;
}
.contact-top, .site-footer {
  display: flex;
  justify-content: space-between;
}
.contact-top .chapter {
  color: #27336c;
}
.contact-body {
  margin: auto 0;
}
.contact-body h2 {
  font-size: clamp(55px, 9vw, 130px);
}
.contact-links {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 45px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #0b0c0f;
  font-size: clamp(20px, 2.3vw, 31px);
  text-decoration: none;
  border-bottom: 1px solid #0b0c0f;
  padding-bottom: 10px;
  transition: color .2s;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b0c0f;
  font: 11px 'IBM Plex Mono';
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 12px 0;
  transition: color .2s;
}
.contact-phone:hover {
  color: #fff;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin-top: 32px;
}
.form-row {
  display: flex;
  gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(11,12,15,.4);
  color: #0b0c0f;
  font: 14px 'IBM Plex Mono';
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color .2s;
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form textarea { resize: vertical; min-height: 64px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(11,12,15,.55); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: #0b0c0f; }
.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 6px;
  padding: 12px 22px;
  background: #0b0c0f;
  color: #2EC6FF;
  font: 600 12px 'IBM Plex Mono';
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 0;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-send:hover { opacity: .82; }
.btn-send:disabled { opacity: .5; cursor: default; }
.form-note {
  font: 12px 'IBM Plex Mono';
  margin: 0;
  min-height: 16px;
}
@media (max-width: 640px) {
  .form-row { flex-direction: column; gap: 12px; }
}
.site-footer {
  border-top: 1px solid rgba(11,12,15,.35);
  padding-top: 16px;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.floating-contact {
  position: fixed;
  z-index: 25;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  color: #f0efe9;
  background: #0b0c0f;
  border: 1px solid rgba(240,239,233,.5);
  text-decoration: none;
  font: 10px 'IBM Plex Mono';
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
  transition: transform .2s ease-out, color .2s, background .2s;
}
.floating-contact:hover {
  transform: translateY(-3px);
  color: #0b0c0f;
  background: #2EC6FF;
  border-color: #2EC6FF;
}
.menu-overlay {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: #0b0c0f;
  color: #f0efe9;
  padding: 8vw;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: fade .25s ease-out both;
}
.menu-close, .modal-close {
  align-self: flex-end;
  border: 0;
  background: none;
  color: inherit;
}
.menu-kicker {
  color: #2EC6FF;
  margin: 10vh 0 28px;
}
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-overlay nav button {
  display: flex;
  align-items: center;
  gap: 32px;
  color: inherit;
  border: 0;
  background: none;
  width: fit-content;
  font-size: clamp(40px, 8vw, 100px);
  line-height: .95;
  letter-spacing: -.07em;
  text-align: left;
}
.menu-overlay nav button span {
  color: #2EC6FF;
  font: 11px 'IBM Plex Mono';
  letter-spacing: .08em;
}
.menu-overlay nav button svg {
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.menu-packs-link {
  display: flex;
  align-items: center;
  gap: 32px;
  color: inherit;
  text-decoration: none;
  width: fit-content;
  font-size: clamp(40px, 8vw, 100px);
  line-height: .95;
  letter-spacing: -.07em;
}
.menu-packs-link span {
  color: #2EC6FF;
  font: 11px 'IBM Plex Mono';
  letter-spacing: .08em;
}
.menu-packs-link svg {
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.menu-packs-link:hover svg {
  opacity: 1;
  transform: translate(5px,-5px);
}
.menu-overlay nav button:hover svg {
  opacity: 1;
  transform: translate(5px,-5px);
}
.menu-foot {
  margin-top: auto;
  color: #777a85;
  line-height: 1.6;
}
.reel-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(4,5,7,.94);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 7vw;
  animation: fade .2s ease-out both;
}
.modal-close {
  position: absolute;
  top: 35px;
  right: 4vw;
}
.modal-frame {
  width: min(100%, 1000px);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050608;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.modal-caption {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  color: #a9abb2;
}
.fake-progress {
  height: 2px;
  background: #3e4149;
}
.fake-progress span {
  display: block;
  height: 100%;
  width: 38%;
  background: #2EC6FF;
}
.packs-page {
  min-height: 100vh;
  background: #0b0c0f;
  color: #f0efe9;
}
.packs-nav {
  height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(240,239,233,.14);
}
.packs-brand {
  color: inherit;
  text-decoration: none;
  font: 700 12px/.86 'Space Grotesk';
  letter-spacing: .05em;
}
.packs-nav > span {
  color: #2EC6FF;
}
.packs-back {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.packs-nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lang-switch {
  text-decoration: none;
  opacity: .75;
}
.lang-switch:hover {
  opacity: 1;
}
.packs-intro {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(240,239,233,.14);
}
.packs-intro-copy {
  min-width: 0;
}
.packs-intro .chapter {
  color: #2EC6FF;
}
.packs-intro h1 {
  margin: 48px 0 28px;
  max-width: 780px;
  font-size: clamp(68px, 12vw, 170px);
  line-height: .82;
  letter-spacing: -.08em;
}
.packs-intro p {
  max-width: 390px;
  color: #adaea9;
  font-size: 17px;
  line-height: 1.45;
  margin-left: 38%;
}
.packs-list {
  background: #111318;
  color: #f0efe9;
}
.packs-rule-section {
  background: #d8d7d1;
  color: #0b0c0f;
}
.packs-heading {
  display: grid;
  grid-template-columns: .8fr 1.3fr .8fr;
  align-items: start;
  margin-bottom: 110px;
}
.packs-heading > span {
  color: #2EC6FF;
}
.packs-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 100px);
  line-height: .84;
  letter-spacing: -.08em;
}
.packs-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.packs-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(240,239,233,.3);
}
.pack-card {
  position: relative;
  padding-top: 45px;
  min-height: 230px;
}
.pack-node {
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #111318;
  border: 1px solid #2EC6FF;
  display: grid;
  place-items: center;
}
.pack-node span {
  width: 5px;
  height: 5px;
  background: #2EC6FF;
}
.pack-number {
  color: #2EC6FF;
}
.pack-card h3 {
  margin: 28px 0 12px;
  font: 600 clamp(25px, 3vw, 42px)/.9 'Space Grotesk';
  letter-spacing: -.07em;
}
.pack-card strong {
  display: block;
  font: 600 clamp(40px, 5vw, 65px)/.9 'Space Grotesk';
  letter-spacing: -.08em;
}
.pack-timing {
  display: block;
  margin-top: 20px;
  color: #2EC6FF;
}
.pack-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(240,239,233,.4);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.pack-cta:hover {
  color: #2EC6FF;
  border-color: #2EC6FF;
}
.packs-rule {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid #999894;
  border-bottom: 1px solid #999894;
}
.packs-rule span {
  color: #2EC6FF;
}
.packs-rule p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.packs-cta {
  color: #0b0c0f;
  margin-top: 44px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.packs-footer {
  padding: 18px 4vw;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(46,198,255,.25);
  color: #f0efe9;
}
.packs-footer a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.packs-footer a:hover {
  color: #2EC6FF;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 760px) {
  .site-nav {
    padding: 0 6vw;
  }
  .nav-center, .nav-link {
    display: none;
  }
  .hero-section {
    padding: 0 6vw 8vh;
    min-height: 88svh;
  }
  .hero-meta {
    right: 6vw;
    bottom: 3vh;
    display: none;
  }
  .hero-index {
    right: 6vw;
    top: 40%;
  }
  .section-pad {
    padding: 95px 6vw;
  }
  .section-heading, .manifesto-section {
    display: block;
  }
  .section-heading h2 {
    margin: 42px 0 22px;
  }
  .project-list {
    display: block;
  }
  .project-card, .project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4), .project-card:nth-child(5), .project-card:nth-child(6) {
    grid-column: auto;
    margin: 0 0 58px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .packs-heading {
    display: block;
    margin-bottom: 70px;
  }
  .packs-heading h2 {
    margin: 40px 0 24px;
  }
  .packs-intro {
    display: block;
    min-height: auto;
  }
  .packs-intro p {
    margin-left: 0;
  }
  .menu-overlay nav button,
  .menu-packs-link {
    align-items: flex-start;
    gap: 18px;
    font-size: clamp(32px, 9vw, 40px);
  }
  .menu-overlay nav button span,
  .menu-packs-link span {
    margin-top: 10px;
  }
  .packs-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .packs-timeline::before {
    left: 7px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .pack-card {
    padding: 0 0 52px 40px;
    min-height: 0;
  }
  .pack-node {
    left: 0;
    top: 0;
  }
  .packs-rule {
    display: block;
  }
  .packs-rule p {
    margin-top: 18px;
  }
  .packs-footer {
    flex-direction: column;
  }
  .packs-nav > span {
    display: none;
  }
  .process-timeline::before {
    left: 7px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .process-line-seg,
  .process-line-seg[data-seg="1"],
  .process-line-seg[data-seg="2"],
  .process-line-seg[data-seg="3"],
  .process-line-seg[data-seg="4"] {
    left: 7px;
    top: auto;
    width: 1px;
    height: 0;
    transition: height 1.3s ease-out;
  }
  .process-line-seg[data-seg="1"] { top: 0%; }
  .process-line-seg[data-seg="2"] { top: 25%; }
  .process-line-seg[data-seg="3"] { top: 50%; }
  .process-line-seg[data-seg="4"] { top: 75%; }
  .process-visible .process-line-seg,
  .process-visible .process-line-seg[data-seg="1"],
  .process-visible .process-line-seg[data-seg="2"],
  .process-visible .process-line-seg[data-seg="3"],
  .process-visible .process-line-seg[data-seg="4"] { width: 1px; height: 25%; }
  .process-step {
    padding: 0 0 48px 40px;
  }
  .process-node {
    left: 0;
    top: 0;
  }
  .process-step h3 {
    margin: 16px 0 12px;
  }
  .process-step p {
    max-width: 320px;
  }
  .process-cta {
    margin-top: 22px;
  }
  .project-image-wrap {
    width: 100%;
  }
  .reels-rails {
    margin: 0 -6vw;
  }
  .reel-rail {
    gap: 12px;
    padding: 0 6vw 12px;
  }
  .reel-card, .reel-featured {
    width: 42vw;
    flex-basis: 42vw;
  }
  .reel-placeholder {
    height: 74.6vw;
  }
  .reel-offset {
    margin-top: 0;
  }
  .reel-card-info {
    display: block;
  }
  .reel-card-info strong {
    display: block;
    margin-top: 7px;
    font-size: 12px;
  }
  .manifesto-section {
    min-height: 680px;
  }
  .manifesto-content {
    margin-top: 100px;
  }
  .manifesto-note {
    margin-top: 80px;
  }
  .contact-body h2 {
    font-size: 18vw;
  }
  .contact-links {
    gap: 16px;
  }
  .contact-email {
    font-size: 19px;
  }
  .contact-phone {
    width: 100%;
  }
  .floating-contact {
    right: 16px;
    bottom: 16px;
    padding: 13px;
    border-radius: 50%;
  }
  .floating-contact span {
    display: none;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
