:root {
  color-scheme: light;
  --ink: #eef6ff;
  --muted: rgba(255, 255, 255, 0.72);
  --canvas: #0b1627;
  --sea: #1e3b57;
  --foam: #2b4866;
  --sun: #6bd4ff;
  --leaf: #2a3d54;
  --coral: #1c2f44;
  --card: rgba(15, 31, 52, 0.86);
  --shadow: 0 24px 60px rgba(4, 10, 20, 0.4);
  --radius: 26px;
  --stroke: rgba(255, 255, 255, 0.12);
}

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

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at top left, #152538 0%, #0b1627 50%, #08101c 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

.ambient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(107, 212, 255, 0.2), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(43, 72, 102, 0.35), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(21, 37, 56, 0.6), transparent 50%);
  z-index: -2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 16px;
  gap: 24px;
  position: sticky;
  top: 0;
  background: rgba(11, 22, 39, 0.9);
  backdrop-filter: blur(16px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 48px;
  height: 48px;
}

.brand-name {
  font-family: "Fraunces", "Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: #6bd4ff;
}

.lang-switch {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.lang-switch select {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 0.9rem;
  background: rgba(15, 31, 52, 0.9);
  color: var(--ink);
}

main {
  padding: 10px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding-top: 30px;
}

.hero + .section {
  margin-top: -32px;
}

.hero-copy h1 {
  font-family: "Fraunces", "Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 16px 0 18px;
}

.hero-copy p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.primary {
  background: #6bd4ff;
  color: #0b1c30;
  border: none;
  padding: 12px 22px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(7, 25, 40, 0.5);
}

.store-links {
  display: flex;
  gap: 12px;
}

.store {
  border: 1px solid var(--stroke);
  padding: 10px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(15, 31, 52, 0.7);
}

.hero-highlights {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.highlight {
  background: rgba(15, 31, 52, 0.7);
  border-radius: 16px;
  padding: 10px 16px;
  font-size: 0.9rem;
  border: 1px solid var(--stroke);
}

.qr-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qr-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.qr-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  text-align: center;
}

.qr-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.qr-code {
  width: min(200px, 70vw);
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.qr-caption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.qr-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-head h2 {
  font-family: "Fraunces", "Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.cap-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 460px);
  gap: 28px;
  align-items: start;
}

.cap-shot {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.cap-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
}

.cap-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cap-carousel img.is-active {
  opacity: 1;
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.background-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
}

.background-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.background-meta {
  padding: 14px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.background-meta h3 {
  font-size: 1rem;
}

.media-type {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(15, 31, 52, 0.8);
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid var(--stroke);
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.card.wide {
  max-width: 980px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list li {
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6bd4ff;
  position: absolute;
  left: 0;
  top: 8px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.shot {
  display: grid;
  gap: 12px;
  text-align: center;
  color: var(--muted);
}

.shot img,
.shot-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(43, 72, 102, 0.6), rgba(21, 37, 56, 0.8));
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #dbe8f5;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.shot img {
  object-fit: cover;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.rhythm-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  text-align: center;
}

.rhythm-thumb {
  height: 120px;
  width: min(100%, 240px);
  border-radius: 16px;
  margin: 0 auto 12px;
  object-fit: cover;
}

.rhythm-card.custom .rhythm-thumb {
  background: linear-gradient(135deg, #1c3146, #2a4a66);
  position: relative;
}

.rhythm-card.custom .rhythm-thumb::after {
  content: "3-10 / 3-10";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #dbe8f5;
}

.section .card.wide {
  margin-top: 24px;
}

.site-footer {
  padding: 36px 6vw 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cap-layout {
    grid-template-columns: 1fr;
  }
}
