/* Asake's Socials — landing v2
   Tokens and layout translated from the Claude Design prototype. */

@font-face {
  font-family: "NewEdge666";
  src: url("assets/fonts/NewEdge666-RegularRounded.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #f4f3f0;
  --ink: #1a1915;
  --muted: #82868e;
  --yellow: #f5d76e;
  --stone: #e6e4de;
  --stone-2: #dddbd4;
  --ink-soft: #c9c6bf;
  --white: #fff;
  --gutter: 10px;
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --font-display: "NewEdge666", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: opacity .3s; }
a:hover { opacity: .6; }

input, button { font-family: inherit; }

h1, h2, p { font-weight: 400; }

img { display: block; }

mark.hl, .hl {
  background: var(--yellow);
  color: inherit;
  padding: 0 .08em;
  margin: 0 -.08em;
  border-radius: 2px;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.muted { color: var(--muted); }

.display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-block;
  border: 0;
  padding: 13px 20px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: transform .3s var(--ease-out);
}
.btn--yellow { background: var(--yellow); }
.btn:hover { opacity: 1; transform: scale(1.04); }

/* Keyframes */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pop  { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }
@keyframes bob  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transform: translateY(calc(100vh - 78px));
  transition: transform .9s var(--ease-out);
}
.nav.is-docked { transform: translateY(14px); }

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  padding: 6px 6px 6px 20px;
  border-radius: 8px;
  animation: rise .9s .5s both;
}
/* brand, logo and button are laid out as siblings so the pill spaces them evenly */
.nav__links { display: contents; }
.nav__ig-link { display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
.nav__ig { width: 22px; height: 22px; display: block; }
.nav__brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero__corner { position: absolute; z-index: 3; }
.hero__corner--tl { top: 22px; left: 22px; }
.hero__corner--tr { top: 22px; right: 22px; }
.hero__corner--bl { bottom: 26px; left: 22px; line-height: 1.6; animation: rise 1s .7s both; }
.hero__corner--br { bottom: 26px; right: 22px; }

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .4s;
}
.hero__scroll.is-hidden { opacity: 0; }
.hero__arrow {
  display: inline-flex;
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  animation: bob 1.6s ease-in-out infinite;
}

.hero__photos { position: absolute; inset: 0; }

.hero__photo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  transform: translate(var(--tx, 0px), var(--ty, 0px)) rotate(var(--rot, 0deg));
  transition: transform .8s var(--ease-out);
  animation: pop 1s var(--ease-out) var(--delay, 0s) both;
}
.hero__photo img {
  width: 100%;
  aspect-ratio: var(--ratio, 1);
  object-fit: cover;
  border-radius: 2px;
}

.hero__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8vw;
  pointer-events: none;
}
.hero__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 57px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 22ch;
  animation: rise 1.1s .2s var(--ease-out) both;
  /* the scroll shift lives on --shift so it composes with the entrance animation */
  translate: 0 var(--shift, 0px);
}

/* ---------- INTRO ---------- */
.intro { height: 190vh; position: relative; }
.intro__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
.intro__text {
  margin: 0;
  font-size: clamp(30px, 3.9vw, 57px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 26ch;
  display: flex;
  flex-wrap: wrap;
  gap: 0 .26em;
}
.word {
  display: inline-block;
  opacity: var(--op, 1);
  transform: translateY(var(--ty, 0px));
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  background: var(--wbg, transparent);
  padding: 0 .08em;
  margin: 0 -.08em;
  border-radius: 2px;
}

/* ---------- HOST ---------- */
.host {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin: 0 var(--gutter);
  color: var(--bg);
  border-radius: 4px;
}
.host__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: translateY(var(--shift, 60px)) scale(1.12);
  transition: transform .1s linear;
}
.host__tint { position: absolute; inset: 0; background: rgba(26, 25, 21, .28); }

.host__blurb {
  position: absolute;
  top: 24px; right: 24px;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.45;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}
.host__blurb p { margin: 0; }
.host__tags { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }

