/* ═══════════════════════════════════════════════════════
   Sixers home v2, layers on top of styles.css
   Same palette, same type, same components. New rhythm.
   ═══════════════════════════════════════════════════════ */

/* Keep the giant hero logo off this page even if markup gets re-added. */
.hero-logo,
.hero-chips { display: none !important; }

.topbar { overflow: visible; }

.topbar-inner { overflow: visible; }

.topbar-brand {
  position: relative;
  z-index: 2;
  align-items: center;
}

.topbar-brand img {
  height: 84px;
  width: auto;
  max-width: none;
  margin: -14px 0 -22px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

/* Left-aligned copy + angled phone, no full-bleed video. */
.hero.hero--phone {
  text-align: left;
  padding: 48px 0 0;
  overflow: hidden;
  background-image: none;
}

.hero.hero--phone::after { display: none; }

/* Hero 1: field photo + curved shelf. */
.hero-1 {
  background: radial-gradient(1200px 600px at 80% 12%, rgba(200, 16, 46, 0.16), transparent 55%),
              linear-gradient(165deg, #13284a 0%, var(--navy-dk) 58%, #050910 100%);
}

/* Field photo fills the hero and sits behind the shelf. */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: url("../assets/images/hero.jpg") center 32% / cover no-repeat;
  filter: blur(1px);
  transform: scale(1.04);
}

.hero-1 .hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 21, 48, 0.28) 0%,
      rgba(8, 21, 48, 0.14) 42%,
      rgba(5, 9, 16, 0.42) 100%),
    linear-gradient(90deg,
      rgba(8, 21, 48, 0.7) 0%,
      rgba(8, 21, 48, 0.48) 42%,
      rgba(8, 21, 48, 0.34) 100%);
}

.hero-floor {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: 0;
  height: 36%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-top-left-radius: 50% clamp(40px, 5.5vw, 72px);
  border-top-right-radius: 50% clamp(40px, 5.5vw, 72px);
  background:
    radial-gradient(90% 55% at 50% 0%, #0f2748 0%, transparent 58%),
    linear-gradient(180deg, #081530 0%, #071226 42%, #050e1c 72%, #04080f 100%);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.hero-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.hero-floor::after {
  content: "";
  position: absolute;
  top: 0;
  right: max(6%, calc(50% - 420px));
  width: 340px;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12), transparent 68%);
  filter: blur(10px);
}

.hero--phone .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 12px 20px;
  align-items: center;
  padding-bottom: 8px;
}

.hero--phone .hero-stack {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero--phone .hero-copy {
  position: relative;
  z-index: 2;
}

.hero.hero--phone .eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.hero.hero--phone h1 {
  font-size: clamp(40px, 6.4vw, 64px);
  margin: 0 0 24px;
  max-width: none;
  line-height: 1.08;
}

.hero-mark {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.08em;
  text-decoration-skip-ink: none;
}

.hero.hero--phone .lead {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
}

.hero.hero--phone .lead strong {
  font-weight: 800;
  color: #fff;
}

.hero-footer {
  position: relative;
  z-index: 3;
  background: var(--gold);
  text-align: center;
}

.signup-dock {
  position: relative;
  z-index: 110;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 24px rgba(8, 21, 48, 0.18);
}

.site-chrome { display: contents; }

.site-head {
  display: grid;
  grid-template-areas:
    "nav"
    "hero"
    "dock";
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
}

@media (min-width: 901px) {
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
  }
  .site-head {
    grid-template-rows: var(--nav-h, 72px) minmax(0, 1fr) auto;
  }
  .team-picker {
    top: var(--nav-h, 72px);
  }
  body.experience-page:not(:has(.site-head)) {
    padding-top: var(--nav-h, 72px);
  }
}

.site-chrome > .topbar { grid-area: nav; }
.site-head > .hero,
.site-head > .hero.hero--phone.hero-3,
.site-head > .story-cover {
  grid-area: hero;
  min-height: 0;
}
.site-chrome > .signup-dock { grid-area: dock; }

.hero-footer a {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #111;
  margin: 0;
  padding: 16px 24px;
  text-decoration: none;
}

.hero-footer a:hover {
  color: var(--navy);
}

.photo-ticker {
  overflow: hidden;
  background: var(--navy-dk);
  position: relative;
  z-index: 2;
  margin: -36px 0 -18px;
  clip-path: polygon(0 22px, 100% 0, 100% calc(100% - 22px), 0 100%);
}

