/* Contuni — design tokens (Nuvaro-based, nordic cool shift) */

@font-face {
  font-family: "DM Sans";
  font-weight: 300;
  src: url("fonts/DMSans-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  src: url("fonts/DMSans-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  font-weight: 500;
  src: url("fonts/DMSans-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  font-weight: 600;
  src: url("fonts/DMSans-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  font-weight: 700;
  src: url("fonts/DMSans-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  font-weight: 600;
  font-style: normal;
  src: url("fonts/Fraunces-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  font-weight: 400;
  font-style: italic;
  src: url("fonts/Fraunces-Italic.ttf") format("truetype");
  font-display: swap;
}

:root {
  /* canvas */
  --bg: #0b0e18;
  --bg-deep: #070914;
  --surface: #131726;
  --surface-raised: #1a1f33;
  --card: #171c2e;
  --border: #232841;
  --border-light: #2e3553;

  /* type */
  --text: #e8e4df;
  --text-soft: #c8c5bd;
  --text-muted: #8b8a97;
  --text-dim: #5c5b6b;

  /* nordic accents */
  --aurora-green: #7ee2b8;       /* vivid norrskensgrön */
  --aurora-green-soft: #4fb894;
  --ice: #9ecfe8;                /* is-blå */
  --ice-deep: #5e9ec5;
  --violet: #a69ed6;              /* nordic twilight */
  --gold: #c9a96e;               /* från Nuvaro – varm lampa */

  --primary: var(--aurora-green);
  --primary-soft: rgba(126, 226, 184, 0.12);

  /* fonts */
  --font-sans: "DM Sans", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;

  /* layout */
  --container: 1160px;
  --container-narrow: 820px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

/* ─────── Navigation ─────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 400ms ease, backdrop-filter 400ms ease, border 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 14, 24, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.nav__brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--aurora-green) 0%, rgba(126, 226, 184, 0.12) 70%, transparent 100%);
  filter: blur(0.5px);
  position: relative;
}
.nav__brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--aurora-green);
  box-shadow: 0 0 10px rgba(126, 226, 184, 0.5);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
  cursor: pointer;
}
.nav__link:hover { color: var(--text); }

.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.nav__lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font: inherit;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms ease;
}
.nav__lang-btn.is-active {
  background: var(--primary-soft);
  color: var(--aurora-green);
}

/* ─────── Hero ─────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  animation: hero-bg-drift 20s ease-in-out infinite alternate;
  animation-play-state: var(--motion-play, running);
}
@keyframes hero-bg-drift {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.09) translate(-2%, -1.5%); }
  100% { transform: scale(1.06) translate(1.5%, 1%); }
}

/* Soft breathing color washes over the sky to suggest atmospheric shift */
.hero__sky-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 1;
}
.hero__sky-glow::before,
.hero__sky-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  animation-play-state: var(--motion-play, running);
}
.hero__sky-glow::before {
  background:
    radial-gradient(ellipse 70% 55% at 30% 25%, rgba(14, 20, 42, 0.55) 0%, rgba(14, 20, 42, 0) 60%),
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(30, 48, 78, 0.5) 0%, rgba(30, 48, 78, 0) 65%);
  animation: hero-sky-a 8s ease-in-out infinite alternate;
}
.hero__sky-glow::after {
  background:
    radial-gradient(ellipse 55% 45% at 60% 18%, rgba(38, 28, 60, 0.5) 0%, rgba(38, 28, 60, 0) 60%),
    radial-gradient(ellipse 65% 50% at 20% 35%, rgba(18, 26, 48, 0.55) 0%, rgba(18, 26, 48, 0) 65%);
  animation: hero-sky-b 10s ease-in-out infinite alternate;
}
@keyframes hero-sky-a {
  0%   { opacity: 0.3; transform: translate(0, 0) scale(1); }
  50%  { opacity: 1; transform: translate(-8%, 2%) scale(1.15); }
  100% { opacity: 0.5; transform: translate(6%, -3%) scale(0.95); }
}
@keyframes hero-sky-b {
  0%   { opacity: 0.25; transform: translate(0, 0) scale(1); }
  50%  { opacity: 0.9; transform: translate(8%, -2%) scale(1.2); }
  100% { opacity: 0.55; transform: translate(-6%, 3%) scale(1.05); }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(6,10,22,0) 0%, rgba(6,10,22,0.35) 55%, rgba(6,10,22,0.75) 100%),
    linear-gradient(to bottom, rgba(6,10,22,0.55) 0%, rgba(6,10,22,0.2) 45%, rgba(6,10,22,0.15) 70%, rgba(6,10,22,0.6) 100%);
}
.hero__content { margin-top: -4vh; }
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* Occasional shooting stars — three streaks at varying delays/angles */
.hero__shooting-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.shooting-star {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 0.75px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 30%, rgba(255,255,255,0.95) 70%, #fff 100%);
  border-radius: 999px;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.75)) drop-shadow(0 0 10px rgba(180,210,255,0.4));
  opacity: 0;
  will-change: transform, opacity;
}
/* Olika riktningar (down-right shallow, up-right, steep down-right),
   längre cykler (saktare apparent-speed), spridda delays så två sällan
   är synliga samtidigt. */
