:root {
  /* Palette derived from icon.png (yin-yang botanical) */
  --cream: #f9f5eb;
  --deep: #003d33;
  --deep-alt: #002a24;
  --sage: #9db08c;
  --sage-light: #b5c9a8;
  --sage-muted: #7a9468;
  --blue: #8aa7b0;
  --blue-light: #c5d8d1;
  --bamboo: #d9c5a3;
  --bamboo-light: #e8dcc4;
  --blush: #e8e0d4;
  --muted: #8a9e92;
  --card-bg: rgba(255,255,255,0.05);
}

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

/* The `hidden` attribute must win over component rules that set `display`
   (e.g. .btn-primary { display:inline-flex }), so platform hiding works. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Content-width padding: sections are full-bleed, content stays ≤ 1600px */
:root {
  --content-max: 1600px;
  --pad-h: max(6rem, calc((100vw - var(--content-max)) / 2 + 6rem));
}

/* full-bleed bg behind constrained content */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 12% 88%, rgba(157, 176, 140, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(138, 167, 176, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 55% 45%, rgba(217, 197, 163, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(197, 216, 209, 0.09) 0%, transparent 58%),
    linear-gradient(168deg, #003d33 0%, #0a322c 42%, #002820 100%);
  z-index: -1;
}

/* LANG TOGGLE */
.lang-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  gap: 0;
  border: 1px solid rgba(181, 201, 168, 0.25);
  border-radius: 2rem;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  background: rgba(22, 52, 40, 0.60);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(249,245,235,0.08);
}

/* SIBLING APP LINK – matches the lang toggle styling */
.sibling-link {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.9rem;
  border: 1px solid rgba(181, 201, 168, 0.25);
  border-radius: 2rem;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  background: rgba(22, 52, 40, 0.60);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(249,245,235,0.08);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(181, 201, 168, 0.65);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.sibling-link:hover {
  border-color: rgba(181, 201, 168, 0.4);
  color: var(--sage-light);
  background: rgba(22, 52, 40, 0.78);
}
.sibling-link svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.3s; }
.sibling-link:hover svg { opacity: 1; }
.lang-btn {
  padding: 0.45rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(181, 201, 168, 0.65);
  transition: color 0.25s, background 0.25s;
  text-decoration: none;
  min-width: 44px;
  text-align: center;
}
.lang-btn:hover {
  color: var(--sage-light);
  background: rgba(181, 201, 168, 0.10);
}
.lang-btn.active {
  background: rgba(181, 201, 168, 0.22);
  color: var(--cream);
}

/* HERO ICON – sized relative to the title so the proportion holds at any width */
.hero-icon {
  width: calc(var(--hero-title-fs) * 0.8);
  height: calc(var(--hero-title-fs) * 0.8);
  border-radius: 1.2rem;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* HERO HEAD – icon sits in the title row; the title shifts right beside it. */
.hero-head {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 0.2em;
}
.hero-head .hero-title { margin-bottom: 0; }
/* Optically centre the icon on the WORD, not the line box: the big serif line
   box carries extra leading above the glyphs. Offset is tied to the title font
   size so it scales across breakpoints. */
.hero-head .hero-icon { position: relative; top: calc(var(--hero-title-fs) * -0.035); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(0, 800px);
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 72% 48%, rgba(157, 176, 140, 0.13) 0%, transparent 68%),
    radial-gradient(ellipse 42% 38% at 18% 82%, rgba(197, 216, 209, 0.10) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 35% 15%, rgba(217, 197, 163, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(138, 167, 176, 0.07) 0%, transparent 48%);
}

/* Grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-left {
  --hero-title-fs: clamp(4rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 6rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--hero-title-fs);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-light);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blue-light);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 28rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--sage);
  color: var(--deep);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(122,158,126,0.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(122,158,126,0.35);
  color: var(--cream);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-light);
  background: rgba(122,158,126,0.08);
}

/* PHONE MOCKUP */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 4rem 0;
}

.phone-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(122,158,126,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.phone {
  width: 240px;
  height: 480px;
  background: linear-gradient(160deg, #162e24 0%, #0c2218 100%);
  border-radius: 2.5rem;
  border: 1px solid rgba(122,158,126,0.25);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #0c2218;
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.phone-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  margin-top: 1.2rem;
}

.phone-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 2rem;
}

.phone-line {
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  margin: 0 auto 2rem;
}

.phone-bottom {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.phone-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(122,158,126,0.12);
  border: 1px solid rgba(122,158,126,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.floating-card {
  position: absolute;
  background: rgba(15,42,32,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(122,158,126,0.18);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  color: var(--cream);
  white-space: nowrap;
}
.floating-card .fc-label {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.floating-card .fc-val {
  color: var(--sage-light);
  font-weight: 500;
}
.card-1 {
  top: 15%;
  right: -30px;
  animation: float 4s ease-in-out infinite;
}
.card-2 {
  bottom: 20%;
  left: -40px;
  animation: float 5s ease-in-out 1s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122,158,126,0.2) 30%, rgba(122,158,126,0.2) 70%, transparent 100%);
  margin: 0 4rem;
}

/* FEATURES */
.features {
  padding: 8rem var(--pad-h);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,158,126,0.15), transparent);
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 4rem;
  max-width: 30rem;
}
.section-title em {
  font-style: italic;
  color: var(--sage-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(122,158,126,0.1);
  border: 1px solid rgba(122,158,126,0.1);
}

.feature-item {
  background: var(--deep);
  padding: 2.5rem 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-item:hover::before { transform: scaleX(1); }
.feature-item:hover { background: rgba(122,158,126,0.04); }

.feat-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.feat-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
}

/* QUOTE SHOWCASE */
.quote-section {
  padding: 6rem var(--pad-h);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(197, 216, 209, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(157, 176, 140, 0.08) 0%, transparent 55%);
}

.quote-marks {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: rgba(122,158,126,0.12);
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
  position: relative;
  z-index: 1;
}

.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.quote-cat-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(122,158,126,0.3);
  border-radius: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--sage);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* CATEGORIES */
.categories {
  padding: 6rem var(--pad-h);
}

.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.cat-chip {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(240,235,227,0.08);
  border-radius: 2rem;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(240,235,227,0.02);
  user-select: none;
}
.cat-chip:hover, .cat-chip.lit {
  border-color: var(--sage);
  color: var(--sage-light);
  background: rgba(122,158,126,0.08);
}
.cat-chip.lit { animation: pulse-chip 2s ease-in-out infinite; }

@keyframes pulse-chip {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,158,126,0); }
  50% { box-shadow: 0 0 12px 2px rgba(122,158,126,0.15); }
}

