/* Lyotide Scientific storefront skin. Admin (body.is-admin) does not use this. */
body.lyo {
  --forest: #1c3a13;
  --forest-soft: #3d5b34;
  --forest-deep: #142f0c;
  --snow: #fcfcf7;
  --foam: #eff1e4;
  --cream: #f6f7ef;
  --lemongrass: #d3fa99;
  --am-dark: #9f995b;
  --dm-dark: #757c5d;
  --pm-dark: #698e79;
  --vs-dark: #6a4540;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --lyo-max: 1440px;
  --muted: rgba(28, 58, 19, 0.7);
  --line: rgba(28, 58, 19, 0.15);
  background: var(--snow);
  color: var(--forest);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: -0.01em;
}
body.lyo::before,
body.lyo::after { display: none !important; content: none !important; }
html:has(body.lyo) { background: var(--forest); color-scheme: light; }
body.lyo ::selection { background: var(--lemongrass); color: var(--forest); }
body.lyo a { color: inherit; }
body.lyo h1, body.lyo h2, body.lyo h3 { font-weight: 300; letter-spacing: -0.025em; }

body.lyo a.skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
}
body.lyo a.skip:focus {
  position: absolute; left: 8px; top: 8px; z-index: 100; width: auto; height: auto;
  clip: auto; background: var(--forest); color: var(--snow); padding: 12px 16px; border-radius: 8px;
}
body.lyo .mega {
  background: transparent; border: 0; box-shadow: none; padding: 0;
}
.lyo-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.lyo-sr:focus {
  position: absolute; left: 8px; top: 8px; z-index: 100; width: auto; height: auto;
  margin: 0; clip: auto; overflow: visible; white-space: normal;
  border-radius: 8px; background: var(--forest); color: var(--snow); padding: 12px 16px;
}

.lyo-logo { display: inline-block; width: 1.25rem; height: 1rem; }
.lyo-logo-lg { width: 1.75rem; height: 1.4rem; }
.lyo-word { font-weight: 300; letter-spacing: -0.02em; line-height: 1; font-size: 20px; }
.lyo-word sup { font-size: 0.45em; top: -0.25em; margin-left: 2px; font-weight: 400; }
.lyo-word-foot { font-size: 2.25rem; }

.lyo-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 0;
  border-radius: 999px; padding: 1rem 1.5rem; font-size: 1rem; font-weight: 400;
  letter-spacing: -0.01em; text-decoration: none; border: 0; cursor: pointer;
  background: var(--forest); color: var(--snow); transition: background .15s, color .15s;
}
.lyo-pill:hover { background: var(--forest-deep); color: var(--snow); }
.lyo-pill.is-invert { background: var(--snow); color: var(--forest); }
.lyo-pill.is-invert:hover { background: var(--foam); color: var(--forest); }
.lyo-pill .lyo-arrow { display: inline-flex; width: 0; overflow: hidden; opacity: 0; margin-left: 0; transition: all .2s; }
.lyo-pill:hover .lyo-arrow { width: 12px; opacity: 1; margin-left: 8px; }
.lyo-textlink {
  display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500;
  text-transform: capitalize; text-underline-offset: 6px;
}
.lyo-textlink span { text-decoration: underline; }
.lyo-textlink.is-light { color: var(--snow); }
.lyo-status {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 4px 8px;
  font-size: 12px; font-weight: 500; line-height: 1;
}
.lyo-status-green { background: var(--lemongrass); color: var(--forest); }
.lyo-status-am { background: var(--am-dark); color: var(--snow); }
.lyo-status-dm { background: var(--dm-dark); color: var(--snow); }
.lyo-status-pm { background: var(--pm-dark); color: var(--snow); }
.lyo-status-pds { background: var(--forest-soft); color: var(--snow); }
.lyo-sku-pill {
  display: inline-flex; align-items: center; border-radius: 999px;
  border: 1.75px solid currentColor; padding: 2px 8px; font-size: 1rem; line-height: 1;
}

