/* ==========================================================================
   somo club — landing page
   Standalone stylesheet. Loaded ONLY by index.html.
   Inner pages (blog, legal, events, feed, invite) load /styles.css,
   which now shares the same cream / type / pill system.

   Direction: indie comic, skate zine and Bangalore culture poster.
   The balloon remains playful; the surrounding system is louder and sharper:
     - warm paper, dense ink and a small set of signal colours
     - thick borders, offset shadows and imperfect rotations
     - condensed editorial type rather than soft wellness typography
     - real event photography and product moments as proof
     - motion that feels like stickers, panels and printed matter
   ========================================================================== */

@font-face {
  font-family: "Glacial Indifference";
  src: url("/assets/GlacialIndifference-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.page-home {
  --ink: #111116;
  --ink-soft: #4e4a52;
  --cream: #f6efdf;
  --cream-2: #eadfcb;

  /* Emotion palette */
  --coral: #ff6338;
  --balloon: #f12c32;
  --amber: #ff6b2c;
  --gold: #ffd23f;
  --sky: #65c7ff;
  --sky-pale: #bde6ff;
  --sage: #b8e986;
  --sage-pale: #d9f3b6;
  --peach: #ffb08f;
  --plum: #111116;
  --lilac: #b8a1ff;

  --r-card: 5px;
  --r-block: 7px;
  --r-pill: 999px;

  --font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "Figtree", sans-serif;

  margin: 0;
  padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(17, 17, 22, 0.055) 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(17, 17, 22, 0.018) 50%, transparent 50%);
  background-size: 6px 6px, 4px 4px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page-home *,
.page-home *::before,
.page-home *::after { box-sizing: border-box; }

.page-home img { display: block; max-width: 100%; }
.page-home a { color: inherit; -webkit-tap-highlight-color: transparent; }
.page-home :focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

html { scroll-behavior: smooth; }

.page-home .container { width: min(100% - 44px, 1120px); margin-inline: auto; }
.page-home .visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* --------------------------------------------------------------- type ---- */

.page-home h1,
.page-home h2,
.page-home h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}

.page-home h1 { font-size: clamp(3.7rem, 8vw, 6.9rem); max-width: 10.5ch; margin-bottom: 0; }
.page-home h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); max-width: 18ch; margin-bottom: 18px; }
.page-home h3 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; }
.page-home h2 em { color: var(--balloon); font-style: normal; }

.page-home .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 11px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.page-home .lede {
  max-width: 56ch;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

/* ------------------------------------------------------------- buttons ---- */

.page-home .btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border: 3px solid var(--ink);
  border-radius: 4px;
  background: var(--cream-2);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.page-home .btn:hover { box-shadow: 8px 8px 0 var(--ink); transform: translate(-2px, -2px); }

/* the single saturated action colour */
.page-home .btn-primary { background: var(--balloon); color: var(--cream); }
.page-home .btn-primary:hover { background: #d5372a; }

.page-home .btn-soft { background: var(--cream); color: var(--ink); }
.page-home .btn-soft:hover { background: var(--peach); }

.page-home .btn-outline { background: var(--cream); }
.page-home .btn-outline:hover { background: var(--gold); }

.page-home .btn-ink { background: var(--plum); color: var(--cream); box-shadow: 5px 5px 0 var(--balloon); }
.page-home .btn-ink:hover { background: #3b3350; }

/* -------------------------------------------------------------- header ---- */

.page-home .site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 3px solid var(--ink);
  background: rgba(246, 239, 223, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-home .site-header-inner {
  display: flex;
  width: min(100% - 44px, 1120px);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
}

.page-home .site-nav { display: flex; align-items: center; gap: 4px; }

.page-home .site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 2px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 260ms ease, color 260ms ease;
}

.page-home .site-nav a:hover { background: var(--gold); color: var(--ink); }

/* ---------------------------------------------------------------- hero ---- */

.page-home .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 72px) 0 clamp(64px, 8vw, 108px);
  border-bottom: 3px solid var(--ink);
}

.page-home .blob {
  position: absolute;
  z-index: 0;
  border-radius: 48% 52% 56% 44% / 52% 45% 55% 48%;
  pointer-events: none;
  animation: drift 26s ease-in-out infinite;
}

.page-home .blob--1 { top: -22%; right: -10%; width: 20vw; height: 20vw; background: var(--gold); opacity: 0.55; }
.page-home .blob--2 { bottom: -22%; left: -12%; width: 22vw; height: 22vw; background: var(--sky); opacity: 0.42; animation-delay: -9s; }
.page-home .blob--3 { display: none; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(2%, -3%) rotate(6deg) scale(1.05); }
  66%      { transform: translate(-2%, 2%) rotate(-5deg) scale(0.97); }
}

