/* ============ Spontan – Landing page styles ============ */

/* ============ Cross-document page transitions ============ */
/*
 * Uses the View Transitions API for smooth, browser-native page
 * transitions on same-origin navigation. Falls back gracefully to
 * instant navigation in browsers that don't support it (Firefox).
 *
 * Browser support: Chrome 126+, Edge 126+, Safari 18+
 */

@view-transition {
  navigation: auto;
}

/* Body (everything inside ::view-transition-group(root)) cross-fades */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 280ms;
  animation-timing-function: cubic-bezier(0.32, 0, 0.32, 1);
}

::view-transition-old(root) { animation-name: spontan-page-fade-out; }
::view-transition-new(root) { animation-name: spontan-page-fade-in; }

@keyframes spontan-page-fade-out {
  to { opacity: 0; transform: translateY(-6px); }
}

@keyframes spontan-page-fade-in {
  from { opacity: 0; transform: translateY(6px); }
}

/* Header and footer get their own transition groups so they feel
 * stable across navigations (the same element on both pages,
 * cross-fades smoothly between any state changes).
 */
.site-header { view-transition-name: spontan-header; }
.site-footer { view-transition-name: spontan-footer; }

::view-transition-group(spontan-header),
::view-transition-group(spontan-footer) {
  animation-duration: 280ms;
  animation-timing-function: cubic-bezier(0.32, 0, 0.32, 1);
}

/* Language swap — pure crossfade, slightly faster, no translateY shift.
 * Triggered by JS adding `is-lang-switching` to the html element when
 * applyLang() runs through document.startViewTransition().
 */
html.is-lang-switching::view-transition-old(root),
html.is-lang-switching::view-transition-new(root) {
  animation-duration: 220ms;
  animation-timing-function: ease-out;
}

html.is-lang-switching::view-transition-old(root) {
  animation-name: spontan-lang-fade-out;
}

html.is-lang-switching::view-transition-new(root) {
  animation-name: spontan-lang-fade-in;
}

html.is-lang-switching::view-transition-group(spontan-header),
html.is-lang-switching::view-transition-group(spontan-footer) {
  animation-duration: 220ms;
  animation-timing-function: ease-out;
}

@keyframes spontan-lang-fade-out {
  to { opacity: 0; }
}

@keyframes spontan-lang-fade-in {
  from { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-group(spontan-header),
  ::view-transition-group(spontan-footer) {
    animation-duration: 0.001ms;
  }
}

:root {
  --cream: #FAF8F4;
  --deep: #1A3C34;
  --green: #34C77B;
  --orange: #F05A28;
  --ink: #1A1A1A;
  --muted: #666;
  --muted-2: #444;
  --muted-3: #555;
  --hairline: rgba(26, 60, 52, 0.12);
  --hairline-soft: rgba(26, 60, 52, 0.06);

  --shadow-card: 0 4px 16px rgba(26, 60, 52, 0.06);
  --shadow-card-hover: 0 12px 32px -8px rgba(26, 60, 52, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-map: 0 24px 60px -20px rgba(26, 60, 52, 0.25), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-phone: 0 24px 60px -16px rgba(26, 60, 52, 0.25);

  --content-max: 1080px;
  --pad-x: 56px;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ==================== Header ==================== */

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 50;
  background: var(--cream);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--hairline-soft);
  border-radius: 0;
  box-shadow: 0 0 0 0 rgba(26, 60, 52, 0);
  backdrop-filter: saturate(100%) blur(0px);
  -webkit-backdrop-filter: saturate(100%) blur(0px);
  will-change: top, width, border-radius, background, box-shadow, backdrop-filter;
  transition:
    top 0.55s var(--easing),
    width 0.55s var(--easing),
    background 0.45s var(--easing),
    backdrop-filter 0.45s var(--easing),
    -webkit-backdrop-filter 0.45s var(--easing),
    border-radius 0.55s var(--easing),
    border-color 0.45s var(--easing),
    box-shadow 0.55s var(--easing);
}

.site-header.is-scrolled {
  top: 12px;
  width: min(960px, calc(100% - 32px));
  background: rgba(250, 248, 244, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(26, 60, 52, 0.10);
  border-radius: 999px;
  box-shadow:
    0 8px 32px -12px rgba(26, 60, 52, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  transition: padding 0.55s var(--easing);
}

.site-header.is-scrolled .site-header__inner {
  padding: 10px 18px 10px 22px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.site-header__logo {
  width: 28px;
  height: 28px;
  transition: width 0.55s var(--easing), height 0.55s var(--easing);
}

.site-header.is-scrolled .site-header__logo {
  width: 22px;
  height: 22px;
}

.site-header__brand-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: font-size 0.55s var(--easing);
}

.site-header.is-scrolled .site-header__brand-name {
  font-size: 18px;
}

.site-header__nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: gap 0.55s var(--easing), font-size 0.55s var(--easing);
}

.site-header.is-scrolled .site-header__nav { gap: 24px; font-size: 13px; }

.site-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  gap: 0;
  padding: 3px;
  background: rgba(26, 60, 52, 0.06);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.lang-toggle__btn {
  padding: 4px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle__btn.is-active {
  background: var(--deep);
  color: var(--cream);
}

.btn-cta {
  padding: 10px 20px;
  background: var(--green);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: padding 0.55s var(--easing), font-size 0.55s var(--easing), filter 0.2s ease;
}

.btn-cta:hover { filter: brightness(0.95); }

.site-header.is-scrolled .btn-cta {
  padding: 8px 16px;
  font-size: 13px;
}

.header-spacer { height: 72px; }

/* Burger button (mobile only) */

.site-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.site-header__burger span {
  position: absolute;
  display: block;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--easing), top 0.3s var(--easing), opacity 0.18s ease;
}

.site-header__burger span:nth-child(1) { top: 13px; }
.site-header__burger span:nth-child(2) { top: 19px; }
.site-header__burger span:nth-child(3) { top: 25px; }

body.is-menu-open .site-header__burger span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

body.is-menu-open .site-header__burger span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .site-header__burger span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Fullscreen menu */

body.is-menu-open {
  overflow: hidden;
}

/* When menu is open, lift header above it and strip the chrome
   so brand + burger float cleanly on the menu background. */
body.is-menu-open .site-header {
  z-index: 70;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Menu is cream now — header brand + burger lines stay default ink */

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 96px 24px 40px;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.3s var(--easing);
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s var(--easing) 0.05s,
    transform 0.35s var(--easing) 0.05s;
}

.site-menu.is-open .site-menu__inner {
  opacity: 1;
  transform: translateY(0);
}

/* Stacked nav with dot prefix and divider */

.site-menu__nav {
  display: flex;
  flex-direction: column;
}

.site-menu__nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  color: var(--deep);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-menu__nav-item:last-child {
  border-bottom: 0;
}

.site-menu__nav-item:hover {
  transform: translateX(4px);
}

.site-menu__nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-menu__nav-dot--green { background: var(--green); }
.site-menu__nav-dot--orange { background: var(--orange); }
.site-menu__nav-dot--deep { background: var(--deep); }

.site-menu__nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--deep);
  line-height: 1;
}

/* Big orange CTA */

.site-menu__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: var(--orange);
  color: #FFFFFF;
  border: 0;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.site-menu__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.site-menu__cta:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.site-menu__cta-arrow {
  font-size: 18px;
  font-weight: 600;
}

/* Contact block */

.site-menu__contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.site-menu__contact-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}

.site-menu__contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--deep);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-menu__contact-row:hover {
  opacity: 0.7;
}

.site-menu__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-menu__contact-icon--phone {
  background: rgba(52, 199, 123, 0.15);
  color: var(--green);
}

.site-menu__contact-icon--mail {
  background: rgba(240, 90, 40, 0.15);
  color: var(--orange);
}

.site-menu__contact-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Lang toggle styling for menu */

.site-menu .lang-toggle {
  align-self: center;
  padding: 4px;
  background: rgba(26, 60, 52, 0.06);
}

.site-menu .lang-toggle__btn {
  padding: 8px 18px;
  font-size: 12px;
  color: var(--deep);
}

.site-menu .lang-toggle__btn.is-active {
  background: var(--deep);
  color: var(--cream);
}

/* ==================== Eyebrow / titles ==================== */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--deep);
}

.accent-green { color: var(--green); }

/* ==================== Hero ==================== */

.hero {
  background: var(--cream);
  color: var(--ink);
}

.hero__top {
  padding: 72px 56px 80px;
  text-align: center;
  position: relative;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero__chip-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: spontan-pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--deep);
}

.hero__subtitle {
  font-size: 19px;
  color: var(--muted-2);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
}

/* ==================== Store badges ==================== */

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-badge:active {
  transform: translateY(1px) scale(0.97);
  transition-duration: 0.08s;
}

/* Mid-CTA badges: pop in on entry, then App Store gets the periodic auto-tap demo */
.mid-cta__badges .store-badge {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
}

.mid-cta.is-visible .mid-cta__badges .store-badge:nth-child(1) {
  animation:
    spontan-badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards,
    spontan-badge-tap 3.5s cubic-bezier(0.4, 0, 0.2, 1) 2.6s infinite;
}

.mid-cta.is-visible .mid-cta__badges .store-badge:nth-child(2) {
  animation: spontan-badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}

@keyframes spontan-badge-pop {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

.mid-cta__badges .store-badge:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--green);
  opacity: 0;
  pointer-events: none;
}

.mid-cta.is-visible .mid-cta__badges .store-badge:first-child::after {
  animation: spontan-badge-ripple 3.5s cubic-bezier(0.22, 1, 0.36, 1) 2.6s infinite;
}

.mid-cta__badges .store-badge:first-child:hover {
  animation-play-state: paused;
}

.mid-cta__badges .store-badge:first-child:hover::after {
  animation-play-state: paused;
  opacity: 0;
}

@keyframes spontan-badge-tap {
  0%, 88%, 100%  { transform: scale(1); }
  92%            { transform: scale(0.93); }
  96%            { transform: scale(1.04); }
}

@keyframes spontan-badge-ripple {
  0%, 91%   { opacity: 0; transform: scale(1); }
  94%       { opacity: 0.7; transform: scale(1); }
  100%      { opacity: 0; transform: scale(1.18); }
}

.store-badge__icon {
  font-size: 22px;
  line-height: 1;
}

.store-badge__icon svg { width: 22px; height: 22px; display: block; }

.store-badge__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge__top {
  font-size: 10px;
  opacity: 0.7;
  line-height: 1.1;
}

