:root {
  --ink: #142437;
  --muted: #5b6a79;
  --navy: #173b59;
  --navy-deep: #102d46;
  --teal: #12aeb8;
  --teal-soft: #dff5f2;
  --pink: #d85d91;
  --pink-soft: #f8e5ee;
  --lavender: #f1edff;
  --cream: #f8f7f3;
  --white: #ffffff;
  --line: #dfe5e9;
  --shadow: 0 24px 70px rgba(16, 45, 70, 0.12);
  --shadow-soft: 0 12px 35px rgba(16, 45, 70, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tinted { background: var(--lavender); }
.section-dark { background: var(--navy-deep); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-color: rgba(20, 36, 55, .08);
  box-shadow: 0 8px 30px rgba(20, 36, 55, .05);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand img { border-radius: 11px; box-shadow: 0 8px 20px rgba(23,59,89,.1); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .72rem; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav > a:not(.button) { text-decoration: none; font-weight: 700; font-size: .88rem; color: #405265; }
.site-nav > a:not(.button):hover { color: var(--navy); }
.nav-contact {
  padding: 0;
  border: 0;
  color: #405265;
  background: transparent;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-contact:hover { color: var(--navy); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 99px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .9rem; }
.button-large { min-height: 56px; padding-inline: 26px; }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 26px rgba(23,59,89,.18); }
.button-primary:hover { background: var(--navy-deep); box-shadow: 0 16px 32px rgba(23,59,89,.22); }
.button-secondary { color: var(--navy); border-color: #cbd7df; background: rgba(255,255,255,.72); }
.button-secondary:hover { background: var(--white); }
.button-light { color: var(--navy-deep); background: var(--white); box-shadow: 0 12px 28px rgba(0,0,0,.16); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 104px;
  background:
    radial-gradient(circle at 8% 10%, rgba(18,174,184,.11), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(216,93,145,.12), transparent 26%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23,59,89,.12), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: .77rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.2rem, 6vw, 5.7rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.3rem, 4.2vw, 3.85rem); }
h3 { line-height: 1.2; letter-spacing: -.02em; }
.hero-lead { max-width: 660px; margin-bottom: 30px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 28px 0 0; padding: 0; list-style: none; color: #405265; font-size: .9rem; font-weight: 700; }
.trust-list li { position: relative; padding-left: 22px; }
.trust-list li::before { content: ""; position: absolute; left: 0; top: .48em; width: 10px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.visual-backdrop { position: absolute; inset: 7% 4% 10% 8%; border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; background: linear-gradient(135deg, #d8f3f0, #ece6ff 58%, #f7dce9); }
.live-mobile {
  position: relative;
  z-index: 2;
  width: min(72%, 390px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(23,59,89,.18);
  border-radius: 34px;
  background: #111820;
  box-shadow: var(--shadow);
  transform: none;
}
.hero-video { width: 100%; aspect-ratio: 720 / 1076; object-fit: cover; border-radius: 25px; background: #edf2f3; }
.live-caption { position: absolute; z-index: 3; left: 0; bottom: 8%; display: grid; min-width: 180px; padding: 15px 18px; border: 1px solid rgba(23,59,89,.1); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-soft); }
.live-caption span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-caption strong { color: var(--navy); font-size: 1.08rem; }

.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 1.01rem; }
.section-heading-light .eyebrow { color: #8ee1dd; }
.section-heading-light > p:last-child { color: #c6d4df; }

.product-grid { display: grid; grid-template-columns: 1.55fr .65fr; gap: 22px; align-items: stretch; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.product-card-featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; padding: 34px; }
.product-card-copy h3 { margin: 10px 0 14px; font-size: clamp(2rem, 3vw, 2.8rem); }
.product-card-copy p { color: var(--muted); }
.product-card-copy .product-intro { color: var(--ink); font-size: 1.08rem; font-weight: 750; }
.product-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: #176145; background: #def4e8; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 24px; }
.text-link { display: inline-flex; gap: 8px; color: var(--navy); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.product-image-square, .square-media-card { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid rgba(23,59,89,.1); border-radius: 22px; background: #eee9fb; }
.product-image-square img, .square-media-card img { width: 100%; height: 100%; object-fit: contain; }
.product-card-coming { display: flex; min-height: 100%; padding: 34px; flex-direction: column; justify-content: space-between; background: linear-gradient(155deg, var(--navy-deep), var(--navy)); color: var(--white); }
.product-card-coming h3 { margin: 18px 0 12px; font-size: 1.65rem; }
.product-card-coming p { color: #d2dfe8; }
.product-card-coming .product-label { color: #0f636b; background: #dff5f2; }
.coming-mark { display: grid; place-items: center; align-self: flex-end; width: 118px; height: 118px; margin-top: 40px; border-radius: 28px; background: rgba(255,255,255,.1); }
.coming-mark img { width: 76px; border-radius: 16px; }

.daymoney-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; }
.daymoney-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.01rem; }
.compact-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.compact-features span { padding: 9px 12px; border: 1px solid #d9d4ea; border-radius: 999px; background: rgba(255,255,255,.66); color: #334a60; font-size: .83rem; font-weight: 750; }
.full-feature-list { border-top: 1px solid #d8d4e6; border-bottom: 1px solid #d8d4e6; }
.full-feature-list summary { padding: 18px 42px 18px 0; }
.full-feature-list ol { display: grid; gap: 7px; margin: 0 0 22px; padding-left: 22px; color: var(--muted); }

.demo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.demo-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-soft); }
.video-shell { display: grid; place-items: center; min-height: 430px; padding: 26px; background: linear-gradient(145deg, #edf7f6, #f3eeff); }
.video-shell video { width: min(100%, 318px); height: auto; max-height: 560px; border-radius: 18px; background: #dce5e8; box-shadow: 0 18px 45px rgba(16,45,70,.18); }
.demo-copy { padding: 27px 30px 31px; }
.demo-number { margin-bottom: 8px; color: var(--pink); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.demo-copy h3 { margin-bottom: 10px; font-size: 1.3rem; }
.demo-copy p:last-child { margin-bottom: 0; color: var(--muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
.gallery-item { display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: #eae5fa; cursor: zoom-in; transition: transform .2s ease, border-color .2s ease; }
.gallery-item:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.35); }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; aspect-ratio: 1 / 1; }

.store-section .section-heading { margin-bottom: 34px; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.store-card { display: grid; min-height: 190px; padding: 27px; align-content: end; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); text-decoration: none; box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease; }
.store-card:hover { transform: translateY(-4px); border-color: #cbd9e1; }
.store-kicker { margin-bottom: auto; color: var(--pink); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.store-card strong { margin-bottom: 4px; color: var(--navy); font-size: 1.15rem; }
.store-card > span:last-child { color: var(--muted); font-size: .88rem; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid #d7d3e2; }
details { border-bottom: 1px solid #d7d3e2; }
summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 17px; color: var(--pink); font-size: 1.55rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; padding: 0 48px 22px 0; margin: 0; color: var(--muted); }

.purchase-section { padding: 0 0 96px; }
.purchase-card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 54px 58px; border-radius: 30px; color: var(--white); background: linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, #146b78); box-shadow: var(--shadow); }
.purchase-card .eyebrow { color: #92e5df; }
.purchase-card h2 { max-width: 760px; margin-bottom: 18px; font-size: clamp(2.15rem, 3.8vw, 3.4rem); }
.purchase-card p:last-child { max-width: 720px; margin-bottom: 0; color: #d4e0e8; }
.purchase-actions { display: grid; gap: 13px; justify-items: center; min-width: 220px; }
.purchase-privacy { color: #d5e2ea; font-size: .86rem; font-weight: 750; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: auto 1fr; gap: 26px 50px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 12px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { color: var(--muted); font-size: .78rem; }
.footer-links { justify-self: end; display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a,
.footer-contact { color: #45586a; font-size: .88rem; font-weight: 750; text-decoration: none; }
.footer-contact { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-links a:hover,
.footer-contact:hover { color: var(--navy); }
.footer-note { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid var(--line); color: #70808e; font-size: .78rem; }


.contact-dialog {
  width: min(92vw, 720px);
  max-height: 92vh;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(8, 21, 33, .34);
}
.contact-dialog::backdrop {
  background: rgba(8, 21, 33, .68);
  backdrop-filter: blur(7px);
}
.contact-form { padding: 34px; }
.contact-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.contact-heading .eyebrow { margin-bottom: 8px; }
.contact-heading h2 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); }
.contact-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.contact-close:hover { background: var(--lavender); }
.contact-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-fields label { display: grid; gap: 7px; }
.contact-fields label > span { color: #405265; font-size: .82rem; font-weight: 800; }
.contact-field-full { grid-column: 1 / -1; }
.contact-fields input,
.contact-fields textarea {
  width: 100%;
  border: 1px solid #cfd9df;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfc;
  outline: none;
}
.contact-fields input { min-height: 48px; padding: 10px 13px; }
.contact-fields textarea { min-height: 150px; padding: 12px 13px; resize: vertical; }
.contact-fields input:focus,
.contact-fields textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18, 174, 184, .13); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.contact-actions .button:disabled { cursor: wait; opacity: .68; }
.contact-note { margin: 14px 0 0; color: var(--muted); font-size: .8rem; }
.contact-status { min-height: 1.35em; margin: 8px 0 0; font-size: .84rem; font-weight: 750; }
.contact-status:empty { display: none; }
.contact-status[data-state="pending"] { color: var(--navy); }
.contact-status[data-state="success"] { color: #18794e; }
.contact-status[data-state="error"] { color: #a13636; }
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lightbox { width: min(92vw, 980px); max-height: 92vh; padding: 0; border: 0; border-radius: 20px; background: transparent; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.lightbox::backdrop { background: rgba(8,21,33,.82); backdrop-filter: blur(8px); }
.lightbox img { width: min(88vh, 92vw); height: min(88vh, 92vw); max-width: 100%; object-fit: contain; aspect-ratio: 1 / 1; border-radius: 20px; background: #eee9fb; }
.lightbox-close { position: fixed; top: 18px; right: 22px; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); background: rgba(8,21,33,.62); font-size: 1.7rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.privacy-page, .success-page { min-height: 100vh; }
.simple-hero { padding: 88px 0 50px; }
.simple-hero h1 { max-width: 880px; font-size: clamp(3rem, 6vw, 5rem); }
.prose { max-width: 820px; padding-bottom: 100px; }
.prose h2 { margin: 50px 0 16px; font-family: inherit; font-size: 1.55rem; font-weight: 850; letter-spacing: -.02em; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--navy); font-weight: 750; }
.back-link { display: inline-flex; margin-top: 28px; color: var(--navy); font-weight: 850; text-decoration: none; }

.success-main { display: grid; min-height: calc(100vh - 170px); place-items: center; padding: 72px 0 96px; }
.success-card { width: min(100%, 720px); padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.success-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; color: var(--navy); background: var(--teal-soft); font-size: 2rem; font-weight: 900; }
.success-card h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4rem); }
.success-message { color: var(--muted); }
.success-details { display: none; margin: 28px 0 0; padding: 18px; border-radius: 16px; background: #f3f7f8; text-align: left; }
.success-details.is-visible { display: grid; gap: 5px; }
.success-details span { color: var(--muted); font-size: .84rem; }
.success-actions { display: none; gap: 12px; justify-content: center; margin-top: 26px; }
.success-actions.is-visible { display: flex; }
.success-note { margin-top: 20px; color: #70808e; font-size: .82rem; }
.status-error .success-icon { color: #9f3f6a; background: var(--pink-soft); }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .hero-grid { gap: 42px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-coming { min-height: 300px; }
  .coming-mark { margin-top: 20px; }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .header-inner { min-height: 70px; }
  .brand small { display: none; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav > a:not(.button),
  .site-nav .nav-contact { padding: 11px 8px; text-align: left; }
  .site-nav .button { margin-top: 6px; }
  .hero { padding: 68px 0 78px; }
  .hero-grid, .product-card-featured, .daymoney-layout, .faq-layout, .purchase-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { min-height: 570px; }
  .live-mobile { width: min(70%, 360px); }
  .product-image-square { max-width: 620px; margin-inline: auto; }
  .daymoney-layout { gap: 42px; }
  .square-media-card { max-width: 620px; margin-inline: auto; }
  .demo-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }
  .store-card { min-height: 150px; }
  .faq-intro { position: static; }
  .purchase-card { padding: 42px 34px; text-align: center; }
  .purchase-actions { justify-self: center; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 500px; }
  .live-mobile { width: min(76%, 330px); }
  .live-caption { left: 0; bottom: 3%; min-width: 150px; padding: 12px 14px; }
  .product-card-featured, .product-card-coming { padding: 24px; }
  .product-actions { align-items: flex-start; flex-direction: column; }
  .compact-features { display: grid; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .video-shell { min-height: 360px; padding: 18px; }
  .purchase-card { padding: 36px 24px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .success-card { padding: 34px 22px; }
  .success-actions { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-field-full { grid-column: auto; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
}

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


/* Consolidated product section */
.product-grid { grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr); }
.product-tags-card {
  display: flex;
  min-height: 100%;
  padding: 34px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(155deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.product-tags-card h3 { margin: 18px 0 20px; font-size: 1.65rem; }
.product-label-neutral { color: #0f636b; background: #dff5f2; align-self: flex-start; }
.product-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.product-tag-cloud span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #f5fafc;
  background: rgba(255,255,255,.08);
  font-size: .82rem;
  font-weight: 750;
}

.product-explorer {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.product-explorer > summary {
  display: flex;
  min-height: 78px;
  padding: 23px 70px 23px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--navy);
  font-size: 1.03rem;
}
.product-explorer > summary small { color: var(--muted); font-size: .78rem; font-weight: 750; }
.product-explorer > summary::after { right: 28px; top: 20px; color: #23805c; }
.product-explorer[open] > summary { border-bottom: 1px solid var(--line); }
.explorer-content { padding: 28px; }
.product-explorer p { padding: 0; }
.explorer-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f4f6f7;
  scrollbar-width: none;
}
.explorer-tabs::-webkit-scrollbar { display: none; }
.explorer-tabs button {
  min-height: 42px;
  padding: 10px 17px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.explorer-tabs button[aria-selected="true"] { color: var(--navy); background: var(--white); box-shadow: 0 5px 15px rgba(16,45,70,.09); }
.explorer-panel[hidden] { display: none; }
.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: features;
}
.feature-list-grid li {
  position: relative;
  min-height: 44px;
  padding: 9px 12px 9px 42px;
  border-bottom: 1px solid #edf0f2;
  color: #3e5265;
  counter-increment: features;
}
.feature-list-grid li::before {
  content: counter(features, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 8px;
  color: #23805c;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.download-note { margin: 24px 0 0; color: var(--muted); font-size: .88rem; }
.swipe-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
.swipe-rail > * { scroll-snap-align: start; }
.demo-rail { grid-auto-columns: minmax(340px, 1fr); }
.compact-demo-card { min-width: 0; }
.compact-demo-card .video-shell { min-height: 390px; }
.gallery-rail { grid-auto-columns: minmax(280px, 360px); }
.gallery-rail .gallery-item { border-color: var(--line); }
.gallery-rail .gallery-item:hover { border-color: #b8c9d4; }
.swipe-note { margin: 8px 0 0; color: var(--muted); font-size: .78rem; }

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-tags-card { min-height: auto; }
}

@media (max-width: 700px) {
  .product-card-featured { grid-template-columns: 1fr; padding: 24px; }
  .product-tags-card { padding: 25px; }
  .product-explorer > summary { padding: 20px 58px 20px 22px; align-items: flex-start; flex-direction: column; gap: 2px; }
  .product-explorer > summary::after { right: 22px; top: 18px; }
  .explorer-content { padding: 20px; }
  .feature-list-grid { grid-template-columns: 1fr; }
  .demo-rail { grid-auto-columns: min(88vw, 360px); }
  .gallery-rail { grid-auto-columns: min(82vw, 340px); }
  .compact-demo-card .video-shell { min-height: 350px; padding: 18px; }
}


/* Product layout refinement */
.product-grid { grid-template-columns: 1fr; }
.product-card-featured {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 48px;
  padding: 42px;
}
.product-card-featured .product-tag-cloud { margin-top: 24px; }
.product-card-featured .product-tag-cloud span {
  border-color: #d8e6e2;
  color: #285867;
  background: #edf7f4;
}
.explorer-tabs { width: 100%; }
.explorer-tabs button { flex: 1 1 0; }
.panel-heading { max-width: 720px; margin-bottom: 24px; }
.panel-heading h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.45rem; }
.panel-heading p { margin-bottom: 0; color: var(--muted); }
.explorer-panel .faq-list { max-width: 900px; }

@media (max-width: 820px) {
  .product-card-featured { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
}

@media (max-width: 600px) {
  .product-card-featured { padding: 24px; }
  .explorer-tabs button { padding-inline: 11px; font-size: .82rem; }
}

/* Product information integrated into the Available now card */
.product-card-featured > .product-explorer {
  grid-column: 1 / -1;
  margin: 8px -42px -42px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: none;
}

@media (max-width: 820px) {
  .product-card-featured > .product-explorer { margin: 4px -30px -30px; }
}

@media (max-width: 600px) {
  .product-card-featured > .product-explorer { margin: 2px -24px -24px; }
}
.product-card-featured { overflow: hidden; }
