:root {
  --bg: #f5f3eb;
  --surface: #ffffff;
  --surface-alt: #f0f2ef;
  --text: #13201b;
  --muted: #5d6f67;
  --line: rgba(19, 32, 27, 0.12);
  --green: #0f2f23;
  --green-soft: #dce9e0;
  --gold: #f0d85b;
  --shadow: 0 20px 50px rgba(13, 34, 25, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(240, 216, 91, 0.18), transparent 30%),
    var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(800px, calc(100% - 32px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 243, 235, 0.82);
  border-bottom: 1px solid rgba(19, 32, 27, 0.05);
}
.site-header.simple { position: relative; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(13, 34, 25, 0.15);
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nav nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}
.nav nav a:hover,
.nav nav a[aria-current="page"] { color: var(--text); }

.hero { padding: 64px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.flag-dk {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: #c8102e;
  box-shadow: 0 1px 2px rgba(0,0,0,.16);
  overflow: hidden;
}
.flag-dk::before,
.flag-dk::after {
  content: "";
  position: absolute;
  background: #fff;
}
.flag-dk::before {
  left: 7px;
  top: 0;
  width: 3px;
  height: 100%;
}
.flag-dk::after {
  left: 0;
  top: 7px;
  width: 100%;
  height: 3px;
}
.hero h1,
.policy-page h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 640px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 47, 35, 0.18);
}
.button.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.button.upcoming {
  background: linear-gradient(135deg, #1f5b43, #0f2f23);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 47, 35, 0.18);
  cursor: default;
  position: relative;
}
.button.upcoming::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f0d85b;
  margin-right: 10px;
  box-shadow: 0 0 0 4px rgba(240, 216, 91, 0.18);
}
.button.upcoming:hover {
  transform: none;
}
.final-cta .button.upcoming.light {
  background: #fff;
  color: var(--green);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}
.hero-points li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 800;
}
.store-note,
.policy-updated,
.policy-note {
  color: var(--muted);
}
.hero-card {
  position: relative;
  min-height: 640px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(240,242,239,0.72));
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-glow {
  position: absolute;
  inset: auto auto -80px -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(240, 216, 91, 0.32);
  filter: blur(30px);
}
.phone-shot {
  width: min(100%, 360px);
  border-radius: 30px;
  box-shadow: 0 34px 70px rgba(13, 34, 25, 0.28);
  border: 10px solid rgba(255,255,255,0.86);
  transform-style: preserve-3d;
}

