@charset "UTF-8";

:root {
  --paper: #f3f0e8;
  --paper-deep: #e7e1d4;
  --ink: #11110f;
  --white: #fffef8;
  --acid: #d1fe17;
  --orange: #ff623f;
  --purple: #7164ff;
  --line: rgba(17, 17, 15, 0.18);
  --muted: #68645c;
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(17, 17, 15, 0.07) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; }

.site-header {
  position: relative;
  z-index: 20;
  width: min(1400px, calc(100% - 24px));
  height: 72px;
  margin: 12px auto 0;
  padding: 0 10px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 254, 248, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.08em;
  transform: rotate(-7deg);
}

.brand-name {
  font-family: var(--display);
  font-size: 14px;
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a, .footer-meta a { position: relative; }
.main-nav a::after, .footer-meta a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after, .footer-meta a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta svg, .button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-cta:hover { color: var(--ink); background: var(--acid); transform: translateY(-2px); }

.hero {
  position: relative;
  isolation: isolate;
  width: min(1400px, calc(100% - 24px));
  min-height: min(790px, calc(100svh - 118px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper-deep);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-copy {
  z-index: 4;
  padding: clamp(60px, 7vw, 110px) 28px 70px clamp(38px, 6vw, 88px);
  align-self: center;
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 8.35vw, 122px);
  line-height: 0.76;
  letter-spacing: -0.085em;
}

h1 em, h2 em { font-style: normal; }
h1 em {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
  text-stroke: 2.5px var(--ink);
}

.hero-line {
  max-width: 590px;
  margin: 44px 0 10px;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 5px 6px 0 var(--orange); }
.button-dark { color: var(--white); background: var(--ink); }

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 680px;
  overflow: hidden;
  background: #e9e9e9;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(transparent, rgba(17, 17, 15, 0.12));
  pointer-events: none;
}

.stage-sun {
  position: absolute;
  z-index: 3;
  width: min(600px, 74%);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 24px rgba(209, 254, 23, 0.2), 0 0 0 48px rgba(209, 254, 23, 0.1);
  mix-blend-mode: multiply;
  opacity: 0.72;
  pointer-events: none;
  transform: translate(-50%, -47%);
}

.stage-type {
  position: absolute;
  z-index: 0;
  top: 51%;
  left: 50%;
  margin: 0;
  color: rgba(17, 17, 15, 0.06);
  font-family: var(--display);
  font-size: clamp(160px, 20vw, 340px);
  line-height: 1;
  letter-spacing: -0.1em;
  transform: translate(-51%, -50%) rotate(-90deg);
}

.bano {
  position: absolute;
  z-index: 2;
  bottom: -2%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
  filter: contrast(1.025) saturate(0.94);
}

.speech-chip {
  position: absolute;
  z-index: 5;
  top: 14%;
  left: 5%;
  min-width: 126px;
  padding: 14px 20px 17px;
  border: 1px solid var(--ink);
  border-radius: 17px 17px 3px 17px;
  color: var(--white);
  background: var(--purple);
  box-shadow: 5px 6px 0 var(--ink);
  transform: rotate(-7deg);
  animation: float-chip 4.4s ease-in-out infinite;
}
.speech-chip small, .speech-chip strong { display: block; }
.speech-chip small {
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}
.speech-chip strong { font-family: var(--display); font-size: 25px; letter-spacing: -0.06em; }

.comb-badge {
  position: absolute;
  z-index: 5;
  top: 9%;
  right: 4%;
  width: 146px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 6px 7px 0 var(--ink);
  transform: rotate(9deg);
  animation: float-comb 5s ease-in-out infinite;
}
.comb-badge span {
  position: absolute;
  top: 28px;
  left: 24px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.09em;
}
.comb-badge img { width: 92px; margin-top: 20px; transform: rotate(-12deg); }

.stage-caption {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(17, 17, 15, 0.7);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}
.stage-caption span { font-weight: 800; }
.stage-caption p { margin: 0; }

@keyframes float-chip {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(-9px) rotate(-4deg); }
}
@keyframes float-comb {
  0%, 100% { transform: translateY(0) rotate(9deg); }
  50% { transform: translateY(8px) rotate(12deg); }
}