.store-badge__bottom {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.store-badge--inverted {
  background: var(--cream);
  color: var(--ink);
}

.store-badge--lg {
  padding: 12px 22px;
  border-radius: 14px;
}

.store-badge--lg .store-badge__icon { font-size: 24px; }
.store-badge--lg .store-badge__icon svg { width: 24px; height: 24px; }
.store-badge--lg .store-badge__top { font-size: 11px; }
.store-badge--lg .store-badge__bottom { font-size: 16px; }

.store-badge--mid {
  padding: 14px 22px;
}
.store-badge--mid .store-badge__icon { font-size: 26px; }
.store-badge--mid .store-badge__icon svg { width: 26px; height: 26px; }
.store-badge--mid .store-badge__top { font-size: 11px; opacity: 0.65; }
.store-badge--mid .store-badge__bottom { font-size: 17px; }

/* ==================== Hero stage (map + cards) ==================== */

.hero__stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.hero__map {
  width: 100%;
  max-width: 980px;
  height: 500px;
  border-radius: 20px;
  background: #EDE9DF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-map);
}

.hero__map svg.streets {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero__line {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 5 5;
  stroke-linecap: round;
  stroke-dashoffset: 200;
  opacity: 0;
}

.hero__pin-orange {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.hero__pin-orange-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(240, 90, 40, 0.45);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.hero__pin-orange-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
}

.hero__card {
  position: absolute;
  z-index: 4;
  opacity: 0;
}

.hero__card--1 { top: 30px; left: -30px; transform: rotate(-5deg); }
.hero__card--2 { top: 60px; right: -30px; transform: rotate(4deg); }
.hero__card--3 { bottom: -50px; left: 50%; transform: translateX(-50%) rotate(-3deg); }

/* Stage animations on intersection */

.hero__stage.is-visible .hero__pin-orange-dot {
  animation: spontan-pin-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.hero__stage.is-visible .hero__pin-orange--1 .hero__pin-orange-dot { animation-delay: 0s; }
.hero__stage.is-visible .hero__pin-orange--2 .hero__pin-orange-dot { animation-delay: 0.2s; }
.hero__stage.is-visible .hero__pin-orange--3 .hero__pin-orange-dot { animation-delay: 0.4s; }

.hero__stage.is-visible .hero__pin-orange-ring {
  animation: spontan-pin-ring 2.4s ease-out infinite;
}
.hero__stage.is-visible .hero__pin-orange--1 .hero__pin-orange-ring { animation-delay: 0.15s; }
.hero__stage.is-visible .hero__pin-orange--2 .hero__pin-orange-ring { animation-delay: 0.35s; }
.hero__stage.is-visible .hero__pin-orange--3 .hero__pin-orange-ring { animation-delay: 0.55s; }

.hero__stage.is-visible .hero__line { animation: spontan-line-draw 0.6s ease-out both; }
.hero__stage.is-visible .hero__line--1 { animation-delay: 0.55s; stroke-dashoffset: 0; }
.hero__stage.is-visible .hero__line--2 { animation-delay: 0.75s; stroke-dashoffset: 0; }
.hero__stage.is-visible .hero__line--3 { animation-delay: 0.95s; stroke-dashoffset: 0; }

.hero__stage.is-visible .hero__card--1 { animation: spontan-card-fly-1 0.85s var(--easing) 0.6s both; }
.hero__stage.is-visible .hero__card--2 { animation: spontan-card-fly-2 0.85s var(--easing) 0.8s both; }
.hero__stage.is-visible .hero__card--3 { animation: spontan-card-fly-3 0.85s var(--easing) 1s both; }

/* ==================== Event card ==================== */

.event-card {
  width: 260px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-card-hover);
}

.event-card__image {
  height: 110px;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.event-card__image--music {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%),
    url('/images/vega.jpg') center/cover no-repeat,
    linear-gradient(135deg, #34C77B 0%, #1A3C34 100%);
}
.event-card__image--art {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%),
    url('/images/galleri.jpg') center/cover no-repeat,
    linear-gradient(135deg, #34C77B 0%, #1A3C34 100%);
}
.event-card__image--club {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%),
    url('/images/pumpehuset.jpg') center/cover no-repeat,
    linear-gradient(135deg, #34C77B 0%, #1A3C34 100%);
}

.event-card__urgent {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #FFF;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.event-card__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-card__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  color: var(--ink);
}

.event-card__sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.event-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-card__time {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}

.event-card__prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.event-card__strike {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.event-card__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.event-card__price--accent { color: var(--orange); }

/* ==================== Trust line + arrow ==================== */

.hero__trust-wrap {
  margin-top: 90px;
  position: relative;
}

.hero__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

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

.trust-strike {
  position: relative;
  display: inline-block;
}

.trust-strike::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@keyframes trust-strike-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero__trust-wrap.is-visible .trust-strike--1::after {
  animation: trust-strike-grow 0.55s cubic-bezier(0.55, 0, 0.45, 1) 0.35s forwards;
}

.hero__trust-wrap.is-visible .trust-strike--2::after {
  animation: trust-strike-grow 0.55s cubic-bezier(0.55, 0, 0.45, 1) 0.9s forwards;
}

.hero__trust-note {
  margin-top: 14px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0;
  transform: rotate(-2deg) translateY(8px);
  transition: opacity 0.5s ease, transform 0.6s var(--easing);
  pointer-events: none;
}

.hero__trust-wrap.is-visible .hero__trust-note {
  opacity: 1;
  transform: rotate(-2deg) translateY(0);
  transition-delay: 1.5s;
}

.hero__arrow-wrap {
  position: relative;
  margin-top: 60px;
  height: 420px;
  display: flex;
  justify-content: center;
}

.hero__arrow {
  height: 400px;
  width: auto;
  overflow: visible;
}

.hero__arrow .arrow-curve {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.hero__arrow .arrow-hand {
  opacity: 0;
  transform: translateY(-6px);
  transform-origin: 4px 270px;
  transform-box: fill-box;
}

.hero__arrow-wrap.is-visible .arrow-curve {
  animation: spontan-arrow-draw 1.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}

.hero__arrow-wrap.is-visible .arrow-hand {
  animation: spontan-arrow-hand-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.65s forwards;
}

@keyframes spontan-arrow-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes spontan-arrow-hand-pop {
  0%   { opacity: 0; transform: translateY(-6px) scale(0.7); }
  60%  { opacity: 1; transform: translateY(0) scale(1.1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__arrow-caption {
  position: absolute;
  left: calc(50% + 80px);
  top: 130px;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
  transform: rotate(-6deg);
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: transform 0.2s ease, filter 0.2s ease;
  transform-origin: left center;
}

a.hero__arrow-caption:hover {
  filter: brightness(1.1);
  transform: rotate(-6deg) scale(1.05);
}

.hero__arrow-wrap.is-visible .hero__arrow-caption {
  animation: spontan-caption-write 0.9s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards;
}

@keyframes spontan-caption-write {
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* ==================== Press sub-page ==================== */

.press-hero {
  background: var(--cream);
  padding: 96px 56px 64px;
  text-align: center;
}

.press-hero__inner { max-width: 760px; margin: 0 auto; }

.press-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}

.press-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--deep);
}

.press-hero__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 26px;
  line-height: 1.1;
}

.press-hero__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.press-section {
  padding: 64px 56px;
}

.press-section--cream { background: var(--cream); }

.press-section__inner { max-width: 980px; margin: 0 auto; }

.press-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.press-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 12px;
}

.press-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--deep);
}

/* Boilerplate */

.press-boilerplate {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.press-boilerplate p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-2);
}

/* Quick facts */

.press-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.press-fact {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.press-fact__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.press-fact__value {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep);
  line-height: 1.2;
}

/* Brand assets */

.press-brand {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
}

.press-brand__logo {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.press-brand__logo-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.press-brand__logo-preview img {
  width: 56px;
  height: 56px;
}

.press-brand__logo-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.press-brand__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--deep);
  color: var(--cream);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.press-brand__download:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.press-brand__palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.press-palette-chip {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 14px 12px 14px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.press-palette-chip__swatch {
  width: 100%;
  height: 64px;
  border-radius: 10px;
  background: var(--swatch, var(--cream));
  border: 1px solid rgba(26, 60, 52, 0.08);
}

.press-palette-chip__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep);
}

.press-palette-chip__hex {
  font-size: 11px;
  font-family: 'SF Mono', 'Monaco', monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Contact */

.press-contact {
  background: var(--deep);
  color: var(--cream);
  padding: 96px 56px;
  text-align: center;
}

.press-contact__inner { max-width: 720px; margin: 0 auto; }

.press-contact__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 14px;
}

.press-contact__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--cream);
}

.press-contact__body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  margin: 0 0 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.press-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(240, 90, 40, 0.5);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.press-contact__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.press-contact__cta:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.press-contact__note {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(250, 248, 244, 0.7);
  font-family: 'SF Mono', 'Monaco', monospace;
  letter-spacing: 0.02em;
}

.press-contact__founders {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  font-size: 14px;
  color: rgba(250, 248, 244, 0.7);
}

.press-contact__link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: filter 0.2s ease;
}

.press-contact__link:hover { filter: brightness(1.15); }

/* ==================== 404 page ==================== */

.not-found {
  background: var(--cream);
  padding: 96px 56px 120px;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found__inner {
  max-width: 640px;
  margin: 0 auto;
}

.not-found__num {
  font-family: 'Inter', sans-serif;
  font-size: 160px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--green);
  opacity: 0.92;
  margin-bottom: 18px;
}

.not-found__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--deep);
}

.not-found__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 24px;
  line-height: 1.1;
}

.not-found__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 36px;
}

.not-found__ctas {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.not-found__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.not-found__cta--primary {
  background: var(--green);
  color: #FFFFFF;
  box-shadow: 0 12px 26px -10px rgba(52, 199, 123, 0.55);
}

.not-found__cta--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.not-found__cta--ghost {
  background: transparent;
  color: var(--deep);
  border-color: rgba(26, 60, 52, 0.2);
}

.not-found__cta--ghost:hover {
  background: rgba(26, 60, 52, 0.04);
  border-color: rgba(26, 60, 52, 0.35);
}

.not-found__cta:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

@media (max-width: 740px) {
  .not-found { padding: 56px 24px 80px; }
  .not-found__num { font-size: 110px; }
  .not-found__title { font-size: 36px; }
  .not-found__aside { font-size: 24px; }
}

/* ==================== Career sub-page ==================== */

.career-hero {
  background: var(--cream);
  padding: 120px 56px;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.career-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}

.career-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 22px;
  color: var(--deep);
}

.career-hero__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 4px 0 28px;
  line-height: 1.1;
}

.career-hero__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 40px;
}

.career-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(240, 90, 40, 0.4);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.career-hero__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(240, 90, 40, 0.5);
}