.shooting-star--1 { animation: shoot-1 15s linear infinite; }
.shooting-star--2 { animation: shoot-2 25s linear infinite; animation-delay: 10s; }
.shooting-star--3 { animation: shoot-3 34s linear infinite; animation-delay: 20s; }

/* Star 1: shallow down-right */
@keyframes shoot-1 {
  0%, 94% { transform: translate(15vw, 25vh) rotate(18deg); opacity: 0; }
  95%     { opacity: 0; }
  96%     { opacity: 0.95; }
  100%    { transform: translate(75vw, 45vh) rotate(18deg); opacity: 0; }
}
/* Star 2: up-right (negativ vertikal-delta) */
@keyframes shoot-2 {
  0%, 92% { transform: translate(10vw, 60vh) rotate(-30deg); opacity: 0; }
  93%     { opacity: 0; }
  94%     { opacity: 0.9; }
  100%    { transform: translate(70vw, 25vh) rotate(-30deg); opacity: 0; }
}
/* Star 3: brant down-right */
@keyframes shoot-3 {
  0%, 96% { transform: translate(40vw, 5vh) rotate(62deg); opacity: 0; }
  97%     { opacity: 0; }
  98%     { opacity: 0.85; }
  100%    { transform: translate(75vw, 70vh) rotate(62deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .shooting-star { animation: none !important; opacity: 0 !important; }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero__logo {
  width: 220px;
  height: auto;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 1200ms ease 200ms forwards;
  filter: drop-shadow(0 0 40px rgba(126, 226, 184, 0.2));
}
.hero__lockup {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 1200ms ease 200ms forwards;
}
.hero__mark {
  width: clamp(150px, 17vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 32px rgba(126, 226, 184, 0.55)) drop-shadow(0 0 90px rgba(126, 226, 184, 0.25));
}
.hero__wordmark {
  display: block;
  width: clamp(120px, 14vw, 180px);
  height: auto;
  margin-top: -6px;
  filter: drop-shadow(0 0 18px rgba(126, 226, 184, 0.55)) drop-shadow(0 0 40px rgba(126, 226, 184, 0.25));
}
.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--text);
  opacity: 0;
  animation: hero-fade-in 1200ms ease 600ms forwards;
}
.hero__tagline em {
  font-style: normal;
  font-weight: 400;
  color: var(--text);
}
.hero__tagline .hero__tagline-a {
  color: var(--aurora-green);
  letter-spacing: 0.01em;
  font-weight: 600;
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: #f2efe9;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 40px;
  opacity: 0;
  animation: hero-fade-in 1200ms ease 900ms forwards;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}
/* Aurora sweep — a band of norrskens-colors travels through the letters
   every 10s: 3s sweep, 7s hold */
.hero__subtitle::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 35%,
    rgba(126, 226, 184, 0.95) 44%,
    rgba(158, 207, 232, 1) 50%,
    rgba(199, 133, 232, 0.95) 56%,
    transparent 65%,
    transparent 100%
  );
  background-size: 300% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 0 8px rgba(126, 226, 184, 0.5));
  animation: hero-aurora-sweep 14s linear infinite;
  animation-play-state: var(--motion-play, running);
}
@keyframes hero-aurora-sweep {
  /* ~5s active sweep (0→36% of the 14s cycle), then ~9s pause at rest */
  0%   { background-position: 150% 0; }
  36%  { background-position: -50% 0; }
  100% { background-position: -50% 0; }
}
.hero__quote {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--text-soft);
  opacity: 0;
  animation: hero-fade-in 1200ms ease 1200ms forwards;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--text-dim);
  border-radius: 14px;
  opacity: 0;
  animation: hero-fade-in 1000ms ease 1800ms forwards;
}
.hero__scroll-cue::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 8px;
  background: var(--aurora-green);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 2.4s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.2; }
  50% { transform: translate(-50%, 14px); opacity: 1; }
}