.stats { padding: 10px 0 16px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card,
.policy-card,
.story-card,
.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.stat-card span { color: var(--muted); }

.section { padding: 72px 0; }
.section.alt { background: rgba(255,255,255,0.48); }
.two-col {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 36px;
  align-items: center;
}
.section h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.feature-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.feature-list h3,
.steps h3,
.policy-card h2 { margin: 0 0 8px; }
.feature-list p,
.steps p,
.policy-card p,
.policy-card li { color: var(--muted); }
.shot-stack {
  background: linear-gradient(180deg, #0f2f23 0%, #18382b 100%);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.shot-stack img {
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: 28px;
  border: 10px solid rgba(255,255,255,0.86);
  box-shadow: 0 28px 65px rgba(0,0,0,0.24);
  transform: perspective(1000px) rotateY(8deg) rotateX(3deg);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.steps article {
  padding: 24px;
}
.steps span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.story-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: center;
}
.quote-box {
  background: linear-gradient(160deg, var(--green) 0%, #204637 100%);
  color: #fff;
  border-radius: 28px;
  padding: 26px;
  font-size: 1.24rem;
  font-weight: 700;
}
.final-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: linear-gradient(145deg, #143326 0%, #0f2f23 65%, #204637 100%);
  color: #fff;
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.final-cta .button.secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}
.final-cta .button.primary {
  background: #fff;
  color: var(--green);
}

.policy-page { padding: 48px 0 80px; }
.policy-card {
  padding: 26px;
  margin: 18px 0;
}
.policy-card ul { padding-left: 18px; }

.site-footer {
  border-top: 1px solid rgba(19, 32, 27, 0.08);
  padding: 28px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-inner p { margin: 6px 0 0; color: var(--muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a { text-decoration: none; color: var(--muted); font-weight: 600; }

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .story-card,
  .steps,
  .stat-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-card { min-height: auto; padding: 28px 14px; }
  .final-cta-inner { gap: 24px; }
}

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero { padding-top: 36px; }
  .hero h1,
  .policy-page h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .lead { font-size: 1.02rem; }
  .section { padding: 56px 0; }
  .story-card,
  .final-cta-inner,
  .policy-card,
  .steps article,
  .stat-card { padding: 22px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hero-card-stack {
  min-height: 720px;
}
.hero-card-stack .main-shot {
  width: min(100%, 340px);
  transform: perspective(900px) rotateY(-13deg) rotateX(4deg) translateX(-48px);
}
.hero-card-stack .float-shot {
  position: absolute;
  right: 34px;
  bottom: 36px;
  width: min(52%, 250px);
  border: 10px solid rgba(255,255,255,0.9);
  border-radius: 28px;
  box-shadow: 0 34px 70px rgba(13, 34, 25, 0.30);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-card {
  grid-column: span 4;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(240,242,239,0.9));
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(13, 34, 25, 0.14);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-card:nth-child(even) {
  transform: perspective(1200px) rotateY(4deg) rotateX(2deg);
}
.gallery-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 34px 80px rgba(13, 34, 25, 0.18);
}
.gallery-card.tall { grid-column: span 5; }
.gallery-card.wide { grid-column: span 7; }
.gallery-card img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: top center;
  background: #edf0ec;
  border-radius: 22px 22px 0 0;
}
.gallery-card.map-card img {
  max-height: 560px;
  object-position: top center;
}
.gallery-card figcaption {
  padding: 14px 18px 18px;
  font-weight: 700;
}
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card, .gallery-card.tall, .gallery-card.wide { grid-column: auto; }
  .hero-card-stack .main-shot { transform: perspective(900px) rotateY(-7deg) rotateX(3deg); }
  .hero-card-stack .float-shot { right: 18px; bottom: 18px; width: min(46%, 220px); }
}
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img { max-height: none; }
  .hero-card-stack { min-height: auto; padding: 24px 14px 180px; }
  .hero-card-stack .main-shot { width: min(100%, 320px); }
  .hero-card-stack .float-shot { width: min(46%, 170px); border-width: 8px; }
}


.discover-grid {
  align-items: start;
}

.discover-cards {
  display: grid;
  gap: 16px;
}

.mini-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(29,36,62,0.08);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(17,24,39,0.06);
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.mini-card p {
  margin: 0;
}

@media (max-width: 760px) {
  .brand img { width: 58px; height: 58px; }
  .gallery-card,
  .gallery-card:nth-child(even),
  .gallery-card:hover,
  .shot-stack img {
    transform: none;
  }
}

/* v7: cleaner screenshot presentation */
.nav { min-height: 108px; }
.brand { gap: 14px; font-size: 1.42rem; }
.brand img {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(13, 34, 25, 0.18);
}

.phone-shot {
  border-radius: 34px;
  border: 10px solid rgba(255,255,255,0.95);
  box-shadow: 0 28px 70px rgba(13, 34, 25, 0.22);
  transform: none;
}
.hero-card-stack {
  min-height: 650px;
  overflow: hidden;
}
.hero-card-stack .main-shot {
  width: min(100%, 340px);
  transform: rotate(-2deg) translateX(-28px);
}
.hero-card-stack .float-shot {
  right: 42px;
  bottom: 42px;
  width: min(48%, 245px);
  transform: rotate(2deg);
  border-radius: 30px;
}

.shot-stack {
  padding: 30px;
  background:
    radial-gradient(circle at 20% 15%, rgba(240,216,91,.22), transparent 34%),
    linear-gradient(180deg, #0f2f23 0%, #18382b 100%);
}
.shot-stack img {
  width: min(100%, 390px);
  border-radius: 34px;
  border: 10px solid rgba(255,255,255,0.94);
  box-shadow: 0 28px 65px rgba(0,0,0,0.26);
  transform: none;
}

.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}
.gallery-card,
.gallery-card:nth-child(even),
.gallery-card:hover,
.gallery-card.tall,
.gallery-card.wide {
  grid-column: span 6;
  transform: none;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 22px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(240,216,91,.14), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(240,242,239,0.92));
  border: 1px solid rgba(19,32,27,0.08);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 34, 25, 0.13);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 78px rgba(13, 34, 25, 0.17);
}
.gallery-card img,
.gallery-card.map-card img {
  width: min(100%, 340px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  padding: 0;
  background: transparent;
  border: 10px solid rgba(255,255,255,0.96);
  border-radius: 32px;
  box-shadow: 0 22px 54px rgba(13, 34, 25, 0.17);
}
.gallery-card.map-card img {
  width: min(100%, 370px);
}
.gallery-card figcaption {
  width: calc(100% + 44px);
  margin-top: 20px;
  padding: 18px 22px 20px;
  background: rgba(255,255,255,0.62);
  border-top: 1px solid rgba(19,32,27,0.06);
  font-weight: 800;
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide { grid-column: auto; }
  .hero-card-stack .main-shot { transform: rotate(-1deg); }
  .hero-card-stack .float-shot { right: 22px; bottom: 22px; width: min(46%, 220px); }
}
@media (max-width: 760px) {
  .nav { min-height: auto; }
  .brand img { width: 70px; height: 70px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { padding: 18px 18px 0; }
  .gallery-card img,
  .gallery-card.map-card img { width: min(100%, 330px); border-width: 8px; }
  .gallery-card figcaption { width: calc(100% + 36px); }
  .hero-card-stack { padding: 24px 14px 170px; }
  .hero-card-stack .main-shot { width: min(100%, 320px); transform: none; }
  .hero-card-stack .float-shot { width: min(46%, 170px); transform: none; }
}

/* v9: safer mobile hero screenshot layout */
@media (max-width: 760px) {
  .hero-card,
  .hero-card-stack {
    min-height: auto !important;
    height: auto !important;
    padding: 22px 16px !important;
    overflow: hidden !important;
    display: block !important;
  }

  .hero-card-stack .main-shot {
    position: relative !important;
    display: block !important;
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
    border-width: 8px !important;
    object-fit: contain !important;
  }

  .hero-card-stack .float-shot {
    display: none !important;
  }

  .hero-card-stack .card-glow {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .hero-card-stack .main-shot {
    max-width: 290px !important;
  }
}

/* v11: hard reset for narrow screens so screenshots never become skinny/cropped */
@media (max-width: 900px) {
  .gallery-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    grid-template-columns: none !important;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card:nth-child(even),
  .gallery-card:hover {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: min(100%, 480px) !important;
    max-width: 480px !important;
    grid-column: auto !important;
    margin: 0 auto !important;
    padding: 20px 20px 0 !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .gallery-card img,
  .gallery-card.map-card img,
  .gallery-card.tall img,
  .gallery-card.wide img {
    display: block !important;
    position: static !important;
    width: min(100%, 360px) !important;
    min-width: 0 !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: top center !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  .gallery-card figcaption {
    display: block !important;
    width: calc(100% + 40px) !important;
    margin-top: 18px !important;
    text-align: left !important;
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card:nth-child(even),
  .gallery-card:hover {
    width: 100% !important;
    max-width: 420px !important;
    padding: 16px 12px 0 !important;
  }

  .gallery-card img,
  .gallery-card.map-card img,
  .gallery-card.tall img,
  .gallery-card.wide img {
    width: min(100%, 330px) !important;
    max-width: 330px !important;
    border-width: 8px !important;
  }

  .gallery-card figcaption {
    width: calc(100% + 24px) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* v15: corrected full screenshot crops */
.gallery-card img { background: #f4f6f2; }

/* v15: screenshots regenerated from full images without transparent empty areas */


/* v16: SEO/FAQ section */
.faq-section {
  background: rgba(245, 243, 235, 0.72);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(13, 34, 25, 0.08);
}
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}
.faq-card p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card { padding: 20px; }
}

/* v17 beta tester signup */
.beta-section {
  padding-top: 48px;
}
.beta-card {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 28px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(15,47,35,.96), rgba(31,91,67,.92));
  color: #fff;
  border-radius: 36px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 24px 60px rgba(13, 34, 25, 0.18);
  position: relative;
  overflow: hidden;
}
.beta-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(240,216,91,.22);
  filter: blur(8px);
}
.beta-card .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.beta-card h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.beta-card p,
.beta-card li {
  color: rgba(255,255,255,.82);
}
.beta-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.beta-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}
.beta-card .button.primary {
  background: #fff;
  color: var(--green);
}
.beta-card .button.secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.24);
}
.beta-note {
  font-size: .95rem;
  margin-bottom: 0;
}
.beta-side {
  position: relative;
  z-index: 1;
  min-height: 100%;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.beta-side strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
.beta-side span {
  color: rgba(255,255,255,.78);
}

@media (max-width: 820px) {
  .beta-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }
  .beta-side {
    min-height: auto;
  }
}

/* v18 beta tester visual */
.beta-side-visual {
  overflow: hidden;
  justify-content: space-between;
  gap: 24px;
}
.beta-phone-wrap {
  width: min(100%, 260px);
  margin: -6px auto 0;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 26px 60px rgba(4, 22, 15, .26);
  transform: rotate(2deg);
}
.beta-phone-wrap img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(4, 22, 15, .22);
}
.beta-side-text {
  position: relative;
  z-index: 2;
}
@media (max-width: 820px) {
  .beta-phone-wrap {
    width: min(240px, 86%);
    transform: none;
  }
  .beta-phone-wrap img {
    max-height: 300px;
  }
}

/* v20: sharper header logo asset */
.brand img {
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.78);
  image-rendering: auto;
}

/* v21 community beta callout */
.community-callout {
  margin: 22px 0 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.community-callout strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.community-callout span {
  display: block;
  color: rgba(255,255,255,.78);
}


/* v23: Tissetårnet song section */
.song-section {
  padding-top: 72px;
}
.song-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: stretch;
  border-radius: 36px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 12% 5%, rgba(240,216,91,.28), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(240,242,239,.92));
  border: 1px solid rgba(19,32,27,.08);
  box-shadow: 0 24px 64px rgba(13, 34, 25, 0.12);
  overflow: hidden;
}
.song-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.song-copy p {
  color: var(--muted);
  max-width: 680px;
}
.song-player {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 24px 0 12px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(13, 34, 25, 0.10);
}
.song-note {
  margin-bottom: 0;
  font-size: .95rem;
}
.song-side {
  position: relative;
  min-height: 290px;
  border-radius: 30px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, #143326 0%, #0f2f23 62%, #204637 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.song-side strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.song-side span {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.78);
}
.song-icon {
  position: relative;
  z-index: 2;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
}
.song-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}
.song-orb-one {
  width: 180px;
  height: 180px;
  right: -44px;
  top: -42px;
  background: rgba(240,216,91,.24);
}
.song-orb-two {
  width: 150px;
  height: 150px;
  left: -60px;
  bottom: -60px;
  background: rgba(255,255,255,.10);
}