.career-hero__cta:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.career-hero__note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}

.career-hero__mail {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26, 60, 52, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.career-hero__mail:hover {
  text-decoration-color: var(--deep);
}

/* ==================== Newsletter CTA ==================== */

.newsletter {
  background: var(--cream);
  padding: 96px 56px;
}

.newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}

.newsletter__title {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--deep);
  margin: 0 0 14px;
}

.newsletter__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 20px;
  line-height: 1;
}

.newsletter__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* Form */

.newsletter__form {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 40px -20px rgba(26, 60, 52, 0.18);
  text-align: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter__form.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.newsletter__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.newsletter__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 60, 52, 0.12);
  background: var(--cream);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--deep);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.newsletter__input::placeholder {
  color: rgba(26, 60, 52, 0.4);
}

.newsletter__input:hover {
  border-color: rgba(26, 60, 52, 0.25);
}

.newsletter__input:focus {
  border-color: var(--green);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(52, 199, 123, 0.15);
}

.newsletter__input.is-invalid {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 40, 0.18);
}

.newsletter__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  background: var(--green);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 24px -10px rgba(52, 199, 123, 0.55);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(52, 199, 123, 0.7);
}

.newsletter__submit:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.newsletter__submit:disabled {
  opacity: 0.85;
  cursor: wait;
}

.newsletter__submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #FFFFFF;
  animation: newsletter-spin 0.7s linear infinite;
}

.newsletter__submit.is-loading .newsletter__submit-spinner { display: inline-block; }
.newsletter__submit.is-loading .newsletter__submit-arrow { display: none; }

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

/* Honeypot — visually hidden but still in DOM for bots to find */
.newsletter__hp {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.newsletter__error {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(240, 90, 40, 0.08);
  border: 1px solid rgba(240, 90, 40, 0.25);
  color: var(--orange);
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
}

.newsletter__form.has-error .newsletter__error { display: block; }

.newsletter__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* Success state */

.newsletter__success {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow: 0 18px 40px -20px rgba(26, 60, 52, 0.18);
  border: 1.5px solid rgba(52, 199, 123, 0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter__success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter__success-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.newsletter__success-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted-2);
}

.newsletter__success-text strong {
  color: var(--deep);
  font-weight: 700;
  font-size: 16px;
}

/* ==================== Terms sub-page ==================== */

.terms-hero {
  background: var(--cream);
  padding: 96px 56px 56px;
  text-align: center;
}

.terms-hero__inner { max-width: 760px; margin: 0 auto; }

.terms-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}

.terms-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--deep);
}

.terms-hero__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 26px;
  line-height: 1.1;
}

.terms-hero__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 28px;
}

.terms-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(26, 60, 52, 0.06);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted-2);
  font-family: 'SF Mono', 'Monaco', monospace;
  letter-spacing: 0.02em;
}

.terms-hero__meta strong {
  color: var(--deep);
  font-weight: 700;
}

/* Disclaimer notice (visible until lawyer-reviewed) */

.terms-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  margin: 32px auto 0;
  max-width: 620px;
  padding: 18px 22px;
  background: rgba(240, 90, 40, 0.08);
  border: 1.5px solid rgba(240, 90, 40, 0.32);
  border-radius: 14px;
}

.terms-disclaimer__icon {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}

.terms-disclaimer__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-2);
}

.terms-disclaimer__copy strong {
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Contact section */

.terms-contact {
  background: var(--deep);
  color: var(--cream);
  padding: 96px 56px;
  text-align: center;
}

.terms-contact__inner { max-width: 720px; margin: 0 auto; }

.terms-contact__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 14px;
}

.terms-contact__title {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--cream);
}

.terms-contact__body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  margin: 0 auto 36px;
  max-width: 540px;
}

.terms-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(240, 90, 40, 0.5);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.terms-contact__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.terms-contact__cta:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.terms-contact__note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(250, 248, 244, 0.7);
  font-family: 'SF Mono', 'Monaco', monospace;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.terms-contact__divider {
  opacity: 0.5;
}

/* ==================== Support sub-page ==================== */

.support-hero {
  background: var(--cream);
  padding: 96px 56px 56px;
  text-align: center;
}

.support-hero__inner { max-width: 760px; margin: 0 auto; }

.support-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}

.support-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--deep);
}

.support-hero__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 26px;
  line-height: 1.1;
}

.support-hero__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Body */

.support-body {
  background: #FFFFFF;
  padding: 64px 56px 96px;
}

.support-body__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.support-cat__title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep);
  margin: 0 0 16px;
}

.support-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-faq__item {
  background: var(--cream);
  border-radius: 14px;
  padding: 0;
  border: 1px solid rgba(26, 60, 52, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.support-faq__item[open] {
  background: #FFFFFF;
  border-color: rgba(26, 60, 52, 0.18);
  box-shadow: 0 4px 14px -8px rgba(26, 60, 52, 0.18);
}

.support-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  user-select: none;
}

.support-faq__q::-webkit-details-marker { display: none; }
.support-faq__q::marker { display: none; content: ''; }

.support-faq__plus {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 60, 52, 0.08);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: var(--deep);
  transition: transform 0.25s ease, background 0.2s ease;
}

.support-faq__item[open] .support-faq__plus {
  transform: rotate(45deg);
  background: var(--green);
  color: #FFFFFF;
}

.support-faq__a {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-2);
}

.support-faq__item p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-2);
}

.support-faq__link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(52, 199, 123, 0.4);
  font-weight: 600;
  transition: text-decoration-color 0.2s ease;
}

.support-faq__link:hover {
  text-decoration-color: var(--green);
}

/* Contact section */

.support-contact {
  background: var(--deep);
  color: var(--cream);
  padding: 96px 56px;
  text-align: center;
}

.support-contact__inner { max-width: 820px; margin: 0 auto; }

.support-contact__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 14px;
}

.support-contact__title {
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--cream);
}

.support-contact__body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  margin: 0 auto 44px;
  max-width: 560px;
}

.support-contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.support-contact__card {
  background: rgba(250, 248, 244, 0.06);
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: 18px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: var(--cream);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.support-contact__card:hover {
  background: rgba(250, 248, 244, 0.1);
  border-color: rgba(250, 248, 244, 0.25);
  transform: translateY(-2px);
}

.support-contact__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.support-contact__card-icon svg {
  width: 22px;
  height: 22px;
}

.support-contact__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 8px;
}

.support-contact__card-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 6px;
}

.support-contact__card-sub {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.7);
}

/* ==================== Cookie banner ==================== */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  z-index: 80;
  width: min(960px, calc(100% - 40px));
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 24px 56px -16px rgba(26, 60, 52, 0.28);
  border: 1px solid rgba(26, 60, 52, 0.08);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.cookie-banner__icon {
  font-size: 32px;
  line-height: 1;
}

.cookie-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-banner__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.005em;
}

.cookie-banner__body {
  font-size: 13.5px;
  color: var(--muted-2);
  line-height: 1.45;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__link {
  font-size: 13px;
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26, 60, 52, 0.3);
  white-space: nowrap;
  transition: text-decoration-color 0.2s ease;
}

.cookie-banner__link:hover {
  text-decoration-color: var(--deep);
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--deep);
  border-color: rgba(26, 60, 52, 0.2);
}

.cookie-banner__btn--ghost:hover {
  background: rgba(26, 60, 52, 0.04);
  border-color: rgba(26, 60, 52, 0.35);
}

.cookie-banner__btn--accept {
  background: var(--green);
  color: #FFFFFF;
  box-shadow: 0 8px 18px -8px rgba(52, 199, 123, 0.55);
}

.cookie-banner__btn--accept:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cookie-banner__btn:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

@media (max-width: 740px) {
  .cookie-banner {
    width: calc(100% - 24px);
    bottom: 12px;
  }
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .cookie-banner__icon { display: none; }
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
  }
  .cookie-banner__link {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 4px;
  }
  .cookie-banner__btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
  }
}

/* ==================== Cookies sub-page ==================== */

.cookies-hero {
  background: var(--cream);
  padding: 96px 56px 56px;
  text-align: center;
}

.cookies-hero__inner { max-width: 720px; margin: 0 auto; }

.cookies-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}

.cookies-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--deep);
}

.cookies-hero__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 26px;
  line-height: 1.1;
}

.cookies-hero__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.cookies-body {
  background: #FFFFFF;
  padding: 64px 56px 96px;
}

.cookies-body__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cookies-section {
  position: relative;
}

.cookies-section__num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 10px;
}

.cookies-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 20px;
}

.cookies-section__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-2);
}

.cookies-section__body p { margin: 0; }
.cookies-section__body strong { color: var(--deep); font-weight: 700; }

.cookies-section__body code {
  background: var(--cream);
  border-radius: 6px;
  padding: 2px 8px;
  font-family: 'SF Mono', 'Monaco', monospace;
  font-size: 13px;
  color: var(--deep);
}

.cookies-table {
  background: var(--cream);
  border-radius: 16px;
  padding: 6px;
  margin-top: 6px;
}

.cookies-table__head {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 0.9fr;
  gap: 16px;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.cookies-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 0.9fr;
  gap: 16px;
  padding: 16px 18px;
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 4px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted-2);
}

.cookies-table__row:last-child { margin-bottom: 0; }

.cookies-table__row > div:first-child {
  color: var(--deep);
  font-weight: 600;
}

.cookies-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

.cookies-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookies-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}

.cookies-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Preference toggles */

.cookies-prefs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.cookies-pref {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 14px;
  cursor: pointer;
}

.cookies-pref input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cookies-pref__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookies-pref__main strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
}

.cookies-pref__main span {
  font-size: 13.5px;
  color: var(--muted-2);
  line-height: 1.5;
}

.cookies-pref__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cookies-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(26, 60, 52, 0.18);
  transition: background 0.2s ease;
}

.cookies-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.22s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cookies-pref input[type="checkbox"]:checked ~ .cookies-toggle {
  background: var(--green);
}

.cookies-pref input[type="checkbox"]:checked ~ .cookies-toggle::after {
  transform: translateX(18px);
}

.cookies-pref input[type="checkbox"]:disabled ~ .cookies-toggle {
  background: rgba(52, 199, 123, 0.5);
  cursor: not-allowed;
}

.cookies-pref__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.cookies-prefs__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 6px;
}

.cookies-prefs__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cookies-prefs__btn--ghost {
  background: transparent;
  color: var(--deep);
  border-color: rgba(26, 60, 52, 0.2);
}

.cookies-prefs__btn--ghost:hover {
  background: rgba(26, 60, 52, 0.04);
  border-color: rgba(26, 60, 52, 0.35);
}