.story-cover + .photo-ticker {
  margin-top: 0;
}

.photo-ticker-track {
  display: flex;
  width: max-content;
  gap: 4px;
  animation: photo-ticker 130s linear infinite;
}

.photo-ticker-track img {
  width: 176px;
  height: 176px;
  object-fit: cover;
  object-position: center 28%;
  flex-shrink: 0;
  display: block;
}

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

.photo-ticker:hover .photo-ticker-track {
  animation-play-state: paused;
}

.hero.hero--phone .cta-row { justify-content: flex-start; }

.hero.hero--phone .cta-btn {
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: 0.08em;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.38);
}

/* Hero 2: cream, no photo, no shelf. */
.hero-2,
.hero-3 {
  background: var(--cream);
  color: var(--navy);
}

.hero-2::before { display: none; }

.hero-3::before {
  display: block;
  z-index: 5;
  pointer-events: none;
}

.hero-2 .hero-scene,
.hero-2 .hero-floor,
.hero-3 .hero-floor { display: none; }

.hero-2.hero--phone .hero-copy,
.hero-3.hero--phone .hero-copy {
  margin-top: 0;
}

.hero.hero--phone.hero-3 {
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 0 0;
  box-sizing: border-box;
}

.hero.hero--phone.hero-3 .hero-inner {
  flex: 1 1 auto;
  align-self: center;
  align-content: center;
  width: min(1100px, 92%);
  padding-bottom: 0;
}

.hero-2 .hero-phone-stage,
.hero-3 .hero-phone-stage {
  margin-top: 0;
}

.hero-2 .eyebrow,
.hero-3 .eyebrow { color: var(--red); }

.eyebrow-break { display: none; }

.hero-2.hero--phone .lead,
.hero-3.hero--phone .lead { color: var(--muted); }

.hero-2.hero--phone .lead strong,
.hero-3.hero--phone .lead strong { color: var(--navy); }

.hero-2 .cta-btn.outline,
.hero-3 .cta-btn.outline {
  border-color: var(--navy);
  color: var(--navy);
}

.hero-2 .cta-btn.outline:hover,
.hero-3 .cta-btn.outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Hero 3: v1 photo, cream wash, no shelf. */
.hero-3 .hero-scene::before {
  filter: none;
  opacity: 0.72;
  transform: none;
  inset: 0;
}

.hero-3 .hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 245, 238, 0.42) 0%, rgba(248, 245, 238, 0.7) 58%, rgba(248, 245, 238, 0.88) 100%),
    linear-gradient(90deg, rgba(248, 245, 238, 0.62) 0%, rgba(248, 245, 238, 0.28) 48%, rgba(248, 245, 238, 0.4) 100%);
}

.hero-phone-stage {
  position: relative;
  width: 340px;
  height: 540px;
  margin-top: -28px;
  perspective: 1400px;
  z-index: 1;
}

.hero-phone-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone {
  position: relative;
  width: 236px;
  height: 484px;
  margin: 8px auto 0;
  background: linear-gradient(160deg, #4a4a4d 0%, #1c1c1e 38%, #0a0a0b 100%);
  border-radius: 42px;
  padding: 11px;
  transform: rotateY(-18deg) rotateX(10deg) rotateZ(8deg);
  box-shadow:
    18px 28px 50px rgba(0, 0, 0, 0.38),
    0 10px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 22px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 20px;
}

.phone-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.phone-btn {
  position: absolute;
  background: #2a2a2c;
  border-radius: 2px;
}

.phone-silent {
  left: -3px;
  top: 92px;
  width: 3px;
  height: 22px;
}

.phone-vol-up {
  left: -3px;
  top: 128px;
  width: 3px;
  height: 36px;
}

.phone-vol-down {
  left: -3px;
  top: 172px;
  width: 3px;
  height: 36px;
}

.phone-power {
  right: -3px;
  top: 150px;
  width: 3px;
  height: 52px;
}

.hero-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}

.hero-emoji {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  animation: emoji-rise 3.5s ease-out forwards;
}

@keyframes emoji-rise {
  0% {
    opacity: 0;
    transform: translate(0, 10px) scale(0.35);
  }
  12% {
    opacity: 1;
    transform: translate(calc(var(--drift) * 0.18), calc(var(--rise) * 0.12)) scale(1.12);
  }
  100% {
    opacity: 0;
    transform: translate(var(--drift), var(--rise)) scale(0.82) rotate(var(--rot));
  }
}

