/* Min Stjärndag — Landing page v2 (conversion-focused) */

:root {
  --amber: #F5A623;
  --amber-dk: #D4891A;
  --amber-lt: #FFF3D6;
  --navy: #1C2340;
  --navy-2: #2A3355;
  --cream: #FDFAF4;
  --cream-2: #F7F3EA;
  --text: #1C2340;
  --text-2: #5A6178;
  --text-3: #8A92AA;
  --white: #FFFFFF;
  --green: #1DB97B;
  --green-lt: #DFFAED;
  --purple: #6B3FA0;
  --purple-lt: #EDE7F6;
  --border: rgba(28, 35, 64, 0.09);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  letter-spacing: -0.02em;
}

a { color: inherit; }

/* ── Magic night (hero + final CTA) ─────────────────────── */
body.platform-web.landing-magic-bg {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(147, 112, 219, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(255, 105, 180, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(100, 149, 237, 0.18) 0%, transparent 65%),
    linear-gradient(160deg, #0f1a3d 0%, #1e1b4b 30%, #4a2c6a 55%, #7c3a9e 72%, #a855c7 82%, #d97fc0 90%, #f5a2b8 100%);
  min-height: 100vh;
}

.landing-section--dark {
  background: transparent;
  color: var(--white);
  position: relative;
}

.landing-section--dark h2,
.landing-section--dark h3 { color: var(--white); }

.landing-section--dark .section-intro { color: rgba(255, 255, 255, 0.72); }

.landing-section--light {
  background: var(--cream);
  color: var(--text);
}

.landing-section--white {
  background: var(--white);
  color: var(--text);
}

.landing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) 1.5rem;
}

/* ── Nav ─────────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s, background 0.2s;
  min-width: 0;
}

.landing-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(28, 35, 64, 0.08);
  background: rgba(253, 250, 244, 0.97);
}

.landing-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.landing-nav__star {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.38);
}

.landing-nav__name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.landing-nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.landing-nav__link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 0.42rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.18s;
}

.landing-nav__link:hover { background: var(--amber-lt); }

.landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}

.landing-nav__login {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.42rem 0.7rem;
}

.landing-nav__login:hover { color: var(--navy); }

.landing-nav__child-login {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-dk);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.28);
  white-space: nowrap;
}

.landing-nav__child-login:hover {
  background: rgba(245, 166, 35, 0.2);
  color: var(--navy);
}

.landing-nav__lang {
  font-size: 1rem;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.landing-nav__lang--text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(28, 35, 64, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  white-space: nowrap;
}

.landing-nav__lang--text:hover {
  background: var(--amber-lt);
  border-color: rgba(245, 166, 35, 0.35);
}

.landing-nav__lang--flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.42rem;
  border: 1px solid rgba(28, 35, 64, 0.12);
  border-radius: 999px;
  background: var(--white);
  flex-shrink: 0;
}

.landing-nav__lang--flag:hover {
  background: var(--amber-lt);
  border-color: rgba(245, 166, 35, 0.35);
}

.landing-nav__lang--flag .landing-nav__lang-flag {
  font-size: 1.15rem;
}

.landing-nav__lang--flag .landing-nav__lang-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-nav__lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.landing-nav__lang-label {
  line-height: 1;
}

.landing-nav__lang:hover { background: var(--amber-lt); }

.landing-nav__tipsa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: linear-gradient(135deg, rgba(255, 217, 102, 0.35), rgba(245, 166, 35, 0.22));
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.landing-nav__tipsa:hover {
  background: linear-gradient(135deg, #ffd966, #f5a623);
  border-color: #f5a623;
}

.landing-nav__tipsa-icon,
.landing-tipsa-fixed__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.landing-nav__tipsa-icon .app-icon,
.landing-tipsa-fixed__icon .app-icon {
  width: 22px;
  height: 22px;
}

.landing-mobile-menu__tipsa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--amber-dk) !important;
}

.landing-tipsa-fixed {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 9000;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd966 0%, #f5a623 100%);
  color: #1b2340;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.45);
  cursor: pointer;
  font-family: inherit;
}

.landing-tipsa-fixed:hover {
  filter: brightness(1.03);
}

.landing-nav__hamburger {
  display: none;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 12px;
  cursor: pointer;
  padding: 0.4rem 0.55rem 0.4rem 0.45rem;
}

.landing-nav__hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 2px;
}

.landing-nav__hamburger-bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.landing-nav__hamburger-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.landing-nav__hamburger-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}

.landing-nav__hamburger-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--amber-dk);
}

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

.landing-mobile-menu {
  display: none;
  position: fixed;
  top: var(--landing-nav-offset, 60px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10350;
  background: rgba(253, 250, 244, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 8px 32px rgba(28, 35, 64, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.landing-mobile-menu.is-open { display: flex; }

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

.landing-mobile-menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
}

.landing-mobile-menu a:hover { background: var(--amber-lt); }

.landing-mobile-menu__app-store {
  display: inline-flex;
  padding: 0.35rem 0.5rem !important;
  background: transparent !important;
}

.landing-mobile-menu__app-store .app-store-badge {
  height: 44px;
}

/* Store badges (App Store + Google Play) */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.store-badge-link {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge {
  display: block;
  width: auto;
  height: 44px;
}

.store-locale-note {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-2);
}

