/* ─── Tokens (from Figma Dev Mode export) ────────────────── */
:root {
  --bg: #060b16;
  --accent: #ff4b12; /* Vermilion */
  --accent2: #ff7240; /* Burning Orange */
  --blue: #4c9eff; /* Dodger Blue */
  --blue2: #5aabff;
  --green: #39e8a2; /* Turquoise */
  --yellow: #ffc840;

  --w100: #ffffff;
  --w72: rgba(255, 255, 255, 0.72);
  --w65: rgba(255, 255, 255, 0.65);
  --w55: rgba(255, 255, 255, 0.55);
  --w50: rgba(255, 255, 255, 0.5);
  --w40: rgba(255, 255, 255, 0.4);
  --w25: rgba(255, 255, 255, 0.25);
  --w18: rgba(255, 255, 255, 0.18);
  --w15: rgba(255, 255, 255, 0.15);
  --w12: rgba(255, 255, 255, 0.12);
  --w10: rgba(255, 255, 255, 0.1);
  --w08: rgba(255, 255, 255, 0.08);
  --w04: rgba(255, 255, 255, 0.04);
  --w03: rgba(255, 255, 255, 0.03);
  --w02: rgba(255, 255, 255, 0.02);

  --maxw: 1280px;
  --pill: 999px;
  --ease: 0.18s ease;
  --font: 'Mona Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--w100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ─── Typography ─────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w55);
}
.eyebrow--dim {
  color: var(--w40);
}
.eyebrow--accent {
  color: var(--w55);
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--bare {
  display: block;
}
.eyebrow__line {
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex: none;
}
.eyebrow--accent .eyebrow__line {
  background: var(--accent);
  opacity: 1;
}

.hero__title {
  font-size: clamp(2.75rem, 7.6vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--w100);
}

.display {
  font-size: clamp(2.5rem, 7vw, 8.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.display .accent {
  color: var(--accent);
}

.h-section {
  font-size: clamp(2.25rem, 4.6vw, 5.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.cta-title {
  font-size: clamp(4rem, 15.5vw, 17.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-align: center;
}

.lede {
  font-size: clamp(1rem, 1.2vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--w55);
  max-width: 620px;
}
.lede--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--w65);
}

/* ─── Pills / buttons (hover effects) ────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease),
    background var(--ease), border-color var(--ease);
}
.pill--accent {
  background: var(--accent);
  color: #fff;
}
.pill--accent:hover {
  box-shadow: 0 10px 44px rgba(255, 75, 18, 0.55);
  transform: translateY(-1px);
}
.pill--ghost {
  background: var(--w04);
  border-color: var(--w18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.pill--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}
.pill--white {
  background: #fff;
  color: var(--bg);
  font-size: 11px;
  padding: 12px 18px;
  letter-spacing: 0.16em;
}
.pill--white:hover {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.18);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex: none;
}

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 69px;
  background: rgba(6, 11, 22, 0.55);
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.12em;
}
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--w72);
}
.nav__links a {
  transition: color var(--ease);
}
.nav__links a:hover {
  color: #fff;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--w02);
  border: 1px solid var(--w12);
  border-radius: var(--pill);
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--w55);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--pill);
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}
.lang__btn:hover {
  color: #fff;
}
.lang__btn.is-active {
  background: #fff;
  color: var(--bg);
}
.lang__flag {
  font-size: 12px;
  line-height: 1;
}

/* ─── Section frame ──────────────────────────────────────── */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.hero {
  padding-top: clamp(56px, 7vw, 88px);
}
.section-head {
  max-width: 880px;
  margin-bottom: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero__head {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero stage */
.stage {
  position: relative;
  margin-top: clamp(40px, 5vw, 56px);
  width: 100%;
  aspect-ratio: 1184 / 640;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 0 49px;
  border: 1px solid var(--w08);
  border-radius: 32px;
  background: radial-gradient(
      60% 50% at 50% 40%,
      rgba(76, 158, 255, 0.2) 0%,
      rgba(76, 158, 255, 0) 65%
    ),
    linear-gradient(
      180deg,
      rgba(14, 22, 38, 0.85) 0%,
      rgba(6, 11, 22, 0.85) 100%
    );
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.stage__ticks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}
.tick {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: var(--w04);
  border: 1px solid var(--w10);
  backdrop-filter: blur(10px);
  border-radius: 14px;
}
.tick__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w55);
}
.tick__value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tick__value small {
  font-size: 13px;
  font-weight: 500;
  color: var(--w50);
  margin-left: 3px;
}
.tick__bar {
  height: 2px;
  background: var(--w10);
  border-radius: 1px;
  overflow: hidden;
}
.tick__bar i {
  display: block;
  height: 100%;
  background: #fff;
}
.tick__bar i.accent {
  background: var(--accent);
}

.bracelet {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(220px, 26vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    78% 78% at 50% 40%,
    #1b2438 0%,
    #0b1322 50%,
    #050810 100%
  );
  border: 1px dashed var(--w18);
  z-index: 3;
}
.bracelet::before,
.bracelet::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--w08);
}
.bracelet::before {
  inset: -16%;
}
.bracelet::after {
  inset: -33%;
  border-color: var(--w04);
}
.bracelet__img {
  position: relative;
  z-index: 1;
  width: 122%;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.6));
}