.hero-comments {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 24px;
  height: 180px;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}

.hero-comment {
  position: absolute;
  left: 18px;
  bottom: 32px;
  width: min(250px, 100%);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 18px;
  padding: 8px 10px 9px 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  animation: comment-out 6.2s ease-out forwards;
}

.comment-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
}

.comment-body { min-width: 0; flex: 1; }

.comment-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.comment-name span {
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.comment-text {
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #333;
}

.comment-heart {
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1;
  margin-top: 4px;
  color: var(--red);
}

.comment-react {
  position: absolute;
  right: 8px;
  top: 6px;
  z-index: 6;
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.28));
  animation: comment-react-fly 1.55s ease-out forwards;
}

@keyframes comment-react-fly {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4);
  }
  16% {
    opacity: 1;
    transform: translate(calc(var(--drift) * 0.22), calc(var(--rise) * 0.18)) scale(1.18);
  }
  100% {
    opacity: 0;
    transform: translate(var(--drift), var(--rise)) scale(0.82) rotate(var(--rot));
  }
}

@keyframes comment-out {
  0% {
    opacity: 0;
    transform: translate(8px, -28px) scale(0.86);
  }
  12% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  62% {
    opacity: 1;
    transform: translate(var(--dx), 16px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), 52px) scale(0.94);
  }
}

@keyframes comment-out-mobile {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  12% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@media (min-width: 901px) {
  .hero.hero--phone { padding: 56px 0 0; }
  .hero.hero--phone.hero-3 { padding: 32px 0 0; }
}

@media (max-width: 900px) {
  .site-head {
    grid-template-areas:
      "chrome"
      "hero";
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .site-chrome {
    display: flex;
    flex-direction: column;
    grid-area: chrome;
    position: sticky;
    top: 0;
    z-index: 110;
    overflow: visible;
    transition: top 0.28s ease;
  }
  .site-chrome.is-away {
    top: calc(-1 * var(--chrome-h, 140px));
    pointer-events: none;
  }
  .site-head,
  .site-chrome,
  .signup-dock,
  .hero-footer,
  .hero.hero--phone.hero-3,
  .hero--phone .hero-inner {
    max-width: 100%;
    min-width: 0;
  }
  .site-chrome > .topbar {
    position: relative;
    top: auto;
    z-index: auto;
    box-shadow: none;
  }
  .signup-dock {
    z-index: auto;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: 0;
    box-shadow: none;
    overflow: hidden;
  }
  .hero-footer a {
    font-size: 11px;
    letter-spacing: 0.03em;
    line-height: 1.25;
    padding: 8px 12px;
    white-space: normal;
    overflow: hidden;
  }
  .topbar-brand img {
    height: 64px;
    margin: -10px 0 -26px;
  }
  .hero.hero--phone.hero-3 {
    min-height: 0;
    justify-content: flex-start;
    padding: 8px 0 0;
    overflow-x: clip;
  }
  .hero.hero--phone.hero-3 .hero-inner {
    width: min(1100px, calc(100% - 32px));
  }
  .hero--phone .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 38%);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "intro phone"
      "comments comments"
      "copy copy";
    align-items: center;
    gap: 10px 10px;
    justify-items: stretch;
  }
  .hero--phone .hero-stack {
    display: contents;
    max-width: none;
  }
  .hero--phone .hero-intro {
    grid-area: intro;
    align-self: center;
    min-width: 0;
    padding-top: 0;
  }
  .hero--phone .hero-copy {
    grid-area: copy;
    max-width: none;
    padding-bottom: 18px;
  }
  .hero.hero--phone .cta-row {
    justify-content: flex-start;
  }
  .hero.hero--phone .cta-btn {
    padding: 15px 26px;
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
  .hero--phone .hero-phone-stage {
    display: contents;
  }
  .hero--phone .hero-phone-wrap {
    grid-area: phone;
    width: 100%;
    max-width: 148px;
    height: 268px;
    margin: 0;
    justify-self: end;
    overflow: visible;
    perspective: 1400px;
  }
  .hero--phone .phone {
    justify-self: end;
    align-self: start;
  }
  .hero.hero--phone h1 {
    font-size: clamp(26px, 8vw, 34px);
    margin: 0;
    line-height: 1.12;
  }
  .hero.hero--phone .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    line-height: 1.45;
  }
  .hero--phone .eyebrow-break { display: block; }
  .hero--phone .eyebrow-sep { display: none; }
  .hero.hero--phone .lead {
    font-size: 14px;
    margin: 0 0 16px;
  }
  .phone {
    width: 122px;
    height: 250px;
    margin: 4px auto 0;
    border-radius: 24px;
    padding: 6px;
    transform: rotateY(-12deg) rotateX(6deg) rotateZ(5deg);
  }
  .phone-screen { border-radius: 18px; }
  .phone-island {
    width: 48px;
    height: 12px;
    top: 6px;
  }
  .hero.hero--phone.hero-3 {
    overflow-x: clip;
    overflow-y: visible;
  }
  .hero-emojis {
    display: block;
  }
  .hero-emoji {
    font-size: 16px;
  }
  .hero-comments {
    grid-area: comments;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    height: 5.5rem;
    min-height: 5.5rem;
    transform: none;
    align-self: stretch;
    z-index: 5;
    overflow: hidden;
  }
  .hero-comment {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    padding: 7px 10px 8px 8px;
    border-radius: 14px;
    gap: 8px;
    align-items: center;
    --dx: 0px;
    animation: comment-out-mobile 6.2s ease-out forwards;
  }
  .comment-avatar {
    width: 26px;
    height: 26px;
    font-size: 9px;
  }
  .comment-name { font-size: 10px; }
  .comment-text {
    margin: 2px 0 0;
    font-size: 11px;
    line-height: 1.3;
  }
  .comment-react {
    font-size: 13px;
    right: 6px;
    top: 4px;
  }
  .hero-footer a {
    font-size: 11px;
    letter-spacing: 0.03em;
    padding: 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-emojis,
  .hero-comments { display: none; }
  .phone { transform: none; }
  .photo-ticker-track { animation: none; }
  .tcard,
  .tcard-flip { transition: none; }
}

/* ── Teams → Manifesto chevron ── */
.teams-block {
  position: relative;
  z-index: 2;
  padding-bottom: 148px;
  margin-bottom: -80px;
  background: transparent;
}

.teams-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 80px),
    62% calc(100% - 46px),
    50% 100%,
    38% calc(100% - 46px),
    0 calc(100% - 80px)
  );
  filter: drop-shadow(0 4px 0 var(--gold)) drop-shadow(0 8px 0 rgba(14, 34, 64, 0.18));
  pointer-events: none;
}

