/* ─── PIKA Landing — v3 ─── */

:root {
  --ink:        #0E1014;
  --ink-deep:   #07080A;

  --cream:      #FAF8F3;
  --cream-dim:  #F2EFE8;
  --paper:      #FFFFFF;

  --txt-dark:   #15171C;
  --txt-mid:    #54595F;
  --txt-faint:  #969BA3;

  --green:      #00D870;
  --signature:  #E8FF3A;

  --hair-light: rgba(0, 0, 0, 0.07);
  --hair-dark:  rgba(255, 255, 255, 0.08);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;

  --ease-emph: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:  cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ─── NAV ────────────────────────────────────────────────────── */

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-mark {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--txt-mid);
  transition: color 200ms var(--ease-std);
}
.nav-mark:hover { color: var(--txt-dark); }
.nav--light .nav-mark { color: var(--txt-mid); }

.nav-cta {
  background: var(--green);
  color: var(--ink);
  border: none;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 220ms var(--ease-std);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 216, 112, 0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 216, 112, 0.32); }
.nav-cta .cta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}

/* ─── PIKA brand mark (used inline) ──────────────────────────── */
.pika-mark {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--txt-dark);
  background: linear-gradient(180deg, transparent 62%, rgba(0, 216, 112, 0.32) 62%, rgba(0, 216, 112, 0.32) 92%, transparent 92%);
  padding: 0 2px;
}
.pika-mark--green { color: var(--green); background: none; }

@media (max-width: 720px) { .nav { padding: 18px 20px; } }

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--cream);
  color: var(--txt-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 32px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.brand-quote {
  max-width: 640px;
  margin: 0 auto 64px;
  padding: 22px 28px;
  border-top: 1px solid var(--hair-light);
  border-bottom: 1px solid var(--hair-light);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--txt-mid);
  letter-spacing: 0;
}
.brand-quote strong {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-dark);
  margin-bottom: 10px;
}
.brand-quote em {
  font-style: italic;
  color: var(--txt-dark);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px 14px 7px 12px;
  background: rgba(0, 216, 112, 0.10);
  border: 1px solid rgba(0, 216, 112, 0.22);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--txt-dark);
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 216, 112, 0.18);
  animation: pika-pulse 2.4s var(--ease-std) infinite;
}
@keyframes pika-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 216, 112, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(0, 216, 112, 0.06); }
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.93;
  letter-spacing: -0.045em;
  color: var(--txt-dark);
  margin-bottom: 32px;
}

.hero h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--txt-mid);
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-tagline {
  font-size: 12.5px;
  color: var(--txt-faint);
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .hero { padding: 100px 20px 72px; }
  .hero h1 { font-size: clamp(42px, 11vw, 100px); }
  .brand-quote { font-size: 15px; padding: 18px 20px; margin-bottom: 40px; }
}

/* ─── DISCOVERY GRID ─────────────────────────────────────────── */

.discovery {
  background: var(--cream);
  padding: 120px 0;
}

.discovery-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.discovery-head h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--txt-dark);
}
.discovery-head h3 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.discovery-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt-mid);
  max-width: 360px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-dim);
  border: 1px solid var(--hair-light);
  cursor: pointer;
}
.tile--tall { grid-row: span 2; }

.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-emph);
}
.tile:hover img { transform: scale(1.04); }

.tile figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.tile figcaption em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
}

@media (max-width: 900px) {
  .discovery-grid { grid-template-columns: repeat(2, 1fr); }
  .discovery-head { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 540px) {
  .discovery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .tile--tall { grid-row: span 1; }
}

/* ─── HOW IT WORKS ──────────────────────────────────────────────── */

.hiw {
  background: var(--cream);
  padding: 120px 0 80px;
}

.hiw-head {
  margin-bottom: 52px;
}

.hiw-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.hiw-head h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--txt-dark);
}

.hiw-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 32px;
  cursor: grab;
}
.hiw-outer::-webkit-scrollbar { display: none; }
.hiw-outer.is-dragging { cursor: grabbing; user-select: none; }