.cookies-prefs__btn--save {
  background: var(--green);
  color: #FFFFFF;
  box-shadow: 0 10px 22px -10px rgba(52, 199, 123, 0.55);
}

.cookies-prefs__btn--save:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cookies-prefs__btn:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.cookies-prefs__saved {
  font-size: 13.5px;
  color: var(--green);
  font-weight: 600;
  text-align: right;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cookies-prefs__saved.is-visible { opacity: 1; }

/* Contact section */

.cookies-contact {
  background: var(--deep);
  color: var(--cream);
  padding: 96px 56px;
  text-align: center;
}

.cookies-contact__inner { max-width: 680px; margin: 0 auto; }

.cookies-contact__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 14px;
}

.cookies-contact__title {
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--cream);
}

.cookies-contact__body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  margin: 0 auto 32px;
  max-width: 520px;
}

.cookies-contact__actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookies-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(240, 90, 40, 0.5);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cookies-contact__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.cookies-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.cookies-contact__link:hover { filter: brightness(1.15); }

/* ==================== Privacy sub-page ==================== */

.privacy-hero {
  background: var(--cream);
  padding: 96px 56px 56px;
  text-align: center;
}

.privacy-hero__inner { max-width: 760px; margin: 0 auto; }

.privacy-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}

.privacy-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--deep);
}

.privacy-hero__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2deg);
  margin: 0 0 26px;
  line-height: 1.1;
}

.privacy-hero__body {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 28px;
}

.privacy-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(26, 60, 52, 0.06);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted-2);
  font-family: 'SF Mono', 'Monaco', monospace;
  letter-spacing: 0.02em;
}

.privacy-hero__meta strong {
  color: var(--deep);
  font-weight: 700;
}

/* Body container */

.privacy-body {
  background: #FFFFFF;
  padding: 64px 56px 96px;
}

.privacy-body__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Sections */

.privacy-section {
  position: relative;
  padding-top: 8px;
}

.privacy-section__num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 10px;
}

.privacy-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 20px;
}

.privacy-section__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-2);
}

.privacy-section__body p {
  margin: 0;
}

.privacy-section__body a {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(26, 60, 52, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.privacy-section__body a:hover {
  text-decoration-color: var(--deep);
}

.privacy-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--deep);
  margin: 8px 0 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Card (e.g., who we are) */

.privacy-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.privacy-card__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
}

.privacy-card__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.privacy-card__value {
  font-size: 15px;
  color: var(--deep);
  font-weight: 500;
}

.privacy-card__value a {
  color: var(--deep);
  text-decoration: none;
}

.privacy-card__value a:hover {
  text-decoration: underline;
}

/* Tables */

.privacy-table {
  background: var(--cream);
  border-radius: 16px;
  padding: 6px;
  margin-top: 6px;
  overflow: hidden;
}

.privacy-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.privacy-table--3col .privacy-table__head,
.privacy-table--3col .privacy-table__row {
  grid-template-columns: 0.9fr 1.6fr 0.9fr;
}

.privacy-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--deep);
}

.privacy-table__row:last-child {
  margin-bottom: 0;
}

.privacy-table__row > div:nth-child(2),
.privacy-table--3col .privacy-table__row > div:nth-child(2),
.privacy-table--3col .privacy-table__row > div:nth-child(3) {
  color: var(--muted-2);
  font-weight: 400;
}

.privacy-table__row > div:first-child {
  font-weight: 600;
}

.privacy-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
  margin-top: 4px;
}

/* Rights grid */

.privacy-rights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.privacy-right {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 14px;
}

.privacy-right__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.privacy-right__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 4px;
}

.privacy-right p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.5;
  margin: 0;
}

/* Privacy contact section */

.privacy-contact {
  background: var(--deep);
  color: var(--cream);
  padding: 96px 56px;
  text-align: center;
}

.privacy-contact__inner { max-width: 720px; margin: 0 auto; }

.privacy-contact__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 14px;
}

.privacy-contact__title {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--cream);
}

.privacy-contact__body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  margin: 0 auto 36px;
  max-width: 540px;
}

.privacy-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(240, 90, 40, 0.5);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.privacy-contact__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.privacy-contact__cta:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.privacy-contact__note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(250, 248, 244, 0.7);
  font-family: 'SF Mono', 'Monaco', monospace;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.privacy-contact__divider {
  opacity: 0.5;
}

/* ==================== Idea sub-page ==================== */

.idea-hero {
  background: var(--cream);
  padding: 80px 56px 64px;
  text-align: center;
}

.idea-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.idea-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.idea-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 22px;
  color: var(--deep);
}

.idea-hero__lead {
  font-size: 19px;
  color: var(--muted-2);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

.idea-step {
  padding: 100px 56px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
  scroll-margin-top: 90px;
}

.idea-step.is-visible { opacity: 1; transform: translateY(0); }

.idea-step--cream { background: var(--cream); }
.idea-step--deep  { background: var(--deep); color: var(--cream); }

.idea-step__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.idea-step--reverse .idea-step__inner > .idea-step__visual { order: -1; }

.idea-step__copy { position: relative; z-index: 2; }

.idea-step__num {
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--green);
  opacity: 0.85;
}

.idea-step--deep .idea-step__num { color: var(--green); opacity: 1; }

.idea-step__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.idea-step--deep .idea-step__eyebrow { color: rgba(250, 248, 244, 0.55); }

.idea-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--deep);
}

.idea-step--deep .idea-step__title { color: var(--cream); }
.idea-step--deep .idea-step__title .accent-green { color: var(--green); }

.idea-step__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-2);
  margin: 0 0 24px;
  max-width: 480px;
}

.idea-step--deep .idea-step__body { color: rgba(250, 248, 244, 0.85); }

.idea-step__aside {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-3deg);
  margin-top: 6px;
}

/* Step visuals */