.teams-block > * {
  position: relative;
  z-index: 1;
}

/* ── Manifesto ── */
.manifesto {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 1;
  background: var(--cream);
  padding: 128px 0 108px;
  text-align: center;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 48px),
    50% 100%,
    0 calc(100% - 48px)
  );
  filter: drop-shadow(0 4px 0 var(--gold));
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(248, 245, 238, 0.04) 0%,
      rgba(248, 245, 238, 0.4) 26%,
      rgba(248, 245, 238, 0.88) 50%,
      rgba(248, 245, 238, 0.4) 74%,
      rgba(248, 245, 238, 0.04) 100%);
}

.manifesto > .container {
  position: relative;
  z-index: 2;
}

.manifesto-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(240px, 30vw, 480px);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.manifesto-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.manifesto-photo-left {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 62%, transparent 100%);
}

.manifesto-photo-left img {
  object-position: 72% 16%;
}

.manifesto-photo-right {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 62%, transparent 100%);
}

.manifesto-photo-right img {
  object-position: 52% 32%;
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .teams-block {
    padding-bottom: 112px;
    margin-bottom: -56px;
  }
  .teams-block::before {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 56px),
      60% calc(100% - 32px),
      50% 100%,
      40% calc(100% - 32px),
      0 calc(100% - 56px)
    );
  }
  .manifesto {
    padding: 88px 24px 72px;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 32px),
      50% 100%,
      0 calc(100% - 32px)
    );
  }
  .manifesto-photo {
    width: min(36vw, 220px);
  }
  .manifesto-photo img { opacity: 0.34; }
  .manifesto h2 em { white-space: normal; }
}

.manifesto .eyebrow { color: var(--red); }

.manifesto h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 920px;
  margin: 0 auto 18px;
  line-height: 1.15;
}

.manifesto h2 em {
  font-style: normal;
  color: var(--red);
  white-space: nowrap;
}

.manifesto .lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
}

.manifesto-conduct-btn {
  margin-top: 28px;
}