.page-home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}

.page-home .hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.page-home .hero h1 em {
  display: inline;
  padding: 0 0.04em;
  background: linear-gradient(transparent 64%, var(--gold) 64%);
  color: var(--balloon);
  font-style: normal;
}

.page-home .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.page-home .hero-note { margin: 18px 0 0; color: var(--ink-soft); font-size: 0.9rem; }

/* ------------------------------------------- signature: the table of six -- */

.page-home .table-of-six {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  aspect-ratio: 1;
  transform: rotate(1.2deg);
}

@keyframes breathe {
  0%   { transform: scale(1); }
  33%  { transform: scale(1.028); }   /* 4s in   */
  50%  { transform: scale(1.028); }   /* 2s hold */
  100% { transform: scale(1); }       /* 6s out  */
}

.page-home .table-surface {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 4px solid var(--ink);
  background: var(--peach);
  box-shadow: 12px 12px 0 var(--ink);
}

.page-home .table-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  padding: 18px 18px 20px;
  border: 3px solid var(--ink);
  border-radius: 3px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-50%, -50%) rotate(-2deg);
  text-align: center;
}

.page-home .table-prompt .kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--balloon);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.page-home .table-prompt p {
  margin: 0;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.32;
}

.page-home .seats { margin: 0; padding: 0; list-style: none; }

.page-home .seat {
  position: absolute;
  width: clamp(62px, 18%, 84px);
  transform: translate(-50%, -50%);
  text-align: center;
  transition: transform 180ms ease;
}

.page-home .seat:hover { transform: translate(-50%, -56%) rotate(-3deg); }

.page-home .seat:nth-child(1) { top: 6%;  left: 50%; }
.page-home .seat:nth-child(2) { top: 28%; left: 90%; }
.page-home .seat:nth-child(3) { top: 72%; left: 90%; }
.page-home .seat:nth-child(4) { top: 94%; left: 50%; }
.page-home .seat:nth-child(5) { top: 72%; left: 10%; }
.page-home .seat:nth-child(6) { top: 28%; left: 10%; }

@keyframes bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 7px)); }
}

.page-home .seat-face { display: block; width: clamp(50px, 13vw, 62px); margin: 0 auto 8px; filter: drop-shadow(3px 3px 0 var(--ink)); }

.page-home .seat-name {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.2;
}

.page-home .seat--you .seat-face {
  display: grid;
  height: clamp(50px, 13vw, 62px);
  place-items: center;
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--gold);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  animation: gentle-pulse 3.5s steps(2, end) infinite;
}

@keyframes gentle-pulse {
  0%, 100% { opacity: 0.55; }
  40%      { opacity: 1; }
}

.page-home .seat--you .seat-name { color: var(--balloon); font-weight: 600; }

/* --------------------------------------------------------------- proof ---- */

.page-home .proof-strip {
  border-bottom: 3px solid var(--ink);
  background: var(--gold);
}

.page-home .proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.page-home .proof-stat {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-right: 3px solid var(--ink);
}