.idea-step__visual {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idea-visual-empty {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  background: #EDE9DF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-map);
}

.idea-visual-empty .map-pin {
  background: rgba(26, 60, 52, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.idea-visual-cards {
  position: relative;
  width: 100%;
  height: 360px;
}

.idea-visual-cards .event-card {
  position: absolute;
  width: 240px;
}

.idea-visual-cards .event-card:nth-child(1) {
  top: 8px; left: 0; transform: rotate(-4deg);
}
.idea-visual-cards .event-card:nth-child(2) {
  top: 80px; right: 0; transform: rotate(3deg);
}
.idea-visual-cards .event-card:nth-child(3) {
  bottom: 0; left: 50%; transform: translateX(-50%) rotate(-2deg);
}

.idea-visual-phone {
  display: flex;
  justify-content: center;
}

.idea-visual-phone .phone {
  width: 240px;
  height: 522px;
}

/* Team polaroid grid */

.idea-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  padding: 18px 0;
}

.idea-team-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.idea-team-hint {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  transform: rotate(-3deg);
  margin-top: 14px;
  align-self: flex-end;
  margin-right: 18px;
  white-space: nowrap;
}

.idea-team-card {
  margin: 0;
  background: transparent;
  perspective: 1200px;
  transition: transform 0.4s var(--easing);
  cursor: pointer;
}

.idea-team-card--1 { transform: rotate(-3.5deg); }
.idea-team-card--2 { transform: rotate(2deg) translateY(28px); }
.idea-team-card--3 { transform: rotate(-1.5deg) translateY(8px); }

.idea-team-card:hover,
.idea-team-card.is-flipped {
  transform: rotate(0deg) translateY(0) scale(1.04);
  z-index: 2;
}

.idea-team-card__inner {
  position: relative;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  transform-style: preserve-3d;
}

.idea-team-card:hover .idea-team-card__inner,
.idea-team-card.is-flipped .idea-team-card__inner {
  transform: rotateY(180deg);
}

.idea-team-card__face {
  width: 100%;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 10px 10px 16px;
  box-shadow:
    0 16px 40px -10px rgba(26, 60, 52, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: box-shadow 0.4s var(--easing);
}

.idea-team-card:hover .idea-team-card__face,
.idea-team-card.is-flipped .idea-team-card__face {
  box-shadow:
    0 24px 56px -10px rgba(26, 60, 52, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.08);
}

.idea-team-card__face--front {
  position: relative;
}

.idea-team-card__face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: var(--deep);
  color: var(--cream);
  padding: 22px 18px 18px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.idea-team-card__back-name {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.idea-team-card__bio {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(250, 248, 244, 0.88);
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idea-team-card__socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.idea-team-card__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 244, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 244, 0.85);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.idea-team-card__socials a:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}

.idea-team-card__socials svg {
  width: 14px;
  height: 14px;
  display: block;
}

.idea-team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.idea-team-card__photo--1 {
  background:
    url('/images/team-1.jpg') center/cover no-repeat,
    linear-gradient(135deg, #34C77B 0%, #1A3C34 100%);
}

.idea-team-card__photo--2 {
  background:
    url('/images/team-2.jpg') center/cover no-repeat,
    linear-gradient(135deg, #F05A28 0%, #1A3C34 100%);
}

.idea-team-card__photo--3 {
  background:
    url('/images/team-3.avif') center/cover no-repeat,
    linear-gradient(135deg, #1A3C34 0%, #34C77B 100%);
}

.idea-team-card__caption {
  text-align: center;
  padding: 0 4px;
}

.idea-team-card__name {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 2px;
}

.idea-team-card__role {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Idea CTA */

.idea-cta {
  background: var(--cream);
  padding: 100px 56px 120px;
  text-align: center;
}

.idea-cta__inner { max-width: 720px; margin: 0 auto; }

.idea-cta__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}

.idea-cta__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--deep);
}

.idea-cta__body {
  font-size: 18px;
  color: var(--muted-2);
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 520px;
}

.idea-cta__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* ==================== Features ==================== */

.features {
  background: var(--cream);
  padding: 100px 56px;
}

.features__inner { max-width: 1080px; margin: 0 auto; }

.features__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.features__subtitle {
  font-size: 18px;
  color: var(--muted-2);
  line-height: 1.55;
  margin: 0;
  max-width: 460px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transform-origin: center top;
}

.features__grid.is-visible .feature-card {
  animation: spontan-feature-tap 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.features__grid.is-visible .feature-card:nth-child(1) { animation-delay: 0s; }
.features__grid.is-visible .feature-card:nth-child(2) { animation-delay: 0.25s; }
.features__grid.is-visible .feature-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes spontan-feature-tap {
  0%   { opacity: 0; transform: translateY(20px) scale(0.85); }
  60%  { opacity: 1; transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(52, 199, 123, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
}

.feature-card__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  border: 2px solid var(--green);
  opacity: 0;
  pointer-events: none;
}

.features__grid.is-visible .feature-card:nth-child(1) .feature-card__icon::before { animation: spontan-feature-icon-ripple 0.7s ease-out 0.18s; }
.features__grid.is-visible .feature-card:nth-child(2) .feature-card__icon::before { animation: spontan-feature-icon-ripple 0.7s ease-out 0.43s; }
.features__grid.is-visible .feature-card:nth-child(3) .feature-card__icon::before { animation: spontan-feature-icon-ripple 0.7s ease-out 0.68s; }

@keyframes spontan-feature-icon-ripple {
  0%   { opacity: 0; transform: scale(0.6); }
  25%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(2); }
}

.feature-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--deep);
}

.feature-card__desc {
  font-size: 15px;
  color: var(--muted-3);
  margin: 0;
  line-height: 1.5;
}

/* ==================== Why Spontan / Personas ==================== */

.why {
  background: var(--cream);
  padding: 100px 56px 80px;
}

.why__inner { max-width: 1080px; margin: 0 auto; }

.why__head {
  text-align: center;
  margin-bottom: 56px;
}

.why__lead {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.55;
  max-width: 540px;
  margin: 16px auto 0;
}

.why__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.why-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 180px;
  max-width: 220px;
  opacity: 0;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

.why-card:nth-child(1) { --rot: -1.5deg; }
.why-card:nth-child(2) { --rot: 1deg; }
.why-card:nth-child(3) { --rot: -0.5deg; }
.why-card:nth-child(4) { --rot: 1.5deg; }
.why-card:nth-child(5) { --rot: -1deg; }
.why-card:nth-child(6) { --rot: 0.5deg; }

.why-card--more {
  background: rgba(52, 199, 123, 0.08);
  box-shadow: 0 4px 16px rgba(52, 199, 123, 0.12);
  flex-basis: 240px;
  max-width: 280px;
}

.why-card--more .why-card__text {
  font-style: italic;
  color: var(--deep);
}

.why__cards.is-visible .why-card {
  animation: spontan-why-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.why__cards.is-visible .why-card:nth-child(1) { animation-delay: 0s; }
.why__cards.is-visible .why-card:nth-child(2) { animation-delay: 0.1s; }
.why__cards.is-visible .why-card:nth-child(3) { animation-delay: 0.2s; }
.why__cards.is-visible .why-card:nth-child(4) { animation-delay: 0.3s; }
.why__cards.is-visible .why-card:nth-child(5) { animation-delay: 0.4s; }
.why__cards.is-visible .why-card:nth-child(6) { animation-delay: 0.55s; }

@keyframes spontan-why-rise {
  0%   { opacity: 0; transform: rotate(var(--rot, 0deg)); }
  100% { opacity: 1; transform: rotate(var(--rot, 0deg)); }
}

.why-card:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px -10px rgba(26, 60, 52, 0.18);
  z-index: 2;
}

.why-card__icon {
  font-size: 32px;
  line-height: 1;
}

.why-card__text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ==================== App gallery ==================== */

.gallery {
  background: var(--cream);
  padding: 100px 0 80px;
  overflow: hidden;
}

.gallery__head {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 56px;
  text-align: center;
}

.gallery__strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 56px;
  flex-wrap: wrap;
}

.gallery__phone {
  width: 220px;
  opacity: 0;
  transform: translateY(80px) rotate(var(--rot, 0deg));
}

.gallery__phone:nth-child(1) { --rot: -2deg; }
.gallery__phone:nth-child(2) { --rot: 1.5deg; }
.gallery__phone:nth-child(3) { --rot: -1deg; }
.gallery__phone:nth-child(4) { --rot: 2deg; }

.gallery__strip.is-visible .gallery__phone {
  animation: spontan-phone-fly 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gallery__strip.is-visible .gallery__phone:nth-child(1) { animation-delay: 0s; }
.gallery__strip.is-visible .gallery__phone:nth-child(2) { animation-delay: 0.15s; }
.gallery__strip.is-visible .gallery__phone:nth-child(3) { animation-delay: 0.3s; }
.gallery__strip.is-visible .gallery__phone:nth-child(4) { animation-delay: 0.45s; }

@keyframes spontan-phone-fly {
  0%   { opacity: 0; transform: translateY(80px) rotate(var(--rot, 0deg)); }
  60%  { opacity: 1; transform: translateY(-6px) rotate(var(--rot, 0deg)); }
  100% { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }
}

.gallery .phone__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
}

.gallery__strip.is-visible .gallery__phone:nth-child(1) .phone__screen::before { animation: spontan-screen-wake 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards; }
.gallery__strip.is-visible .gallery__phone:nth-child(2) .phone__screen::before { animation: spontan-screen-wake 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards; }
.gallery__strip.is-visible .gallery__phone:nth-child(3) .phone__screen::before { animation: spontan-screen-wake 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards; }
.gallery__strip.is-visible .gallery__phone:nth-child(4) .phone__screen::before { animation: spontan-screen-wake 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards; }

@keyframes spontan-screen-wake {
  0%   { opacity: 1; background-color: #000; }
  45%  { opacity: 1; background-color: #1a1a1a; }
  60%  { opacity: 0.85; background-color: rgba(255, 255, 255, 0.85); }
  100% { opacity: 0; background-color: rgba(255, 255, 255, 0); }
}

.phone {
  width: 100%;
  height: 478px;
  background: var(--ink);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-phone);
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone__screen--1 { background: #EDE9DF url('/images/map.jpg') center top / cover no-repeat; }
.phone__screen--2 { background: #FFFFFF url('/images/event.jpg') center top / cover no-repeat; }
.phone__screen--3 { background: var(--cream) url('/images/buying.jpg') center top / cover no-repeat; }
.phone__screen--4 { background: var(--deep) url('/images/ticket.jpg') center top / cover no-repeat; }

.phone__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 10px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.phone__label { display: none; }

.gallery__caption { text-align: center; margin-top: 16px; }

.gallery__step {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
}

.gallery__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.gallery__sub {
  font-size: 13px;
  color: var(--muted);
}

/* ==================== Mid CTA ==================== */

.mid-cta {
  background: var(--cream);
  padding: 40px 56px 80px;
}

.mid-cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--deep);
  color: var(--cream);
  border-radius: 28px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.mid-cta.is-visible .mid-cta__inner {
  animation: spontan-mid-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes spontan-mid-rise {
  to { opacity: 1; transform: translateY(0); }
}

.mid-cta__blob-green {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(52, 199, 123, 0.18);
}

.mid-cta__blob-orange {
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(240, 90, 40, 0.18);
}

.mid-cta__copy { position: relative; z-index: 1; }

.mid-cta__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}

.mid-cta__title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.mid-cta__body {
  font-size: 16px;
  color: rgba(250, 248, 244, 0.8);
  margin: 0;
  line-height: 1.5;
  max-width: 460px;
}

.mid-cta__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ==================== Social proof ==================== */

.social {
  background: var(--deep);
  color: var(--cream);
  padding: 100px 56px;
}

.social__inner { max-width: 1080px; margin: 0 auto; }

.social__head { text-align: center; margin-bottom: 56px; }

.social__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(250, 248, 244, 0.72);
  margin: 0 auto 16px;
  max-width: 620px;
  line-height: 1.45;
}

.social__title { color: var(--cream); }

.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial {
  background: #FFFFFF;
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
}

.testimonial--1 { transform: rotate(-1.2deg); }
.testimonial--2 { background: var(--green); transform: rotate(0); }
.testimonial--3 { transform: rotate(1deg); }

.testimonial {
  transition: opacity 0.6s ease 0.4s, filter 0.6s ease 0.4s;
}

.social.is-visible .testimonial {
  opacity: 0.55;
  filter: saturate(0.7);
}

.social.is-visible .testimonial:hover {
  opacity: 1;
  filter: saturate(1);
  transition-delay: 0s;
}

.testimonial__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--deep);
  text-decoration: line-through 2px transparent;
  text-decoration-skip-ink: none;
  transition: text-decoration-color 0.6s ease 0.5s;
}

.social.is-visible .testimonial__text {
  text-decoration-color: var(--orange);
}

.social__note {
  margin: 0 auto 48px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: rotate(-2deg) translateY(8px);
  transition: opacity 0.5s ease, transform 0.6s var(--easing);
  max-width: 640px;
}

.social.is-visible .social__note {
  opacity: 1;
  transform: rotate(-2deg) translateY(0);
  transition-delay: 1.2s;
}

.testimonial__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.testimonial__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
}

.testimonial__area {
  font-size: 11px;
  color: var(--muted);
}

.testimonial__stars {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.social__stats {
  background: rgba(250, 248, 244, 0.06);
  border-radius: 20px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat { text-align: center; }

.stat__num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}

.stat .trust-strike--social {
  display: inline-block;
}

.stat .trust-strike--social::after {
  height: 4px;
  background: var(--orange);
  border-radius: 3px;
}

.social.is-visible .trust-strike--social::after {
  animation: trust-strike-grow 0.55s cubic-bezier(0.55, 0, 0.45, 1) 0.5s forwards;
}

.stat__note {
  margin-top: 8px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: rotate(-2deg) translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s var(--easing);
  line-height: 1.2;
}

.social.is-visible .stat__note {
  opacity: 1;
  transform: rotate(-2deg) translateY(0);
  transition-delay: 1.5s;
}

.stat__label {
  font-size: 12px;
  color: rgba(250, 248, 244, 0.7);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ==================== FAQ ==================== */

.faq {
  background: var(--cream);
  padding: 80px 56px;
}

.faq__inner { max-width: 760px; margin: 0 auto; }

.faq__head { text-align: center; margin-bottom: 48px; }

.faq__title {
  font-size: 48px;
}

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.faq__item:hover { box-shadow: var(--shadow-card); }

.faq__summary {
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.faq__summary::-webkit-details-marker { display: none; }

.faq__plus {
  font-size: 22px;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__plus { transform: rotate(45deg); }

.faq__answer {
  font-size: 15px;
  color: var(--muted-3);
  margin: 12px 0 0;
  line-height: 1.55;
}

/* ==================== Final CTA ==================== */

.final-cta {
  background: var(--orange);
  color: var(--cream);
  padding: 120px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__deco {
  position: absolute;
  border-radius: 50%;
}

.final-cta__deco--1 { top: 20%; left: 12%; width: 14px; height: 14px; background: var(--cream); opacity: 0.5; }
.final-cta__deco--2 { top: 60%; left: 8%; width: 10px; height: 10px; background: var(--green); border: 2px solid var(--cream); }
.final-cta__deco--3 { top: 30%; right: 14%; width: 18px; height: 18px; background: var(--deep); border: 2px solid var(--cream); }
.final-cta__deco--4 { top: 70%; right: 10%; width: 12px; height: 12px; background: var(--cream); opacity: 0.6; }

.final-cta__inner { position: relative; max-width: 720px; margin: 0 auto; }

.final-cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(250, 248, 244, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.final-cta__chip-dot {
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
}

.final-cta__title {
  font-family: 'Inter', sans-serif;
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--cream);
}

.final-cta__body {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 36px;
  color: rgba(250, 248, 244, 0.95);
  max-width: 520px;
}

.final-cta__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.final-cta__note {
  font-size: 14px;
  color: rgba(250, 248, 244, 0.85);
  font-weight: 500;
}

/* ==================== Footer ==================== */

.site-footer {
  background: var(--deep);
  color: var(--cream);
  padding: 56px 56px 32px;
}

.site-footer__inner { max-width: 1080px; margin: 0 auto; }

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.site-footer__brand img { width: 28px; height: 28px; }

.site-footer__brand-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.site-footer__tagline {
  font-size: 14px;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
}

.site-footer__contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.site-footer__contact a {
  color: rgba(250, 248, 244, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  width: max-content;
}

.site-footer__contact a:hover {
  color: var(--cream);
}

.site-footer__col-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: rgba(250, 248, 244, 0.55);
}

.site-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col-list a {
  font-size: 14px;
  color: rgba(250, 248, 244, 0.85);
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-footer__col-list a:hover { color: var(--cream); }

.site-footer__bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__copyright {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.55);
}

.site-footer__socials {
  display: flex;
  gap: 12px;
}

.site-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 244, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(250, 248, 244, 0.75);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__social svg {
  width: 15px;
  height: 15px;
  display: block;
}

.site-footer__social:hover {
  border-color: rgba(250, 248, 244, 0.6);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Floating popup tooltip (used by YouTube link) */

.footer-popup {
  position: fixed;
  z-index: 100;
  background: var(--cream);
  color: var(--deep);
  border: 2px solid var(--orange);
  border-radius: 14px;
  padding: 14px 22px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: calc(100vw - 32px);
  box-shadow: 0 12px 30px rgba(26, 60, 52, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -90%) rotate(-2deg);
  transition: opacity 0.3s ease, transform 0.4s var(--easing);
}

.footer-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, -100%) rotate(-2deg);
}

/* Above-anchor variant (default): downward arrow */

.footer-popup::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--orange);
}

.footer-popup::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--cream);
  z-index: 1;
}

/* Below-anchor variant: upward arrow */

.footer-popup--below {
  transform: translate(-50%, -10%) rotate(-2deg);
}

.footer-popup--below.is-visible {
  transform: translate(-50%, 0) rotate(-2deg);
}

.footer-popup--below::after {
  bottom: auto;
  top: -10px;
  border-top: 0;
  border-bottom: 10px solid var(--orange);
}

.footer-popup--below::before {
  bottom: auto;
  top: -7px;
  border-top: 0;
  border-bottom: 8px solid var(--cream);
}

/* ==================== Animations ==================== */

@keyframes spontan-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes spontan-pin-pop {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  60%  { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
  80%  { transform: translate(-50%, -50%) scale(0.85); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes spontan-pin-ring {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  30%  { opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

@keyframes spontan-line-draw {
  from { stroke-dashoffset: 200; opacity: 0; }
  30%  { opacity: 1; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes spontan-card-fly-1 {
  0%   { transform: translate(60%, 120px) rotate(0deg) scale(0.5); opacity: 0; }
  70%  { transform: translate(0, 0) rotate(-7deg) scale(1.03); opacity: 1; }
  100% { transform: translate(0, 0) rotate(-5deg) scale(1); opacity: 1; }
}

@keyframes spontan-card-fly-2 {
  0%   { transform: translate(-60%, 120px) rotate(0deg) scale(0.5); opacity: 0; }
  70%  { transform: translate(0, 0) rotate(6deg) scale(1.03); opacity: 1; }
  100% { transform: translate(0, 0) rotate(4deg) scale(1); opacity: 1; }
}

@keyframes spontan-card-fly-3 {
  0%   { transform: translateX(-50%) translateY(-160px) rotate(0deg) scale(0.5); opacity: 0; }
  70%  { transform: translateX(-50%) translateY(0) rotate(-5deg) scale(1.03); opacity: 1; }
  100% { transform: translateX(-50%) translateY(0) rotate(-3deg) scale(1); opacity: 1; }
}

/* ==================== Organizers sub-page ==================== */

.accent-orange { color: var(--orange); }
.accent-deep { color: var(--deep); }

.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 14px;
  padding: 16px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(0.98); transition-duration: 0.08s; }

.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--outline-deep {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}

.btn--outline-cream {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Org hero */

.org-hero {
  background: var(--cream);
  padding: 80px 56px 96px;
}

.org-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.org-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(52, 199, 123, 0.12);
  color: var(--deep);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
}

.org-hero__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.org-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 24px;
  color: var(--deep);
}

.org-hero__subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted-2);
  margin: 0 0 36px;
  max-width: 540px;
}

.org-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.org-hero__trust {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Hero dashboard mock */

.org-hero__dashboard {
  position: relative;
  background: var(--deep);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(26, 60, 52, 0.45);
  transform: rotate(0.5deg);
}

.org-dashmock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.org-dashmock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.org-dashmock__dot--red { background: var(--orange); }
.org-dashmock__dot--yellow { background: #FFB800; }
.org-dashmock__dot--green { background: var(--green); }

.org-dashmock__url {
  flex: 1;
  text-align: right;
  font-size: 11px;
  color: rgba(250, 248, 244, 0.5);
  font-family: 'SF Mono', 'Monaco', monospace;
}

.org-dashmock__panel {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px;
}

.org-dashmock__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.org-dashmock__eyebrow {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.org-dashmock__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.org-dashmock__live {
  padding: 4px 10px;
  background: rgba(52, 199, 123, 0.18);
  color: var(--deep);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.org-dashmock__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: spontan-pulse 2s ease-in-out infinite;
}

.org-dashmock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.org-dashmock__stat {
  padding: 14px 12px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid rgba(26, 60, 52, 0.08);
}

.org-dashmock__stat-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.org-dashmock__stat-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.org-dashmock__stat-value--green { color: var(--green); }
.org-dashmock__stat-value--deep { color: var(--deep); }
.org-dashmock__stat-value--orange { color: var(--orange); }

.org-dashmock__stat-sub {
  font-size: 10px;
  color: #888;
  margin-top: 4px;
}

.org-dashmock__chart {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(26, 60, 52, 0.08);
}

.org-dashmock__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.org-dashmock__chart-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--deep);
}

.org-dashmock__chart-sub {
  font-size: 10px;
  color: #888;
}

.org-dashmock__chart-svg {
  width: 100%;
  height: 60px;
  display: block;
}

.org-dashmock__notif {
  position: absolute;
  right: -28px;
  bottom: 60px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-2deg);
}

.org-dashmock__notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
}

.org-dashmock__notif-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep);
}

.org-dashmock__notif-sub {
  font-size: 10px;
  color: var(--muted);
}

/* Org problem */

.org-problem {
  background: var(--deep);
  color: var(--cream);
  padding: 96px 56px;
}

.org-problem__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.org-problem__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 14px;
}