.experience-intro {
  background: var(--cream);
  padding: 72px 0 56px;
  text-align: center;
}

.experience-intro h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 auto 16px;
}

.experience-intro .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
}

.conduct-page .lead {
  max-width: 640px;
}

.conduct-block {
  max-width: 920px;
  margin: 8px auto 0;
}

.conduct-block .conduct-why {
  margin-top: 8px;
}

/* ── Code of Conduct modal ── */
.conduct-modal {
  width: min(760px, calc(100vw - 28px));
  max-height: min(88vh, 920px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 28px 80px rgba(5, 9, 16, 0.48);
}

.conduct-modal::backdrop {
  background: rgba(8, 21, 48, 0.74);
}

.conduct-modal-inner {
  position: relative;
  padding: 32px 32px 28px;
  overflow: auto;
  max-height: min(88vh, 920px);
}

.conduct-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.conduct-modal-close:hover {
  background: rgba(14, 34, 64, 0.08);
}

.conduct-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.conduct-modal h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.conduct-intro {
  margin: 0 0 22px;
  max-width: 52ch;
  color: var(--muted, #4a5568);
  font-size: 16px;
  line-height: 1.5;
}

.conduct-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: pillar;
}

.conduct-pillars > li {
  counter-increment: pillar;
  padding: 16px 16px 14px;
  border: 1px solid rgba(14, 34, 64, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.conduct-pillars h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.conduct-pillars h3::before {
  content: counter(pillar) ". ";
  color: var(--gold);
  font-family: "Anton", sans-serif;
  letter-spacing: 0;
}

.conduct-pillars ul {
  margin: 0;
  padding: 0 0 0 16px;
}

.conduct-pillars li li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted, #4a5568);
}

.conduct-pillars li li:last-child { margin-bottom: 0; }

.conduct-why {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 34, 64, 0.12);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted, #4a5568);
  text-align: left;
}

.conduct-why a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 700px) {
  .conduct-modal-inner { padding: 28px 20px 22px; }
  .conduct-pillars { grid-template-columns: 1fr; }
}

/* ── Experience: scroll-down reveals ── */
.experience-page .story-cover,
.experience-page .story-spread,
.experience-page .story-moment,
.experience-page .story-wall-wrap,
.experience-page .story-finale,
.experience-page .story-close {
  padding: 0;
}

html:has(body.experience-page) {
  overflow-x: clip;
}

.experience-page [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--d, 0s);
}

.experience-page [data-reveal="left"] { transform: translateX(-40px); }
.experience-page [data-reveal="right"] { transform: translateX(40px); }
.experience-page [data-reveal="scale"] {
  transform: scale(1.06);
}

.experience-page [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.experience-page .gold-note {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  padding: 6px 14px;
}

.experience-page .story-spread-dark .gold-note,
.experience-page .story-moment .gold-note,
.experience-page .story-finale .gold-note {
  color: var(--white);
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.55);
}

.story-num {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}

.story-spread .story-num { color: var(--red); }
.story-spread-dark .story-num,
.story-moment .story-num,
.story-finale .story-num { color: var(--gold); }

.story-cover {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy-dk);
  color: var(--white);
}

.story-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 32%, var(--gold) 32%, var(--gold) 80%, transparent 80%);
}

.story-cover-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.story-cover-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.78) 0%, rgba(5, 9, 16, 0.42) 42%, rgba(5, 9, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 21, 48, 0.28) 0%, rgba(5, 9, 16, 0.18) 38%, rgba(5, 9, 16, 0.88) 100%);
}

.story-cover .signup-dock {
  z-index: 3;
}

.story-cover-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 0 0 32px;
}

.story-cover .sec-index {
  background: rgba(5, 9, 16, 0.62);
  border-color: rgba(212, 175, 55, 0.9);
  color: var(--gold);
}

.story-cover h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.story-cover p {
  max-width: 28em;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.story-scroll {
  display: inline-block;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  animation: story-scroll-nudge 1.8s ease-in-out infinite;
}

.story-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  margin: 10px auto 0;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.15), var(--gold));
  transform-origin: top;
  animation: story-scroll-line 1.8s ease-in-out infinite;
}

