/* ============================================================
   JUNO.CSS — stiler for AEROS Juno produktside
   ============================================================ */

.juno-page { background: var(--bg); overflow-x: hidden; }

/* ---- HERO ---- */
.juno-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.juno-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/aeros-bilder/juno-hero-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--bg-black);
  z-index: 0;
}

.juno-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}

/* Sterkere fade i bunnen — bildet smelter rolig ned i mørket bak teksten */
.juno-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
    rgba(16,32,48,0.92) 0%,
    rgba(16,32,48,0.74) 16%,
    rgba(16,32,48,0.40) 36%,
    rgba(16,32,48,0.10) 55%,
    rgba(16,32,48,0.22) 100%);
}

.juno-hero-content {
  position: relative;
  z-index: 3;
  padding: 40px var(--edge) 60px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.juno-title {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 12px;
}

/* Pris + knapphet samlet på én linje */
.juno-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 18px 0 26px;
}
.juno-hero-price {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--gold-light);
}
.juno-hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.juno-hero-sold {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,251,239,0.78);
}

.juno-scroll-link {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.juno-scroll-link:hover { color: var(--text); }

/* ---- IKON-STRIPE ---- */
.juno-icons {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px var(--edge);
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: nowrap;
}

.juno-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.juno-icon-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke-width: 1.1;
}

/* ---- SPLIT: BILDE + TEKST ---- */
.juno-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--edge);
  background: var(--bg-dark);
}

.juno-split-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.juno-split-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
}

.juno-split-text p {
  font-size: 15px;
  color: rgba(255,251,239,0.65);
  line-height: 1.85;
}

/* ---- BILDEGALLERI ---- */
.juno-gallery {
  background: var(--bg);
  padding: 0 0 80px;
  overflow: hidden;
}

/* Desktop: 3×2 symmetrisk rutenett */
.juno-gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--edge);
}

.juno-gallery-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  display: block;
  background: var(--bg-dark);
}

.juno-gallery-img--contain {
  object-fit: contain;
  object-position: center center;
  background: var(--bg-black);
}

/* ---- DIMENSJONER ---- */
.juno-dim {
  background: var(--bg);
  padding: 96px var(--edge);
}

.juno-dim-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.juno-dim-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin: 14px 0 22px;
}

.juno-dim-text p {
  font-size: 15px;
  color: rgba(255,251,239,0.65);
  line-height: 1.85;
  margin-bottom: 32px;
}

.juno-dim-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.juno-dim-specs div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.juno-dim-specs span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.juno-dim-specs strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
}

/* Visual: bilde + måleangivelser */
.juno-dim-visual {
  display: grid;
  grid-template-columns: 190px auto;
  grid-template-rows: auto auto;
  justify-content: center;
  column-gap: 14px;
  row-gap: 10px;
  width: 100%;
}

.juno-dim-img-wrap {
  grid-column: 1;
  grid-row: 2;
  display: block;
  width: 190px;
}

.juno-dim-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Topp: bredde-måling */
.juno-dim-measure-top {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}

.juno-dim-value {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.juno-dim-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  position: relative;
  min-width: 10px;
}
.juno-dim-line:first-child::before,
.juno-dim-line:last-child::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 1px;
  height: 11px;
  background: var(--gold);
  opacity: 1;
}
.juno-dim-line:first-child::before { left: 0; }
.juno-dim-line:last-child::after  { right: 0; }

/* Høyre: høyde-måling */
.juno-dim-measure-right {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
}

.juno-dim-line-v {
  flex: 1;
  width: 1px;
  background: var(--gold);
  opacity: 0.45;
  position: relative;
  min-height: 20px;
}
.juno-dim-line-v:first-child::before,
.juno-dim-line-v:last-child::after {
  content: '';
  position: absolute;
  left: -5px;
  width: 11px;
  height: 1px;
  background: var(--gold);
  opacity: 1;
}
.juno-dim-line-v:first-child::before { top: 0; }
.juno-dim-line-v:last-child::after   { bottom: 0; }

.juno-dim-value-v {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ---- FEATURES STRIPE ---- */
.juno-features {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px var(--edge);
}

.juno-features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.juno-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.juno-feat svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

/* AEROS-logo (samme som i hamburgermenyen) */
.juno-feat-logo {
  width: 30px;
  height: 24px;
  color: var(--gold);
  display: block;
}

/* ---- SPESIFIKASJONER ---- */
.juno-specs {
  background: var(--bg-dark);
  padding: 80px var(--edge);
}

.juno-specs-inner {
  max-width: 860px;
  margin: 0 auto;
}

.juno-specs-title {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 36px;
}

.juno-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
}

.juno-spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,251,239,0.03);
  border: 1px solid var(--border-subtle);
}