.stage__meta {
  position: absolute;
  left: 33px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w40);
  z-index: 5;
}

/* ─── Rings ──────────────────────────────────────────────── */
.rings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 52px);
}
.ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 33px 40px;
  background: var(--w03);
  border: 1px solid var(--w08);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  transition: border-color var(--ease), transform var(--ease);
}
.ring-card:hover {
  border-color: var(--w18);
  transform: translateY(-3px);
}
.ring {
  position: relative;
  width: clamp(180px, 18vw, 240px);
  aspect-ratio: 1;
}
.ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring__track {
  fill: none;
  stroke: var(--w08);
  stroke-width: 8;
}
.ring__fill {
  fill: none;
  stroke: var(--ring, var(--accent));
  stroke-width: 8;
  /* Full closed ring, matching the Figma (decorative, not a progress arc). */
}
.ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ring__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ring__num small {
  font-size: 0.36em;
  font-weight: 600;
  color: var(--w40);
  margin-left: 3px;
  transform: translateY(-0.15em);
}
.ring__kicker {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--w55);
}
.ring-card__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ring-card__desc {
  font-size: 15px;
  line-height: 1.47;
  color: var(--w55);
  text-align: center;
  max-width: 286px;
}

/* ─── City / streets ─────────────────────────────────────── */
.streets {
  position: relative;
  width: 100%;
  aspect-ratio: 1184 / 640;
  border: 1px solid var(--w08);
  border-radius: 24px;
  overflow: hidden;
}
.streets__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.streets__meta {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w50);
}
.streets__stats {
  position: absolute;
  left: 25px;
  bottom: 25px;
  display: flex;
  gap: 12px;
}
.stat {
  padding: 12px 16px;
  background: rgba(6, 11, 22, 0.7);
  border: 1px solid var(--w15);
  backdrop-filter: blur(5px);
  border-radius: 8px;
}
.stat__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w50);
}
.stat__value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
}

/* ─── Worn 24/7 ──────────────────────────────────────────── */
.worn__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.worn__features {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.worn-feature {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  padding: 24px 28px;
  border-radius: 12px;
  transition: background var(--ease);
}
.worn-feature h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--w40);
  transition: color var(--ease), font-size var(--ease);
}
.worn-feature p {
  display: none;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.47;
  color: var(--w55);
  max-width: 400px;
}
.worn-feature--active p {
  display: block;
}
.worn-feature--active {
  background: var(--w03);
}
.worn-feature--active h3 {
  font-size: 26px;
  color: #fff;
}
.worn-feature--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}
.worn-feature:hover h3 {
  color: #fff;
}
.worn__media {
  min-height: 480px;
  border-radius: 24px;
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(57, 232, 162, 0.14) 0%,
      rgba(57, 232, 162, 0) 60%
    ),
    linear-gradient(180deg, rgba(14, 22, 38, 0.85) 0%, rgba(6, 11, 22, 0.95) 100%);
  border: 1px solid var(--w08);
  display: grid;
  place-items: center;
  padding: 24px;
}