.page-home .proof-stat:first-child { border-left: 3px solid var(--ink); }
.page-home .proof-stat:nth-child(2) { background: var(--coral); }
.page-home .proof-stat:nth-child(3) { background: var(--sage); }

.page-home .proof-stat strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.page-home .proof-stat span {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------- marquee ---- */

.page-home .marquee {
  overflow: hidden;
  padding: 15px 0 16px;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
}

.page-home .marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee-slide 58s linear infinite;
}

.page-home .marquee:hover .marquee-track { animation-play-state: paused; }

.page-home .marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 4px 18px;
  border-right: 2px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-home .marquee-item:nth-child(3n + 2) { color: var(--gold); }
.page-home .marquee-item:nth-child(3n + 3) { color: var(--peach); }

@keyframes marquee-slide { to { transform: translateX(calc(-50% - 7px)); } }

/* --------------------------------------------------------------- bands ---- */

.page-home .band { position: relative; padding: clamp(72px, 9vw, 124px) 0; border-bottom: 3px solid var(--ink); }
.page-home .band--peach { background: var(--peach); }
.page-home .band--sky { background: var(--sky-pale); }
.page-home .band--plum { background: var(--plum); color: var(--cream); }

.page-home .band--plum .eyebrow { border-color: var(--cream); background: var(--gold); box-shadow: 3px 3px 0 var(--cream); color: var(--ink); }
.page-home .band--plum .lede { color: rgba(246, 239, 223, 0.78); }

.page-home .band-head { margin-bottom: clamp(36px, 4vw, 56px); }

/* ----------------------------------------------------- category contrast -- */

.page-home .category-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 42px;
}

.page-home .category-panel {
  min-height: 230px;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  box-shadow: 9px 9px 0 var(--ink);
}

.page-home .category-panel--usual { background: var(--cream-2); transform: rotate(-1deg); }
.page-home .category-panel--somo { background: var(--coral); transform: rotate(1deg); }