@media (max-width: 820px) {
  .song-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }
  .song-side {
    min-height: 220px;
  }
}


/* v25: Google Play badge + SEO landing section */
.play-badge-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  text-decoration: none;
}
.google-play-badge {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}
.seo-section {
  padding-top: 34px;
}
.seo-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(19, 32, 27, 0.08);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(18, 38, 29, 0.08);
}
.seo-card h2 {
  margin-top: 8px;
  max-width: 820px;
}
.seo-card p {
  max-width: 900px;
  color: var(--muted);
}
.legal-note {
  font-size: 0.78rem;
  max-width: 460px;
}
@media (max-width: 620px) {
  .google-play-badge { width: 176px; }
  .seo-card { padding: 24px; border-radius: 24px; }
}


/* v27: Merch / Spreadshop section */
.merch-section {
  padding-top: 72px;
}
.merch-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  border-radius: 38px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 12% 8%, rgba(240,216,91,.24), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(240,242,239,.9));
  border: 1px solid rgba(19,32,27,.08);
  box-shadow: 0 24px 64px rgba(13, 34, 25, 0.12);
  overflow: hidden;
}
.merch-image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 24px 58px rgba(13, 34, 25, 0.16);
  background: var(--green-soft);
}
.merch-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,47,35,.08), transparent 42%);
  pointer-events: none;
}
.merch-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}
.merch-content {
  padding: clamp(8px, 2vw, 18px);
}
.merch-content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.merch-content p {
  color: var(--muted);
  max-width: 620px;
}
.merch-note {
  font-weight: 700;
  color: var(--green) !important;
}
@media (max-width: 900px) {
  .merch-card {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }
  .merch-image-wrap,
  .merch-image-wrap img {
    min-height: 240px;
  }
}
@media (max-width: 560px) {
  .merch-section { padding-top: 56px; }
  .merch-card { padding: 16px; }
  .merch-image-wrap,
  .merch-image-wrap img {
    min-height: 190px;
    border-radius: 24px;
  }
}