.hiw-track {
  display: flex;
  gap: 96px;
  width: max-content;
  align-items: flex-start;
  padding-top: 88px;    /* room for floating editorial step numbers */
  padding-bottom: 40px;
  counter-reset: hiw-step;
}

.hiw-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: min(1040px, 92vw);
  background: var(--card-bg, #F5EEE8);
  border-radius: 24px;
  transition: transform 400ms var(--ease-emph);
  counter-increment: hiw-step;
  position: relative;
}
/* stagger: even cards drop down, odd stay at top */
.hiw-card:nth-child(even) { margin-top: 72px; }

.hiw-card:hover { transform: translateY(-4px); }

/* editorial step number floats above each card */
.hiw-card::before {
  content: counter(hiw-step, decimal-leading-zero);
  position: absolute;
  top: -64px;
  left: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--txt-dark);
  pointer-events: none;
}
.hiw-card::after {
  content: '';
  position: absolute;
  top: -28px;
  left: 84px;
  width: 56px;
  height: 1px;
  background: var(--txt-dark);
  opacity: 0.35;
  pointer-events: none;
}

.hiw-screen {
  background: var(--card-bg, #F5EEE8); /* letterbox fills with card tint */
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.hiw-screen img {
  width: 115%;
  margin-left: -7.5%;
  height: 560px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  box-sizing: border-box;
  will-change: transform;
}
/* step 5: now horizontal — uses default screen sizing, no panel treatment needed */

.hiw-card-body {
  padding: 22px 26px 26px;
}

.hiw-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hiw-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(0,216,112,0.12);
  padding: 3px 8px;
  border-radius: 999px;
}

.hiw-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--txt-faint);
}

.hiw-card-body h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(20px, 2.8vw, 26px);
  letter-spacing: -0.025em;
  color: var(--txt-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hiw-key {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85em;
  font-weight: 700;
  background: var(--txt-dark);
  color: var(--cream);
  padding: 1px 9px 2px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  vertical-align: baseline;
}

.hiw-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--txt-mid);
}

.hiw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding: 0 32px;
}

.hiw-arrow {
  background: none;
  border: 1px solid var(--hair-light);
  color: var(--txt-mid);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms var(--ease-std);
  flex-shrink: 0;
}
.hiw-arrow:hover:not(:disabled) {
  background: var(--txt-dark);
  color: #fff;
  border-color: var(--txt-dark);
}
.hiw-arrow:disabled { opacity: 0.2; cursor: default; }

.hiw-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hiw-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--txt-faint);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 240ms var(--ease-emph);
}
.hiw-dot--active {
  background: var(--txt-dark);
  width: 22px;
  border-radius: 3px;
}

@media (max-width: 720px) {
  .hiw { padding: 80px 0 60px; }
  .hiw-outer { padding: 0 20px; }
  .hiw-card { width: 88vw; }
  .hiw-card:nth-child(even) { margin-top: 0; }
  .hiw-track { padding-top: 52px; padding-bottom: 36px; gap: 56px; }
  .hiw-screen img { height: 340px; }
  .hiw-head { padding: 0; }
}

@media (max-width: 480px) {
  .hiw-screen img { height: 240px; }
  .hiw-track { gap: 36px; }
}

/* ─── SHARED EYEBROW ─────────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--txt-mid);
  margin-bottom: 18px;
}
/* ─── CAUGHT WEARING IT (polaroid pinboard) ─────────────────── */

.pinboard {
  background: var(--cream);
  padding: 120px 0 70px;
}

.pinboard-head {
  text-align: center;
  margin-bottom: 72px;
}

.pinboard-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--txt-mid);
  margin-bottom: 12px;
}

.pinboard-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  color: var(--txt-dark);
  margin: 8px 0 14px;
}

.pinboard-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--txt-mid, #666);
  letter-spacing: 0.01em;
}

.pinboard-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 36px 24px;
  padding: 20px 0 60px;
  /* bleed past .wrap on both sides */
  margin-left: calc(50% - 50vw + 24px);
  margin-right: calc(50% - 50vw + 24px);
}