/* Header */
.lyo .promo { display: none; }
body.lyo header.lyo-head.site-head {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  position: sticky;
  top: 8px;
  z-index: 50;
}
.lyo-head {
  padding: 0 8px;
}
@media (min-width: 768px) { .lyo-head { padding: 0 16px; } }
.lyo-shell { max-width: var(--lyo-max); margin: 0 auto; }
.lyo-bar {
  position: relative; display: flex; min-height: 48px; align-items: center;
  justify-content: space-between; gap: 12px; overflow: hidden;
  border-radius: 999px; padding: 0 12px;
}
@media (min-width: 768px) { .lyo-bar { min-height: 56px; padding: 0 32px; } }
.lyo-bar-bg {
  position: absolute; inset: 0; border-radius: 999px; pointer-events: none;
  transition: background .3s, backdrop-filter .3s;
}
body.lyo:not(.is-home) .lyo-bar-bg,
body.lyo.is-home:not(.is-at-top) .lyo-bar-bg,
body.lyo .lyo-head.is-open .lyo-bar-bg {
  background: rgba(28, 58, 19, 0.35);
  backdrop-filter: blur(19px); -webkit-backdrop-filter: blur(19px);
}
.lyo-bar > * { position: relative; z-index: 1; }
.lyo-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
body.lyo.is-home.is-at-top:not(:has(.lyo-head.is-open)) .lyo-brand,
body.lyo.is-home.is-at-top:not(:has(.lyo-head.is-open)) .lyo-tab-btn,
body.lyo.is-home.is-at-top:not(:has(.lyo-head.is-open)) .lyo-ico,
body.lyo.is-home.is-at-top:not(:has(.lyo-head.is-open)) .burger {
  color: var(--forest);
}
body.lyo:not(.is-home) .lyo-brand,
body.lyo:not(.is-home) .lyo-tab-btn,
body.lyo:not(.is-home) .lyo-ico,
body.lyo:not(.is-home) .burger,
body.lyo.is-home:not(.is-at-top) .lyo-brand,
body.lyo.is-home:not(.is-at-top) .lyo-tab-btn,
body.lyo.is-home:not(.is-at-top) .lyo-ico,
body.lyo.is-home:not(.is-at-top) .burger,
body.lyo .lyo-head.is-open .lyo-brand,
body.lyo .lyo-head.is-open .lyo-tab-btn,
body.lyo .lyo-head.is-open .lyo-ico,
body.lyo .lyo-head.is-open .burger { color: var(--snow); }

.lyo-cluster { display: flex; min-width: 0; align-items: center; gap: 16px; }
@media (min-width: 768px) { .lyo-cluster { gap: 32px; } }
.lyo-tabs { display: none; align-items: center; }
@media (min-width: 941px) { .lyo-tabs { display: flex; } }
.lyo-tab-btn {
  background: none; border: 0; cursor: pointer; padding: 8px 12px;
  font: inherit; font-size: 15px; line-height: 1; color: inherit;
}
.lyo-actions { display: flex; align-items: center; gap: 4px; }
.lyo-ico {
  display: inline-flex; border-radius: 999px; padding: 8px; color: inherit; text-decoration: none;
  background: none; border: 0; cursor: pointer;
}
.lyo-ico-lg { width: 20px; height: 20px; }
.lyo-bag { position: relative; }
.lyo-bag-n {
  position: absolute; right: -2px; top: -2px; display: flex; width: 16px; height: 16px;
  align-items: center; justify-content: center; border-radius: 999px;
  background: var(--lemongrass); color: var(--forest); font-size: 10px; font-weight: 500;
}
.lyo .burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; border: 0; background: none; padding: 8px; cursor: pointer;
  color: inherit;
}
.lyo .burger span { display: block; height: 1.5px; background: currentColor; border-radius: 1px; }
@media (min-width: 941px) { .lyo .burger { display: none; } }