/* ─── Placeholders (match Figma's own image placeholders) ── */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: 1px dashed var(--w18);
  border-radius: 16px;
  background: var(--w03);
  padding: 24px;
}
.ph strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ph em {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--w35, rgba(255, 255, 255, 0.35));
  max-width: 280px;
  line-height: 1.5;
}
.ph--portrait {
  width: min(412px, 100%);
  aspect-ratio: 412 / 478;
  border-radius: 18px;
}
.ph--fill {
  position: absolute;
  inset: 1px;
  border: none;
  background: transparent;
}
.ph--step {
  width: 100%;
  flex: 1;
  min-height: 180px;
}

/* ─── Bento ──────────────────────────────────────────────── */
.bento__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--w08);
  border-radius: 24px;
  background: var(--w03);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.tile:hover {
  border-color: var(--w18);
  transform: translateY(-3px);
}
.tile--big {
  grid-column: 1;
  grid-row: 1 / 3;
  border-color: var(--w12);
  background: radial-gradient(
      60% 50% at 50% 30%,
      rgba(76, 158, 255, 0.12) 0%,
      rgba(76, 158, 255, 0) 65%
    ),
    linear-gradient(180deg, rgba(14, 22, 38, 0.85) 0%, rgba(6, 11, 22, 0.95) 100%);
}
.tile--tr {
  grid-column: 2;
  grid-row: 1;
}
.tile--mr {
  grid-column: 3;
  grid-row: 1;
}
.tile--wide {
  grid-column: 2 / 4;
  grid-row: 2;
  border-color: var(--w12);
  background: radial-gradient(
      60% 50% at 50% 30%,
      rgba(76, 158, 255, 0.12) 0%,
      rgba(76, 158, 255, 0) 65%
    ),
    linear-gradient(180deg, rgba(14, 22, 38, 0.85) 0%, rgba(6, 11, 22, 0.95) 100%);
}
.tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.tile__img--app {
  object-fit: contain;
  object-position: center 8%;
  padding: 18px 18px 0;
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 22, 0) 45%,
    rgba(6, 11, 22, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.tile__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tile__copy .eyebrow {
  color: var(--w55);
}
.tile__copy h4 {
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ─── Community ──────────────────────────────────────────── */
.community__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1184 / 720;
  border: 1px solid var(--w08);
  border-radius: 24px;
  background: radial-gradient(
      50% 50% at 30% 50%,
      rgba(76, 158, 255, 0.14) 0%,
      rgba(76, 158, 255, 0) 60%
    ),
    radial-gradient(
      40% 40% at 80% 60%,
      rgba(57, 232, 162, 0.1) 0%,
      rgba(57, 232, 162, 0) 65%
    ),
    var(--bg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.phone {
  position: absolute;
  width: clamp(180px, 17vw, 300px);
}
.phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.6));
}
.phone--center {
  z-index: 2;
  transform: scale(1.1);
}
.phone--left {
  transform: translateX(-78%) rotate(-3deg);
  opacity: 0.55;
}
.phone--right {
  transform: translateX(78%) rotate(3deg);
  opacity: 0.7;
}

/* ─── How it works ───────────────────────────────────────── */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 32px;
  background: var(--w03);
  border: 1px solid var(--w08);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  transition: border-color var(--ease), transform var(--ease);
}
.step:hover {
  border-color: var(--w18);
  transform: translateY(-3px);
}
.step__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.step__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.step h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 15px;
  line-height: 1.47;
  color: var(--w55);
}