.polaroid {
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 10px 10px 76px;
  border-radius: 3px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease;
  width: 300px;
  flex-shrink: 0;
  position: relative;
}

/* Varied widths — deliberate, not random */
.polaroid:nth-child(1) { width: 330px; }
.polaroid:nth-child(2) { width: 268px; }
.polaroid:nth-child(3) { width: 310px; }
.polaroid:nth-child(4) { width: 352px; }
.polaroid:nth-child(5) { width: 258px; }
.polaroid:nth-child(6) { width: 298px; }
.polaroid:nth-child(7) { width: 278px; }

.polaroid:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}

.polaroid-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1px;
  background: var(--paper);
}

.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1);
}

.polaroid:hover .polaroid-photo img {
  transform: scale(1.03);
}

.polaroid-cap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 2px;
}

.polaroid-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.polaroid-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--txt-dark);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.polaroid-tried {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--txt-mid, #888);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.polaroid-tried::after {
  content: '';
  display: block;
  width: 68px;
  height: 6px;
  margin-top: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='6' viewBox='0 0 68 6'%3E%3Cpath d='M0 3 C6 0.5 11 0.5 17 3 C23 5.5 28 5.5 34 3 C40 0.5 45 0.5 51 3 C57 5.5 62 5.5 68 3' stroke='%2300D870' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-opacity='0.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.polaroid-bag {
  width: 17px;
  height: 17px;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 8px;
  margin-bottom: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .polaroid { transform: none !important; }
  .polaroid:hover { transform: scale(1.02) !important; }
}

@media (max-width: 768px) {
  .pinboard { padding: 72px 0 48px; }
  .pinboard-head { margin-bottom: 48px; }
  .pinboard-head h2 { font-size: clamp(36px, 9vw, 64px); }
  .pinboard-grid { gap: 20px 14px; margin-left: 12px; margin-right: 12px; }
  .polaroid,
  .polaroid:nth-child(1), .polaroid:nth-child(2), .polaroid:nth-child(3),
  .polaroid:nth-child(4), .polaroid:nth-child(5), .polaroid:nth-child(6),
  .polaroid:nth-child(7) { width: 195px; padding: 8px 8px 62px; }
  .polaroid-name { font-size: 13px; }
}

@media (max-width: 480px) {
  .pinboard-grid { gap: 14px 10px; margin-left: 8px; margin-right: 8px; }
  .polaroid,
  .polaroid:nth-child(1), .polaroid:nth-child(2), .polaroid:nth-child(3),
  .polaroid:nth-child(4), .polaroid:nth-child(5), .polaroid:nth-child(6),
  .polaroid:nth-child(7) { width: 158px; padding: 7px 7px 56px; }
  .polaroid-name { font-size: 12px; }
  .polaroid-tried { font-size: 10px; }
}

/* ─── ANYWHERE YOU SHOP ──────────────────────────────────────── */

.anywhere {
  background: var(--cream);
  padding: 84px 0 140px;
  text-align: center;
}

.anywhere-head {
  margin-bottom: 56px;
}

.anywhere-head h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--txt-dark);
  margin-bottom: 22px;
}
.anywhere-head h3 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.anywhere-head p {
  font-size: 16px;
  color: var(--txt-mid);
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.sites-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 36px 48px;
}
.site-name {
  color: var(--txt-faint);
  transition: color 220ms var(--ease-std);
}
.site-name:hover { color: var(--txt-dark); }

.site-name--caps {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.08em;
}
.site-name--serif {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0;
}
.site-name--serif em { font-style: italic; }

.site-name--more {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--green);
  opacity: 0.8;
}

.anywhere-cta {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.anywhere-meta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--txt-faint);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .anywhere { padding: 56px 0 80px; }
  .anywhere-head h3 { font-size: clamp(32px, 9vw, 60px); }
  .sites-row { gap: 22px 28px; }
  .site-name--caps { font-size: 14px; }
  .site-name--serif { font-size: 20px; }
}