/* BOTTOM CTA */
.final-cta {
  padding: 10rem var(--pad-h);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 50% 100%, rgba(157, 176, 140, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 40% 35% at 80% 60%, rgba(217, 197, 163, 0.07) 0%, transparent 50%);
}

.final-cta .hero-title {
  margin-bottom: 0.3em;
  animation: none;
  opacity: 1;
}

.final-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 1.5rem auto 3rem;
  line-height: 1.7;
}

.final-cta .cta-group {
  animation: none;
  opacity: 1;
  justify-content: center;
}

/* FOOTER */
footer {
  padding: 2rem var(--pad-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(240,235,227,0.06);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage-light);
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* FEATURE ITEM VIDEO highlight */
.feature-item--video {
  background: linear-gradient(135deg, rgba(122,158,126,0.06) 0%, var(--deep) 60%);
  border-top: 1px solid rgba(122,158,126,0.15);
}
.feature-item--video .feat-title { color: var(--sage-light); }

/* VIDEO SECTION */
.video-section {
  padding: 8rem var(--pad-h);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(122,158,126,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 50%, rgba(154,181,178,0.05) 0%, transparent 50%);
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.video-text .section-label { margin-bottom: 1rem; }
.video-text .section-title { margin-bottom: 1.5rem; }

.video-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 26rem;
}

.share-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.share-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(240,235,227,0.1);
  color: var(--muted);
  background: rgba(240,235,227,0.03);
  transition: all 0.3s;
}
.share-pill:hover {
  border-color: var(--sage);
  color: var(--sage-light);
  background: rgba(122,158,126,0.08);
}

