@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #fdfdfb; /* Pure, peaceful warm light background */
  --bg-soft: #f8f6f2; /* Soft sand background */
  --surface: rgba(255, 255, 255, 0.78);
  --surface-card: #ffffff;
  
  /* Brand colors */
  --text: #0c403c; /* Dark forest green, peaceful and premium */
  --text-muted: #536c68; /* Soft green-gray */
  --accent: #e95b12; /* Vibrant coral orange, main app brand color */
  --accent-hover: #d24e0d;
  --accent-light: #fff3ed; /* Pale peach for badges */
  --sage: #dfe9dc; /* Sage green for wellness accents */
  --sage-light: #f2f7f1; /* Soft green tint */
  
  --line: rgba(12, 64, 60, 0.07);
  --shadow-sm: 0 4px 12px rgba(12, 64, 60, 0.02);
  --shadow-md: 0 16px 36px rgba(12, 64, 60, 0.04);
  --shadow-lg: 0 24px 50px rgba(12, 64, 60, 0.06);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Typography */
  --font-sans: "Lufga", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --container: min(1160px, calc(100% - 3rem));
}

/* Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Background Ambient Glows - Organic floating lights */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.38;
}

body::before {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(233, 91, 18, 0.35), rgba(255, 138, 74, 0));
  top: -10%;
  right: -5%;
  animation: blob-float-1 25s infinite alternate ease-in-out;
}

body::after {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(223, 233, 220, 0.8), rgba(143, 168, 165, 0));
  bottom: -15%;
  left: -10%;
  animation: blob-float-2 30s infinite alternate ease-in-out;
}

@keyframes blob-float-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8vw, 10vh) scale(1.1); }
  100% { transform: translate(5vw, -5vh) scale(0.9); }
}

@keyframes blob-float-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10vw, -10vh) scale(1.15); }
  100% { transform: translate(-5vw, 5vh) scale(0.95); }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Typographic Defaults */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800; /* Geometric bold style for Lufga */
  line-height: 1.05;
  color: var(--text);
}

