/* ==========================================================================
   URBANE — Landing page
   Editorial fashion design system. No frameworks, no icon fonts.
   ========================================================================== */

:root {
  --bg: #f6f1e7;
  --bg-soft: #ece4d4;
  --ink: #17140f;
  --ink-soft: #55503f;
  --paper: #fffdf8;
  --accent: #c14a09;
  --accent-deep: #a03d06;
  --accent-bright: #ff8c4d;
  --line: rgba(23, 20, 15, .16);
  --line-strong: rgba(23, 20, 15, .8);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 18px;
  --shadow-pop: 6px 6px 0 var(--ink);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(60rem 32rem at 85% -6rem, rgba(193, 74, 9, .09), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1400px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section-alt { background: var(--bg-soft); }

/* ---------- Typography ---------- */
h1, h2, h3, .password-digit, .hero-stats dt {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* Brush-stroke swash under the hero accent word */
h1 em {
  padding-bottom: .14em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 26' preserveAspectRatio='none'%3E%3Cpath d='M6 18 Q60 8 112 13 T214 11' fill='none' stroke='%23c14a09' stroke-width='7' stroke-linecap='round' opacity='.8'/%3E%3C/svg%3E") no-repeat bottom left / 100% .28em;
}

.lead {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: .45rem 1rem;
  margin-bottom: 1.4rem;
}

.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-head { max-width: 46rem; }

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}

.section-label::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: var(--line-strong);
}

.section-sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100%;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: .7rem 1.2rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

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

.btn-accent { background: var(--accent); border-color: var(--accent-deep); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); box-shadow: 6px 6px 0 rgba(23, 20, 15, .85); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-sm { padding: .55rem 1.15rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--bg);
  transition: box-shadow .25s var(--ease);
}

.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(23, 20, 15, .28); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand img { width: 140px; height: auto; }

.site-nav ul {
  display: flex;
  gap: .25rem;
}

.site-nav a {
  display: inline-block;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(246, 241, 231, .82);
  transition: color .2s var(--ease), background .2s var(--ease);
}

.site-nav a:hover { color: #fff; background: rgba(246, 241, 231, .12); }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.header-actions .btn-accent { border-color: transparent; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(246, 241, 231, .35);
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

/* Giant editorial ghost word behind the hero */
.hero-ghost {
  position: absolute;
  top: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(7rem, 19vw, 16rem);
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  color: rgba(23, 20, 15, .05);
  pointer-events: none;
  user-select: none;
}

@supports (-webkit-text-stroke: 1px black) {
  .hero-ghost {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(23, 20, 15, .13);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.hero-stats dt { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--ink); }
.hero-stats dd {
  margin: .15rem 0 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-visual { position: relative; }

/* Dotted texture peeking from behind the arch */
.hero-dots {
  position: absolute;
  top: 22px;
  left: -32px;
  width: 130px;
  height: 150px;
  background-image: radial-gradient(rgba(193, 74, 9, .55) 1.5px, transparent 1.6px);
  background-size: 16px 16px;
}

.hero-arch {
  position: relative;
  z-index: 1;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 10px 10px 0 var(--bg-soft), 10px 10px 0 1px var(--line);
}

.hero-arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Tilted polaroid card overlapping the arch */
.hero-polaroid {
  position: absolute;
  right: -18px;
  bottom: -26px;
  z-index: 2;
  width: clamp(120px, 13vw, 168px);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 8px 8px 10px;
  rotate: 5deg;
  box-shadow: 6px 6px 0 rgba(23, 20, 15, .85);
}

.hero-polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.hero-polaroid figcaption {
  margin-top: .45rem;
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-spin {
  position: absolute;
  z-index: 2;
  top: -26px; right: -20px;
  width: clamp(96px, 12vw, 132px);
  height: auto;
  animation: spin 22s linear infinite;
  fill: var(--ink);
}

.hero-spin text {
  font-family: var(--font-body);
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-spin .spin-star { font-size: 26px; fill: var(--accent); }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-chip {
  position: absolute;
  z-index: 3;
  left: -14px; bottom: 34px;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: .7rem 1rem;
  box-shadow: var(--shadow-pop);
}

.hero-chip span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-chip strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent-deep);
}

.chip-copy {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.chip-copy:hover { background: var(--accent); border-color: var(--accent-deep); }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--bg);
  border-block: 1px solid var(--ink);
  overflow: hidden;
  padding: .9rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-group {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker-group span {
  flex: none;
  padding: 0 1.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.ticker-group i { font-style: italic; color: var(--accent-bright); }
.tick-star { color: var(--accent-bright); font-size: .95rem; }

@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Demo access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: 3rem;
}

.steps { display: grid; gap: 1.4rem; counter-reset: step; }

.steps li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.steps li:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-pop);
  border-color: var(--line-strong);
}

.step-num {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  border-radius: 50%;
}

.steps p { margin-top: .3rem; color: var(--ink-soft); font-size: .97rem; }

.password-card {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 8px);
  padding: 2.4rem 2rem 2.2rem;
  box-shadow: 10px 10px 0 var(--bg-soft), 10px 10px 0 1px var(--line);
  position: relative;
  overflow: hidden;
}

.password-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--line);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}

.password-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.password-digit {
  font-size: clamp(6rem, 12vw, 8.5rem);
  line-height: 1;
  color: var(--accent);
  margin: .5rem 0 1.2rem;
}

.password-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--ink-soft);
}