.store-locale-note strong {
  font-weight: 700;
  color: var(--navy);
}

.store-locale-note a {
  color: var(--amber-dk);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-locale-note--hero,
.store-locale-note--hero-card {
  color: rgba(255, 255, 255, 0.82);
}

.store-locale-note--hero strong,
.store-locale-note--hero-card strong {
  color: #fff;
}

.store-locale-note--hero a,
.store-locale-note--hero-card a {
  color: #FFD27A;
}

.store-locale-note--footer {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.75rem;
}

.store-locale-note--footer strong {
  color: rgba(255, 255, 255, 0.9);
}

.store-locale-note--footer a {
  color: #FFD27A;
}

.store-locale-note--menu {
  margin: 0 0 0.65rem;
  padding: 0 0.15rem;
}

.store-badges--menu {
  padding: 0.15rem 0.5rem 0.35rem;
}

.store-badges--footer {
  margin-bottom: 0.65rem;
}

.store-badges--footer .store-badge {
  opacity: 0.95;
}

.store-badges--footer .store-badge-link:hover .store-badge {
  opacity: 1;
}

.landing-footer__app-store {
  display: inline-block;
  margin-bottom: 0.65rem;
  line-height: 0;
}

.landing-footer__app-store .app-store-badge {
  height: 44px;
  opacity: 0.95;
  transition: opacity 0.15s ease;
}

.landing-footer__app-store:hover .app-store-badge {
  opacity: 1;
}

.landing-mobile-menu__section {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin: 0.75rem 0 0.35rem;
  padding: 0 0.25rem;
}

.landing-mobile-menu__section:first-child {
  margin-top: 0;
}

.landing-mobile-menu__login {
  font-weight: 700 !important;
  background: var(--cream);
}

.landing-mobile-menu__login--child {
  color: var(--amber-dk) !important;
}

/* ── Login entry (hero + barnvy) ─────────────────────────── */
.landing-login-entry {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 35, 64, 0.08);
  box-shadow: 0 4px 20px rgba(28, 35, 64, 0.05);
}

.landing-login-entry__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  margin: 0 0 0.75rem;
  text-align: center;
}

.landing-login-entry__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.landing-login-entry--compact .landing-login-entry__buttons {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.landing-login-entry--menu {
  margin-top: 0;
  background: var(--white);
  border-color: rgba(245, 166, 35, 0.22);
}

.landing-login-entry--menu .landing-login-entry__buttons {
  grid-template-columns: 1fr;
}

.landing-login-entry__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid rgba(28, 35, 64, 0.08);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.landing-login-entry__btn:hover {
  border-color: rgba(245, 166, 35, 0.45);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.12);
  transform: translateY(-1px);
}

.landing-login-entry__btn--child {
  border-color: rgba(245, 166, 35, 0.25);
  background: linear-gradient(135deg, #FFF8E6, #FFF3D6);
}

.landing-login-entry__icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.landing-login-entry__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.landing-login-entry__text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.landing-login-entry__text span {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.3;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.82rem 1.6rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-dk));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(245, 166, 35, 0.45);
  transition: transform 0.18s, box-shadow 0.18s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.4rem;
  background: transparent;
  color: inherit;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}

