:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #0a1421;
  --muted: #536273;
  --muted-strong: #314257;
  --line: #dce5ec;
  --line-strong: #c8d4de;
  --soft: #f5f8fa;
  --blue: #0066cc;
  --blue-dark: #004f9f;
  --blue-soft: #eff7ff;
  --mint: #0c7d66;
  --mint-dark: #07624f;
  --mint-soft: #effaf6;
  --amber: #dd8a17;
  --night: #0a1827;
  --radius: 8px;
  --shadow-soft: 0 14px 34px rgba(20, 48, 72, 0.1);
  --shadow-media: 0 24px 54px rgba(17, 46, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
}

h3 {
  line-height: 1.2;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.3);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  border-bottom: 1px solid rgba(220, 229, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1200px, calc(100% - 64px));
  min-height: 76px;
  margin: 0 auto;
}

.brand-lockup,
.site-nav,
.hero-actions,
.card-actions,
.support-actions,
.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
}

.brand-lockup {
  flex: 0 0 auto;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand-lockup img,
.product-identity img,
.product-card-identity img {
  border-radius: var(--radius);
  box-shadow: 0 9px 22px rgba(18, 57, 88, 0.12);
}

.product-lockup {
  font-size: 20px;
}

.site-nav {
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.header-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  padding: 9px 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.header-store-link-blue {
  background: var(--blue-dark);
}

.header-store-link-mint {
  background: var(--mint-dark);
}

.header-status {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 8px 13px;
  background: #ffffff;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.header-status-blue {
  border-color: #b9d6ef;
  color: var(--blue-dark);
}

.header-status-mint {
  border-color: #b8dbd2;
  color: var(--mint-dark);
}

.header-store-link svg,
.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pillio-page .eyebrow,
.product-card-mint .eyebrow {
  color: var(--mint-dark);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button {
  gap: 10px;
  border: 1px solid transparent;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(17, 49, 76, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(17, 49, 76, 0.17);
}

.button-blue {
  background: var(--blue-dark);
}

.button-blue:hover {
  background: #003f80;
}

.button-mint {
  background: var(--mint-dark);
}

.button-mint:hover {
  background: #054c3d;
}

.button-secondary {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.text-link {
  padding: 11px 6px;
  color: var(--blue-dark);
  font-size: 16px;
}

.text-link:hover {
  color: #003f80;
}

.text-link-mint {
  color: var(--mint-dark);
}

.text-link-mint:hover {
  color: #054c3d;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-intro-left {
  margin-left: 0;
  text-align: left;
}

.section-intro > p:last-child,
.about-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.72;
}

/* Company home */
.brand-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

.brand-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.18) 76%, rgba(255, 255, 255, 0) 100%);
}

.brand-hero-inner {
  display: flex;
  align-items: center;
  width: min(1200px, calc(100% - 64px));
  min-height: 680px;
  margin: 0 auto;
  padding: 66px 0 78px;
}

.brand-hero-copy {
  width: min(690px, 62%);
}

.brand-hero h1 {
  margin-bottom: 18px;
  font-size: 116px;
  font-weight: 800;
  line-height: 0.9;
}

.hero-statement {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.13;
}

.hero-body {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions,
.card-actions,
.support-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof-list,
.product-proof-list,
.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.hero-proof-list li + li::before,
.product-proof-list li + li::before,
.product-facts li + li::before {
  content: "/";
  margin: 0 12px;
  color: var(--line-strong);
}

.product-catalog {
  padding: 96px 32px 108px;
  background: #ffffff;
}

.product-catalog > .section-intro,
.principles-section > .section-intro {
  width: min(1200px, 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 232px;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card-blue {
  background: #f4f9ff;
}

.product-card-mint {
  background: #f3faf7;
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 26px 34px 34px;
}

.product-card-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.product-card-identity img {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.availability span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.availability.is-available {
  color: var(--mint-dark);
}

.availability.is-available span {
  background: var(--mint);
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 800;
}

.product-card-copy > p:not(.availability) {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.68;
}

.product-facts {
  margin-top: 24px;
  font-size: 13px;
}

.card-actions {
  margin-top: auto;
  padding-top: 28px;
}

.product-card-media {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(200, 212, 222, 0.75);
  padding: 28px 18px 0;
  text-decoration: none;
}

.product-card-media img {
  align-self: flex-start;
  width: 196px;
  height: auto;
  border-radius: 30px 30px 0 0;
  box-shadow: var(--shadow-media);
  transition: transform 220ms ease;
}

.product-card-media:hover img {
  transform: translateY(-5px);
}

.product-card-media span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(10, 20, 33, 0.86);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(12px);
}

.principles-section {
  padding: 100px 32px;
  background: var(--night);
  color: #ffffff;
}

.principles-section .eyebrow {
  color: #70b9ff;
}

.principles-section h2 {
  color: #ffffff;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1200px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-grid article {
  padding: 30px 32px 0 0;
}

.principle-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 32px;
}

.principle-grid span {
  display: block;
  margin-bottom: 34px;
  color: #ffb54e;
  font-size: 13px;
  font-weight: 800;
}

.principle-grid h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
}

.principle-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.68;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 72px;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 102px 0 110px;
}

.about-copy h2 {
  max-width: 700px;
}

.about-copy > p:last-child {
  max-width: 680px;
}

.about-facts {
  margin-bottom: 0;
  border-top: 1px solid var(--line-strong);
}

.about-facts div {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.about-facts dd {
  margin-left: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Product pages */
.product-hero {
  border-bottom: 1px solid var(--line);
}

.product-hero-blue {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 100%);
}

.product-hero-mint {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-soft) 100%);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1fr);
  gap: 58px;
  align-items: center;
  width: min(1200px, calc(100% - 64px));
  min-height: 790px;
  margin: 0 auto;
  padding: 70px 0 74px;
}