.page-home .panel-label {
  display: inline-block;
  margin-bottom: 34px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .category-panel strong {
  display: block;
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-home .category-panel p { max-width: 42ch; margin: 18px 0 0; font-weight: 600; }

/* --------------------------------------------------------------- steps ---- */

.page-home .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.page-home .step {
  padding: 30px 26px 32px;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  background: var(--cream-2);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-home .step:nth-child(2) { background: var(--sky-pale); }
.page-home .step:nth-child(3) { background: var(--sage-pale); }
.page-home .step:nth-child(4) { background: var(--peach); }

.page-home .step:nth-child(1) { transform: rotate(-1deg); }
.page-home .step:nth-child(3) { transform: rotate(1deg); }
.page-home .step:hover { box-shadow: 10px 10px 0 var(--ink); transform: translate(-2px, -2px) rotate(0); }

.page-home .step::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--gold);
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.page-home .step p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* --------------------------------------------------------------- cards ---- */

.page-home .card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.page-home .card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 30px;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-home .card:hover { box-shadow: 11px 11px 0 var(--ink); transform: translate(-2px, -2px); }

.page-home .card-chip {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--gold);
  font-family: var(--font-display);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-home .card:nth-child(2) .card-chip { background: var(--sky); }
.page-home .card:nth-child(3) .card-chip { background: var(--lilac); }
.page-home .card:nth-child(4) .card-chip { background: var(--sage); }

.page-home .card > div { min-width: 0; }

.page-home .card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ----------------------------------------------------------- split row ---- */

.page-home .split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(34px, 5vw, 66px);
}

.page-home .photo-stack {
  width: 100%;
  max-width: none;
}

.page-home .photo-cluster {
  position: relative;
  aspect-ratio: 1.5 / 1;
}

.page-home .photo { margin: 0; overflow: hidden; border: 4px solid var(--ink); border-radius: var(--r-card); box-shadow: 8px 8px 0 var(--ink); aspect-ratio: 4 / 5; }

.page-home .photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .photo-caption {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: center;
}

.page-home .photo--c,
.page-home .photo--a,
.page-home .photo--b {
  position: absolute;
  bottom: 0;
}

.page-home .photo--c {
  z-index: 1;
  left: 0;
  width: 48%;
  transform: rotate(-6deg);
  transform-origin: 50% 100%;
}

.page-home .photo--a {
  z-index: 1;
  right: 0;
  width: 48%;
  transform: rotate(6deg);
  transform-origin: 50% 100%;
}

.page-home .photo--b {
  z-index: 2;
  left: 26%;
  width: 48%;
  transform: rotate(-1deg);
  transform-origin: 50% 100%;
}

.page-home .prompt-card {
  margin-top: 28px;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  background: var(--gold);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
}

.page-home .prompt-card .kicker { color: #7a5210; font-size: 0.8rem; font-weight: 600; }

.page-home .prompt-q {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.page-home .prompt-a {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(122, 82, 16, 0.22);
  color: #6b5426;
  font-size: 0.96rem;
}

.page-home .connection-loop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-home .connection-loop span {
  padding: 6px 9px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.page-home .connection-loop span:nth-of-type(2) { background: var(--gold); }
.page-home .connection-loop span:nth-of-type(3) { background: var(--peach); }
.page-home .connection-loop span:nth-of-type(4) { background: var(--sage); }

/* ------------------------------------------------------- online formats ---- */

.page-home .format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.page-home .format {
  overflow: hidden;
  border: 3px solid var(--cream);
  border-radius: var(--r-card);
  background: rgba(246, 239, 223, 0.07);
  box-shadow: 8px 8px 0 var(--balloon);
  transition: transform 180ms ease;
}

.page-home .format:nth-child(1) { transform: rotate(-1deg); }
.page-home .format:nth-child(3) { transform: rotate(1deg); }
.page-home .format:hover { transform: translateY(-5px) rotate(0); }

.page-home .format-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(246, 239, 223, 0.08);
}

.page-home .format-copy { padding: 24px 28px 30px; }

.page-home .issue-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.page-home .format p { margin: 0; color: rgba(246, 239, 223, 0.76); font-size: 0.96rem; }

.page-home .format-meta {
  margin: 0 0 12px !important;
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  font-weight: 500;
}

/* ------------------------------------------------------- neighbourhoods ---- */

.page-home .hood-list { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; padding: 0; list-style: none; }

.page-home .hood {
  padding: 12px 24px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.page-home .hood:nth-child(3n + 2) { transform: rotate(1deg); }
.page-home .hood:nth-child(3n + 3) { transform: rotate(-1deg); }
.page-home .hood:hover { transform: translate(-2px, -2px) rotate(0); background: var(--gold); }

/* ------------------------------------------------------------- quotes ---- */

.page-home .quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-home .quote {
  display: flex;
  flex-direction: column;
  padding: 30px 26px 28px;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  background: var(--cream-2);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-home .quote:nth-child(2) { background: var(--sky-pale); }
.page-home .quote:nth-child(3) { background: var(--sage-pale); }

.page-home .quote:nth-child(1) { transform: rotate(-1deg); }
.page-home .quote:nth-child(3) { transform: rotate(1deg); }
.page-home .quote:hover { box-shadow: 11px 11px 0 var(--ink); transform: translate(-2px, -2px) rotate(0); }

.page-home .quote-face {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border: 3px solid var(--ink);
  border-radius: 3px;
  object-fit: cover;
  background: var(--peach);
}

.page-home .quote blockquote {
  flex: 1;
  margin: 0 0 22px;
  font-family: var(--font);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.page-home .quote-by { margin: 0; }

.page-home .quote-by strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.page-home .quote-by span { color: var(--ink-soft); font-size: 0.88rem; }

/* -------------------------------------------------------------- founder ---- */

.page-home .founder {
  max-width: 780px;
  padding: clamp(36px, 5vw, 62px);
  border: 3px solid var(--ink);
  border-radius: var(--r-block);
  margin-inline: auto;
  background: var(--gold);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1deg);
  text-align: center;
}

.page-home .founder blockquote {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.page-home .founder-by { display: inline-flex; align-items: center; gap: 14px; text-align: left; }

.page-home .founder-mark {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 3px;
  object-fit: cover;
  background: var(--peach);
}

.page-home .founder-by strong { display: block; font-size: 1rem; font-weight: 600; }
.page-home .founder-by span { color: var(--ink-soft); font-size: 0.88rem; }
.page-home .founder-by a { color: var(--balloon); font-weight: 700; text-underline-offset: 3px; }

/* ------------------------------------------------------------------ faq ---- */

.page-home .faq { max-width: 800px; }

.page-home .faq details {
  margin-bottom: 10px;
  padding: 4px 26px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--cream-2);
  transition: background 300ms ease;
}

.page-home .faq details[open] { background: var(--gold); box-shadow: 5px 5px 0 var(--ink); }

.page-home .faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  list-style: none;
}

.page-home .faq summary::-webkit-details-marker { display: none; }

.page-home .faq summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--cream);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 380ms cubic-bezier(.2, .8, .3, 1);
}

.page-home .faq details[open] summary::after { transform: rotate(135deg); }

.page-home .faq details p { margin: 0 0 24px; max-width: 66ch; color: var(--ink-soft); font-size: 1rem; }

/* ------------------------------------------------------------ final cta ---- */

.page-home .final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) clamp(28px, 5vw, 64px);
  border: 4px solid var(--ink);
  border-radius: var(--r-block);
  background: var(--coral);
  box-shadow: 14px 14px 0 var(--ink);
  color: var(--ink);
  text-align: center;
}