.host__name {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.host__big {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.host__meaning {
  font-size: 16px;
  line-height: 1.45;
  max-width: 30ch;
  color: var(--stone);
  margin-top: 6px;
}
.host__meaning .hl { color: var(--ink); padding: 0 .12em; margin: 0; }

/* ---------- SOCIALS ---------- */
.socials {
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.socials__card {
  background: var(--white);
  padding: 22px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 4px;
}
.socials__head {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: end;
}
.socials__head-left { grid-column: 1 / 4; display: flex; flex-direction: column; gap: 14px; }
.socials__head-right { grid-column: 5 / 7; display: flex; flex-direction: column; gap: 14px; }
.socials__head h2 {
  margin: 0;
  font-size: clamp(34px, 3.9vw, 57px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.socials__head p { margin: 0; font-size: 16px; line-height: 1.45; }

.socials__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start;
}
.social {
  grid-column: span var(--span, 2);
  margin-top: var(--mt, 0);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social__media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
  aspect-ratio: var(--ratio, 1);
  border-radius: 4px;
}
.social__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.social__media:hover img { transform: scale(1.04); }
.social__plus {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 34px; height: 34px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 3px;
  color: var(--ink);
}
.social__caption { display: flex; flex-direction: column; gap: 4px; }
.social__title { font-size: 18px; }

/* ---------- GIANT WORDS ---------- */
.words { height: 340vh; position: relative; }
.words__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.words__wedge {
  position: absolute;
  left: -30vw; right: -30vw;
  top: 50%;
  height: var(--h, 0vh);
  background: var(--yellow);
  transform: translateY(-50%) rotate(var(--rot, -10deg));
  transition: transform .1s linear, height .1s linear;
}
.words__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.words__word {
  font-size: clamp(120px, 24vw, 340px);
  line-height: .9;
  transform: translateY(var(--shift, 0px));
  opacity: var(--op, 1);
  transition: transform .5s var(--ease-out), opacity .4s;
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 34px;
  padding: 12vh var(--gutter);
}
.manifesto__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(30px, 3.9vw, 57px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.manifesto__lines span {
  opacity: var(--op, 1);
  transform: translateY(var(--ty, 0px));
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.manifesto__closing {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .28em;
  max-width: 40ch;
}
.manifesto__closing span {
  color: var(--muted);
  transition: color .6s;
}
.manifesto__closing span.is-on { color: var(--ink); }

/* ---------- DECK ---------- */
.deck {
  margin: 0 var(--gutter);
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--gutter);
  padding: 12vh 22px;
  align-items: center;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
}
.deck__copy {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.deck__copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.deck__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36ch;
}
.deck__copy .btn { align-self: flex-start; }

.deck__stage {
  grid-column: 3 / 7;
  position: relative;
  height: 600px;
  cursor: pointer;
  outline: none;
}
.card {
  position: absolute;
  left: 50%; top: 50%;
  width: min(300px, 26vw);
  aspect-ratio: 55 / 85;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) translate(var(--dx, 0px), var(--dy, 0px));
  transition: transform .8s var(--ease-out);
  background: var(--cbg, var(--bg));
  color: var(--cfg, var(--ink));
  border-radius: 6px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  z-index: var(--z, 0);
}
.card__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .03em; text-transform: uppercase; opacity: .6; }
.card__text { font-size: var(--size, 30px); line-height: 1.2; letter-spacing: -0.02em; text-wrap: pretty; }

/* ---------- SIGNUP ---------- */
.signup {
  position: relative;
  padding: 36vh var(--gutter) var(--gutter);
  overflow: hidden;
}
.signup__collage {
  position: absolute;
  left: 0; right: 0;
  top: 10vh;
  height: 80vh;
  pointer-events: none;
}
.collage__photo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  aspect-ratio: var(--ratio, 1);
  object-fit: cover;
  border-radius: 2px;
  transform: translate(var(--tx, 0px), var(--ty, 0px)) rotate(var(--rot, 0deg));
  opacity: var(--op, 0);
  transition: transform .9s var(--ease-out), opacity .6s;
}
.signup__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: 0 0 14vh;
}
.signup__title {
  margin: 0;
  font-size: clamp(34px, 3.9vw, 57px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .26em;
  max-width: 20ch;
}
.signup__form {
  display: flex;
  gap: 6px;
  background: var(--white);
  padding: 5px 5px 5px 18px;
  border-radius: 999px;
}
.signup__form input {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  width: min(240px, 50vw);
  color: var(--ink);
}
.signup__form input::placeholder { color: var(--muted); }

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8vh;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__links { display: flex; gap: 22px; }
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(64px, 13vw, 200px);
  line-height: .9;
  letter-spacing: -0.02em;
  flex-wrap: wrap;
}
.footer__aperture {
  position: relative;
  display: inline-block;
  width: .78em; height: .78em;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 .02em;
  vertical-align: middle;
}
.footer__aperture img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(var(--scale, 1));
  transition: transform .8s var(--ease-out);
}

/* Show/hide helpers for the two layouts (elements keep their authored display) */
@media (min-width: 761px) { .m-only { display: none !important; } }

/* ---------- MOBILE LAYOUT ----------
   Translated from "Asakes Socials Landing Mobile" (designed at 390px). */