.juno-spec-k {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.juno-spec-v {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,251,239,0.8);
  text-align: right;
}

.juno-specs-note {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,251,239,0.3);
  font-style: italic;
}

/* ---- BUNN-CTA ---- */
.juno-cta {
  background: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  padding: 96px var(--edge);
  text-align: center;
}

.juno-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-top: 12px;
}

/* ---- RESPONSIVT ---- */
@media (max-width: 767px) {

  /* Dimensjoner: stables på mobil */
  .juno-dim { padding: 56px 20px; }
  .juno-dim-inner { grid-template-columns: 1fr; gap: 40px; }
  .juno-dim-text h2 { font-size: clamp(24px, 7vw, 32px); }
  .juno-dim-visual { grid-template-columns: 150px auto; column-gap: 12px; }
  .juno-dim-img-wrap { width: 150px; }
  .juno-dim-specs { gap: 12px; }
  .juno-dim-specs strong { font-size: 13px; }

  /* Hero på mobil: fullbredde bilde-band (HELE bredden vises, ingen side-beskjæring),
     med teksten UNDER motivet — god, jevn luft på alle skjermer, aldri trangt mot koppen.
     Nedre kant av bildet tones rolig ned i mørket før teksten. */
  .juno-hero { min-height: 0; display: block; }

  .juno-hero-video { display: none; }

  .juno-hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1080 / 830;
    background-image:
      linear-gradient(to top, rgba(16,32,48,1) 0%, rgba(16,32,48,0) 22%),
      url('../images/aeros-bilder/juno-hero-mobile.jpg?v=10');
    background-position: center, center;
    background-size: cover, cover;
  }

  .juno-hero-overlay { display: none; }

  .juno-hero-content {
    position: static;
    max-width: none;
    padding: 30px 20px 40px;
  }

  .juno-title {
    font-size: clamp(26px, 7vw, 34px);
    margin: 0 0 10px;
  }

  .juno-hero-meta { margin: 14px 0 22px; }
  .juno-hero-price { font-size: 18px; }

  .juno-hero .eyebrow { margin-bottom: 10px; }

  /* Ikon-stripe: alle 5 på én rad, ingen scroll */
  .juno-icons {
    padding: 24px 16px;
    gap: 0;
    justify-content: space-between;
  }
  .juno-icon-item {
    flex: 1;
    min-width: 0;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .juno-icon-item svg {
    width: 30px;
    height: 30px;
  }

  /* Split: én kolonne */
  .juno-split {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 20px;
  }

  .juno-split-text h2 { font-size: clamp(22px, 6vw, 30px); }

  /* Galleri på mobil: auto-roterende karusell (ett bilde om gangen, ingen sveiping) */
  .juno-gallery {
    padding: 0 0 48px;
    overflow: hidden;
  }
  .juno-gallery-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    overflow: visible;
    transition: transform .6s ease;
    will-change: transform;
    touch-action: pan-y;            /* tillat vertikal scroll, ingen horisontal sveip */
  }
  .juno-gallery-img,
  .juno-gallery-img--contain {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  /* Features: 3 kolonner */
  .juno-features { padding: 32px 20px; }
  .juno-features-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 8px;
    justify-items: center;
  }
  .juno-feat { font-size: 12px; gap: 10px; }
  .juno-feat svg { width: 30px; height: 30px; }
  .juno-feat-logo { width: 42px; height: 32px; }

  /* Spesifikasjoner: én kolonne + sammenleggbar */
  .juno-specs { padding: 48px 20px; }
  .juno-specs-grid {
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
  }
  .juno-specs.specs-open .juno-specs-grid { max-height: 2600px; }
  .juno-specs.specs-open .juno-specs-chevron svg { transform: rotate(45deg); }
  .juno-specs-toggle { cursor: pointer; justify-content: space-between; text-align: left; }
  .juno-specs-chevron { display: inline-flex; align-items: center; }
  .juno-spec { padding: 12px 14px; }
  .juno-spec-k { font-size: 12px; }
  .juno-spec-v { font-size: 12px; }

  /* CTA */
  .juno-cta { padding: 64px 20px; }
  .juno-cta h2 { font-size: clamp(26px, 7vw, 40px); }

  /* Founder: én kolonne */
  .juno-founder { margin-top: 72px; padding-bottom: 88px; }
  .juno-founder-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   HERO — tagline + frakt
   ============================================================ */
.juno-hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,251,239,0.82);
  margin: 0 0 30px;
  line-height: 1.4;
}
.juno-hero-tagline em { font-style: italic; color: var(--gold); }

.juno-hero-price {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gold-light);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.juno-hero-btn {
  padding: 17px 44px;
}