/* v30 merch image: new full merch image, cover with lower focus */
.merch-section .merch-image,
.merch-card .merch-image,
.merch-media,
.merch-banner,
.merch-visual {
    min-height: 360px;
    overflow: hidden;
    background: transparent;
    border-radius: 28px;
}

.merch-section .merch-image img,
.merch-card .merch-image img,
.merch-media img,
.merch-banner img,
.merch-visual img,
img[src*="spreadshop"],
img[src*="merch"] {
    width: 100% !important;
    height: 100% !important;
    min-height: 360px !important;
    object-fit: cover !important;
    object-position: center 68% !important;
    display: block;
}

@media (max-width: 700px) {
    .merch-section .merch-image,
    .merch-card .merch-image,
    .merch-media,
    .merch-banner,
    .merch-visual {
        min-height: 260px;
    }

    .merch-section .merch-image img,
    .merch-card .merch-image img,
    .merch-media img,
    .merch-banner img,
    .merch-visual img,
    img[src*="spreadshop"],
    img[src*="merch"] {
        min-height: 260px !important;
        object-position: center 70% !important;
    }
}



/* v31 footer company/contact info */
.footer-company-info {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: .9rem;
    line-height: 1.6;
    opacity: .86;
}
.footer-company-info a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 700px) {
    .footer-company-info {
        font-size: .85rem;
    }
}