/* VIDEO MOCKUP */
.video-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.video-phone {
  width: 220px;
  height: 440px;
  background: linear-gradient(160deg, #162e24 0%, #0c2218 100%);
  border-radius: 2.2rem;
  border: 1px solid rgba(122,158,126,0.2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.video-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 20px;
  background: #0c2218;
  border-radius: 0 0 0.8rem 0.8rem;
  z-index: 10;
}

/* animated "video playing" screen */
.vscreen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

/* animated bg bars (fake video motion) */
.vbg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a3328, #0c2218);
  overflow: hidden;
}
.vbg-bar {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,158,126,0.15), transparent);
  animation: vbar-move 6s linear infinite;
}
.vbg-bar:nth-child(1) { animation-delay: 0s; }
.vbg-bar:nth-child(2) { animation-delay: 2s; }
.vbg-bar:nth-child(3) { animation-delay: 4s; }
@keyframes vbar-move {
  from { top: -2px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { top: 100%; opacity: 0; }
}

.vglow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(122,158,126,0.14) 0%, transparent 70%);
  top: 30%; left: 50%;
  transform: translateX(-50%);
  filter: blur(20px);
  animation: vpulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes vpulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}

.vscreen-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 1.5rem;
}
.vscreen-cat {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.vscreen-line { width: 1.5rem; height: 1px; background: linear-gradient(90deg, transparent, var(--sage), transparent); margin: 0.6rem auto; }
.vscreen-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* progress bar */
.vprogress-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.vprogress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--blue));
  border-radius: 1px;
  width: 0%;
  animation: vplay 8s linear infinite;
}
@keyframes vplay { from { width: 0%; } to { width: 100%; } }

.vtime { font-size: 0.5rem; color: var(--muted); display: flex; justify-content: space-between; }