.org-problem__title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--cream);
}

.org-problem__subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(250, 248, 244, 0.75);
  max-width: 660px;
  margin: 0 auto 64px;
}

.org-problem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.org-problem__stat {
  padding: 40px 28px;
  border-top: 2px solid;
  text-align: left;
}

.org-problem__stat--orange { border-color: var(--orange); }
.org-problem__stat--orange .org-problem__stat-num { color: var(--orange); }
.org-problem__stat--yellow { border-color: #FFB800; }
.org-problem__stat--yellow .org-problem__stat-num { color: #FFB800; }
.org-problem__stat--cream { border-color: rgba(250, 248, 244, 0.4); }
.org-problem__stat--cream .org-problem__stat-num { color: rgba(250, 248, 244, 0.4); }

.org-problem__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}

.org-problem__stat-label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(250, 248, 244, 0.75);
}

.org-problem__stat-note {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 14px;
  line-height: 1.15;
  transform: rotate(-2.5deg);
  transform-origin: left center;
  display: inline-block;
}

/* Org how it works */

.org-how {
  background: var(--cream);
  padding: 96px 56px;
}

.org-how__inner { max-width: 1280px; margin: 0 auto; }

.org-how__head {
  text-align: center;
  margin-bottom: 64px;
}

.org-how__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.org-how__title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: var(--deep);
}

.org-how__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.org-how__card {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(26, 60, 52, 0.08);
}

.org-how__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 28px;
}

.org-how__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--deep);
  line-height: 1.15;
}

.org-how__card-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted-3);
  margin: 0;
}

/* Org dashboard section */

.org-dash {
  background: var(--cream);
  padding: 40px 56px 96px;
}

.org-dash__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.org-dash__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.org-dash__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--deep);
}

.org-dash__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted-2);
  margin: 0 0 32px;
  max-width: 480px;
}

.org-dash__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.org-dash__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--ink);
}

.org-dash__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 199, 123, 0.18);
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.org-dash__panel {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(26, 60, 52, 0.08);
  box-shadow: 0 20px 50px -20px rgba(26, 60, 52, 0.18);
}

.org-dash__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
}