.lyo-head .has-mega { position: relative; }
.lyo-head .mega {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  z-index: 20; min-width: min(92vw, 640px);
}
.lyo-head .has-mega:hover .mega,
.lyo-head .has-mega:focus-within .mega,
.lyo-head .has-mega.is-open .mega { display: block; }
.lyo-mega-card {
  border-radius: 1.5rem; background: var(--snow); color: var(--forest);
  padding: 2rem; box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.lyo-mega-k {
  margin: 0 0 12px; font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .24px; color: rgba(28,58,19,.5);
}
.lyo-mega-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
@media (min-width: 640px) { .lyo-mega-list { grid-template-columns: 1fr 1fr; } }
.lyo-mega-list a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  border-radius: 12px; padding: 8px; font-size: 17px; text-decoration: none;
}
.lyo-mega-list a:hover { background: var(--foam); }
.lyo-mega-hint { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: rgba(28,58,19,.5); }

.lyo .nav {
  display: none; margin-top: 8px; border-radius: 1.5rem; background: var(--snow);
  color: var(--forest); padding: 24px; box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.lyo .nav.is-open { display: block; }
@media (min-width: 941px) { .lyo .nav { display: none !important; } }
.lyo .nav .lyo-mega-card { box-shadow: none; padding: 0 0 24px; }
.lyo .nav-only-mobile { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.lyo .nav-only-mobile a { padding: 8px 0; text-decoration: none; font-size: 17px; }

body.lyo:has(.lyo-head):not(.is-home) #main { padding-top: 4.5rem; }

/* Hero */
.lyo-hero {
  position: relative; height: min(calc(100vh - 56px), 900px); overflow: hidden;
  border-radius: 0 0 2rem 2rem; background: #e9dfd5;
}
.lyo-hero-stone, .lyo-hero-photo { position: absolute; inset: 0; }
.lyo-hero-stone img, .lyo-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.lyo-hero-stone img { object-position: left center; }
.lyo-hero-photo { left: auto; right: 0; width: 68%; }
.lyo-hero-photo img { object-position: 55% 28%; }
.lyo-hero-fade {
  pointer-events: none; position: absolute; left: 0; top: 0; height: 78%; width: 10%;
  background: linear-gradient(to right, #e9dfd5, transparent);
}
.lyo-hero-copy {
  position: relative; z-index: 1; display: flex; height: 100%; align-items: flex-start;
  padding: 6rem 16px 0; max-width: 400px;
}
@media (min-width: 768px) {
  .lyo-hero-photo { width: 73%; }
  .lyo-hero-copy { align-items: center; padding: 2rem 56px 0; }
}
@media (min-width: 1024px) { .lyo-hero-photo { width: 75%; } }
.lyo-hero h1 { margin: 0; font-size: clamp(40px, 6vw, 60px); font-weight: 300; line-height: 1.1; }
.lyo-hero .lyo-tag { margin: 16px 0 0; font-size: clamp(22px, 3vw, 28px); font-weight: 300; line-height: 1.3; }
.lyo-hero .lyo-lede { margin: 16px 0 0; max-width: 380px; font-size: 16px; line-height: 1.35; color: rgba(28,58,19,.9); }
.lyo-hero .lyo-lede p { margin: 0 0 4px; }
.lyo-hero .lyo-cta { margin-top: 24px; }

/* Home bands */
.lyo-band-forest { background: var(--forest); color: var(--snow); padding: 56px 0; }
.lyo-band-snow { background: var(--snow); color: var(--forest); }
.lyo-inner { max-width: var(--lyo-max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .lyo-inner { padding: 0 32px; } }
.lyo-cat-head {
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 768px) {
  .lyo-cat-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.lyo-cat-head .lyo-h { margin: 0; max-width: 570px; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; }
.lyo-cat-head .lyo-p { margin: 0; max-width: 450px; font-size: 16px; color: rgba(252,252,247,.9); }
.lyo-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 768px) { .lyo-tiles { grid-template-columns: repeat(4, 1fr); } }
.lyo-tile {
  position: relative; display: flex; min-height: 400px; flex-direction: column; align-items: center;
  border-radius: 1rem; padding: 48px 12px 16px; text-align: center; text-decoration: none; color: var(--snow);
}
@media (min-width: 768px) { .lyo-tile { min-height: 520px; padding: 40px 24px 16px; } }
.lyo-tile-bg {
  position: absolute; left: 0; right: 0; top: 50%; height: calc(100% + 48px);
  transform: translateY(-50%) scaleY(.9); border-radius: 1rem; background: var(--forest-soft);
  transition: transform .3s;
}
.lyo-tile:hover .lyo-tile-bg { transform: translateY(-50%) scaleY(1); }
.lyo-tile-badge { position: absolute; left: 8px; top: 8px; z-index: 2; }
.lyo-tile > *:not(.lyo-tile-bg):not(.lyo-tile-badge) { position: relative; z-index: 1; }
.lyo-tile-sku { margin: 0; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(252,252,247,.7); }
.lyo-tile-name { margin: 4px 0 0; font-size: 1.5rem; }
.lyo-tile-mol { margin: 8px 0; width: 100%; min-height: 210px; display: flex; align-items: center; justify-content: center; flex: 1; }
@media (min-width: 768px) { .lyo-tile-mol { min-height: 360px; } }
.lyo-tile-mol .mol-slot { width: min(100%, 196px); }
@media (min-width: 768px) { .lyo-tile-mol .mol-slot { width: min(100%, 330px); } }
.lyo-tile-meta { margin-top: 8px; width: 100%; font-size: 14px; color: rgba(252,252,247,.9); }
.lyo-tile-meta p { margin: 0 0 4px; }
.lyo-shopnow {
  display: inline-flex; margin-top: 12px; border-radius: 999px; background: var(--snow);
  color: var(--forest); padding: 12px 24px; transition: background .15s, color .15s;
}
.lyo-tile:hover .lyo-shopnow { background: var(--forest); color: var(--snow); box-shadow: inset 0 0 0 1px var(--snow); }

.lyo-bundle { background: var(--forest); }
.lyo-bundle-inner {
  border-radius: 2rem 2rem 0 0; background: var(--snow); color: var(--forest);
  padding: 40px 16px;
}
@media (min-width: 768px) { .lyo-bundle-inner { padding: 80px 32px; } }
.lyo-bundle-grid { max-width: var(--lyo-max); margin: 0 auto; display: grid; gap: 32px; }
@media (min-width: 768px) { .lyo-bundle-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.lyo-bundle-copy h2 { margin: 16px 0 0; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.lyo-bundle-copy p { margin: 16px 0 0; max-width: 28rem; color: rgba(28,58,19,.8); }
.lyo-bundle-copy .lyo-pill { margin-top: 24px; }
.lyo-shots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.lyo-shot { overflow: hidden; border-radius: 1rem; }
.lyo-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.lyo-shot-hero { grid-column: span 6; aspect-ratio: 16 / 9; }
.lyo-shot-s { grid-column: span 3; aspect-ratio: 1; }
@media (min-width: 768px) { .lyo-shot-s { aspect-ratio: 16 / 14; } .lyo-shot-s:last-child { display: block; } }

.lyo-book { padding: 40px 16px 80px; }
@media (min-width: 768px) { .lyo-book { padding: 80px 32px; } }
.lyo-book-grid { max-width: var(--lyo-max); margin: 0 auto; display: grid; gap: 16px; }
@media (min-width: 768px) { .lyo-book-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.lyo-card {
  position: relative; display: flex; min-height: 420px; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden; border-radius: 1rem;
  padding: 48px 32px; text-align: center; color: var(--snow);
}
.lyo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lyo-card-scrim { position: absolute; inset: 0; background: rgba(28,58,19,.42); }
.lyo-card > *:not(img):not(.lyo-card-scrim) { position: relative; z-index: 1; }
.lyo-card-k { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.lyo-card h2 { margin: 24px 0 0; font-size: clamp(28px, 4vw, 40px); }

/* Catalog / product / content */
.lyo-page { background: var(--snow); color: var(--forest); padding: 40px 16px 80px; }
@media (min-width: 768px) { .lyo-page { padding: 40px 48px 80px; } }
.lyo-kicker { margin: 0; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(28,58,19,.5); }
.lyo-page h1 { margin: 12px 0 0; max-width: 20ch; font-size: clamp(40px, 6vw, 56px); line-height: 1.1; }
.lyo-page .lyo-intro { margin: 16px 0 0; max-width: 36rem; font-size: 16px; color: rgba(28,58,19,.75); }
.lyo-groups { display: flex; flex-direction: column; gap: 56px; margin-top: 40px; }
.lyo-group h2 { margin: 0 0 16px; font-family: var(--font-mono); font-size: 12px; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; color: rgba(28,58,19,.5); }
.lyo-shop { display: grid; gap: 16px; }
@media (min-width: 640px) { .lyo-shop { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lyo-shop { grid-template-columns: 1fr 1fr 1fr; } }
.lyo-pcard {
  display: flex; flex-direction: column; border-radius: 1.5rem; background: var(--foam);
  padding: 24px; text-decoration: none; color: var(--forest); transition: transform .15s;
}
.lyo-pcard:hover { transform: translateY(-2px); }
.lyo-pcard h3 { margin: 0; font-size: 1.5rem; font-weight: 300; }
.lyo-pcard .lyo-sub { margin: 8px 0 0; font-size: 14px; color: rgba(28,58,19,.7); }
.lyo-pcard .lyo-price { margin: 16px 0 0; font-size: 14px; }
.lyo-pcard .lyo-go { margin-top: 12px; font-size: 15px; font-weight: 500; text-decoration: underline; text-underline-offset: 6px; }

.lyo-filter { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 24px 0 0; }
.lyo-filter .field { display: flex; align-items: center; gap: 8px; background: var(--foam); border-radius: 999px; padding: 8px 16px; }
.lyo-filter input, .lyo-filter select {
  border: 0; background: transparent; font: inherit; color: inherit; min-width: 12rem;
}
.lyo-filter input:focus, .lyo-filter select:focus { outline: none; }

.lyo-pdp { display: grid; gap: 40px; max-width: var(--lyo-max); margin: 0 auto; padding: 40px 16px 64px; }
@media (min-width: 768px) { .lyo-pdp { grid-template-columns: 1fr 1fr; align-items: start; padding: 64px 48px; } }
.lyo-pdp-mol { aspect-ratio: 1; overflow: hidden; border-radius: 1.5rem; background: var(--forest-soft); }
.lyo-pdp h1 { margin: 16px 0 0; font-size: clamp(40px, 5vw, 52px); line-height: 1.1; }
.lyo-pdp-str { margin: 12px 0 0; font-size: 18px; color: rgba(28,58,19,.75); }
.lyo-pdp-src { margin: 8px 0 0; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(28,58,19,.45); }
.lyo-pdp-price { margin: 24px 0 0; font-size: 32px; font-weight: 300; }
.lyo-pdp-note { margin: 4px 0 0; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: rgba(28,58,19,.5); }
.lyo-pdp-add { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.lyo-pdp-add .qty-in {
  width: 4.5rem; border: 1px solid var(--line); border-radius: 999px; padding: 12px; text-align: center;
  font-family: var(--font-mono); background: var(--snow);
}
.lyo-explain { margin-top: 32px; border-radius: 1rem; background: var(--foam); padding: 20px; font-size: 14px; line-height: 1.6; color: rgba(28,58,19,.8); }
.lyo-explain p { margin: 0 0 12px; }
.lyo-explain p:last-child { margin: 0; }
.lyo-dl { margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }
.lyo-dl div { margin-bottom: 20px; }
.lyo-dl dt { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: rgba(28,58,19,.5); }
.lyo-sheet .psheet-actions { display: none; }
.lyo-back { margin: 0 0 16px; }
.lyo-back a { text-decoration: none; font-size: 14px; color: rgba(28,58,19,.6); }

.lyo-prose { max-width: 48rem; margin: 0 auto; }
.lyo-prose .lyo-body { margin-top: 40px; font-size: 16px; line-height: 1.7; color: rgba(28,58,19,.85); }
.lyo-prose .lyo-body p { margin: 0 0 1.25rem; }
.lyo-prose .lyo-body h2 { margin: 1.5rem 0 0.75rem; font-size: 1.5rem; }
.lyo-prose .lyo-body ul { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.lyo-prose .lyo-body a { text-decoration: underline; }
.lyo-prose .lyo-cta { margin-top: 24px; }

.lyo-gallery { display: grid; gap: 24px; }
@media (min-width: 640px) { .lyo-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lyo-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .lyo-gallery { grid-template-columns: repeat(4, 1fr); } }
.lyo-gtile { display: flex; flex-direction: column; overflow: hidden; border-radius: 1rem; border: 1px solid var(--line); background: var(--foam); }
.lyo-gtile-body { display: flex; flex: 1; flex-direction: column; gap: 4px; padding: 16px; }
.lyo-gtile-body h2 { margin: 0; font-size: 1.125rem; }
.lyo-gtile-body h2 a { text-decoration: none; }
.lyo-gtile-body h2 a:hover { text-decoration: underline; }
.lyo-gtile-src { margin-top: auto; padding-top: 8px; font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: rgba(28,58,19,.45); }

/* Molecules */
.mol-slot { position: relative; width: 100%; }
.mol-well {
  position: relative; margin: 0 auto; overflow: hidden; background: var(--forest-soft);
  border-radius: 1rem; transition: width .3s ease;
}
.mol-well.is-square { border-radius: 0; }
[data-mol] { width: 100%; height: 100%; min-height: 8px; pointer-events: none; }
[data-mol] canvas { width: 100% !important; height: 100% !important; pointer-events: none; }
.mol-fallback {
  display: flex; width: 100%; height: 100%; min-height: 120px; align-items: center; justify-content: center;
  background: var(--forest-soft); color: rgba(252,252,247,.85);
}
.mol-fallback svg { width: 58%; height: 58%; }

/* Footer */
.lyo-foot { background: var(--forest); color: var(--snow); }
.lyo-foot a { color: var(--snow); text-decoration: none; }
.lyo-foot a:hover { opacity: .5; }
.lyo-foot-top {
  max-width: var(--lyo-max); margin: 0 auto; display: grid; gap: 40px; padding: 32px 16px;
}
@media (min-width: 768px) {
  .lyo-foot-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 64px; }
}
.lyo-foot-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--snow); }
.lyo-foot-lede { margin: 32px 0 0; max-width: 36rem; font-size: clamp(28px, 3vw, 32px); line-height: 1.1; }
.lyo-foot-lede p { margin: 0 0 4px; }
.lyo-news { margin-top: 32px; max-width: 425px; }
.lyo-news label, .lyo-news .lyo-consent { font-size: 14px; color: rgba(252,252,247,.5); }
.lyo-news-row { position: relative; margin-top: 16px; }
.lyo-news input[type=email] {
  width: 100%; height: 52px; border: 2px solid var(--snow); border-radius: 8px;
  background: transparent; color: var(--snow); padding: 0 48px 0 20px; font: inherit;
}
.lyo-news input::placeholder { color: rgba(252,252,247,.5); }
.lyo-news button {
  position: absolute; right: 0; top: 0; height: 100%; width: 43px; border: 0;
  background: none; color: var(--snow); cursor: pointer;
}
.lyo-fda {
  margin-top: 40px; max-width: 400px; border: 1px solid rgba(252,252,247,.2);
  border-radius: 8px; padding: 8px; font-size: 12px; line-height: 1.5; color: rgba(252,252,247,.8);
}
@media (max-width: 767px) { .lyo-fda { display: none; } }
.lyo-cols { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.lyo-cols > li { width: 50%; margin-bottom: 24px; padding-right: 16px; }
@media (min-width: 768px) { .lyo-cols > li { width: 33%; } }
.lyo-cols p { margin: 0; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .24px; color: rgba(252,252,247,.5); }
.lyo-cols ul { list-style: none; margin: 16px 0 0; padding: 0; }
.lyo-cols li + li { } /* keep */
.lyo-cols ul a { font-size: 14px; }
.lyo-cols ul li { margin: 0 0 8px; width: auto; padding: 0; }
.lyo-land {
  position: relative; min-height: 280px; background-size: cover; background-position: center;
}
@media (min-width: 768px) { .lyo-land { min-height: 420px; } }
.lyo-land-scrim { position: absolute; inset: 0; background: rgba(59,82,40,.48); }
.lyo-copy { position: absolute; left: 0; right: 0; bottom: 32px; text-align: center; font-size: 14px; margin: 0; }
.lyo-fda-m { background: var(--forest); padding: 24px 16px; text-align: center; font-size: 12px; color: rgba(252,252,247,.7); }
@media (min-width: 768px) { .lyo-fda-m { display: none; } }
.lyo-build { opacity: .45; font-size: 11px; }

/* Forms / commerce under Lyotide */
body.lyo .wrap, body.lyo .wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 16px 80px; }
body.lyo .wrap { max-width: 1100px; }
body.lyo .hero { padding: 8px 0 28px; }
body.lyo .hero h1, body.lyo .section-tight h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 300; }
body.lyo .label, body.lyo .lede { font-family: var(--font-sans); }
body.lyo .label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(28,58,19,.5); }
body.lyo .lede { color: rgba(28,58,19,.75); font-weight: 300; }
body.lyo .btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  padding: 12px 22px; font: inherit; font-weight: 400; text-decoration: none; border: 0; cursor: pointer;
}
body.lyo .btn-primary { background: var(--forest); color: var(--snow); }
body.lyo .btn-primary:hover { background: var(--forest-deep); }
body.lyo .btn-ghost { background: transparent; color: var(--forest); box-shadow: inset 0 0 0 1px var(--line); }
body.lyo .btn-sm { padding: 8px 14px; font-size: 14px; }
body.lyo input, body.lyo select, body.lyo textarea {
  font: inherit; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--snow);
}
body.lyo fieldset { border: 0; padding: 0; margin: 0 0 28px; }
body.lyo legend { font-size: 1.25rem; font-weight: 300; margin-bottom: 12px; }
body.lyo .notice { border-radius: 1rem; background: var(--foam); padding: 16px; margin-bottom: 20px; }
body.lyo table.data { width: 100%; border-collapse: collapse; }
body.lyo table.data th { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; text-align: left; padding: 8px; color: rgba(28,58,19,.5); }
body.lyo table.data td { padding: 12px 8px; border-top: 1px solid var(--line); vertical-align: middle; }
body.lyo .check { display: flex; gap: 10px; align-items: flex-start; }
body.lyo .ruo-block { border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-top: 24px; }

/* Gate */
body.lyo .gate {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 32px 16px; background: var(--foam);
}
body.lyo .gate-card {
  width: min(560px, 100%); background: var(--snow); border-radius: 1.5rem; padding: 32px;
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
body.lyo .gate-card h1 { font-size: 2rem; margin: 12px 0 8px; }
body.lyo .gate-checks { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; }
body.lyo .gate-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

body.lyo .flash-lyo, body.lyo .notice-flush { max-width: var(--lyo-max); margin: 12px auto; padding: 12px 16px; }

@media (max-width: 767px) {
  .lyo-shot-s:last-child { display: none; }
}