.page-home .final-cta h2 { max-width: none; }
.page-home .final-cta p { max-width: 52ch; margin: 18px auto 0; color: var(--ink); font-weight: 600; }
.page-home .final-cta .eyebrow { margin-bottom: 18px; background: var(--gold); }

.page-home .final-cta .blob { border-radius: 50%; background: rgba(246, 239, 223, 0.22); animation-duration: 30s; }
.page-home .final-cta .blob--a { top: -30%; left: -8%; width: 300px; height: 300px; }
.page-home .final-cta .blob--b { right: -6%; bottom: -46%; width: 340px; height: 340px; animation-delay: -12s; }

.page-home .final-cta > *:not(.blob) { position: relative; z-index: 1; }

.page-home .store-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.page-home .store-note { margin-top: 24px !important; font-size: 0.88rem; }
.page-home .store-note a { font-weight: 600; }

/* -------------------------------------------------------------- footer ---- */

.page-home footer { padding: 64px 0 36px; background: var(--plum); color: rgba(246, 239, 223, 0.72); }

.page-home .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}

.page-home .footer-copy { max-width: 44ch; margin: 16px 0 0; font-size: 0.92rem; }

.page-home .footer-nav { display: grid; gap: 26px; grid-template-columns: repeat(2, auto); }

.page-home .footer-col h3 {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
}

.page-home .footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 240ms ease;
}

.page-home .footer-col a:hover { color: var(--gold); }

.page-home .footer-legal {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 239, 223, 0.18);
  font-size: 0.84rem;
}

.page-home footer .brand-lockup__somo { color: var(--cream); }
.page-home footer .brand-lockup__club { color: rgba(246, 239, 223, 0.56); }

/* ---------------------------------------------------------- sticky cta ---- */

