@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0b0b10;
  --paper: #f7f5f1;
  --muted: #6d6b70;
  --line: rgba(11, 11, 16, .14);
  --blue: #1689ee;
  --purple: #a200ed;
  --pink: #df0068;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: white; background: var(--purple); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 99;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--max));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.brand { width: 160px; }
.brand img { width: 100%; height: auto; }
nav { display: flex; align-items: center; gap: 22px; }
nav a {
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-cta:hover { color: var(--ink); background: white; }

.hero {
  position: relative;
  min-height: 690px;
  padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 90px;
  overflow: hidden;
  color: white;
  background: var(--ink);
  isolation: isolate;
}
.hero-copy { position: relative; z-index: 2; max-width: 790px; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: left;
  width: 100%;
}
.eyebrow { color: rgba(255,255,255,.66); }
.hero .eyebrow,
.manifesto .section-kicker,
.club .section-kicker {
  font-family: "Manrope", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .15em;
}
.manifesto .section-kicker {
  font-size: .68rem;
  letter-spacing: .14em;
}
.eyebrow span,
.section-kicker span {
  flex: 0 0 24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
}
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; }
h1 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: .94;
  font-weight: 700;
}
h1 em {
  display: inline-block;
  font-style: normal;
  font-size: clamp(2rem, 10.5vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), #9a4dff 48%, #ff278a);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(100deg, var(--blue), var(--purple));
  box-shadow: 0 12px 34px rgba(22,137,238,.18);
}
.button-primary:hover { box-shadow: 0 16px 42px rgba(162,0,237,.24); }
.button-ghost {
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.play-icon { font-size: .75rem; }
.byline { margin-top: 28px; color: rgba(255,255,255,.46); font-size: .86rem; }
.byline a { color: rgba(255,255,255,.72); text-underline-offset: 4px; }
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.social-links a:hover {
  color: white;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: -4vw;
  bottom: -150px;
  display: flex;
  gap: 24px;
  transform: rotate(-18deg);
  opacity: .34;
}
.mark {
  display: block;
  width: clamp(100px, 12vw, 190px);
  height: 620px;
  border-radius: 34px;
}
.mark-blue { background: linear-gradient(#1689ee, rgba(22,137,238,.02)); }
.mark-purple { background: linear-gradient(#a200ed, rgba(162,0,237,.02)); }
.mark-pink { background: linear-gradient(#df0068, rgba(223,0,104,.02)); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .15; }
.hero-glow-one { width: 420px; height: 420px; right: 18%; top: 10%; background: var(--purple); }
.hero-glow-two { width: 300px; height: 300px; left: 6%; bottom: -10%; background: var(--blue); }

.manifesto {
  max-width: var(--max);
  margin: auto;
  padding: 120px 24px 95px;
}
.section-kicker { color: rgba(16,16,22,.56); }
.manifesto h2, .section-heading h2, .club h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  line-height: 1.03;
  font-weight: 600;
}
.manifesto h2 span, .final-cta h2 span { color: #aaa6a5; }
.manifesto > p {
  max-width: 680px;
  margin: 36px 0 0;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--muted);
}

.usage-list {
  max-width: 680px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.usage-list li {
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.usage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
}

.testimonials {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #efede8;
}
.testimonials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.testimonials .section-kicker { margin-bottom: 24px; }
.testimonials h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  line-height: 1.03;
  font-weight: 600;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}
.carousel-control {
  min-height: 44px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font: 700 .84rem "DM Sans", sans-serif;
  cursor: pointer;
}
.carousel-control:disabled {
  opacity: .3;
  cursor: default;
}
.testimonial-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.testimonial-viewport::-webkit-scrollbar { display: none; }
.testimonial-track {
  display: flex;
  gap: 18px;
}
.testimonial-card {
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 310px;
  padding: 34px;
  scroll-snap-align: start;
  border: 1px solid rgba(11,11,16,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.56);
}
.testimonial-card blockquote {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  margin: 0;
}
.testimonial-card blockquote > p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -.025em;
}
.testimonial-card footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 5px;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: .82rem;
}
.testimonial-card cite { font-style: normal; font-weight: 700; }
.testimonial-card cite a { color: var(--ink); text-underline-offset: 3px; }
.testimonial-card time { color: var(--muted); }

.shop {
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
}
.shop .section-kicker { margin-bottom: 24px; }
.shop h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  line-height: 1.03;
  font-weight: 600;
}
.shop-heading > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.spring-store-embed {
  display: block;
  width: 100%;
  min-height: 960px;
  background: var(--ink);
}
.shop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.shop-footer a {
  flex: 0 0 auto;
  font-weight: 700;
  text-underline-offset: 4px;
}
.shop-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
  text-align: right;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading > p { max-width: 410px; color: var(--muted); line-height: 1.65; }
.topic-list { border-top: 1px solid var(--line); }
.topic {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.topic-number { color: #969399; font: 600 .78rem "Manrope", sans-serif; letter-spacing: .12em; }
.topic h3 { margin: 0 0 10px; font-size: clamp(1.45rem, 2.2vw, 2.05rem); font-weight: 600; }
.topic p { max-width: 700px; margin: 0; color: var(--muted); line-height: 1.65; }
.topic-accent { width: 10px; height: 10px; margin-top: 12px; border-radius: 50%; }
.accent-blue { background: var(--blue); }
.accent-purple { background: var(--purple); }
.accent-pink { background: var(--pink); }
.accent-mix { background: linear-gradient(135deg, var(--blue), var(--pink)); }

.video-section {
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background: #111118;
}
.video-section .section-kicker { color: #a99eff; }
.video-section .section-heading { margin-bottom: 50px; }
.video-facade {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 18% 30%, rgba(22,137,238,.38), transparent 34%),
    radial-gradient(circle at 82% 64%, rgba(223,0,104,.33), transparent 38%),
    linear-gradient(135deg, #13131b, #1f1027 55%, #17131d);
}
.video-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255,255,255,.035);
  font: 800 clamp(15rem, 37vw, 34rem)/1 "Manrope", sans-serif;
  letter-spacing: -.12em;
  transform: translate(-53%, -51%);
}
.video-content { position: relative; z-index: 1; max-width: 680px; padding: 70px 24px; text-align: center; }
.video-label { font: 700 .72rem "Manrope", sans-serif; letter-spacing: .15em; text-transform: uppercase; color: #c9c5cc; }
.video-content h3 { margin: 26px 0 34px; font-size: clamp(2.2rem, 4.3vw, 4.2rem); line-height: 1.05; }
.video-content p { margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: .82rem; }
.video-play {
  min-height: 58px;
  padding: 0 25px;
  color: white;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font: 700 .95rem "DM Sans", sans-serif;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.video-play:hover { background: rgba(255,255,255,.2); transform: scale(1.02); }
.video-play span { margin-right: 9px; font-size: .75rem; }
.video-frame { width: 100%; aspect-ratio: 16/9; border: 0; display: block; min-height: 580px; }

.club {
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background: #15121b;
}
.club .section-kicker { color: rgba(255,255,255,.56); }
.club-intro {
  max-width: 760px;
}
.club-intro > p:not(.section-kicker) {
  max-width: 760px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
  line-height: 1.75;
}
.club-intro a {
  color: rgba(255,255,255,.72);
  text-underline-offset: 3px;
}

.final-cta { padding: 170px 24px; text-align: center; }
.final-cta .section-kicker { margin-bottom: 28px; }
.final-cta > p:not(.section-kicker) { max-width: 530px; margin: 30px auto; color: var(--muted); font-size: 1.1rem; line-height: 1.7; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: rgba(255,255,255,.62);
  background: var(--ink);
  font-size: .86rem;
}
.footer-brand {
  display: block;
  width: 150px;
  height: auto;
  align-self: start;
}
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1480 / 403;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
footer p { margin: 0; line-height: 1.65; }
footer a { color: white; text-underline-offset: 4px; }
.footer-links { display: flex; gap: 22px; align-self: start; }
.copyright { grid-column: 1 / -1; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.28); }

:focus-visible { outline: 3px solid #ff68ad; outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { height: 86px; }
  .site-header nav > a:not(.nav-cta) { display: none; }
  .brand { width: 145px; }
  .hero { min-height: 720px; padding-top: 145px; }
  .hero-mark { right: -20vw; opacity: .24; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 28px; }
  .club { grid-template-columns: 1fr; gap: 65px; }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 36px); }
  .nav-cta { padding: 10px 14px; }
  .hero { min-height: 700px; padding-left: 20px; padding-right: 20px; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.9rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-mark { right: -62vw; opacity: .18; }
  .mark { width: 105px; }
  .manifesto { padding-top: 90px; padding-bottom: 90px; }
  .manifesto h2, .section-heading h2, .club h2, .final-cta h2 { font-size: 2.6rem; }
  .manifesto > p { margin-top: 35px; font-size: 1.05rem; }
  .usage-list { margin-top: 24px; }
  .testimonials { padding-top: 90px; padding-bottom: 90px; }
  .testimonials-heading { display: block; margin-bottom: 34px; }
  .testimonials h2 { font-size: 2.6rem; }
  .carousel-controls { margin-top: 26px; }
  .testimonial-card {
    flex-basis: 88%;
    min-height: 330px;
    padding: 28px;
  }
  .shop { padding-top: 90px; padding-bottom: 90px; }
  .shop-heading { display: block; margin-bottom: 38px; }
  .shop h2 { font-size: 2.6rem; }
  .shop-heading > p { margin-top: 26px; }
  .shop-footer { display: block; margin-top: 44px; }
  .shop-footer p { margin-top: 18px; text-align: left; }
  .section-heading { margin-bottom: 42px; }
  .video-section { padding-top: 90px; padding-bottom: 90px; }
  .video-facade, .video-frame { min-height: 470px; }
  .video-frame { aspect-ratio: 9/16; }
  .club { padding-top: 90px; padding-bottom: 90px; }
  .final-cta { padding: 110px 20px; }
  footer { grid-template-columns: 1fr; align-items: start; padding-top: 60px; }
  .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