.section-shell { width: min(1260px, calc(100% - 48px)); margin-inline: auto; }
.section-index {
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-index p { margin: 0; }

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.07em;
}
.watch-heading > p, .hf-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.watch {
  position: relative;
  width: min(1400px, calc(100% - 24px));
  margin-top: 26px;
  padding: 74px max(24px, calc((100% - 1212px) / 2)) 86px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
}
.watch::before {
  content: "";
  position: absolute;
  top: -400px;
  right: -280px;
  width: 730px;
  height: 730px;
  border: 1px solid rgba(209, 254, 23, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(209, 254, 23, 0.03), 0 0 0 160px rgba(209, 254, 23, 0.02);
  pointer-events: none;
}
.section-index-light { position: relative; border-color: rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.52); }
.watch-heading {
  position: relative;
  margin: 66px 0 65px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: end;
}
.watch-heading h2 em { color: var(--acid); }
.watch-heading > p { color: rgba(255, 255, 255, 0.55); }
.watch-heading strong { color: var(--white); }
.social-list { position: relative; border-top: 1px solid rgba(255, 255, 255, 0.18); }

.social-link {
  min-height: 104px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 70px 1fr minmax(140px, 0.4fr) 42px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}
.social-link:hover { padding-inline: 20px; color: var(--ink); background: var(--acid); }
.social-link.instagram:hover { background: #ff6c9c; }
.social-link.youtube:hover { background: #ff5c4d; }
.social-link.facebook:hover { background: #75a3ff; }

.social-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}
.social-link:hover .social-icon { border-color: rgba(17, 17, 15, 0.25); }
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.instagram .social-icon svg, .youtube .social-icon svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.instagram .social-icon .fill, .youtube .social-icon .fill { fill: currentColor; stroke: none; }
.social-name { font-family: var(--display); font-size: clamp(24px, 3vw, 39px); letter-spacing: -0.05em; }
.social-handle { color: rgba(255, 255, 255, 0.46); font-size: 13px; }
.social-link:hover .social-handle { color: rgba(17, 17, 15, 0.6); }
.social-arrow { font-size: 26px; transition: transform 180ms ease; }
.social-link:hover .social-arrow { transform: translate(4px, -4px); }

.higgsfield {
  position: relative;
  width: min(1400px, calc(100% - 24px));
  min-height: 530px;
  margin-block: 26px;
  padding: 58px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 60px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 28px;
  background: var(--acid);
}
.hf-logo {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
}
.hf-logo img { width: 40px; height: 40px; border: 1px solid rgba(17, 17, 15, 0.8); border-radius: 11px; }
.hf-copy { position: relative; z-index: 2; align-self: end; }
.hf-eyebrow { margin: 0 0 21px; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.hf-copy h2 { font-size: clamp(55px, 7.4vw, 100px); }
.hf-copy h2 em { color: transparent; -webkit-text-stroke: 2px var(--ink); text-stroke: 2px var(--ink); }
.hf-copy > p:last-child { max-width: 570px; margin-top: 28px; color: rgba(17, 17, 15, 0.62); }

.hf-action { position: relative; z-index: 2; width: 250px; align-self: end; }
.hf-action .button { width: 100%; }
.hf-action .button:hover { box-shadow: 6px 7px 0 var(--orange); }
.hf-action small { margin-top: 13px; display: block; color: rgba(17, 17, 15, 0.58); font-size: 10px; line-height: 1.35; text-align: center; }

.hf-orbit { position: absolute; z-index: 0; border: 1px solid rgba(17, 17, 15, 0.16); border-radius: 50%; }
.hf-orbit-one {
  width: 500px;
  height: 500px;
  top: -300px;
  right: -120px;
  box-shadow: 0 0 0 60px rgba(17, 17, 15, 0.025), 0 0 0 120px rgba(17, 17, 15, 0.02);
}
.hf-orbit-two { width: 200px; height: 200px; right: 24%; bottom: -150px; }

.site-footer {
  width: min(1400px, calc(100% - 24px));
  min-height: 170px;
  margin: 0 auto;
  padding-block: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.site-footer > p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-meta { justify-self: end; display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 11px; }

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero::before { background: linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)); }
  .hero-copy { padding-bottom: 30px; }
  h1 { font-size: clamp(92px, 18vw, 150px); }
  .hero-stage { min-height: 680px; }
  .bano { height: 108%; }
  .stage-sun { width: min(540px, 65%); }
  .watch-heading { grid-template-columns: 1fr 290px; }
  .higgsfield { min-height: 500px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  .site-header {
    width: calc(100% - 12px);
    height: 66px;
    margin-top: 6px;
    padding-left: 12px;
    border-radius: 21px;
  }
  .brand-mark { width: 37px; height: 37px; font-size: 19px; }
  .brand-name { font-size: 12px; }
  .header-cta { height: 44px; padding-inline: 14px; }
  .header-cta svg { display: none; }
  .hero { width: calc(100% - 12px); margin-top: 7px; border-radius: 21px; }
  .hero-copy { padding: 58px 21px 20px; }
  h1 { font-size: clamp(60px, 20vw, 102px); }
  h1 em { -webkit-text-stroke-width: 1.7px; }
  .hero-line { margin-top: 35px; font-size: 27px; }
  .hero-intro { max-width: 340px; font-size: 15px; }
  .hero-actions { margin-top: 25px; gap: 18px; }
  .button { min-height: 53px; padding-inline: 17px; font-size: 13px; }
  .hero-stage { min-height: 545px; }
  .bano { height: 99%; }
  .stage-sun { width: 82%; transform: translate(-50%, -45%); }
  .speech-chip { top: 11%; left: 5%; min-width: 106px; padding: 11px 15px 13px; }
  .speech-chip strong { font-size: 20px; }
  .comb-badge { top: 7%; right: 4%; width: 110px; }
  .comb-badge span { top: 20px; left: 18px; font-size: 7px; }
  .comb-badge img { width: 70px; }
  .stage-caption { right: 13px; bottom: 13px; }
  .section-shell { width: calc(100% - 28px); }
  .section-index { grid-template-columns: 48px 1fr; }
  .watch-heading { margin-block: 49px 48px; grid-template-columns: 1fr; gap: 25px; }
  h2 { font-size: clamp(43px, 13.5vw, 68px); }
  .watch-heading > p, .hf-copy > p:last-child { max-width: 480px; font-size: 15px; }
  .watch { width: calc(100% - 12px); margin-top: 17px; padding: 50px 15px 59px; border-radius: 21px; }
  .social-link { min-height: 93px; grid-template-columns: 55px 1fr 30px; gap: 12px; }
  .social-icon { width: 43px; height: 43px; }
  .social-handle { display: none; }
  .social-name { font-size: 25px; }
  .higgsfield {
    width: calc(100% - 12px);
    min-height: 620px;
    margin-block: 18px;
    padding: 31px 24px;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 40px;
    border-radius: 21px;
  }
  .hf-copy { align-self: center; }
  .hf-copy h2 { font-size: clamp(51px, 16vw, 75px); }
  .hf-action { width: 100%; }
  .hf-orbit-one { top: -350px; right: -260px; }
  .site-footer { width: calc(100% - 12px); min-height: 210px; padding-block: 36px; grid-template-columns: 1fr auto; }
  .site-footer > p { display: none; }
  .footer-meta { align-items: flex-end; flex-direction: column-reverse; gap: 10px; text-align: right; }
}

@media (max-width: 420px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-stage { min-height: 485px; }
  .bano { height: 93%; }
  .comb-badge { width: 92px; }
  .comb-badge span { top: 16px; left: 14px; }
  .comb-badge img { width: 58px; }
  .speech-chip { top: 9%; }
  .stage-caption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .has-js .reveal { opacity: 1; transform: none; }
}