/* v32 center footer company/contact info */
.footer-company-info {
    display: block;
    width: min(100% - 40px, 1180px);
    margin: 18px auto 0 auto !important;
    padding-top: 14px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.08);
    font-size: .9rem;
    line-height: 1.6;
    opacity: .86;
}
.footer-company-info a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 700px) {
    .footer-company-info {
        width: min(100% - 28px, 1180px);
        font-size: .84rem;
    }
}



/* v33: bilingual policy pages */
.language-switch {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-divider {
  border: 0;
  border-top: 1px solid rgba(15, 42, 30, 0.16);
  margin: 2.5rem 0;
}


/* v34: Ko-fi support section */
.support-section {
  padding: 2.5rem 0 4rem;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(15, 42, 30, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 102, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 244, 0.94));
  box-shadow: 0 18px 45px rgba(15, 42, 30, 0.08);
}

.support-copy h2 {
  margin: 0.35rem 0 0.8rem;
}

.support-copy p {
  margin: 0 0 0.75rem;
}

.support-small {
  color: var(--muted, #5f6f66);
  font-size: 0.98rem;
}

.support-action {
  display: flex;
  justify-content: flex-end;
}

.support-button {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .support-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .support-action {
    justify-content: flex-start;
  }

  .support-button {
    width: 100%;
    text-align: center;
  }
}


/* v37: language switch and English mirrored page */
.language-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(15, 42, 30, 0.16);
  font-weight: 700;
}