.landing-section--light .btn-secondary,
.landing-section--white .btn-secondary {
  border-color: rgba(28, 35, 64, 0.15);
  color: var(--navy);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.landing-section--light .btn-secondary:hover,
.landing-section--white .btn-secondary:hover {
  background: var(--amber-lt);
  border-color: var(--amber);
}

.btn-ghost-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber-dk);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 137, 26, 0.35);
  padding-bottom: 1px;
}

.btn-ghost-link:hover { border-bottom-color: var(--amber-dk); }

/* ── Section headers ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--amber-dk);
  margin-bottom: 0.75rem;
}

.landing-section--dark .section-eyebrow { color: rgba(245, 166, 35, 0.9); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--amber-dk); }

.landing-section--dark .section-title em { color: rgba(245, 166, 35, 0.95); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin-left: auto; margin-right: auto; }

/* ── Hero ────────────────────────────────────────────────── */
.landing-hero {
  padding: 7.5rem 1.5rem 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.landing-hero__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.landing-hero__eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.landing-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.landing-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 520px;
}

.landing-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.landing-hero__ctas .store-locale-note--hero {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.landing-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.trust-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.38rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.landing-hero__micro {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}


/* Hero launch card (App Store) */
.hero-launch-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.15rem;
  align-items: center;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-launch-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 22%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-launch-card__text {
  min-width: 0;
}

.hero-launch-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.hero-launch-card__title {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.hero-launch-card__hook {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
}

.hero-launch-card__body {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero-launch-card__body strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero-launch-card__body a {
  color: #FFD27A;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-launch-card__stores {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.app-store-badge {
  display: block;
  width: auto;
  height: 44px;
}

.hero-launch-card__stores .store-badge,
.hero-launch-card__store .app-store-badge {
  height: 44px;
}

.landing-hero__store-badges {
  width: 100%;
}

.store-badges--hero-cta .store-badge {
  height: 44px;
}

.hero-cta-app-store {
  background: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-secondary--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.btn-secondary--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 760px) {
  .hero-launch-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .hero-launch-card__stores {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-launch-card__stores .store-badge {
    height: 40px;
  }

  .landing-hero__store-badges {
    order: -1;
    justify-content: center;
    padding: 0.15rem 0;
    margin-bottom: 0.15rem;
  }

  .store-badges--hero-cta .store-badge {
    height: 42px;
  }

  .store-badges--menu {
    justify-content: center;
    width: 100%;
  }

  .store-badges--menu .store-badge {
    height: 42px;
  }
}

/* Hero mockup */
.hero-mockup {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-mockup__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.hero-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-mockup__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.hero-mockup__stars {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber);
}

.hero-mockup__greeting {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero-mockup__greeting strong { color: var(--white); }

.hero-schedule { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }

.hero-schedule__card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-schedule__card.is-active {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.35);
}

.hero-schedule__label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  min-width: 42px;
}

.hero-schedule__card.is-active .hero-schedule__label { color: var(--amber); }

.hero-schedule__icon { font-size: 1.3rem; }

.hero-schedule__name {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.hero-schedule__badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
}

.hero-mockup__progress { margin-bottom: 0.8rem; }

.hero-mockup__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.hero-mockup__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.hero-mockup__bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--amber), #F5C842);
}

.hero-mockup__bar-fill.is-green {
  background: linear-gradient(90deg, var(--green), #34D399);
}

.hero-mockup__treasure {
  margin-top: 0.8rem;
  padding: 0.7rem 0.9rem;
  background: rgba(107, 63, 160, 0.25);
  border-radius: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
}

/* ── Cards grid ──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 4px 20px rgba(28, 35, 64, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28, 35, 64, 0.08);
}

.card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Steps (how it works) ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-card__num {
  width: 44px;
  height: 44px;
  background: var(--amber-lt);
  color: var(--amber-dk);
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

.step-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(28, 35, 64, 0.04);
}

.step-panel img {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

.step-panel__caption {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
}

/* ── Two-column feature ──────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-split__visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(28, 35, 64, 0.12);
}

.feature-split__visual--stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.feature-split__visual--stack img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(28, 35, 64, 0.1);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.feature-list span {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── Treasure section ────────────────────────────────────── */
.treasure-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.6rem;
}

.treasure-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--amber-lt);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.treasure-demo-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  text-align: center;
  box-shadow: 0 16px 48px rgba(28, 35, 64, 0.2);
}