@keyframes hero-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────── Sections ─────── */
.section {
  position: relative;
  padding: clamp(36px, 5vw, 70px) 24px;
}
.section--compact { padding: clamp(28px, 4vw, 50px) 24px; }
.container {
  max-width: var(--container);
  margin: 0 auto;
}
.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aurora-green);
  margin-bottom: 20px;
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.section__title em {
  font-style: italic;
  color: var(--aurora-green);
  font-weight: 400;
}
.section__body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 620px;
  text-wrap: pretty;
}
.section__body + .section__body { margin-top: 20px; }

/* ─────── Thought (Vår tanke) ─────── */
.thought {
  background: var(--bg);
  position: relative;
}
.thought--text-only .container { max-width: 760px; text-align: center; }
.thought--text-only .section__title { margin-bottom: 24px; }
.thought--text-only .section__body { margin-left: auto; margin-right: auto; }
.alphabet-section .container { max-width: 520px; }
.alphabet-section .thought__alphabet { transform: rotate(-1.2deg); }
.thought__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.thought__alphabet {
  position: relative;
  margin: 0;
  transform: rotate(-1.2deg);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.thought__alphabet:hover {
  transform: rotate(0deg) scale(1.02);
}
.thought__alphabet img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}
.alphabet__wrap {
  position: relative;
  display: block;
  perspective: 1200px;
}
.alphabet__tile {
  position: absolute;
  /* M is row 3 (of 5), col 3 (of 5). Tuned to match wellness-alphabet.png grid. */
  left: 41.4%;
  top: 47.3%;
  width: 16.6%;
  height: 17.6%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  -webkit-tap-highlight-color: transparent;
  /* Dark "hole" behind the spinning tile */
  box-shadow: inset 0 0 0 1px transparent;
}
.alphabet__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: 8px;
  opacity: 0;
  box-shadow:
    inset 0 14px 22px -8px rgba(0, 0, 0, 0.85),
    inset 0 -8px 18px -6px rgba(0, 0, 0, 0.65),
    inset 8px 0 18px -10px rgba(0, 0, 0, 0.5),
    inset -8px 0 18px -10px rgba(0, 0, 0, 0.5);
  transform: translateZ(-2px);
  will-change: opacity;
  pointer-events: none;
}
.alphabet__tile.is-spinning::before {
  opacity: 1;
}
.alphabet__tile:focus { outline: none; }
.alphabet__tile:focus-visible .alphabet__tile-inner {
  box-shadow: 0 0 0 2px var(--aurora-green);
  border-radius: 8px;
}
.alphabet__tile-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 2000ms cubic-bezier(0.5, 0.05, 0.3, 1);
  will-change: transform;
  z-index: 1;
}
.alphabet__tile.is-spinning .alphabet__tile-inner {
  transform: rotateY(360deg);
}
.alphabet__tile-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background-image: url("assets/wellness-alphabet.png");
  background-size: 602.4% 568.2%;
  background-position: 49.6% 57.4%;
  background-repeat: no-repeat;
  border-radius: 6px;
}
.alphabet__tile-face--back {
  transform: rotateY(180deg);
}
.thought__alphabet-caption {
  margin-top: 16px;
  padding: 0 4px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.thought__alphabet-caption strong {
  color: var(--aurora-green);
  font-weight: 600;
}

@media (max-width: 880px) {
  .thought__grid { grid-template-columns: 1fr; gap: 60px; }
  .thought__alphabet { transform: rotate(0); max-width: 420px; margin: 0 auto; }
}

/* ─────── Product sections ─────── */
.product {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.product--mind {
  background: radial-gradient(ellipse at 80% 30%, rgba(126, 226, 184, 0.06), transparent 60%), var(--bg);
}
.product--music {
  background: radial-gradient(ellipse at 20% 70%, rgba(158, 207, 232, 0.06), transparent 60%), var(--bg);
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product--music .product__grid { direction: rtl; }
.product--music .product__grid > * { direction: ltr; }

.product__visual {
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.product--mind .product__visual { max-width: 552px; }
.product--music .product__visual { max-width: 408px; }

/* Mind: 2-kolumners grid med poem under text-kolumnen på desktop */
.product--mind .product__grid {
  grid-template-areas:
    "text   visual"
    "poem   visual";
  grid-template-rows: auto auto;
  align-items: start;
}
.product--mind .product__col-text { grid-area: text; }
.product--mind .product__visual { grid-area: visual; align-self: center; }
.product--mind .mind-poem { grid-area: poem; align-self: start; }

/* ─────── Mind-poem (fade-cykel under desc, aktiv bara vid play) ─────── */
.mind-poem {
  margin-top: 12px;
  display: grid;                 /* alla rader staplade i samma grid-cell */
  max-width: 560px;
  font-family: "Comfortaa", "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.25vw, 29px);
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: #d8e8db;
  text-shadow:
    0 0 10px rgba(126, 226, 184, 0.40),
    0 0 22px rgba(126, 226, 184, 0.20);
  pointer-events: none;
}
.mind-poem__line {
  grid-area: 1 / 1;              /* alla i samma cell — overlay */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}
.mind-poem.is-active .mind-poem__line {
  animation: mind-poem-line 55s ease-in-out infinite;
}
.mind-poem.is-active .mind-poem__line:nth-child(1) { animation-delay: 0s; }
.mind-poem.is-active .mind-poem__line:nth-child(2) { animation-delay: 13s; }
.mind-poem.is-active .mind-poem__line:nth-child(3) { animation-delay: 26s; }
.mind-poem.is-active .mind-poem__line:nth-child(4) { animation-delay: 39s; }

/* Per-line tidslinje (av 55s totalt):
   0–3s  fade-in, 3–8s hold, 8–11s fade-out, 11–55s pause
   Stagger 13s ger 2s tystnad mellan rad N (fade-out klar 11s)
   och rad N+1 (fade-in start 13s). */
@keyframes mind-poem-line {
  0%     { opacity: 0; transform: translateY(8px); }
  5.45%  { opacity: 1; transform: translateY(0); }
  14.55% { opacity: 1; transform: translateY(0); }
  20%    { opacity: 0; transform: translateY(-4px); }
  100%   { opacity: 0; transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .mind-poem.is-active .mind-poem__line { animation: none; }
  .mind-poem.is-active .mind-poem__line:first-child { opacity: 0.85; }
}
.product__visual svg { width: 100%; height: 100%; display: block; }

.audio-player-btn {
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: 50%;
  transition: transform 300ms ease;
}
.audio-player-btn:hover { transform: scale(1.02); }
.audio-player-btn:focus-visible {
  outline: 2px solid var(--aurora-green);
  outline-offset: 8px;
}
.audio-player-btn svg { pointer-events: none; }
.audio-player-btn__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(19, 23, 38, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 200ms ease, background 200ms ease;
  pointer-events: none;
}
.audio-player-btn:hover .audio-player-btn__icon { opacity: 1; background: rgba(19, 23, 38, 0.75); }
.audio-player-btn__icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
/* ─────── Kaleidoscope section ─────── */
.kaleidoscope-section { background: var(--bg-deep); }
.kaleidoscope-section .section__title { margin-top: 12px; margin-bottom: 48px; }
.kaleidoscope-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: clamp(420px, 60vw, 580px);
  padding: 0;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: border-color 400ms ease, box-shadow 400ms ease;
}
.kaleidoscope-stage:hover { border-color: rgba(255, 255, 255, 0.14); }
.kaleidoscope-stage:focus-visible {
  outline: 2px solid var(--aurora-green);
  outline-offset: 6px;
}
.kaleidoscope-stage.is-playing { box-shadow: 0 0 48px rgba(126, 226, 184, 0.18); }

/* Kaleidoscope play button (under stage). Triggar kal-audio + adapt-läge. */
.kal-play-btn {
  display: block;
  margin: 28px auto 0;
  width: 84px;
  height: 84px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(19, 23, 38, 0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  position: relative;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
.kal-play-btn:hover {
  transform: scale(1.06);
  background: rgba(19, 23, 38, 0.75);
  border-color: rgba(255, 255, 255, 0.32);
}
.kal-play-btn:focus-visible {
  outline: 2px solid var(--aurora-green);
  outline-offset: 6px;
}
.kal-play-btn .audio-player-btn__icon {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background: transparent;
  border: none;
  backdrop-filter: none;
}
.kaleidoscope-stage canvas,
.kaleidoscope-stage .kal-tilt-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.kaleidoscope-stage .kal-tilt-wrap {
  transform-style: preserve-3d;
  animation: kal-tilt 24s ease-in-out infinite;
  will-change: transform;
}
@keyframes kal-tilt {
  0%, 100% { transform: rotateX(14deg) rotateY(-8deg); }
  25%      { transform: rotateX(-8deg) rotateY(14deg); }
  50%      { transform: rotateX(12deg) rotateY(18deg); }
  75%      { transform: rotateX(-14deg) rotateY(-16deg); }
}

.audio-player-btn.is-playing .audio-player-btn__icon::before,
.kal-play-btn.is-playing .audio-player-btn__icon::before {
  border: none;
  width: 16px;
  height: 18px;
  margin-left: 0;
  background:
    linear-gradient(#fff, #fff) left/5px 100% no-repeat,
    linear-gradient(#fff, #fff) right/5px 100% no-repeat;
}

.product__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.product__name-img {
  display: block;
  width: clamp(260px, 34vw, 440px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(126, 226, 184, 0.35)) drop-shadow(0 0 40px rgba(126, 226, 184, 0.15));
}
.product__name span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--aurora-green);
}
.product--music .product__name span { color: var(--ice); }

.product__desc {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 32px;
  max-width: 460px;
  text-wrap: pretty;
}
.product__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-soft);
}
.product__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aurora-green);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(126, 226, 184, 0.6);
}
.product--music .product__features li::before {
  background: var(--ice);
  box-shadow: 0 0 10px rgba(158, 207, 232, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--aurora-green);
  color: var(--bg);
  background: var(--aurora-green);
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background: transparent;
  color: var(--aurora-green);
  box-shadow: 0 0 24px rgba(126, 226, 184, 0.35);
}
.btn--ice {
  border-color: var(--ice);
  background: var(--ice);
  color: var(--bg);
}
.btn--ice:hover {
  background: transparent;
  color: var(--ice);
  box-shadow: 0 0 24px rgba(158, 207, 232, 0.35);
}
.btn__arrow {
  transition: transform 300ms ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

@media (max-width: 880px) {
  .product__grid { grid-template-columns: 1fr; gap: 48px; }
  .product--music .product__grid { direction: ltr; }
  .product__visual { max-width: 340px; }
  .product--mind .product__visual { max-width: 408px; }
  .product--music .product__visual { max-width: 306px; }
  .product--mind .product__grid {
    grid-template-areas:
      "text"
      "visual"
      "poem";
    row-gap: 10px;
  }
  .product--mind .mind-poem { justify-self: center; text-align: center; margin-top: 0; }
}

/* ─────── Contact / Footer ─────── */
.contact {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  padding: clamp(32px, 4.5vw, 60px) 24px 48px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 80px;
}
.contact__grid > .contact__col:first-child { max-width: 640px; }
.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 80px;
}
.contact__details .contact__col { min-width: 0; }
.contact__col h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.contact__col p, .contact__col address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}
.contact__col a {
  color: var(--aurora-green);
  transition: opacity 200ms ease;
}
.contact__col a:hover { opacity: 0.8; }
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--text-soft);
}
.contact__list a { color: var(--text-soft); }
.contact__list a:hover { color: var(--aurora-green); }

.footer-bar {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bar a { color: var(--text-muted); transition: color 200ms ease; }
.footer-bar a:hover { color: var(--text); }
.footer-bar__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────── Scroll reveal ─────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1), transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────── Mobile nav ─────── */
@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav__links { gap: 16px; }
  .nav__link { display: none; }
  .nav__lang { margin-left: auto; }
  .nav__links .nav__link--mobile { display: inline; font-size: 12px; }
}

/* ─────── Utility ─────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