.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  padding: 17px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  transition: all 280ms var(--ease-emph);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.cta-pill--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14,16,20,0.22);
}
.cta-pill--dark:hover {
  box-shadow: 0 12px 32px rgba(14,16,20,0.32);
}

.cta-pill--green {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 216, 112, 0.32);
}
.cta-pill--green:hover {
  box-shadow: 0 14px 36px rgba(0, 216, 112, 0.42);
}


.cta-pill .chrome-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    #ea4335 0deg 90deg, #fbbc05 90deg 180deg,
    #34a853 180deg 270deg, #4285f4 270deg 360deg);
  position: relative;
}
.cta-pill .chrome-icon::after {
  content: ''; position: absolute; inset: 5px;
  background: #fff; border-radius: 50%;
}
.cta-pill .chrome-icon::before {
  content: ''; position: absolute; inset: 7px;
  background: #4285f4; border-radius: 50%; z-index: 1;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

.footer--slim {
  background: var(--cream);
  padding: 36px 0;
  border-top: 1px solid var(--hair-light);
}

.footer-slim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--txt-faint);
}
.footer-mark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--txt-mid);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.footer-meta em {
  font-family: var(--serif);
  font-style: italic;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 22px;
}
.footer-links a {
  color: var(--txt-mid);
  transition: color 200ms var(--ease-std);
}
.footer-links a:hover { color: var(--txt-dark); }

@media (max-width: 540px) {
  .footer-slim-row { flex-direction: column; align-items: start; gap: 12px; }
}

/* ─── REVEAL ─────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-emph), transform 700ms var(--ease-emph);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ─── BETA MODAL ─────────────────────────────────────────────────── */
#betaModal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(14,16,20,0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease;
}
#betaModal.open { opacity: 1; pointer-events: all; }
#betaModal.open .beta-card { transform: translateY(0); opacity: 1; }
.beta-card {
  background: #FAFAF7; border-radius: 20px; padding: 40px 36px 36px;
  width: 100%; max-width: 420px; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(14px); opacity: 0;
  transition: transform 320ms cubic-bezier(.16,1,.3,1), opacity 280ms ease;
}
.beta-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.06); border: none; cursor: pointer;
  font-size: 13px; color: #54595F; transition: background 180ms;
  display: flex; align-items: center; justify-content: center;
}
.beta-close:hover { background: rgba(0,0,0,0.12); }
.beta-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.beta-card h2 {
  font-family: var(--sans); font-size: 24px; font-weight: 300;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 8px; line-height: 1.2;
}
.beta-card h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.beta-card > div > p {
  font-size: 14px; color: var(--txt-mid, #54595F); line-height: 1.65; margin-bottom: 24px;
}
.beta-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.beta-input {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.1); background: white;
  font-size: 15px; color: var(--ink); font-family: var(--sans);
  outline: none; box-sizing: border-box; transition: border-color 180ms;
}
.beta-input:focus { border-color: var(--green); }
.beta-input::placeholder { color: #969BA3; }
.beta-submit {
  width: 100%; padding: 15px; border-radius: 12px; background: var(--green);
  border: none; cursor: pointer; font-size: 15px; font-weight: 600;
  color: #0E1014; font-family: var(--sans); letter-spacing: -0.01em;
  transition: transform 200ms var(--ease-emph), box-shadow 200ms var(--ease-emph);
}
.beta-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,216,112,0.35); }
.beta-submit:active { transform: translateY(0); }
.beta-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.beta-fine { font-size: 12px; color: #969BA3; text-align: center; line-height: 1.5; margin-top: 14px; }
.beta-success {
  display: none; flex-direction: column; align-items: center;
  gap: 12px; text-align: center; padding: 12px 0 4px;
}
.beta-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,216,112,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--green);
}
.beta-success h3 { font-size: 22px; font-weight: 300; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.beta-success p { font-size: 14px; color: #54595F; margin: 0; }
@media (max-width: 480px) {
  .beta-card { padding: 32px 24px 28px; border-radius: 16px; }
}

/* ─── PRIVACY TRUST ──────────────────────────────────────────── */
.privacy-trust {
  background: var(--cream);
  padding: 48px 32px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border-top: 1px solid var(--hair-light);
  border-bottom: 1px solid var(--hair-light);
}
.prv-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.prv-line {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--txt-mid);
  max-width: 400px;
  line-height: 1.7;
}
.prv-line--sub {
  font-size: 14px;
  color: var(--txt-faint);
  margin-top: -4px;
}
.prv-vanish {
  color: var(--green);
  font-style: italic;
  animation: vanish 3s ease-in-out infinite;
  display: inline-block;
}
@keyframes vanish {
  0%   { opacity: 1; }
  50%  { opacity: 0.08; }
  100% { opacity: 1; }
}
@media (max-width: 720px) {
  .privacy-trust { padding: 40px 20px 48px; }
}

/* ─── FOLIO — TAB FINDER (Also from Build for One) ───────────── */

.folio {
  background: var(--cream-dim);
  padding: 110px 0 130px;
  border-top: 1px solid var(--hair-light);
}
.folio .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.folio-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.folio-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}
.folio-head h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--txt-dark);
  margin-bottom: 22px;
}
.folio-head h3 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.folio-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--txt-mid);
  max-width: 600px;
  margin: 0 auto;
}
.folio-sub strong {
  color: var(--txt-dark);
  font-weight: 600;
}