.treasure-demo-card__emoji { font-size: 3.5rem; margin-bottom: 0.5rem; }

.treasure-demo-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.treasure-demo-card__count {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  margin: 1rem 0;
}

.treasure-demo-card__sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.treasure-demo-card__bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  margin: 1rem 0 0.5rem;
  overflow: hidden;
}

.treasure-demo-card__bar-fill {
  height: 100%;
  width: 67%;
  background: linear-gradient(90deg, var(--amber), #F5C842);
  border-radius: 50px;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 4px 20px rgba(28, 35, 64, 0.05);
}

.testimonial-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dk);
  margin-bottom: 0.8rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}

.testimonial-card blockquote::before { content: '\201C'; }

.stats-banner {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0.85rem 1.5rem;
  background: var(--amber-lt);
  border-radius: 50px;
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid rgba(245, 166, 35, 0.25);
}

/* ── Founder program ─────────────────────────────────────── */
.founder-block {
  background: linear-gradient(135deg, #FFF8E6, #FFF3D6);
  border: 2px solid var(--amber);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.15);
}

.founder-block h2 { color: var(--navy); margin-bottom: 0.75rem; }

.founder-block__intro {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.founder-block__list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.founder-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}

.founder-block__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.founder-block__note {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 1rem;
}

/* ── English waitlist / interest signup ─────────────────── */
.waitlist-block .waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  max-width: 420px;
}

.waitlist-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(28, 35, 64, 0.12);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
}

.waitlist-form__input:focus {
  outline: none;
  border-color: rgba(245, 166, 35, 0.65);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}

.waitlist-form__submit {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.waitlist-form__error {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: #fff0f0;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 600;
}

.founder-block__counter {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dk);
  margin-bottom: 1rem;
}

.founder-spots-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber-dk);
  background: rgba(245, 166, 35, 0.14);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin-top: 0.85rem;
  line-height: 1.35;
}

.founder-spots-badge[hidden] {
  display: none !important;
}

.founder-spots-badge--block {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--amber-dk);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-more {
  text-align: center;
  margin-top: 1.5rem;
}

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: var(--section-pad) 1.5rem;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 1.6rem;
  line-height: 1.65;
}

.final-cta__login {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
}

.final-cta__login:hover { color: rgba(255, 255, 255, 0.9); }

.final-cta__login-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
}

.final-cta__login-sep {
  color: rgba(255, 255, 255, 0.45);
}

/* ── Footer ──────────────────────────────────────────────── */
.landing-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 3rem 1.5rem 2rem;
}

.landing-footer__cta {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer__cta h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.landing-footer__cta p {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.landing-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.landing-footer__brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.landing-footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.9rem;
}

.landing-footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s;
}

.landing-footer__col a:hover { color: rgba(255, 255, 255, 0.9); }

.landing-footer__cookie-link {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.15s;
}

.landing-footer__cookie-link:hover { color: rgba(255, 255, 255, 0.9); }

.landing-footer__copy {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── News banner + admin news ────────────────────────────── */
#dagensNyhetBanner {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 195;
  background: linear-gradient(135deg, #FFF8E6, #FFF3D6);
  border-bottom: 2px solid var(--amber);
  padding: 0.6rem 1.5rem;
}

#landingNewsSection {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
}

/* ── About page (Om oss) ──────────────────────────────────── */
.public-site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(253, 250, 244, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.public-site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.public-site-header__signup {
  font-size: 0.82rem;
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
}

.about-page {
  background: var(--cream);
  color: var(--text-2);
}

.about-page__main {
  padding: 1.5rem 1.25rem 3rem;
}

.about-page__inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.about-page__back:hover { color: var(--amber-dk); }

.about-page__hero {
  margin-bottom: 2rem;
}

.about-page__hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 1rem;
}

.about-page__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
}

.about-page__hero-visual {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  align-items: end;
  margin-top: 1.75rem;
}

.about-page__photo,
.about-page__screenshot {
  margin: 0;
}

.about-page__photo img,
.about-page__screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 32px rgba(28, 35, 64, 0.1);
}

.about-page__photo img {
  aspect-ratio: 1;
  object-fit: cover;
}