/* ─── Waitlist ───────────────────────────────────────────── */
.waitlist {
  background: radial-gradient(
    60% 60% at 50% 100%,
    rgba(255, 75, 18, 0.22) 0%,
    rgba(255, 75, 18, 0) 65%
  );
  padding: clamp(80px, 12vw, 160px) 0;
}
.waitlist__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.waitlist__form {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 580px;
  background: var(--w03);
  border: 1px solid var(--w25);
  backdrop-filter: blur(6px);
  border-radius: var(--pill);
  padding: 4px 4px 4px 0;
  gap: 8px;
}
.waitlist__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 18px 28px;
}
.waitlist__input::placeholder {
  color: var(--w40);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.waitlist__input:focus {
  outline: none;
}
.waitlist__counter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w50);
}

/* ─── Developer portal (staging only) ────────────────────── */
.dev-portal {
  padding: 70px 0;
  border-top: 1px solid var(--w08);
}
.dev-portal[hidden] {
  display: none;
}
.dev-portal__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.dev-portal__head h2 {
  font-size: 1.3rem;
  font-weight: 700;
}
.env-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 200, 64, 0.1);
  border: 1px solid rgba(255, 200, 64, 0.3);
  border-radius: 6px;
  padding: 3px 8px;
}
.dev-portal__section {
  margin-bottom: 30px;
}
.dev-portal__section h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w50);
  margin-bottom: 12px;
}
.dev-portal__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.dev-portal__link {
  display: block;
  background: var(--w03);
  border: 1px solid var(--w08);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  transition: border-color var(--ease), background var(--ease);
}
.dev-portal__link:hover {
  border-color: var(--w18);
  background: var(--w04);
}
.dev-portal__link span {
  display: block;
  font-size: 0.72rem;
  color: var(--w50);
  margin-top: 3px;
}
.dev-portal__commit {
  font-size: 0.78rem;
  color: var(--w50);
}
.dev-portal__commit code {
  background: var(--w03);
  border: 1px solid var(--w08);
  padding: 2px 6px;
  border-radius: 5px;
  font-family: ui-monospace, monospace;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--w08);
  backdrop-filter: blur(6px);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 64px;
}
.footer__logo {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer__tagline {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--w55);
  max-width: 240px;
}
.footer__copy {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w40);
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col li {
  padding: 8px 0;
}
.footer__col a {
  font-size: 14px;
  color: var(--w55);
  transition: color var(--ease);
}
.footer__col a:hover {
  color: #fff;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  max-width: 260px;
}
.ig-grid span {
  aspect-ratio: 1;
  border: 1px dashed var(--w18);
  border-radius: 6px;
  background: var(--w03);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--w08);
  font-size: 12px;
  color: var(--w55);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  transition: color var(--ease);
}
.footer__links a:hover {
  color: #fff;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .stage {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    aspect-ratio: auto;
    padding: 32px 20px 56px;
    gap: 28px;
    justify-items: stretch;
  }
  .stage__ticks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tick {
    width: calc(50% - 6px);
    min-width: 140px;
  }
  .bracelet {
    order: -1;
    margin: 0 auto;
  }
  .stage__meta {
    position: static;
    justify-content: center;
  }
  .bento__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .tile--big {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 320px;
  }
  .tile--tr,
  .tile--mr {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }
  .tile--wide {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .rings,
  .how__grid,
  .worn__grid {
    grid-template-columns: 1fr;
  }
  .worn__media {
    min-height: 360px;
  }
  .phone--left,
  .phone--right {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .lang__flag {
    display: none;
  }
}

@media (max-width: 520px) {
  .tick {
    width: 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .waitlist__form {
    flex-direction: column;
    border-radius: 24px;
    padding: 8px;
  }
  .waitlist__form .pill {
    justify-content: center;
  }
}

/* ─── Motion preference ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