.org-dash__panel-eyebrow {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.org-dash__panel-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.org-dash__panel-delta {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

.org-dash__panel-tabs {
  display: flex;
  gap: 6px;
}

.org-dash__tab {
  padding: 6px 14px;
  background: transparent;
  color: var(--muted);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.org-dash__tab.is-active {
  background: var(--deep);
  color: var(--cream);
}

.org-dash__chart {
  width: 100%;
  height: 160px;
  display: block;
  margin-bottom: 20px;
}

.org-dash__list {
  display: grid;
  gap: 10px;
}

.org-dash__row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 0.6fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 10px;
}

.org-dash__row-name { font-size: 13px; font-weight: 700; color: var(--deep); }
.org-dash__row-date { font-size: 12px; color: var(--muted); }

.org-dash__row-bar {
  height: 6px;
  background: rgba(26, 60, 52, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.org-dash__row-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.org-dash__row-sold {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

/* Org pricing */

.org-pricing {
  background: var(--cream);
  padding: 96px 56px;
}

.org-pricing__inner {
  max-width: 720px;
  margin: 0 auto;
}

.org-pricing__head { text-align: center; }

.org-pricing__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.org-pricing__title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--deep);
}

.org-pricing__subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted-2);
  margin: 0 0 56px;
}

.org-plan {
  background: var(--deep);
  color: var(--cream);
  border-radius: 24px;
  padding: 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.org-plan__bg-percent {
  position: absolute;
  right: -30px;
  top: -40px;
  font-size: 280px;
  font-weight: 800;
  color: rgba(240, 90, 40, 0.08);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.org-plan__inner { position: relative; z-index: 1; }

.org-plan__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.org-plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.org-plan__price {
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
}

.org-plan__unit {
  font-size: 18px;
  color: rgba(250, 248, 244, 0.7);
}

.org-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.org-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(250, 248, 244, 0.92);
  line-height: 1.4;
}

.org-plan__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52, 199, 123, 0.2);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.org-plan__cta {
  width: 100%;
  padding: 18px 28px;
  background: var(--orange);
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.org-plan__cta:hover { filter: brightness(1.05); transform: translateY(-2px); }
.org-plan__cta:active { transform: translateY(1px) scale(0.98); transition-duration: 0.08s; }

.org-plan__note {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.55);
  margin-top: 14px;
  text-align: center;
}

/* Org testimonials */

.org-tests {
  background: var(--cream);
  padding: 96px 56px;
}

.org-tests__inner { max-width: 1280px; margin: 0 auto; }

.org-tests__head {
  text-align: center;
  margin-bottom: 56px;
}

.org-tests__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.org-tests__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: var(--deep);
}

.org-tests__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.org-test {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(26, 60, 52, 0.08);
}

.org-test__quote {
  font-family: 'Caveat', cursive;
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.4;
}

.org-test__skel-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
}

.org-test__skel-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skel-line,
.skel-avatar {
  display: block;
  background: rgba(26, 60, 52, 0.08);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.skel-line {
  height: 14px;
  width: 100%;
}

.skel-line--short { width: 60%; }
.skel-line--name { width: 90px; height: 12px; }
.skel-line--role { width: 130px; height: 10px; border-radius: 4px; }

.skel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skel-line::after,
.skel-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: spontan-skel-shimmer 1.8s ease-in-out infinite;
}

.skel-line:nth-of-type(2)::after { animation-delay: 0.2s; }
.skel-line:nth-of-type(3)::after { animation-delay: 0.4s; }

@keyframes spontan-skel-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.org-tests__note {
  margin: 48px auto 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: rotate(-2deg) translateY(8px);
  transition: opacity 0.5s ease, transform 0.6s var(--easing);
  max-width: 640px;
}

.org-tests.is-visible .org-tests__note {
  opacity: 1;
  transform: rotate(-2deg) translateY(0);
  transition-delay: 1.2s;
}

.org-test__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.org-test__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.org-test__avatar--green { background: var(--green); }
.org-test__avatar--orange { background: var(--orange); }
.org-test__avatar--deep { background: var(--deep); }

.org-test__name { font-size: 14px; font-weight: 700; color: var(--deep); }
.org-test__role { font-size: 12px; color: var(--muted); }

/* Org FAQ */

.org-faq {
  background: var(--cream);
  padding: 40px 56px 96px;
}

.org-faq__inner { max-width: 820px; margin: 0 auto; }

.org-faq__head { text-align: center; margin-bottom: 48px; }

.org-faq__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.org-faq__title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--deep);
}

.org-faq__list {
  display: grid;
  gap: 12px;
}

.org-faq__item {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(26, 60, 52, 0.08);
  overflow: hidden;
  cursor: pointer;
}

.org-faq__summary {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
  list-style: none;
  cursor: pointer;
}

.org-faq__summary::-webkit-details-marker { display: none; }

.org-faq__plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 60, 52, 0.06);
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.org-faq__item[open] .org-faq__plus {
  background: var(--orange);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.org-faq__answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
  margin: 0;
}

/* Org final CTA */

.org-finalcta {
  background: var(--orange);
  padding: 96px 56px;
}

.org-finalcta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.org-finalcta__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.org-finalcta__title {
  font-family: 'Inter', sans-serif;
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 24px;
  color: #FFFFFF;
}

.org-finalcta__body {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 40px;
}

.org-finalcta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.org-finalcta__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== Responsive ==================== */

@media (max-width: 980px) {
  .hero__top { padding: 56px 24px 60px; }
  .hero__title { font-size: 64px; }
  .hero__map { height: 420px; }
  .hero__card--1 { left: 10px; }
  .hero__card--2 { right: 10px; }
  .hero__arrow { height: 320px; }
  .hero__arrow-wrap { height: 340px; }
  .hero__arrow-caption { left: calc(50% + 60px); top: 100px; font-size: 22px; }

  .section-title { font-size: 44px; }
  .faq__title { font-size: 36px; }

  .features, .social, .faq, .final-cta { padding-left: 24px; padding-right: 24px; }
  .gallery__head, .gallery__strip { padding-left: 24px; padding-right: 24px; }
  .mid-cta { padding: 40px 24px 60px; }
  .mid-cta__inner { padding: 36px 28px; }

  .idea-hero { padding: 64px 24px 48px; }
  .idea-hero__title { font-size: 52px; }
  .idea-step { padding: 64px 24px; }
  .idea-step__inner { grid-template-columns: 1fr; gap: 36px; }
  .idea-step__title { font-size: 38px; }
  .idea-step__num { font-size: 72px; }
  .idea-step--reverse .idea-step__inner > .idea-step__visual { order: 0; }
  .idea-cta { padding: 64px 24px 80px; }
  .idea-cta__title { font-size: 40px; }
  .career-hero { padding: 80px 24px; min-height: calc(100vh - 160px); }
  .career-hero__title { font-size: 42px; }
  .career-hero__aside { font-size: 24px; }

  .press-hero { padding: 64px 24px 48px; }
  .press-hero__title { font-size: 44px; }
  .press-section { padding: 48px 24px; }
  .press-section__title { font-size: 30px; }
  .press-boilerplate { padding: 28px 24px; }
  .press-facts { grid-template-columns: 1fr 1fr; }
  .press-brand { grid-template-columns: 1fr; gap: 16px; }
  .press-brand__palette { grid-template-columns: 1fr 1fr; }
  .press-contact { padding: 64px 24px; }
  .press-contact__title { font-size: 36px; }

  .newsletter { padding: 64px 24px; }
  .newsletter__title { font-size: 38px; }
  .newsletter__aside { font-size: 22px; }
  .newsletter__body { font-size: 16px; }
  .newsletter__row { flex-direction: column; gap: 10px; }
  .newsletter__submit { width: 100%; padding: 14px 22px; justify-content: center; }
  .newsletter__success { flex-direction: row; padding: 22px; }

  .terms-hero { padding: 64px 24px 40px; }
  .terms-hero__title { font-size: 40px; }
  .terms-hero__aside { font-size: 24px; }
  .terms-disclaimer { padding: 14px 16px; gap: 10px; }
  .terms-contact { padding: 64px 24px; }
  .terms-contact__title { font-size: 36px; }

  .support-hero { padding: 64px 24px 40px; }
  .support-hero__title { font-size: 40px; }
  .support-hero__aside { font-size: 24px; }
  .support-body { padding: 40px 24px 64px; }
  .support-body__inner { gap: 36px; }
  .support-cat__title { font-size: 20px; }
  .support-faq__q { padding: 16px 18px; font-size: 15px; }
  .support-faq__a, .support-faq__item p { padding: 0 18px 18px; }
  .support-contact { padding: 64px 24px; }
  .support-contact__title { font-size: 36px; }
  .support-contact__cards { grid-template-columns: 1fr; gap: 12px; }

  .cookies-hero { padding: 64px 24px 40px; }
  .cookies-hero__title { font-size: 40px; }
  .cookies-hero__aside { font-size: 24px; }
  .cookies-body { padding: 40px 24px 64px; }
  .cookies-body__inner { gap: 44px; }
  .cookies-section__title { font-size: 24px; }
  .cookies-table__head { display: none; }
  .cookies-table__row { grid-template-columns: 1fr; gap: 6px; }
  .cookies-pref { grid-template-columns: 1fr; gap: 14px; }
  .cookies-pref__toggle { flex-direction: row; align-self: flex-start; }
  .cookies-prefs__actions { flex-direction: column; align-items: stretch; }
  .cookies-prefs__btn { justify-content: center; }
  .cookies-contact { padding: 64px 24px; }
  .cookies-contact__title { font-size: 36px; }
  .cookies-contact__actions { flex-direction: column; gap: 14px; }

  .privacy-hero { padding: 64px 24px 40px; }
  .privacy-hero__title { font-size: 40px; }
  .privacy-hero__aside { font-size: 24px; }
  .privacy-body { padding: 40px 24px 64px; }
  .privacy-body__inner { gap: 44px; }
  .privacy-section__title { font-size: 26px; }
  .privacy-card__row { grid-template-columns: 1fr; gap: 4px; }
  .privacy-table__head,
  .privacy-table__row { grid-template-columns: 1fr; gap: 6px; }
  .privacy-table__head { display: none; }
  .privacy-table--3col .privacy-table__head,
  .privacy-table--3col .privacy-table__row { grid-template-columns: 1fr; }
  .privacy-rights { grid-template-columns: 1fr; }
  .privacy-contact { padding: 64px 24px; }
  .privacy-contact__title { font-size: 36px; }

  .idea-visual-cards { height: 320px; }
  .idea-visual-cards .event-card { width: 200px; }
  .idea-team-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .idea-team-card__name { font-size: 18px; }
  .idea-team-card--1 { transform: rotate(-2deg); }
  .idea-team-card--2 { transform: rotate(1.5deg) translateY(14px); }
  .idea-team-card--3 { transform: rotate(-1deg) translateY(4px); }

  /* Phone back face: name + socials only, drop bio for breathing room */
  .idea-team-card__bio { display: none; }

  .idea-team-card__face--back {
    justify-content: center;
    gap: 22px;
    padding: 18px 12px;
  }

  .idea-team-card__back-name {
    font-size: 22px;
    line-height: 1.05;
  }

  .idea-team-card__socials {
    gap: 12px;
  }

  .idea-team-card__socials a {
    width: 38px;
    height: 38px;
  }

  .idea-team-card__socials svg {
    width: 16px;
    height: 16px;
  }

  /* Org responsive */
  .org-hero { padding: 56px 24px 64px; }
  .org-hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .org-hero__title { font-size: 48px; }
  .org-hero__dashboard { transform: none; }
  .org-dashmock__notif { right: 12px; }
  .org-problem { padding: 64px 24px; }
  .org-problem__title, .org-how__title, .org-pricing__title, .org-tests__title { font-size: 40px; }
  .org-problem__stats, .org-how__cards, .org-tests__grid { grid-template-columns: 1fr; }
  .org-how { padding: 64px 24px; }
  .org-dash { padding: 24px 24px 64px; }
  .org-dash__inner { grid-template-columns: 1fr; gap: 40px; }
  .org-dash__title { font-size: 38px; }
  .org-pricing { padding: 64px 24px; }
  .org-plan { padding: 32px 24px; }
  .org-plan__price { font-size: 72px; }
  .org-plan__features { grid-template-columns: 1fr; }
  .org-tests { padding: 64px 24px; }
  .org-faq { padding: 24px 24px 64px; }
  .org-faq__title { font-size: 36px; }
  .org-finalcta { padding: 64px 24px; }
  .org-finalcta__title { font-size: 48px; }
  .org-dash__row { grid-template-columns: 1.4fr 0.6fr 1fr 0.5fr; gap: 8px; }

  .features__head { grid-template-columns: 1fr; gap: 16px; }

  .why { padding: 64px 24px; }
  .why__cards { gap: 12px; }
  .why-card { padding: 18px 16px; gap: 10px; flex-basis: calc(50% - 6px); max-width: none; }
  .why-card--more { flex-basis: calc(50% - 6px); max-width: none; }
  .features__grid { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: 1fr; }
  .social__stats { grid-template-columns: repeat(2, 1fr); }
  .mid-cta__inner { grid-template-columns: 1fr; gap: 28px; }

  .site-footer { padding: 40px 24px 24px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }

  .site-header__inner { padding: 14px 18px; }
  .site-header.is-scrolled .site-header__inner { padding: 8px 14px 8px 16px; }
  .site-header__nav { display: none; }
  .site-header__right { display: none; }
  .site-header__burger { display: block; }

  .final-cta { padding: 80px 24px; }
  .final-cta__title { font-size: 60px; }
}