.language-nav span {
  color: var(--muted, #5f6f66);
}

.language-nav a[aria-current="page"] {
  color: var(--green, #0f2a1e);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hero-tourist-line {
  font-weight: 650;
}

@media (max-width: 760px) {
  .language-nav {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    width: 100%;
    justify-content: center;
  }
}


/* v38: tourist/SEO English page additions */
.tourist-section,
.partner-section {
  padding: 3.5rem 0;
}

.tourist-cards {
  margin-top: 1.4rem;
}

.partner-section .btn {
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .tourist-section,
  .partner-section {
    padding: 2.5rem 0;
  }
}


/* v39: webapp CTA + consent banner */
.webapp-section {
  padding: 2.4rem 0 4rem;
}
.webapp-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 1.6rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 216, 91, 0.32), transparent 32%),
    linear-gradient(135deg, #0f2f23 0%, #174331 58%, #f5f3eb 58%, #fffaf0 100%);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.webapp-copy .eyebrow {
  background: rgba(240, 216, 91, 0.16);
  color: #fff7c2;
  margin-bottom: 14px;
}
.webapp-copy h2 {
  color: #fff;
  margin: 0 0 .8rem;
}
.webapp-copy p {
  color: rgba(255,255,255,.82);
  max-width: 660px;
}
.webapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.35rem;
}
.webapp-actions .button.primary {
  background: var(--gold);
  color: var(--green);
}
.webapp-actions .button.secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.webapp-visual {
  display: grid;
  gap: .7rem;
  align-content: center;
}
.webapp-mini-card {
  background: rgba(255,255,255,.92);
  color: var(--green);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.webapp-mini-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .2rem;
}
.webapp-mini-card span {
  color: var(--muted);
}
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 28px));
  z-index: 9999;
  display: none;
  padding: 1rem;
  border: 1px solid rgba(15, 47, 35, .16);
  border-radius: 24px;
  background: rgba(255, 252, 242, .97);
  box-shadow: 0 24px 70px rgba(13, 34, 25, .24);
  backdrop-filter: blur(16px);
}
.cookie-consent.is-visible { display: block; }
.cookie-consent__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.cookie-consent h2 {
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: flex-end;
}
.cookie-consent button,
.cookie-settings-link {
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
.cookie-consent .accept {
  background: var(--green);
  color: #fff;
}
.cookie-consent .necessary {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--line);
}
.cookie-consent .settings {
  background: transparent;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-settings-panel {
  display: none;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.cookie-consent.show-settings .cookie-settings-panel { display: block; }
.cookie-option {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin: .5rem 0;
  color: var(--text);
}
.cookie-option input { margin-top: .3rem; }
.cookie-settings-link {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--muted);
  text-decoration: none;
}
.cookie-settings-link:hover { color: var(--text); text-decoration: underline; }
@media (max-width: 860px) {
  .webapp-card { grid-template-columns: 1fr; background: linear-gradient(145deg, #0f2f23, #174331); }
  .cookie-consent__inner { grid-template-columns: 1fr; }
  .cookie-consent__actions { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .cookie-consent { bottom: 10px; border-radius: 20px; }
  .cookie-consent__actions button { width: 100%; }
}