/* ---------- Theme views ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 2.4rem 0 2rem;
}

.filter-btn {
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: .55rem 1.3rem;
  font-size: .9rem;
  font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.filter-btn:hover { transform: translateY(-2px); }

.filter-btn.is-active {
  background: var(--ink);
  color: var(--bg);
}

.views-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.view-card { transition: opacity .3s var(--ease), transform .3s var(--ease); }
.view-card.is-hidden { display: none; }

.view-card a {
  display: block;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.view-card a:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-pop); }

.view-card figure {
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg-soft);
}

.view-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  transition: transform .5s var(--ease);
}

.view-card a:hover img { transform: scale(1.04); }

.view-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
}

.view-num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: .08em;
}

.view-title {
  font-weight: 700;
  font-size: .95rem;
}

.view-arrow {
  margin-left: auto;
  font-size: 1.05rem;
  transition: transform .25s var(--ease);
}

.view-card a:hover .view-arrow { transform: translateX(4px); color: var(--accent); }

/* ---------- Mega menu (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 10px 10px 0 var(--bg-soft), 10px 10px 0 1px var(--line);
  rotate: -1.2deg;
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}

.check-list {
  margin-top: 1.8rem;
  display: grid;
  gap: .9rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
}

.check-list svg {
  flex: none;
  width: 22px; height: 22px;
  padding: 3px;
  color: var(--paper);
  background: var(--accent);
  border-radius: 50%;
  margin-top: .1rem;
}

.check-list span { color: var(--ink-soft); }
.check-list strong { color: var(--ink); }

/* ---------- Features bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.bento-card {
  grid-column: span 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.bento-wide { grid-column: span 4; }

.bento-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-pop);
  border-color: var(--line-strong);
}

.feat-icon {
  width: 46px; height: 46px;
  padding: 10px;
  color: var(--accent-deep);
  background: rgba(193, 74, 9, .1);
  border: 1px solid rgba(193, 74, 9, .25);
  border-radius: 12px;
  margin-bottom: 1.1rem;
}

.bento-card h3 { margin-bottom: .5rem; }
.bento-card p { color: var(--ink-soft); font-size: .97rem; }
.bento-wide p { max-width: 40rem; }

/* Full-width horizontal band for the last feature */
.bento-band {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.bento-band .feat-icon { flex: none; margin-bottom: 0; }
.bento-band p { max-width: 46rem; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.faq-list { display: grid; gap: .9rem; }

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s var(--ease);
}

.faq-list details[open] { border-color: var(--line-strong); }

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
}

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

.faq-mark {
  margin-left: auto;
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  transition: transform .25s var(--ease);
}

.faq-mark::before { width: 12px; height: 2px; }
.faq-mark::after { width: 2px; height: 12px; }

details[open] .faq-mark::after { transform: rotate(90deg); }
details[open] .faq-mark { background: var(--accent); border-color: var(--accent-deep); }
details[open] .faq-mark::before,
details[open] .faq-mark::after { background: #fff; }

.faq-list details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
}

/* ---------- CTA ---------- */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--bg);
}

.cta-media { position: relative; min-height: 320px; }

.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-panel {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
}

.cta-panel h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.cta-panel h2 em { color: var(--accent-bright); }
.cta-panel > p { color: rgba(246, 241, 231, .78); max-width: 30rem; }

.cta .btn-accent { border-color: transparent; }
.cta .btn-accent:hover { box-shadow: 6px 6px 0 rgba(246, 241, 231, .9); }

.cta-note {
  font-size: .88rem;
  color: rgba(246, 241, 231, .62);
}
.cta-note strong { color: var(--accent-bright); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(246, 241, 231, .14);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand p {
  margin-top: 1.2rem;
  max-width: 30rem;
  color: rgba(246, 241, 231, .72);
  font-size: .95rem;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  justify-content: flex-end;
}

.footer-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(246, 241, 231, .78);
  padding: .3rem 0;
  display: inline-block;
}

.footer-nav a:hover { color: var(--accent-bright); }

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 231, .14);
  padding: 1.4rem 0;
  font-size: .85rem;
  color: rgba(246, 241, 231, .55);
}

/* ---------- Scroll top & toast ---------- */
.scroll-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent-deep);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top svg { width: 22px; height: 22px; }
.scroll-top:hover { background: var(--accent-deep); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  z-index: 70;
  transform: translate(-50%, 16px);
  background: var(--ink);
  color: var(--bg);
  border: 1px solid rgba(246, 241, 231, .25);
  border-radius: 999px;
  padding: .75rem 1.5rem;
  font-size: .92rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Scroll reveal (JS adds .js / .in-view) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .views-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-card { grid-column: span 3; }
  .bento-wide, .bento-band { grid-column: span 6; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-inline: auto; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
  .access-grid, .split, .faq-grid { grid-template-columns: 1fr; }
  .password-card { max-width: 420px; }
  .cta { grid-template-columns: 1fr; }
  .cta-media { min-height: 260px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav ul { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(246, 241, 231, .14);
    border-bottom: 1px solid rgba(246, 241, 231, .14);
    padding: .8rem 1.25rem 1.2rem;
    display: none;
  }

  .nav-open .site-nav { display: block; }

  .site-nav ul { flex-direction: column; gap: .15rem; }
  .site-nav a { display: block; padding: .8rem .6rem; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .views-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .views-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-wide { grid-column: span 6; }
  .hero-chip { left: 8px; bottom: 14px; padding: .55rem .8rem; gap: .6rem; }
  .hero-spin { top: -18px; right: -8px; }
  .hero-polaroid { right: 0; bottom: -16px; width: 112px; padding: 6px 6px 8px; }
  .hero-dots { left: -14px; }
  .steps li { flex-direction: row; padding: 1.1rem 1.15rem; }
  .header-actions .btn { display: none; }
  .ticker-group span { font-size: 1rem; padding: 0 1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .ticker-track, .hero-spin { animation: none; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