.juno-hero-edition {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

/* ============================================================
   SPESIFIKASJONER — toggle (alltid åpen på desktop)
   ============================================================ */
.juno-specs-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
  color: inherit;
}
.juno-specs-titlewrap { display: flex; flex-direction: column; gap: 2px; }
.juno-specs-hint { display: none; }
.juno-specs-chevron { display: none; color: var(--gold); }
.juno-specs-chevron svg { width: 20px; height: 20px; transition: transform .3s ease; }

/* ============================================================
   I ESKEN + FRAKT — plassering på juno-siden
   ============================================================ */
.juno-page .sp-box {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 60px var(--edge) 0;
}
.juno-ship-wrap {
  max-width: 460px;
  margin: 28px auto 0;
  text-align: left;
}

/* ============================================================
   STØRRELSE I HVERDAGEN — sammenligning (bilde + tekst)
   ============================================================ */
.juno-size {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 var(--edge);
  text-align: center;
}
.juno-size-img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}
.juno-size-text {
  max-width: 620px;
  margin: 42px auto 0;
}
.juno-size-text .eyebrow { display: block; margin-bottom: 14px; }
.juno-size-text h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 18px;
}
.juno-size-text h2 em { font-style: italic; color: var(--gold); }
.juno-size-text p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  margin: 0 auto;
  max-width: 52ch;
}
.juno-size-dims {
  display: inline-flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.juno-size-dims div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.juno-size-dims span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.juno-size-dims strong {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--gold-light);
}
@media (max-width: 767px) {
  .juno-size { margin-top: 80px; padding: 0 14px; }
  .juno-size-text { margin-top: 24px; }
  .juno-size-dims { gap: 24px; margin-top: 24px; padding-top: 20px; }
}

/* ============================================================
   GODT Å VITE FØR DU BESTILLER — ærlig avklaring (konvertering)
   ============================================================ */
.juno-knowbefore {
  max-width: 1100px;
  margin: 96px auto 0;
  padding: 0 var(--edge);
  text-align: center;
}
.juno-knowbefore-inner {
  background: rgba(255,251,239,0.03);
  border: 1px solid rgba(198,185,150,0.15);
  border-radius: 16px;
  padding: 48px 40px;
}
.juno-knowbefore .eyebrow { display: block; margin-bottom: 14px; }
.juno-knowbefore h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 14px;
}
.juno-knowbefore h2 em { font-style: italic; color: var(--gold); }
.juno-knowbefore-lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}
.juno-knowbefore-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
}
.juno-kb-col {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px 22px;
}
.juno-kb-col h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.juno-kb-yes h3 { color: var(--gold); }
.juno-kb-no h3 { color: var(--text-faint); }
.juno-kb-col ul { list-style: none; margin: 0; padding: 0; }
.juno-kb-col li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}
.juno-kb-col li:last-child { margin-bottom: 0; }
.juno-kb-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1.6;
}
.juno-kb-yes li::before { content: '✓'; color: var(--gold-light); }
.juno-kb-no li::before { content: '✕'; color: rgba(255,251,239,0.4); }
.juno-knowbefore-note {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}
.juno-knowbefore-note a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(255,241,203,0.3);
  white-space: nowrap;
}

/* Kompakt NFC-note — erstattet den store «Godt å vite»-seksjonen (full oversikt på /qa) */
.juno-nfc-note {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 16px 22px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: rgba(255,251,239,0.02);
  border: 1px solid rgba(198,185,150,0.14);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,251,239,0.58);
  text-align: left;
}
.juno-nfc-note svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--gold); opacity: 0.75; margin-top: 2px; }
.juno-nfc-note p { margin: 0; }
.juno-nfc-note strong { color: rgba(255,251,239,0.82); font-weight: 500; }
.juno-nfc-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }

/* Founder-sitat i CTA */
.juno-quote {
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 0;
  border: none;
}
.juno-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 12px;
}
.juno-quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 767px) {
  .juno-nfc-note { margin: 44px var(--edge) 0; }
}

/* ============================================================
   HVA FOUNDERS SIER — sosialt bevis (konvertering)
   ============================================================ */