@media (max-width: 760px) {
  .d-only { display: none !important; }

  body { background: var(--stone); }
  .page {
    background: var(--bg);
    position: relative;
    max-width: 430px;
    margin: 0 auto;
    overflow-x: clip;
    min-height: 100vh;
  }
  .mono { font-size: 11px; }
  .btn { font-size: 11px; padding: 13px 16px; white-space: nowrap; }

  /* nav: always pinned to the bottom */
  .nav, .nav.is-docked {
    top: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 50%; right: auto;
    width: min(100%, 430px);
    padding: 0 12px;
    transform: translateX(-50%);
    transition: none;
  }
  .nav__pill {
    justify-content: space-between;
    gap: 12px;
    padding: 6px 6px 6px 16px;
    width: 100%;
    max-width: 420px;
  }
  .nav__brand { font-size: 18px; white-space: nowrap; }

  /* hero */
  .hero { height: 100svh; min-height: 700px; }
  .hero__corner--tl { top: 16px; left: 16px; }
  .hero__corner--tr { top: 16px; right: 16px; text-align: right; }
  .hero__photo { transition: transform .6s var(--ease-out); }
  .hero__center { padding: 0 20px; }
  .hero__title {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.08;
    max-width: none;
    position: relative;
    z-index: 2;
  }

  /* intro */
  .intro { height: 170vh; }
  .intro__sticky { height: 100svh; padding: 0 16px; }
  .intro__text { font-size: clamp(22px, 6vw, 30px); line-height: 1.18; max-width: none; }
  .word { transition-duration: .35s; }

  /* host */
  .host { height: 100svh; min-height: 560px; margin: 0 8px; }
  .host__img { object-position: 50% 25%; }
  .host__tint { background: linear-gradient(180deg, rgba(26,25,21,.15), rgba(26,25,21,.55)); }
  .host__top {
    position: absolute;
    top: 16px; left: 16px; right: 16px;
    display: flex;
    justify-content: space-between;
  }
  .host__bottom {
    position: absolute;
    left: 16px; right: 16px; bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .host__bottom .host__big { font-size: clamp(44px, 14vw, 64px); }
  .host__bottom .host__meaning { margin: 0; font-size: 15px; max-width: none; text-wrap: pretty; }

  /* socials: stacked head, horizontal snap carousel */
  .socials { padding: 8px; }
  .socials__card { padding: 18px 16px 24px; gap: 26px; }
  .socials__head { display: flex; flex-direction: column; gap: 12px; }
  .socials__head-left, .socials__head-right { gap: 12px; }
  .socials__head h2 { font-size: clamp(28px, 7.6vw, 36px); line-height: 1.08; }
  .socials__head p { font-size: 15px; }
  .socials__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -16px;
    padding: 0 16px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .socials__grid::-webkit-scrollbar { display: none; }
  .social { flex: 0 0 min(78vw, 300px); scroll-snap-align: start; margin-top: 0; }
  .social__media { aspect-ratio: 4 / 5; }
  .social__title { font-size: 17px; }

  /* giant words */
  .words { height: 300vh; }
  .words__sticky { height: 100svh; }
  .words__wedge { left: -40vw; right: -40vw; }
  .words__stack { gap: 18px; text-align: center; padding: 0 16px; }
  .words__word { font-size: clamp(100px, 34vw, 160px); }

  /* manifesto */
  .manifesto { min-height: 80svh; gap: 26px; padding: 10vh 16px; }
  .manifesto__lines { gap: 4px; font-size: clamp(26px, 7.4vw, 36px); }
  .manifesto__closing { font-size: 17px; line-height: 1.35; max-width: 30ch; }

  /* deck */
  .deck {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 0 8px;
    padding: 10vh 16px;
    min-height: 0;
  }
  .deck__copy { gap: 14px; }
  .deck__copy h2 { font-size: clamp(26px, 7.4vw, 36px); }
  .deck__copy p { font-size: 15px; max-width: none; }
  .deck__stage { height: 440px; width: 100%; }
  .deck__btn-mobile { align-self: center; padding: 14px 22px; }
  .card { width: min(240px, 64vw); padding: 24px 22px; }
  .card__meta { font-size: 10px; }
  .card__text { font-size: 22px !important; }

  /* signup */
  .signup { padding: 22vh 8px 8px; }
  .signup__collage { top: 4vh; height: 60vh; }
  .signup__inner { gap: 22px; padding: 0 8px 12vh; }
  .signup__title { font-size: clamp(28px, 8vw, 38px); max-width: 14ch; }
  .signup__form { width: 100%; max-width: 360px; padding: 5px 5px 5px 16px; }
  .signup__form input { flex: 1; min-width: 0; width: auto; font-size: 16px; }

  /* footer: room for the pinned nav, logo on two lines */
  .footer { padding: 18px 16px 90px; gap: 30px; }
  .footer__row { gap: 12px; }
  .footer__links { gap: 16px; }
  .footer__logo {
    flex-direction: column;
    font-size: clamp(56px, 19vw, 92px);
    text-align: center;
  }
  .footer__logo-a::after { content: none; }
  .footer__logo-b { display: inline-flex; align-items: center; }
  .footer__row--bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

/* Desktop logo keeps "asake's socials" on one line */
.footer__logo-a::after { content: "\00a0"; }

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