.folio-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--hair-light);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 48px -28px rgba(0,0,0,0.18);
}

.folio-shot {
  border-radius: 8px;
  overflow: hidden;
  background: #15171C;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.folio-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.folio-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.folio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.folio-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--txt-mid);
}
.folio-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(0, 216, 112, 0.10);
  color: var(--green);
  font-size: 13px;
  margin-top: 1px;
}
.folio-kbd {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  margin-top: 1px;
}
.folio-kbd kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--txt-dark);
  background: #fff;
  border: 1px solid var(--hair-light);
  border-bottom-width: 2px;
  border-radius: 5px;
}

.folio-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px dashed var(--hair-light);
}
.folio-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-dark);
  background: rgba(0, 216, 112, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}
.folio-soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: folio-pulse 1.8s ease-in-out infinite;
}
@keyframes folio-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.folio-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
}
.folio-link:hover {
  color: var(--txt-dark);
  border-bottom-color: var(--green);
}

@media (max-width: 820px) {
  .folio { padding: 70px 0 80px; }
  .folio-card { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .folio-head { margin-bottom: 40px; }
}

/* ─── BUILD FOR ONE — PORTFOLIO INTRO ───────────────────────── */

.bfo-intro {
  background: var(--cream);
  padding: 140px 0 80px;
  text-align: center;
}
.bfo-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.bfo-intro .brand-quote {
  margin: 0 auto 44px;
}
.bfo-intro h1 {
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(56px, 8.5vw, 108px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--txt-dark);
  margin-bottom: 20px;
}
.bfo-intro h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.bfo-intro-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--txt-faint);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .bfo-intro { padding: 100px 20px 50px; }
}

/* ─── FOLD (accordion card per product) ─────────────────────── */

details.fold {
  max-width: 1080px;
  margin: 24px auto;
  background: #fff;
  border: 1px solid var(--hair-light);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 56px -36px rgba(0,0,0,0.20);
  overflow: hidden;
  transition: box-shadow 280ms var(--ease-std), transform 280ms var(--ease-std);
}
details.fold:hover:not([open]) {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 32px 64px -32px rgba(0,0,0,0.24);
}
details.fold[open] {
  background: var(--cream);
}

/* hide default disclosure marker */
details.fold > summary { list-style: none; cursor: pointer; }
details.fold > summary::-webkit-details-marker { display: none; }
details.fold > summary::marker { display: none; }