.juno-voices {
  max-width: 1100px;
  margin: 96px auto 0;
  padding: 0 var(--edge);
  text-align: center;
}
.juno-voices .eyebrow { display: block; margin-bottom: 14px; }
.juno-voices h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 36px;
}
.juno-voices h2 em { font-style: italic; color: var(--gold); }
.juno-voices-stat {
  background: rgba(255,241,203,0.05);
  border: 1px solid rgba(255,241,203,0.20);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 480px;
  margin: 0 auto 36px;
}
.juno-voices-stat svg { width: 30px; height: 30px; color: var(--gold-light); margin-bottom: 6px; }
.juno-voices-stat-lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  color: var(--text);
  margin: 8px 0 0;
}
.juno-voices-stat-lead em { font-style: italic; color: var(--gold-light); }
.juno-voices-stat-detail {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 8px 0 0;
}
.juno-voices-stat-meta {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin-top: 12px;
}
.juno-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
}
.juno-voice {
  background: rgba(255,251,239,0.03);
  border: 1px solid rgba(198,185,150,0.15);
  border-radius: 12px;
  padding: 24px 22px;
  margin: 0;
}
.juno-voice p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 14px;
}
.juno-voice cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.juno-voices-note {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}
.juno-voices-note a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(255,241,203,0.3);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .juno-voices { padding: 0 20px; margin-top: 64px; }
  .juno-voices-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   FOUNDER'S EDITION — forklaring
   ============================================================ */
.juno-founder {
  max-width: 1100px;
  margin: 96px auto 0;
  padding: 64px var(--edge) 88px;
  text-align: center;
  background: var(--bg-dark);
  border-radius: 24px;
}
.juno-founder .eyebrow { display: block; margin-bottom: 14px; }
.juno-founder h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 16px;
}
.juno-founder h2 em { font-style: italic; color: var(--text); }
.juno-founder-lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 56px;
}
.juno-founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.juno-founder-card {
  background: rgba(255,251,239,0.03);
  border: 1px solid rgba(198,185,150,0.15);
  border-radius: 4px;
  padding: 32px 28px;
}
.juno-founder-card svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 18px; }
.juno-founder-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 10px;
}
.juno-founder-card p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin: 0;
}
.juno-founder-foot {
  margin: 30px 0 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,251,239,0.5);
  letter-spacing: 0.01em;
}
.juno-founder-foot strong { color: rgba(255,251,239,0.82); font-weight: 500; }
.juno-founder-cta { margin-top: 40px; }
.juno-founder-scarcity {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============================================================
   "FÅ IGJEN!" — knapphet-signal (hero + founder CTA)
   ============================================================ */
.juno-hero-scarcity {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.juno-scarcity-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  animation: aeros-scarcity-breath 2.8s ease-in-out infinite;
}
@keyframes aeros-scarcity-breath {
  0%, 100% { opacity: 1;   }
  50%      { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .juno-scarcity-dot { animation: none; opacity: 0.85; }
}
.juno-founder-price {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--gold-light);
  margin: 0 0 20px;
}
.juno-founder-cta-note {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,251,239,0.55);
  margin: 18px 0 0;
  letter-spacing: 0.03em;
}

/* ============================================================
   MOBIL — gjeninnfører overstyringer som må vinne over base
   (base-stilene over står senere i fila enn første media query)
   ============================================================ */
@media (max-width: 767px) {
  /* Founder: én kolonne (hindrer horisontal overflyt) */
  .juno-founder { margin-top: 72px; padding: 52px 22px 72px; border-radius: 18px; }
  .juno-founder-grid { grid-template-columns: 1fr; gap: 16px; }
  .juno-founder-lead { margin-bottom: 40px; }

  /* Spesifikasjoner: tydelig klikkbar boks + chevron + sammenleggbar */
  .juno-specs-toggle {
    cursor: pointer;
    justify-content: space-between;
    text-align: left;
    border: 1px solid rgba(198,185,150,0.32);
    border-radius: 4px;
    padding: 15px 18px;
    background: rgba(255,251,239,0.04);
    transition: background .2s ease, border-color .2s ease;
  }
  .juno-specs.specs-open .juno-specs-toggle { background: rgba(255,251,239,0.07); border-color: rgba(198,185,150,0.5); }
  .juno-specs-hint {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gold);
  }
  .juno-specs.specs-open .juno-specs-hint { color: var(--text-dim); }
  .juno-specs-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(198,185,150,0.4);
  }
  .juno-specs-grid { max-height: 0; overflow: hidden; transition: max-height .45s ease; margin-top: 14px; }
  .juno-specs.specs-open .juno-specs-grid { max-height: 2600px; }
  .juno-specs.specs-open .juno-specs-chevron svg { transform: rotate(45deg); }

  /* I esken — smalere kantmarg på mobil */
  .juno-page .sp-box { margin-top: 56px; padding: 48px 20px 0; }
  .juno-ship-wrap { max-width: 100%; margin-top: 24px; }
}

/* ============================================================
   ROLIG OVERSKRIFT-STIL — hvit kursiv (ikke gull) + luft (0.032em)
   ============================================================ */
.juno-title, .juno-hero-tagline, .juno-page h2, .juno-voices-stat-lead {
  letter-spacing: 0.032em;
}
.juno-hero-tagline em, .juno-page h2 em, .juno-voices-stat-lead em {
  font-style: italic;
  color: var(--text);
}