@media (max-width: 600px) {
  .hero__title { font-size: 48px; }
  .hero__subtitle { font-size: 17px; }
  .hero__map { height: 360px; }
  .hero__card--1, .hero__card--2 { display: none; }
  .hero__card--3 { bottom: -40px; }
  .event-card { width: 220px; }

  .section-title { font-size: 36px; }
  .final-cta__title { font-size: 44px; }

  .hero__badges { flex-direction: column; align-items: center; }
  .final-cta__badges { flex-direction: column; align-items: center; }

  .gallery__phone:nth-child(n) { transform: none; }

  .site-footer__top { grid-template-columns: 1fr; }
  .social__stats { grid-template-columns: 1fr 1fr; }
}

/* ============ Arrangører page — scroll/entrance animations ============ */

/* --- Hero: copy slides in from left, dashboard from right --- */

.org-hero__copy > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.7s var(--easing);
}

.org-hero.is-visible .org-hero__copy > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.org-hero.is-visible .org-hero__copy > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.org-hero.is-visible .org-hero__copy > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.org-hero.is-visible .org-hero__copy > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.org-hero.is-visible .org-hero__copy > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

.org-hero__dashboard {
  opacity: 0;
  transform: translateY(40px) rotate(-3deg) scale(0.96);
  transition: opacity 0.85s ease, transform 0.95s var(--easing);
}

.org-hero.is-visible .org-hero__dashboard {
  opacity: 1;
  transform: translateY(0) rotate(-3deg) scale(1);
  transition-delay: 0.2s;
}

/* Notification chip pops in last */
.org-dashmock__notif {
  opacity: 0;
  transform: translateX(20px) scale(0.85);
  transition: opacity 0.45s ease, transform 0.5s var(--easing);
}

.org-hero.is-visible .org-dashmock__notif {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 1.1s;
}

/* Chart bars grow up from baseline */
.org-dashmock__chart-svg rect {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s var(--easing);
}

.org-hero.is-visible .org-dashmock__chart-svg rect {
  transform: scaleY(1);
}

.org-hero.is-visible .org-dashmock__chart-svg rect:nth-child(1) { transition-delay: 0.65s; }
.org-hero.is-visible .org-dashmock__chart-svg rect:nth-child(2) { transition-delay: 0.75s; }
.org-hero.is-visible .org-dashmock__chart-svg rect:nth-child(3) { transition-delay: 0.85s; }
.org-hero.is-visible .org-dashmock__chart-svg rect:nth-child(4) { transition-delay: 0.95s; }
.org-hero.is-visible .org-dashmock__chart-svg rect:nth-child(5) { transition-delay: 1.05s; }
.org-hero.is-visible .org-dashmock__chart-svg rect:nth-child(6) { transition-delay: 1.15s; }

/* --- Problem: 3 stat cards stagger up --- */

.org-problem__eyebrow,
.org-problem__title,
.org-problem__subtitle {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.7s var(--easing);
}

.org-problem.is-visible .org-problem__eyebrow { opacity: 1; transform: translateY(0); }
.org-problem.is-visible .org-problem__title { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.org-problem.is-visible .org-problem__subtitle { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }

.org-problem__stat {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.65s ease, transform 0.75s var(--easing);
}

.org-problem.is-visible .org-problem__stat:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.32s; }
.org-problem.is-visible .org-problem__stat:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.46s; }
.org-problem.is-visible .org-problem__stat:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.6s; }

/* --- How it works: 3 cards with subtle tap-pop --- */

.org-how__eyebrow,
.org-how__title {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.7s var(--easing);
}

.org-how.is-visible .org-how__eyebrow { opacity: 1; transform: translateY(0); }
.org-how.is-visible .org-how__title { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

.org-how__card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.75s var(--easing);
}

.org-how.is-visible .org-how__card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.org-how.is-visible .org-how__card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
.org-how.is-visible .org-how__card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }

.org-how.is-visible .org-how__num {
  animation: spontan-num-pop 0.5s var(--easing) both;
}

.org-how.is-visible .org-how__card:nth-child(1) .org-how__num { animation-delay: 0.55s; }
.org-how.is-visible .org-how__card:nth-child(2) .org-how__num { animation-delay: 0.69s; }
.org-how.is-visible .org-how__card:nth-child(3) .org-how__num { animation-delay: 0.83s; }

@keyframes spontan-num-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Dashboard section: copy slides in, panel fades in, chart draws, bars fill --- */

.org-dash__copy > * {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.65s ease, transform 0.7s var(--easing);
}

.org-dash.is-visible .org-dash__copy > *:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.org-dash.is-visible .org-dash__copy > *:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.org-dash.is-visible .org-dash__copy > *:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.org-dash.is-visible .org-dash__copy > *:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }

.org-dash__panel {
  opacity: 0;
  transform: translateY(28px) translateX(20px);
  transition: opacity 0.85s ease, transform 0.9s var(--easing);
}

.org-dash.is-visible .org-dash__panel {
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 0.2s;
}

/* Big chart line + area fill draw effect */
.org-dash__chart path[stroke="#34C77B"] {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.org-dash.is-visible .org-dash__chart path[stroke="#34C77B"] {
  animation: spontan-chart-draw 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}

@keyframes spontan-chart-draw {
  to { stroke-dashoffset: 0; }
}

/* Chart area fill fades in alongside the line */
.org-dash__chart path[fill] {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.org-dash.is-visible .org-dash__chart path[fill] {
  opacity: 1;
  transition-delay: 1.4s;
}

/* Chart dots pop in along the line */
.org-dash__chart circle {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.4s var(--easing);
}

.org-dash.is-visible .org-dash__chart circle:nth-child(4) { opacity: 1; transform: scale(1); transition-delay: 0.7s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(5) { opacity: 1; transform: scale(1); transition-delay: 0.83s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(6) { opacity: 1; transform: scale(1); transition-delay: 0.96s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(7) { opacity: 1; transform: scale(1); transition-delay: 1.09s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(8) { opacity: 1; transform: scale(1); transition-delay: 1.22s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(9) { opacity: 1; transform: scale(1); transition-delay: 1.35s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(10) { opacity: 1; transform: scale(1); transition-delay: 1.48s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(11) { opacity: 1; transform: scale(1); transition-delay: 1.61s; }
.org-dash.is-visible .org-dash__chart circle:nth-child(12) { opacity: 1; transform: scale(1.4); transition-delay: 1.78s; }

/* Event row progress bars fill from 0 to target width */
.org-dash__row-bar > span {
  --target-width: 0%;
  width: 0% !important;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.org-dash.is-visible .org-dash__row:nth-child(1) .org-dash__row-bar > span { width: 67% !important; transition-delay: 0.85s; }
.org-dash.is-visible .org-dash__row:nth-child(2) .org-dash__row-bar > span { width: 95% !important; transition-delay: 1.0s; }
.org-dash.is-visible .org-dash__row:nth-child(3) .org-dash__row-bar > span { width: 10% !important; transition-delay: 1.15s; }

/* Event rows themselves fade in */
.org-dash__row {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.55s var(--easing);
}

.org-dash.is-visible .org-dash__row:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.org-dash.is-visible .org-dash__row:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.85s; }
.org-dash.is-visible .org-dash__row:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }

/* --- FAQ items stagger fade-in --- */

.org-faq__head > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.7s var(--easing);
}

.org-faq.is-visible .org-faq__head > *:nth-child(1) { opacity: 1; transform: translateY(0); }
.org-faq.is-visible .org-faq__head > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

.org-faq__item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.6s var(--easing);
}

.org-faq.is-visible .org-faq__item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.org-faq.is-visible .org-faq__item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.org-faq.is-visible .org-faq__item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.41s; }
.org-faq.is-visible .org-faq__item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.49s; }
.org-faq.is-visible .org-faq__item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.57s; }

/* --- Final CTA --- */

.org-finalcta__inner > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.7s var(--easing);
}

.org-finalcta.is-visible .org-finalcta__inner > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.org-finalcta.is-visible .org-finalcta__inner > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.org-finalcta.is-visible .org-finalcta__inner > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.31s; }
.org-finalcta.is-visible .org-finalcta__inner > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.org-finalcta.is-visible .org-finalcta__inner > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.57s; }

/* Reduced motion: skip animations entirely */
@media (prefers-reduced-motion: reduce) {
  .org-hero__copy > *,
  .org-hero__dashboard,
  .org-dashmock__notif,
  .org-dashmock__chart-svg rect,
  .org-problem__eyebrow,
  .org-problem__title,
  .org-problem__subtitle,
  .org-problem__stat,
  .org-how__eyebrow,
  .org-how__title,
  .org-how__card,
  .org-dash__copy > *,
  .org-dash__panel,
  .org-dash__chart circle,
  .org-dash__row,
  .org-faq__head > *,
  .org-faq__item,
  .org-finalcta__inner > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .org-dash__row-bar > span {
    transition: none !important;
  }
}