@keyframes story-scroll-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@keyframes story-scroll-line {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.story-spread {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(88vh, 820px);
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
}

.story-spread.is-flip {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-spread.is-flip .story-spread-photo { order: 2; }

.story-spread-dark {
  background: var(--navy-dk);
  color: var(--white);
}

.story-spread-photo {
  min-height: 420px;
  overflow: hidden;
}

.story-spread-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.story-spread-photo.is-contain {
  background: var(--cream);
  display: grid;
  place-items: center;
  padding: 40px;
}

.story-spread-photo.is-contain > img {
  object-fit: contain;
  object-position: center;
  height: auto;
  max-height: 520px;
}

.story-spread-photo.is-cards {
  overflow: visible;
  display: grid;
  place-items: center;
  padding: 48px 16px;
  background: var(--navy-dk);
}

.story-spread-copy .cta-row {
  margin-top: 8px;
}

.story-spread-copy .sec-index {
  align-self: flex-start;
}

.cards-section.story-spread {
  overflow-x: clip;
  overflow-y: visible;
}

.story-spread-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px;
}

.story-spread-copy h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  color: var(--navy);
}

.story-spread-dark .story-spread-copy h2 { color: var(--white); }
.story-spread-dark .eyebrow { color: var(--gold); }

.story-spread-copy p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 38em;
}

.story-spread-dark .story-spread-copy p { color: rgba(255, 255, 255, 0.86); }

.story-spread-dark .mini-score {
  margin-top: 8px;
}

.story-team-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 18px;
  max-width: 340px;
}

.story-team-tiles > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.story-team-tiles img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.story-team-tiles span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-moment {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #050910;
}

.story-moment > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.story-moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 16, 0.12) 20%, rgba(5, 9, 16, 0.78) 100%);
}

.story-moment-copy {
  position: relative;
  z-index: 1;
  width: min(640px, 92%);
  margin: 0 0 0 max(4%, calc((100% - 1100px) / 2));
  padding: 0 0 64px;
}

.story-moment h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  margin: 0 0 14px;
}

.story-moment p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.story-wall-wrap {
  background: var(--navy-dk);
  color: var(--white);
  padding: 72px 0 0 !important;
}

.story-wall-head {
  text-align: center;
  margin-bottom: 36px;
}

.story-wall-head h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0;
  color: var(--white);
}

.story-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(110px, 16vw);
  gap: 4px;
}

.story-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.story-wall .w3 { grid-column: span 3; }
.story-wall .w4 { grid-column: span 4; }
.story-wall .w6 { grid-column: span 6; }
.story-wall .w8 { grid-column: span 8; }

.story-finale {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dk);
  color: var(--white);
}

.story-finale-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-finale-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.story-finale::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 16, 0.45) 0%, rgba(5, 9, 16, 0.72) 100%);
}

.story-finale .container { position: relative; z-index: 1; }

.story-finale-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

.story-finale-copy h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 16px;
}

.story-finale-copy p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.story-close {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.story-close-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.story-close-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.story-close::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 48, 0.72);
}

.story-close .container { position: relative; z-index: 1; }

.story-close-copy {
  padding: 80px 0;
}

.story-close h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 14px;
}

.story-close p {
  max-width: 34em;
  margin: 0 auto 24px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
}

.story-close .cta-row { justify-content: center; }

.cards-hint {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Community split ── */
.community-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.community-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.35);
  position: relative;
}

.community-photo img { width: 100%; height: auto; }

.community-copy h3 {
  font-family: "Anton", sans-serif;
  font-size: 25px;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin: 0 0 10px;
}

.community-copy h3 + p + h3 { margin-top: 24px; }

.community-copy p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.mini-score {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 14px 20px;
}

.mini-score .n {
  font-family: "Anton", sans-serif;
  font-size: 34px;
  color: var(--white);
}

.mini-score .t {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  max-width: 260px;
  line-height: 1.4;
}

/* ── Collector cards ── */
.cards-section { overflow: hidden; }

.cards-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.card-fan {
  position: relative;
  height: 430px;
  display: grid;
  place-items: center;
}

.tcard {
  --pc-metal: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.12) 24%, var(--pc-primary) 52%, rgba(0, 0, 0, 0.4) 100%);
  --pc-metal-accent: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.12) 24%, var(--pc-accent) 52%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  width: 232px;
  height: 346px;
  border: 0;
  padding: 0;
  background: transparent;
  perspective: 1000px;
  cursor: pointer;
  transform: var(--fan);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tcard:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.tcard[data-team="storm"] { --pc-primary: #7C3AED; --pc-accent: #DDD6FE; --pc-rim: #DDD6FE; }
.tcard[data-team="tide"]  { --pc-primary: #008E97; --pc-accent: #B8E6E8; --pc-rim: #B8E6E8; }
.tcard[data-team="frost"] { --pc-primary: #38BDF8; --pc-accent: #BAE6FD; --pc-rim: #BAE6FD; }

.tcard-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tcard.is-flipped .tcard-flip {
  transform: rotateY(180deg);
}

.tcard-face {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--pc-metal);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 22px 45px -14px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.tcard-face-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dk) 100%);
}