.about-page__screenshot img {
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.about-page__prose p,
.about-page__section p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.about-page__section {
  margin-top: 2.5rem;
}

.about-page__section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: var(--navy);
  margin: 0 0 1rem;
}

.about-page__quotes {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-page__quotes li {
  font-style: italic;
  color: var(--navy);
  padding: 0.2rem 0;
}

.about-page__features {
  margin: 0;
  padding-left: 1.2rem;
}

.about-page__features li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.about-page__features strong {
  color: var(--navy);
}

.about-page__emphasis {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.about-page__section a {
  color: var(--amber-dk);
  font-weight: 600;
}

.about-page__signoff {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-page__signoff-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.about-page__signoff a {
  color: var(--amber-dk);
  font-weight: 600;
  text-decoration: none;
}

.about-page__signoff a:hover { text-decoration: underline; }

.about-page__footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.88rem;
}

.about-page__footer a {
  color: var(--text-2);
  font-weight: 600;
  text-decoration: none;
}

.about-page__footer a:hover { color: var(--amber-dk); }

@media (max-width: 720px) {
  .public-site-header__signup { display: none; }

  .about-page__hero-visual {
    grid-template-columns: 1fr;
  }

  .about-page__screenshot img {
    max-height: none;
  }
}

@media (max-width: 480px) {
  .public-site-header__actions .landing-nav__child-login { display: none; }
}

/* ── Anchor offset for fixed nav ─────────────────────────── */
[id] { scroll-margin-top: 80px; }

/* Legacy anchor aliases (invisible) */
.anchor-alias { position: absolute; visibility: hidden; height: 0; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .landing-nav__links { display: none; }
  .landing-nav__hamburger { display: inline-flex; }
}

@media (max-width: 960px) {
  .landing-nav__actions .btn-primary,
  .landing-nav__actions .landing-nav__child-login { display: none; }

  .landing-nav__actions .landing-nav__tipsa {
    display: inline-flex;
    padding: 0.4rem 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .landing-nav__actions .landing-nav__lang--flag {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    padding: 0.4rem 0.5rem;
  }

  .landing-nav__tipsa-label { display: none; }

  /* Tipsa lives in header on mobile — avoid duplicate FAB behind browser chrome */
  .landing-tipsa-fixed { display: none !important; }

  .landing-login-entry--hero { display: none; }

  .landing-login-entry__buttons { grid-template-columns: 1fr; }

  .landing-hero__grid,
  .feature-split,
  .steps-grid,
  .step-panels,
  .testimonials-grid { grid-template-columns: 1fr; }

  .landing-hero { padding-top: 6.5rem; min-height: auto; }

  .landing-hero__visual { order: -1; }

  .landing-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .landing-nav__actions .landing-nav__login { display: none; }
}

@media (max-width: 560px) {
  .landing-footer__grid { grid-template-columns: 1fr; }
  .feature-split__visual--stack { grid-template-columns: 1fr; }
  .landing-nav__child-login { padding: 0.35rem 0.5rem; font-size: 0.75rem; }
  .landing-nav__login { font-size: 0.82rem; }
}

/* ── Landing guide cards (SEO cluster) ───────────────────── */
.landing-guides-grid {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .landing-guides-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.landing-guides-more {
  text-align: center;
  margin: 1.35rem 0 0;
  font-size: 0.95rem;
}

.landing-guides-more a {
  font-weight: 600;
  color: var(--amber-dk);
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  padding: 0 0.5rem;
}

.landing-guides-more a:hover { text-decoration: underline; }

/* ── Skolstart 2026 (seasonal homepage module) ───────────── */
.landing-skolstart {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.landing-skolstart__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.landing-skolstart__card {
  background: #fff;
  border: 1px solid rgba(28, 35, 64, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 20px rgba(28, 35, 64, 0.06);
}

.landing-skolstart__icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.landing-skolstart__card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.landing-skolstart__card p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

.landing-skolstart__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  text-align: center;
}

/* ── Product spotlight (HTML copy + showcase image) ─────────── */
.landing-product-spotlight {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.landing-product-spotlight__grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.landing-product-spotlight__copy .section-title {
  max-width: 22ch;
}

.landing-product-spotlight__body {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
}

.landing-product-spotlight__body:last-of-type {
  margin-bottom: 1.75rem;
}

.landing-product-spotlight__figure {
  margin: 0;
}

.landing-product-spotlight__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(28, 35, 64, 0.1);
}

.landing-product-spotlight__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.landing-product-spotlight__ctas--mobile {
  display: none;
}

@media (max-width: 900px) {
  .landing-product-spotlight__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .landing-product-spotlight__copy {
    order: 1;
  }

  .landing-product-spotlight__copy .section-title {
    max-width: none;
  }

  .landing-product-spotlight__figure {
    order: 2;
  }

  .landing-product-spotlight__ctas--desktop {
    display: none;
  }

  .landing-product-spotlight__ctas--mobile {
    display: flex;
    order: 3;
  }
}

/* ── Sommarhälsning (founder letter) ─────────────────────── */
.landing-sommar {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.landing-sommar__card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF8E6, #FFF3D6);
  border: 2px solid rgba(245, 166, 35, 0.28);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28, 35, 64, 0.08);
}

.landing-sommar__figure {
  margin: 0;
  background: #f7f3ea;
}

.landing-sommar__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.landing-sommar__body {
  padding: 1.75rem 1.5rem 2rem;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
}

.landing-sommar__body p {
  margin: 0 0 1rem;
}

.landing-sommar__lead {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem !important;
}

.landing-sommar__moments,
.landing-sommar__thanks {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.landing-sommar__moments li,
.landing-sommar__thanks li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.landing-sommar__moments li::before,
.landing-sommar__thanks li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber-dk);
  font-weight: 800;
}

.landing-sommar__thanks-label {
  font-weight: 600;
  color: var(--navy);
}

.landing-sommar__closing {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.25rem !important;
  margin-bottom: 1rem !important;
}

.landing-sommar__signoff {
  margin-bottom: 0 !important;
  font-size: 0.95rem;
  color: var(--text-3);
}

.landing-sommar__signoff strong {
  color: var(--navy);
}

@media (min-width: 768px) {
  .landing-sommar__body {
    padding: 2rem 2.25rem 2.25rem;
  }
}

/* ── Mobile login choice modal (app vs web) ───────────────── */
.landing-login-choice-overlay {
  position: fixed;
  inset: 0;
  z-index: 10400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 1rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(28, 35, 64, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.landing-login-choice-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px 20px 16px 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(28, 35, 64, 0.22);
  animation: landingLoginChoiceIn 0.24s ease-out;
}

@keyframes landingLoginChoiceIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-login-choice-card { animation: none; }
  .landing-login-choice-btn:hover { transform: none; }
}

.landing-login-choice-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--text-3);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.landing-login-choice-close:hover {
  background: var(--cream);
  color: var(--navy);
}

.landing-login-choice-title {
  margin: 0 2rem 0.45rem 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.landing-login-choice-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-2);
}

.landing-login-choice-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.landing-login-choice-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 56px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(28, 35, 64, 0.1);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.landing-login-choice-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(28, 35, 64, 0.08);
}