.fold-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 44px 48px;
}
.fold-head-text { display: flex; flex-direction: column; gap: 14px; }
.fold-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-mid);
}
.fold-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.fold-h {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--txt-dark);
  margin: 0;
}
.fold-h .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.fold-pitch {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--txt-mid);
  margin: 0;
  max-width: 580px;
}

.fold-head-side {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.fold-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
}
.fold-chip--live {
  background: rgba(0, 216, 112, 0.12);
  color: #0a8a4a;
}
.fold-chip--soon {
  background: rgba(0, 0, 0, 0.05);
  color: var(--txt-mid);
}
.fold-chevron {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dim);
  align-items: center;
  justify-content: center;
  color: var(--txt-dark);
  transition: transform 320ms var(--ease-std), background 200ms;
}
details.fold[open] .fold-chevron { transform: rotate(180deg); background: #fff; }
details.fold:hover:not([open]) .fold-chevron { background: rgba(0, 216, 112, 0.10); color: var(--green); }

.fold-body {
  border-top: 1px solid var(--hair-light);
  background: var(--cream);
  animation: fold-fade 360ms var(--ease-std);
}
@keyframes fold-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fold-pika-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 32px 24px;
  text-align: center;
}

@media (max-width: 820px) {
  details.fold { margin: 16px 16px; border-radius: 14px; }
  .fold-head { padding: 28px 22px; grid-template-columns: 1fr; gap: 18px; }
  .fold-head-side { justify-content: space-between; }
  .fold-pika-cta { padding: 40px 20px 12px; }
}

/* ─── TAB FINDER — SHOWCASE inside fold ─────────────────────── */

.tf-showcase {
  padding: 70px 0 50px;
}
.tf-showcase .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.tf-pitch h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--txt-dark);
  margin: 12px 0 18px;
}
.tf-pitch h3 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.tf-pitch p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--txt-mid);
  margin: 0;
}
.tf-shot {
  border-radius: 12px;
  overflow: hidden;
  background: #15171C;
  box-shadow: 0 24px 56px -28px rgba(0,0,0,0.40);
}
.tf-shot img { display: block; width: 100%; height: auto; }

.tf-features {
  padding: 30px 0 60px;
  background: transparent;
}
.tf-features .wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.tf-feat-head {
  text-align: center;
  margin-bottom: 44px;
}
.tf-feat-head h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--txt-dark);
  margin: 10px 0 0;
}
.tf-feat-head h3 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.tf-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tf-feat {
  background: #fff;
  border: 1px solid var(--hair-light);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 200ms var(--ease-std), box-shadow 200ms;
}
.tf-feat:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -22px rgba(0,0,0,0.16);
}
.tf-feat h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--txt-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.tf-feat p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--txt-mid);
  margin: 0;
}
.tf-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 216, 112, 0.10);
  color: var(--green);
  font-size: 16px;
}
.tf-feat-kbd {
  display: inline-flex;
  gap: 4px;
}
.tf-feat-kbd kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 24px;
  padding: 0 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--txt-dark);
  background: #fff;
  border: 1px solid var(--hair-light);
  border-bottom-width: 2px;
  border-radius: 5px;
}

.tf-cta {
  padding: 30px 0 80px;
  text-align: center;
}
.tf-cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.tf-cta .anywhere-meta { margin: 0; }

@media (max-width: 820px) {
  .tf-showcase .wrap { grid-template-columns: 1fr; gap: 32px; }
  .tf-feat-grid { grid-template-columns: 1fr; }
}

/* ─── FOLD — open state goes edge-to-edge ──────────────────── */

details.fold[open] {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--hair-light);
  box-shadow: none;
}
details.fold[open] > .fold-head {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
details.fold[open] .fold-body {
  border-top: 1px solid var(--hair-light);
}

/* HIW carousel should also stretch edge-to-edge inside an open fold */
details.fold[open] .hiw,
details.fold[open] .pinboard,
details.fold[open] .anywhere,
details.fold[open] .privacy-trust,
details.fold[open] .tf-showcase,
details.fold[open] .tf-features,
details.fold[open] .tf-cta {
  width: 100%;
  max-width: none;
}