.page-home .sticky-cta {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 3px solid var(--ink);
  background: rgba(246, 239, 223, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-home .sticky-inner {
  display: flex;
  max-width: 780px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-inline: auto;
}

.page-home .sticky-copy { color: var(--ink-soft); font-size: 0.9rem; }
.page-home .sticky-cta .btn { min-height: 48px; padding: 12px 24px; font-size: 0.94rem; }

/* -------------------------------------------------------------- reveal ---- */

.page-home .fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.2, .8, .3, 1);
}

.page-home .fade-up.visible { opacity: 1; transform: none; }

/* --------------------------------------------------------- brand lockup ---- */

.page-home .brand-lockup {
  --brand-lockup-size: 21px;
  --brand-balloon-height: 25px;
  --brand-balloon-overlap: 12px;
  --brand-balloon-gap: 5px;
  display: inline-grid;
  width: max-content;
  align-items: end;
  justify-items: center;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
}

.page-home .brand-lockup__balloon {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: var(--brand-balloon-height);
  margin-bottom: calc(var(--brand-balloon-gap) - var(--brand-balloon-overlap));
  object-fit: contain;
  pointer-events: none;
}

.page-home .brand-lockup__words {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Glacial Indifference", "Figtree", Arial, sans-serif;
  font-size: var(--brand-lockup-size);
  font-weight: 400;
  letter-spacing: 0.038em;
  line-height: 0.76;
  text-align: center;
  text-transform: lowercase;
  white-space: nowrap;
}

.page-home .brand-lockup__somo { color: var(--ink); }
.page-home .brand-lockup__club { color: #a09aa8; }

/* ---------------------------------------------------------- responsive ---- */

@media (max-width: 960px) {
  .page-home .hero-grid { grid-template-columns: 1fr; }
  .page-home .table-of-six { max-width: 370px; margin-top: 16px; }
  .page-home .category-panels { grid-template-columns: 1fr; }
  .page-home .steps { grid-template-columns: repeat(2, 1fr); }
  .page-home .format-grid,
  .page-home .quotes { grid-template-columns: 1fr; }
  .page-home .split { grid-template-columns: 1fr; }
  .page-home .photo-stack { order: 2; max-width: none; }
  .page-home .photo { border-radius: 18px; }
  .page-home .blob--1 { width: 52vw; height: 52vw; }
  .page-home .blob--2 { width: 46vw; height: 46vw; }
  .page-home .blob--3 { display: none; }
}

@media (max-width: 640px) {
  .page-home { font-size: 16px; }
  .page-home .container { width: min(100% - 32px, 1120px); }
  .page-home h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .page-home h2 { font-size: clamp(2.4rem, 13vw, 3.8rem); }
  .page-home .proof-grid { grid-template-columns: 1fr; }
  .page-home .proof-stat { min-height: 92px; border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
  .page-home .proof-stat:last-child { border-bottom: 0; }
  .page-home .steps,
  .page-home .card-grid { grid-template-columns: 1fr; }
  .page-home .hero-ctas .btn { width: 100%; }
  .page-home .sticky-copy { display: none; }
  .page-home .sticky-cta .btn { width: 100%; }
  .page-home .footer-nav { grid-template-columns: 1fr 1fr; width: 100%; }
  .page-home .site-nav a { padding: 0 10px; font-size: 0.86rem; }
  .page-home .site-nav a[href="https://somoclub.com/blog/"] { display: none; }
  .page-home .card { gap: 16px; padding: 26px 22px; }
  .page-home .faq details { padding-inline: 20px; }
  .page-home .connection-loop b { display: none; }
}

@media (max-width: 400px) {
  .page-home .site-nav a[href="https://somoclub.com/#how"] { display: none; }
  .page-home .card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page-home .fade-up { opacity: 1; transform: none; transition: none; }
  .page-home .blob,
  .page-home .seat,
  .page-home .seat--you .seat-face,
  .page-home .marquee-track { animation: none; }
  .page-home .btn:hover,
  .page-home .card:hover,
  .page-home .step:hover,
  .page-home .quote:hover,
  .page-home .hood:hover { transform: none; }
}