/* share overlay badge */
.vshare-badge {
  position: absolute;
  bottom: 3rem;
  right: -18px;
  background: rgba(15,42,32,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122,158,126,0.2);
  border-radius: 0.6rem;
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: var(--cream);
  white-space: nowrap;
  animation: float 4s ease-in-out 0.5s infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.vshare-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: vpulse-dot 1.5s ease-in-out infinite;
}
@keyframes vpulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.vrecord-badge {
  position: absolute;
  top: 4.5rem;
  left: -22px;
  background: rgba(15,42,32,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122,158,126,0.15);
  border-radius: 0.6rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.6rem;
  color: var(--sage-light);
  white-space: nowrap;
  animation: float 5s ease-in-out 1.5s infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

@media (min-width: 1400px) {
  :root { --pad-h: max(8rem, calc((100vw - var(--content-max)) / 2 + 8rem)); }
  .hero-left { padding: 8rem 5rem 6rem 8rem; }
  .hero-right { padding: 4rem 6rem 4rem 0; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root { --pad-h: 2rem; }
  .video-layout { grid-template-columns: 1fr; }
  .video-mockup-wrap { margin-top: 3rem; }
  .video-section { padding: 4rem var(--pad-h); }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 2rem 5.5rem; }
  .features, .categories, .quote-section, .final-cta { padding: 4rem var(--pad-h); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .divider { margin: 0 2rem; }
  .hero-icon { width: 56px; height: 56px; }
}

/* Small phones – tighten vertical spacing so dense blocks (final CTA + footer
   store buttons) fit on screen without scrolling. */
@media (max-width: 480px) {
  .hero-left { padding-top: 5rem; }
  .features, .categories, .quote-section, .video-section { padding: 2.75rem var(--pad-h); }
  .section-title { margin-bottom: 2rem; }
  .final-cta { padding: 2.75rem var(--pad-h) 3rem; }
  .final-sub { margin: 1rem auto 1.75rem; }
  .final-cta .cta-group { gap: 0.6rem; }
  footer { gap: 1rem; padding: 1.5rem 2rem 2rem; }
  .footer-links { gap: 0.6rem 1.25rem; }
}

/* TICKER – pinned to hero bottom (visible at viewport bottom on load) */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(157, 176, 140, 0.22);
  background: rgba(0, 42, 36, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow:
    0 -8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(249, 245, 235, 0.06);
  pointer-events: none;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
  gap: 0;
}
.ticker-item {
  white-space: nowrap;
  padding: 0 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(249, 245, 235, 0.88);
}
.ticker-item span { color: var(--sage-light); margin: 0 1rem; opacity: 0.85; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STICKY STORE BANNER */
.store-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  pointer-events: none;
}
.store-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.store-banner-inner {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: rgba(0, 42, 36, 0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(122, 158, 126, 0.2);
  border-radius: 1rem;
  box-shadow:
    0 -4px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.store-banner-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.store-banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.store-banner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sage-light);
  display: block;
  line-height: 1.2;
}
.store-banner-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  line-height: 1.2;
  margin-top: 0.1rem;
}
.store-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.store-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--sage);
  color: var(--deep);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.store-banner-btn:hover {
  box-shadow: 0 4px 16px rgba(122, 158, 126, 0.35);
  background: var(--sage-light);
}
.store-banner-share {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(122, 158, 126, 0.3);
  border-radius: 2rem;
  background: rgba(122, 158, 126, 0.08);
  color: var(--sage-light);
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.store-banner-share:hover {
  border-color: var(--sage);
  color: var(--cream);
  background: rgba(122, 158, 126, 0.18);
  box-shadow: 0 4px 16px rgba(122, 158, 126, 0.2);
}

@media (max-width: 900px) {
  .store-banner-inner {
    margin: 0 0.75rem 0.75rem;
    padding: 0.6rem 0.8rem;
    gap: 0.8rem;
  }
  .store-banner-tagline { display: none; }
  .store-banner-btn span { display: none; }
  .store-banner-btn { padding: 0.55rem 0.7rem; }
  .store-banner-share span { display: none; }
  .store-banner-share { padding: 0.55rem 0.7rem; }

  /* Mobile iOS/Android: single store CTA keeps icon + label */
  .store-banner--single .store-banner-btn span { display: inline; }
  .store-banner--single .store-banner-btn { padding: 0.55rem 1.1rem; }
  .store-banner--single .store-banner-share { display: none; }
}

/* LANG DROPDOWN (mobile only) */
.lang-select { display: none; }

@media (max-width: 600px) {
  /* Swap the desktop pill row for a compact dropdown */
  .lang-toggle { display: none; }

  /* Match the left header link to the lang dropdown button */
  .sibling-link {
    top: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem 0.6rem 0.9rem;
    border-color: rgba(181, 201, 168, 0.30);
    background: rgba(22, 52, 40, 0.78);
    box-shadow: 0 6px 28px rgba(0,0,0,0.30), inset 0 1px 0 rgba(249,245,235,0.10);
    font-size: 0.74rem;
    color: var(--cream);
  }
  .sibling-link svg { opacity: 0.8; }

  .lang-select {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
  }

  .lang-select > summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.9rem 0.6rem 1rem;
    border: 1px solid rgba(181, 201, 168, 0.30);
    border-radius: 2rem;
    background: rgba(22, 52, 40, 0.78);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    box-shadow: 0 6px 28px rgba(0,0,0,0.30), inset 0 1px 0 rgba(249,245,235,0.10);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .lang-select > summary::-webkit-details-marker { display: none; }
  .lang-select > summary .chev {
    opacity: 0.7;
    transition: transform 0.25s ease;
  }
  .lang-select[open] > summary .chev { transform: rotate(180deg); }

  .lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 9.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.35rem;
    border: 1px solid rgba(181, 201, 168, 0.25);
    border-radius: 1rem;
    background: rgba(22, 52, 40, 0.94);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    box-shadow: 0 14px 40px rgba(0,0,0,0.40), inset 0 1px 0 rgba(249,245,235,0.08);
    transform-origin: top right;
    animation: lang-menu-in 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes lang-menu-in {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .lang-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0.9rem;
    border-radius: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(181, 201, 168, 0.72);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }
  .lang-opt .lang-opt-code {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    opacity: 0.6;
  }
  .lang-opt:hover {
    color: var(--sage-light);
    background: rgba(181, 201, 168, 0.10);
  }
  .lang-opt.active {
    color: var(--cream);
    background: rgba(181, 201, 168, 0.18);
  }
}

/* FAQ */
.faq {
  padding: 7rem var(--pad-h);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,158,126,0.15), transparent);
}
.faq-list {
  margin-top: 3rem;
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid rgba(122,158,126,0.12);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: var(--cream);
  transition: color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--sage-light); }
.faq-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--sage);
  transition: transform 0.3s ease;
}
.faq-item[open] > summary { color: var(--sage-light); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.6rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 46rem;
}
/* FAQ responsive padding (declared after the base rule so it wins on source order) */
@media (max-width: 900px) { .faq { padding: 4rem var(--pad-h); } }
@media (max-width: 480px) {
  .faq { padding: 2.75rem var(--pad-h); }
  .faq-list { margin-top: 2rem; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