h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 62ch;
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* Header & Navigation - Floating Capsule Design */
.site-header {
  position: sticky;
  top: 1.25rem;
  z-index: 100;
  margin: 1.25rem auto 0;
  width: var(--container);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 
    0 10px 40px rgba(12, 64, 60, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.8rem;
}

.nav-topbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  width: 4.5rem;
  aspect-ratio: 442 / 199;
  overflow: hidden;
  color: transparent;
  line-height: 1;
  white-space: nowrap;
  background: url("../assets/logo.png") center / contain no-repeat;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav {
  display: flex;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background-color: rgba(223, 233, 220, 0.5);
}

/* Liquid Glass Buttons */
.store-link, .button-primary {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(233, 91, 18, 0.92), rgba(255, 118, 50, 0.92));
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 
    0 10px 24px rgba(233, 91, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.store-link:hover, .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 14px 32px rgba(233, 91, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(233, 91, 18, 1), rgba(255, 118, 50, 1));
  color: #ffffff;
}

.button-accent, .button-secondary {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 6px 20px rgba(12, 64, 60, 0.03),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.button-accent:hover, .button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 10px 28px rgba(12, 64, 60, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.lang-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(12, 64, 60, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-toggle button.is-active {
  background: var(--text);
  color: #ffffff;
}

/* Mobile Toggle menu button */
.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  transition: all 0.25s ease;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background-color: var(--text);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Glassmorphic Panels & Cards */
.story-card, .challenge-card, .tip-card, .club-row, .faq-list details, .cta-panel, .final-cta, .note-card, .showcase-card, .feature-card {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 10px 30px rgba(12, 64, 60, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover, .challenge-card:hover, .tip-card:hover, .club-row:hover, .feature-card:hover, .showcase-card:hover {
  transform: translateY(-5px) scale(1.01);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 20px 45px rgba(12, 64, 60, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero-home {
  position: relative;
  padding: clamp(3rem, 6vh, 6rem) 0 clamp(4rem, 8vh, 8rem);
}

.hero-home-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-home h1 {
  margin-bottom: 1.5rem;
}

.hero-media {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 50%;
  height: 80%;
  z-index: 1;
  pointer-events: none;
  background: url("../assets/drive-download-20260522T205042Z-3-001/Group%201597880425.png") center right / contain no-repeat;
  filter: drop-shadow(0 30px 60px rgba(12, 64, 60, 0.06));
}

.app-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 
    0 8px 24px rgba(12, 64, 60, 0.03),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(12, 64, 60, 0.08);
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.75);
}

.download-badge-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.download-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.download-badge small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-badge strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Luxury stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  width: 100%;
  max-width: 44rem;
  z-index: 2;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-stats dt {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Value Band */
.value-band {
  padding: 1.5rem 0;
}

.value-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: rgba(223, 233, 220, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.5rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 10px 30px rgba(12, 64, 60, 0.02),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.value-band-grid p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.value-band-grid p:not(:last-child) {
  border-right: 1px solid rgba(12, 64, 60, 0.12);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 9vh, 7.5rem) 0;
}

.section-heading {
  margin-bottom: 3.5rem;
  max-width: 50rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading h2 {
  margin-bottom: 1.2rem;
}

.gallery-copy {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 58ch;
}

/* Feature story grid */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.story-card img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  object-position: top center; /* Focus strictly on top half graphic, hiding bottom text */
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover img {
  transform: scale(1.03);
}

.story-card > div {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.feature-number {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  background-color: var(--accent-light);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.story-card h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.story-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Challenge Section */
.challenge-section {
  background: 
    radial-gradient(circle at top right, rgba(233, 91, 18, 0.03), transparent 40%),
    radial-gradient(circle at bottom left, rgba(223, 233, 220, 0.25), transparent 45%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.challenge-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.challenge-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.challenge-card {
  padding: 2rem 1.8rem;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.challenge-card span {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background-color: rgba(223, 233, 220, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: auto;
}

.challenge-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.challenge-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Community Section */
.community-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.community-copy {
  position: sticky;
  top: 8rem;
}

.community-copy p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.community-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.club-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.6rem 2rem;
}

.club-avatar {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(233, 91, 18, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.club-avatar-alt {
  background-color: var(--sage);
  color: var(--text);
  box-shadow: 0 6px 16px rgba(223, 233, 220, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.club-avatar-dark {
  background-color: var(--text);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(12, 64, 60, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.club-row div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.club-row strong {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.club-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Store (Agenda) Section */
.section-store {
  background-color: #faf8f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-lead {
  margin-bottom: 2rem;
}

.store-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Redesigned to strictly crop top half, hiding bottom onboarding text */
.store-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-soft);
  height: 24rem; /* Limit container height to enforce cropping */
}

.store-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* Show hand writing and book, hide text below */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-photo-frame:hover img {
  transform: scale(1.03);
}

/* Tips Section */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tip-card {
  padding: 2.2rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tip-card span {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background-color: var(--accent-light);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.tip-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
  color: var(--text);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  background: 
    linear-gradient(90deg, rgba(253, 253, 251, 0.96) 30%, rgba(248, 246, 242, 0.8) 100%),
    url("../assets/drive-download-20260514T175544Z-3-001/Onboarding%204.png") center 30% / cover no-repeat;
  padding: 8rem 0;
}

.final-cta {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 4rem 5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.final-cta h2 {
  margin-bottom: 1.2rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
}

.final-cta .app-downloads {
  margin-top: 0;
  justify-content: flex-end;
}

/* FAQ Accordion Section */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1.25rem 1.6rem;
}

.faq-list details[open] {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  background-color: rgba(223, 233, 220, 0.5);
}

.faq-list summary {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list p {
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Legal band */
.legal-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 2.2rem 3rem;
  box-shadow: var(--shadow-sm);
}

.cta-panel h2 {
  font-size: 1.8rem;
}

.cta-links {
  display: flex;
  gap: 1rem;
}

.mini-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.mini-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--surface-card);
}

/* Footer */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  background-color: var(--bg-soft);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.brand-footer {
  margin-bottom: 1.2rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

/* About / Inner Pages specific styling */
.page-hero {
  padding: 5rem 0 3rem;
  background: 
    radial-gradient(circle at 5% 5%, rgba(223, 233, 220, 0.4), transparent 30%),
    radial-gradient(circle at 95% 5%, rgba(255, 243, 237, 0.4), transparent 30%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-hero-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero h1 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.rich-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.section-accent {
  background-color: var(--sage-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.showcase-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
}

.showcase-card-dark {
  background: 
    radial-gradient(circle at top right, rgba(233, 91, 18, 0.15), transparent 45%),
    var(--text);
  color: var(--bg-soft);
  border-color: var(--text);
}

.showcase-card-dark h2 {
  color: #ffffff;
}

.showcase-card-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.showcase-card h2 {
  margin-bottom: 1rem;
}

.showcase-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Sticky notes for legal pages */
.article-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.note-card {
  position: sticky;
  top: 7rem;
}

.note-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.note-card p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.note-card p:last-child {
  margin-bottom: 0;
}

.legal-copy {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-copy section h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.legal-copy section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-copy section p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.legal-copy ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-copy li {
  margin-bottom: 0.5rem;
}

/* Media Queries & Responsive layout adjustments */
@media (max-width: 1080px) {
  .site-header {
    top: 1rem;
    margin: 1rem auto 0;
  }
  
  .hero-home-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-media {
    position: relative;
    top: 0;
    right: 0;
    width: 80%;
    height: 25rem;
    margin: 2rem auto 0;
    background-position: center;
  }
  
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .challenge-layout,
  .community-grid,
  .store-panel,
  .final-cta,
  .faq-layout,
  .article-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .community-copy,
  .note-card {
    position: static;
  }
  
  .final-cta {
    padding: 3rem;
  }
  
  .final-cta .app-downloads {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-controls {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1.5rem;
  }
  
  .nav-controls.is-open {
    display: flex;
  }
  
  .site-nav {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  
  .site-nav a {
    text-align: center;
    padding: 0.8rem;
  }
  
  .store-link {
    width: 100%;
  }
  
  .lang-toggle {
    width: 100%;
    justify-content: center;
  }
  
  .value-band-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .value-band-grid p:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(12, 64, 60, 0.12);
    padding-bottom: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-media {
    width: 100%;
    height: 18rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-grid,
  .challenge-grid,
  .tips-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card img {
    height: 16rem;
  }
  
  .store-photo-frame img {
    height: 22rem;
  }
  
  .cta-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .cta-links {
    flex-direction: column;
  }
  
  .mini-link {
    text-align: center;
  }
  
  .footer-shell {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    width: 100%;
  }
  
  .final-cta {
    padding: 2rem 1.5rem;
  }
  
  .faq-list details {
    padding: 1.25rem 1.2rem;
  }
}