@media (hover: none) {
  .tcard-flip { transition: none; }
  .tcard.is-flipped .tcard-flip { transform: none; }
  .tcard-face {
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .tcard-face:not(.tcard-face-back) { transform: rotateY(0deg); }
  .tcard-face-back { transform: rotateY(180deg); }
  .tcard.is-flipped .tcard-face:not(.tcard-face-back) { transform: rotateY(-180deg); }
  .tcard.is-flipped .tcard-face-back { transform: rotateY(0deg); }
}

.tcard-back-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  display: flex;
}

.tcard-back-band span:first-child { flex: 8; background: var(--red); }
.tcard-back-band span:last-child { flex: 3; background: var(--gold); }

.tcard-back-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
}

.tcard-back-stack {
  position: absolute;
  inset: 0;
  padding: 30px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tcard-back-crest {
  width: 168px;
  height: 168px;
  object-fit: contain;
  margin: auto;
}

.tcard-back-foot {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tcard-back-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tcard-back-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.tcard-back-logos img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tcard-back-league {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.tcard-back-handle {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

.tcard-face:not(.tcard-face-back) {
  background: transparent;
}

.tcard-face-back .tcard-rivet {
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, var(--gold) 55%, rgba(0, 0, 0, 0.7) 100%);
}

.tcard-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tcard-tex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard-holo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 58% at 50% 10%, color-mix(in srgb, var(--pc-accent) 42%, transparent) 0%, color-mix(in srgb, var(--pc-primary) 20%, transparent) 36%, transparent 68%),
    radial-gradient(ellipse 80% 52% at 100% 100%, color-mix(in srgb, var(--pc-primary) 34%, transparent) 0%, transparent 56%),
    radial-gradient(ellipse 70% 46% at 0% 82%, color-mix(in srgb, var(--pc-accent) 18%, transparent) 0%, transparent 52%);
}

.tcard-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background: repeating-linear-gradient(
    125deg,
    color-mix(in srgb, var(--pc-accent) 35%, transparent) 0px,
    color-mix(in srgb, var(--pc-primary) 18%, transparent) 8px,
    transparent 16px,
    transparent 28px
  );
}

.tcard-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.025) 28%, rgba(0, 0, 0, 0.025) 58%, rgba(0, 0, 0, 0.225) 100%);
}

.tcard-content {
  position: absolute;
  inset: 0;
  padding: 25px 18px 8px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.tcard-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-top: -15px;
  margin-bottom: -56px;
  position: relative;
  z-index: 5;
}

.tcard-team-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.tcard-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.tcard-photo-arch {
  flex: 1;
  min-height: 0;
  position: relative;
  top: 30px;
  z-index: 1;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.tcard-photo {
  --tcard-arch: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0.382 C0,0.171 0.224,0 0.5,0 C0.776,0 1,0.171 1,0.382 L1,0.965 Q1,1 0.965,1 L0.035,1 Q0,1 0,0.965 Z'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--pc-rim) 33%, transparent);
  -webkit-mask-image: var(--tcard-arch);
  mask-image: var(--tcard-arch);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.tcard-photo-rim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: color-mix(in srgb, var(--pc-rim) 88%, white 12%);
}

.tcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.tcard-1 .tcard-photo img { object-position: 28% 32%; }

.tcard-stick {
  position: relative;
  height: 63px;
  margin-top: -6px;
  flex-shrink: 0;
  z-index: 2;
  isolation: isolate;
}

.tcard-stick-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
  color: var(--pc-rim);
}

.tcard-stick-type {
  position: absolute;
  left: 0.96%;
  right: 0.96%;
  top: calc(5.09% + 5px);
  bottom: 22.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 5;
}