.product-hero-copy {
  max-width: 600px;
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.product-identity img {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
}

.product-identity strong,
.product-identity span {
  display: block;
}

.product-identity strong {
  margin-bottom: 4px;
  font-size: 22px;
}

.product-identity span {
  color: var(--muted);
  font-size: 14px;
}

.product-hero h1 {
  margin-bottom: 22px;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
}

.product-hero-body {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.7;
}

.product-proof-list {
  margin-top: 28px;
}

.hero-media {
  position: relative;
  min-width: 0;
  height: 720px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 72px 0 54px 52px;
  border: 1px solid rgba(160, 182, 199, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}

.hero-shot {
  position: absolute;
  z-index: 1;
  margin: 0;
}

.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 34px;
  box-shadow: var(--shadow-media);
}

.hero-shot-primary {
  top: 0;
  left: 18px;
  width: 300px;
}

.hero-shot-secondary {
  right: 16px;
  bottom: 0;
  width: 230px;
  z-index: 2;
}

.hero-shot figcaption {
  margin-top: 14px;
  padding-left: 2px;
}

.hero-shot figcaption span,
.hero-shot figcaption strong {
  display: block;
}

.hero-shot figcaption span {
  margin-bottom: 3px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pillio-page .hero-shot figcaption span {
  color: var(--mint-dark);
}

.hero-shot figcaption strong {
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.42;
}

.widget-experience {
  padding: 94px 32px 70px;
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.experience-steps li {
  min-width: 0;
  padding: 28px 30px 0 0;
}

.experience-steps li + li {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.experience-steps span,
.experience-steps strong {
  display: block;
}

.experience-steps span {
  margin-bottom: 30px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.pillio-page .experience-steps span {
  color: var(--mint-dark);
}

.experience-steps strong {
  margin-bottom: 8px;
  font-size: 21px;
}

.experience-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.widget-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 68px;
  align-items: center;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 102px;
}

.widget-detail-media {
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.widget-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 13%;
}

.widget-detail-blue {
  background: var(--blue-soft);
}

.widget-detail-mint {
  background: var(--mint-soft);
}

.widget-detail-copy h2 {
  font-size: 46px;
}

.widget-detail-copy > p:not(.eyebrow):not(.capture-note) {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.72;
}

.detail-list {
  margin: 28px 0 0;
  border-top: 1px solid var(--line-strong);
}

.detail-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.detail-list dd {
  margin-left: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.capture-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.feature-section {
  padding: 100px 32px;
  background: var(--soft);
}

.feature-section > .section-intro,
.feature-list {
  width: min(1120px, 100%);
}

.feature-section > .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.feature-list article {
  padding: 28px 30px 0 0;
}

.feature-list article + article {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.feature-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.pillio-page .feature-list span {
  color: var(--mint-dark);
}

.feature-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 70px;
  padding: 86px max(32px, calc((100% - 1120px) / 2));
  background: var(--night);
  color: #ffffff;
}

.privacy-band .eyebrow {
  color: #70b9ff;
}

.pillio-page .privacy-band .eyebrow {
  color: #67d3b9;
}

.privacy-band h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 48px;
}

.privacy-band > div:last-child {
  align-self: end;
}

.privacy-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.72;
}

.privacy-band a {
  color: #8bc7ff;
  font-weight: 800;
  text-underline-offset: 4px;
}

.pillio-page .privacy-band a {
  color: #82ddc7;
}

.medical-note {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  width: min(980px, calc(100% - 64px));
  margin: 68px auto 0;
  border-left: 3px solid var(--mint);
  padding: 8px 0 8px 26px;
}

.medical-note strong {
  font-size: 16px;
}

.medical-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0 102px;
}

.pillio-page .medical-note + .support-cta {
  padding-top: 70px;
}

.support-cta h2 {
  margin-bottom: 12px;
  font-size: 42px;
}

.support-cta > div:first-child > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 32px 28px;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.footer-brand {
  gap: 12px;
}

.footer-brand img {
  flex: 0 0 auto;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.footer-links a {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.footer-legal {
  width: min(1200px, 100%);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

/* Support and privacy */
.legal-page {
  background: #ffffff;
}

.legal-main {
  overflow: visible;
}

.legal-hero,
.legal-content {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  padding: 82px 0 44px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.legal-identity img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-identity strong,
.legal-identity span {
  display: block;
}

.legal-identity strong {
  font-size: 18px;
}

.legal-identity span {
  color: var(--muted);
  font-size: 13px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: 56px;
  line-height: 1.05;
}

.legal-hero > p {
  max-width: 660px;
  color: var(--muted-strong);
  font-size: 17px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.legal-nav a {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.pillio-legal .legal-nav a {
  color: var(--mint-dark);
}

.legal-content {
  padding: 50px 0 96px;
}

.legal-intro {
  margin-bottom: 44px;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.72;
}

.legal-section,
.faq-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child,
.faq-item:first-child {
  border-top-color: var(--line-strong);
}

.legal-section h2,
.faq-item h2 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-section p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-content a {
  color: var(--blue-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.pillio-legal .legal-content a {
  color: var(--mint-dark);
}

@media (max-width: 1100px) {
  h2 {
    font-size: 46px;
  }

  .brand-hero h1 {
    font-size: 92px;
  }

  .hero-statement {
    font-size: 36px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
  }

  .product-hero-copy {
    max-width: 760px;
  }

  .hero-media {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .widget-detail-section {
    grid-template-columns: 1fr;
  }

  .widget-detail-media {
    height: 430px;
  }

  .widget-detail-copy {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  h2,
  .widget-detail-copy h2 {
    font-size: 40px;
  }

  .header-inner {
    width: min(100% - 40px, 1200px);
  }

  .brand-hero-inner {
    width: min(100% - 40px, 1200px);
  }

  .brand-hero-copy {
    width: min(620px, 78%);
  }

  .product-hero h1 {
    font-size: 56px;
  }

  .principle-grid,
  .experience-steps,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .experience-steps li,
  .feature-list article {
    padding: 26px 0;
  }

  .principle-grid article + article,
  .experience-steps li + li,
  .feature-list article + article {
    border-top: 1px solid currentColor;
    border-left: 0;
    padding-left: 0;
  }

  .principle-grid article + article {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .experience-steps li + li,
  .feature-list article + article {
    border-top-color: var(--line);
  }

  .principle-grid span,
  .experience-steps span,
  .feature-list span {
    margin-bottom: 16px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 50px;
    width: calc(100% - 40px);
  }

  .privacy-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy-band > div:last-child {
    align-self: start;
  }

  .support-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 740px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 12px 18px;
    min-height: 0;
    padding: 14px 0 16px;
  }

  .brand-lockup {
    font-size: 19px;
  }

  .brand-lockup img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
    margin-left: 0;
  }

  .site-nav a {
    font-size: 14px;
  }

  .header-store-link,
  .header-status {
    margin-left: auto;
  }

  .brand-hero,
  .brand-hero-inner {
    min-height: 590px;
  }

  .brand-hero-bg {
    object-position: 62% center;
    opacity: 0.62;
  }

  .brand-hero::after {
    background: rgba(255, 255, 255, 0.78);
  }

  .brand-hero-inner {
    width: calc(100% - 40px);
    padding: 64px 0 72px;
  }

  .brand-hero-copy {
    width: 100%;
  }

  .brand-hero h1 {
    font-size: 58px;
    line-height: 0.98;
  }

  .hero-statement {
    font-size: 31px;
  }

  .hero-body,
  .product-hero-body {
    font-size: 17px;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: flex-start;
    width: auto;
  }

  .hero-proof-list,
  .product-proof-list,
  .product-facts {
    row-gap: 8px;
  }

  .product-catalog,
  .principles-section,
  .widget-experience,
  .feature-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-copy {
    padding: 26px 24px 32px;
  }

  .product-card-identity {
    margin-bottom: 26px;
  }

  .product-card-media {
    min-height: 430px;
    border-top: 1px solid rgba(200, 212, 222, 0.75);
    border-left: 0;
  }

  .product-card-media img {
    width: 196px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .product-hero-inner {
    width: calc(100% - 40px);
    padding: 58px 0 66px;
  }

  .product-identity {
    align-items: flex-start;
  }

  .product-identity img {
    width: 72px;
    height: 72px;
  }

  .product-hero h1 {
    font-size: 42px;
    line-height: 1.06;
  }

  .hero-media {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
  }

  .hero-media::before {
    display: none;
  }

  .hero-shot {
    position: static;
  }

  .hero-shot-primary {
    align-self: center;
    width: min(100%, 320px);
  }

  .hero-shot-secondary {
    display: none;
  }

  .hero-shot-primary img {
    height: 560px;
    object-fit: cover;
    object-position: top;
  }

  .widget-detail-section {
    gap: 42px;
    width: calc(100% - 40px);
    padding: 34px 0 76px;
  }

  .widget-detail-media {
    height: 300px;
  }

  .detail-list div {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .privacy-band {
    padding: 70px 20px;
  }

  .privacy-band h2 {
    font-size: 40px;
  }

  .medical-note {
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100% - 40px);
    padding-left: 20px;
  }

  .support-cta {
    width: calc(100% - 40px);
    padding: 76px 0 84px;
  }

  .support-actions {
    align-items: flex-start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    margin-left: 0;
  }

  .legal-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  h2,
  .widget-detail-copy h2,
  .privacy-band h2 {
    font-size: 34px;
  }

  .header-store-link {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .site-nav {
    gap: 16px;
  }

  .brand-hero h1 {
    font-size: 52px;
  }

  .hero-statement {
    font-size: 28px;
  }

  .product-card h3 {
    font-size: 32px;
  }

  .product-card-identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-actions .button,
  .support-actions .button {
    width: 100%;
  }

  .product-hero h1 {
    font-size: 36px;
  }

  .product-proof-list li + li::before,
  .hero-proof-list li + li::before,
  .product-facts li + li::before {
    margin: 0 8px;
  }

  .widget-detail-media {
    height: 250px;
  }

  .support-cta h2 {
    font-size: 34px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }
}