.landing-login-choice-btn--app {
  border-color: rgba(245, 166, 35, 0.35);
  background: linear-gradient(135deg, #fff8e6, #fff3d6);
}

.landing-login-choice-btn--web {
  background: var(--cream);
}

.landing-login-choice-btn__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.landing-login-choice-btn__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.landing-login-choice-btn__text strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.landing-login-choice-btn__text span {
  font-size: 0.78rem;
  color: var(--text-3);
}

.landing-login-choice-skip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  font-size: 0.86rem;
  color: var(--text-2);
  cursor: pointer;
  user-select: none;
}

.landing-login-choice-skip input {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
}

body.landing-login-choice-open {
  overflow: hidden;
}

@media (min-width: 961px) {
  .landing-login-choice-overlay { display: none; }
}

/* ── Incident / drift notice (landing) ───────────────────── */
.incident-notice-banner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 196;
  background: linear-gradient(135deg, #f4f8fc, #eef4fa);
  border-bottom: 2px solid rgba(42, 51, 85, 0.12);
  padding: 0.75rem 1.25rem;
}
.incident-notice-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.incident-notice-banner__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.incident-notice-banner__body,
.incident-notice-banner__detail {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 0.35rem;
}
.incident-notice-banner__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.incident-notice-banner__link:hover {
  color: var(--amber-dk);
}