.tcard-num {
  flex: 0 0 40.05%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.tcard-name {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.tcard-town {
  flex-shrink: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding-right: 1.6px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard-ribbon {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 6;
  background: #111;
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1;
  padding: 4px 26px 4px 11px;
  clip-path: polygon(7px 0, 100% 0, 100% 100%, 7px 100%, 0 50%);
  text-transform: uppercase;
  pointer-events: none;
}

.tcard-rivet {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, var(--pc-accent) 55%, rgba(0, 0, 0, 0.7) 100%);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.7),
    inset -1px -1px 2px rgba(0, 0, 0, 0.6),
    0 1px 2px rgba(0, 0, 0, 0.5);
}

.tcard-1 { --fan: rotate(-10deg) translateX(-120px); z-index: 1; }
.tcard-2 { --fan: rotate(1deg) translateY(-8px); z-index: 3; }
.tcard-3 { --fan: rotate(11deg) translateX(120px); z-index: 2; }

.tcard.is-front {
  z-index: 6;
}

.cards-copy .lead { margin-bottom: 16px; }

.cards-points { list-style: none; margin: 0; padding: 0; }

.cards-points li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  font-weight: 600;
}

.cards-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── Founder note ── */
.founder {
  background: var(--cream);
}

.founder-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 5px solid var(--gold);
  border-radius: 18px;
  padding: 46px 52px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.founder-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 30px;
  font-family: "Anton", sans-serif;
  font-size: 90px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.35);
}

.founder-card p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}

.founder-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.founder-sig img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 42%;
  flex-shrink: 0;
}

.founder-sig .who .nm {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.founder-sig .who .rl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Section numbering accents ── */
.sec-index {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.section-cream .sec-index,
.section-white .sec-index,
.founder .sec-index,
.manifesto .sec-index,
.experience-intro .sec-index {
  color: var(--red);
  border-color: rgba(200, 16, 46, 0.45);
}

.story-close .sec-index {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.6);
}

/* ── Season pages: logistics, not a second homepage ── */
.season-page .story-cover {
  min-height: min(68svh, 580px);
}

.season-page .story-cover-inner {
  padding: 96px 0 48px;
}

.season-page .story-cover .lead {
  max-width: 34em;
  margin-top: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.season-page .story-cover .cta-row {
  justify-content: flex-start;
  margin-top: 24px;
}

.season-status {
  display: block;
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}

.season-page .details-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.season-status.is-closed {
  background: var(--red);
  color: #fff;
}

.season-status.is-open {
  background: var(--gold);
  color: var(--navy);
}

.season-page .photo-ticker {
  margin: 0;
  clip-path: none;
}

.season-towns {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
}

.season-elsewhere {
  margin-top: 8px;
}

.season-elsewhere .season-grid {
  margin-top: 8px;
}

.season-carousel-nav {
  display: none;
}

@media (max-width: 900px) {
  .season-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .season-carousel::-webkit-scrollbar { display: none; }
  .season-carousel .season-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .season-carousel-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }
  .season-carousel-hint {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .season-dots {
    display: flex;
    gap: 8px;
  }
  .season-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 34, 64, 0.22);
    cursor: pointer;
  }
  .season-dot.is-active {
    background: var(--navy);
    transform: scale(1.15);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .community-split, .cards-split { grid-template-columns: 1fr; }
  .card-fan { height: 400px; transform: scale(0.86); }
  .founder-card { padding: 38px 26px 32px; }

  .story-spread,
  .story-spread.is-flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .story-spread.is-flip .story-spread-photo { order: 0; }
  .cards-section.story-spread .story-spread-copy { order: -1; }
  .story-spread-photo { min-height: 280px; }
  .story-spread-copy { padding: 40px 24px 48px; }
  .season-page .story-cover { min-height: 72svh; }
  .season-page .story-cover-inner { padding: 80px 0 36px; }

  .story-team-tiles { max-width: none; }

  .story-moment { min-height: 86svh; }
  .story-moment-copy { padding-bottom: 40px; }
  .story-moment p { font-size: 18px; }

  .story-wall {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 28vw;
  }
  .story-wall .w3,
  .story-wall .w4 { grid-column: span 3; }
  .story-wall .w6,
  .story-wall .w8 { grid-column: span 6; }

  .story-close-photos { grid-template-columns: 1fr 1fr; }
  .story-close-photos img:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .experience-page [data-reveal],
  .experience-page [data-reveal="left"],
  .experience-page [data-reveal="right"],
  .experience-page [data-reveal="scale"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .story-scroll { animation: none; }
  .story-scroll::after { display: none; }
}
