/* SoluMus brand architecture — master brand + product identities */
:root {
  --sm-forest: #1f4d3f;
  --sm-forest-deep: #143c30;
  --sm-forest-soft: #e7efeb;
  --sm-coral: #ff7a5c;
  --sm-cream: #f8f7f2;
  --sm-paper: #fffefa;
  --sm-ink: #15231e;
  --sm-muted: #68746f;
  --sm-line: #dfe5e1;
  --sm-white: #ffffff;
  --sm-max: 1180px;
  --sm-radius: 32px;
  --sm-shadow: 0 30px 80px rgba(20, 60, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.brand-site {
  margin: 0;
  color: var(--sm-ink);
  background: var(--sm-cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.brand-site img { max-width: 100%; }
.brand-site a { color: inherit; text-decoration: none; }
.brand-site button, .brand-site a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--sm-forest-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.brand-wrap { width: min(100% - 40px, var(--sm-max)); margin-inline: auto; }

.brand-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(31, 77, 63, 0.09);
  background: rgba(248, 247, 242, 0.88);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
}

.brand-nav__inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-nav__master { display: inline-flex; align-items: center; width: max-content; }
.brand-nav__master img { display: block; width: 142px; height: auto; }

.product-switcher {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(31, 77, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.product-switcher a {
  min-width: 74px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--sm-muted);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.product-switcher a:hover { color: var(--sm-forest); transform: translateY(-1px); }
.product-switcher a[aria-current="page"] { color: #fff; background: var(--sm-forest-deep); }

.brand-nav__action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sm-forest);
  font-size: 14px;
  font-weight: 720;
}
.brand-nav__action span { transition: transform 0.2s ease; }
.brand-nav__action:hover span { transform: translateX(3px); }

.brand-hero {
  position: relative;
  isolation: isolate;
  min-height: 710px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 96px;
}

.brand-hero::before, .brand-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
}
.brand-hero::before {
  width: min(46vw, 620px);
  aspect-ratio: 1;
  left: -20vw;
  top: -18%;
  border: 1px solid rgba(31, 77, 63, 0.12);
  box-shadow: 0 0 0 78px rgba(31, 77, 63, 0.025), 0 0 0 156px rgba(31, 77, 63, 0.018);
}
.brand-hero::after {
  width: min(36vw, 480px);
  aspect-ratio: 1;
  right: -14vw;
  bottom: -26%;
  background: rgba(255, 122, 92, 0.09);
}

.brand-hero__inner { max-width: 970px; margin: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--sm-forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--sm-coral); }

.brand-hero h1, .brand-section h2, .product-card h3, .brand-statement h2 {
  margin: 0;
  letter-spacing: -0.048em;
  line-height: 1.02;
}
.brand-hero h1 { font-size: clamp(48px, 8.2vw, 100px); font-weight: 820; }
.brand-hero h1 em { color: var(--sm-forest); font-style: normal; }
.brand-hero__lead {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--sm-muted);
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 520;
  letter-spacing: -0.018em;
}

.brand-hero__promise {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.brand-hero__promise span {
  padding: 8px 13px;
  border: 1px solid rgba(31, 77, 63, 0.12);
  border-radius: 999px;
  color: var(--sm-muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
}
.brand-hero__promise b { color: var(--sm-forest); font-weight: 820; }

.brand-hero__marks { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; }
.brand-hero__marks a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px 9px 9px;
  border: 1px solid rgba(31, 77, 63, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--sm-forest-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 35px rgba(20, 60, 48, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-hero__marks a:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(20, 60, 48, 0.11); }
.brand-hero__marks img { width: 46px; height: 46px; display: block; }
.brand-hero__divider { width: 1px; height: 34px; background: var(--sm-line); }

.brand-section { padding: 112px 0; }
.brand-section--paper { background: var(--sm-paper); }
.brand-section--forest { color: #fff; background: var(--sm-forest-deep); }
.brand-section--forest .kicker { color: rgba(255, 255, 255, 0.78); }
.section-heading { max-width: 810px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.brand-section h2, .brand-statement h2 { font-size: clamp(38px, 5.8vw, 70px); font-weight: 820; }
.section-lead { margin: 18px 0 0; color: var(--sm-muted); font-size: clamp(18px, 2.1vw, 24px); }
.brand-section--forest .section-lead { color: rgba(255, 255, 255, 0.68); }

.local-first { position: relative; isolation: isolate; overflow: hidden; }
.local-first::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -250px;
  top: -270px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255, 255, 255, 0.018), 0 0 0 148px rgba(255, 255, 255, 0.012);
}
.local-first__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}
.local-first__intro h2 { max-width: 760px; }
.local-first__intro > p {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}
.data-boundary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.data-card {
  min-height: 315px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.055);
}
.data-card--local {
  border-color: rgba(255, 122, 92, 0.42);
  background: linear-gradient(145deg, rgba(255, 122, 92, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 3px 0 rgba(255, 122, 92, 0.62);
}
.data-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.data-card__badge {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--sm-forest-deep);
  background: var(--sm-coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.data-card__place { color: rgba(255, 255, 255, 0.46); font-size: 12px; font-weight: 720; }
.data-card h3 { max-width: 470px; margin: 0; color: #fff; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.035em; line-height: 1.12; }
.data-card p { margin: 16px 0 0; color: rgba(255, 255, 255, 0.67); font-size: 15px; line-height: 1.62; }
.data-card ul { display: grid; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.data-card li { position: relative; padding-left: 20px; color: rgba(255, 255, 255, 0.77); font-size: 13px; }
.data-card li::before { content: ""; position: absolute; left: 0; top: 0.64em; width: 7px; height: 7px; border-radius: 50%; background: var(--sm-coral); }
.local-first__rule {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 23px 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}
.local-first__rule strong { color: #fff; font-size: 15px; }
.local-first__rule p { margin: 0; color: rgba(255, 255, 255, 0.63); font-size: 13px; }
.local-first__rule a { color: #ffad99; font-size: 13px; font-weight: 800; white-space: nowrap; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 63, 0.1);
  border-radius: var(--sm-radius);
  box-shadow: var(--sm-shadow);
}
.product-card--one { color: var(--sm-ink); background: #f1f5f2; }
.product-card--pack { color: #fff; background: var(--sm-forest-deep); }
.product-card--health { color: var(--sm-ink); background: #e7efeb; }
.product-card--money { color: var(--sm-ink); background: #f3ece6; }
.product-card--wide {
  grid-column: 1 / -1;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  align-items: stretch;
}
.product-card__content { position: relative; z-index: 2; padding: 42px 42px 28px; }
.product-card__logo { display: block; width: min(100%, 390px); height: auto; margin-bottom: 36px; }
.product-card__type { margin-bottom: 11px; color: var(--sm-muted); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.product-card--pack .product-card__type { color: rgba(255, 255, 255, 0.62); }
.product-card h3 { max-width: 490px; font-size: clamp(34px, 4.2vw, 56px); font-weight: 800; }
.product-card__copy { max-width: 490px; margin: 18px 0 0; color: var(--sm-muted); font-size: 18px; }
.product-card--pack .product-card__copy { color: rgba(255, 255, 255, 0.7); }
.product-card__privacy {
  width: fit-content;
  margin-top: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(31, 77, 63, 0.13);
  border-radius: 12px;
  color: var(--sm-forest);
  background: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.4;
}
.product-card--pack .product-card__privacy { color: #ffd0c5; border-color: rgba(255, 122, 92, 0.24); background: rgba(255, 122, 92, 0.08); }
.product-card__links { display: flex; align-items: center; flex-wrap: wrap; gap: 11px 20px; margin-top: 28px; }
.product-status { color: var(--sm-muted); font-size: 12px; font-weight: 740; }

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 19px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--sm-forest);
  font-size: 15px;
  font-weight: 740;
  transition: transform 0.2s ease, background 0.2s ease;
}
.pill-link:hover { transform: translateY(-2px); background: var(--sm-forest-deep); }
.product-card--pack .pill-link { color: var(--sm-forest-deep) !important; background: var(--sm-coral); }
.text-link { color: var(--sm-forest) !important; font-size: 15px; font-weight: 740; }
.product-card--pack .text-link { color: #fff !important; }

.health-card-preview {
  align-self: stretch;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  margin: 44px 44px 44px 0;
  padding: 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background: #0d1d1a;
  box-shadow: 0 30px 70px rgba(20, 60, 48, .2);
}
.health-card-preview__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.health-card-preview__top span, .health-card-preview__activity span { color: rgba(255,255,255,.45); font-size: 9px; font-weight: 820; letter-spacing: .12em; }
.health-card-preview__top b { width: 76px; height: 76px; display: grid; place-items: center; border: 7px solid rgba(255,255,255,.08); border-top-color: var(--sm-coral); border-right-color: var(--sm-coral); border-radius: 50%; font-family: ui-serif, Georgia, serif; font-size: 29px; font-weight: 500; }
.health-card-preview__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.health-card-preview__row > div { padding: 18px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.035); }
.health-card-preview__row small { display: block; color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .1em; }
.health-card-preview__row strong { display: block; margin-top: 9px; font-family: ui-serif, Georgia, serif; font-size: 21px; font-weight: 500; }
.health-card-preview__activity { flex: 1; display: grid; align-content: center; margin-top: 10px; padding: 20px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.035); }
.health-card-preview__activity b { margin-top: 10px; font-size: 16px; }
.health-card-preview__activity i { position: relative; height: 56px; display: block; margin-top: 16px; border: 1px solid rgba(255,255,255,.05); }
.health-card-preview__activity i::before { content: ""; position: absolute; left: 24px; right: 24px; top: 28px; height: 2px; background: var(--sm-coral); transform: rotate(-4deg); }
.health-card-preview__foot { display: flex; gap: 7px; margin-top: 12px; }
.health-card-preview__foot span { padding: 6px 8px; color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); font-size: 8px; }

.money-card-preview {
  align-self: stretch;
  min-height: 470px;
  display: grid;
  place-items: center;
  margin: 44px 44px 44px 0;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 63, .1);
  border-radius: 28px;
  background: var(--sm-forest-deep);
  box-shadow: 0 30px 70px rgba(20, 60, 48, .2);
}
.money-card-preview__phone { width: 214px; height: 438px; padding: 7px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 35px; background: #070a09; box-shadow: 0 28px 58px rgba(0,0,0,.28); transform: rotate(2deg) translateY(34px); }
.money-card-preview__phone img { width: 100%; height: 112%; display: block; object-fit: cover; object-position: center top; border-radius: 29px; transform: translateY(-5.5%); }

.edition-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.edition-row span {
  padding: 6px 11px;
  border: 1px solid rgba(31, 77, 63, 0.14);
  border-radius: 999px;
  color: var(--sm-forest);
  background: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__visual {
  position: relative;
  flex: 1;
  min-height: 280px;
  margin: 8px 0 0 42px;
  overflow: hidden;
  border-radius: 24px 0 0 0;
  background: #0c1713;
  box-shadow: -10px -14px 50px rgba(20, 60, 48, 0.16);
}
.product-card__visual img { width: 100%; height: 100%; object-fit: cover; object-position: left top; display: block; }
.product-card--pack .product-card__visual { border: 1px solid rgba(255, 255, 255, 0.1); border-right: 0; border-bottom: 0; }

.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 1180px; margin: 0 auto; }
.choice-card { padding: 32px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 25px; background: rgba(255, 255, 255, 0.055); }
.choice-card__head { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.choice-card__head img { width: 54px; height: 54px; }
.choice-card__name { color: #fff; font-size: 23px; font-weight: 800; }
.choice-card__label { color: rgba(255, 255, 255, 0.58); font-size: 13px; }
.choice-card ul { margin: 0; padding: 0; list-style: none; }
.choice-card li { position: relative; margin-top: 13px; padding-left: 24px; color: rgba(255, 255, 255, 0.78); font-size: 16px; }
.choice-card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border-radius: 50%; background: var(--sm-coral); }

.architecture { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; }
.architecture__diagram { padding: 28px; border: 1px solid var(--sm-line); border-radius: 30px; background: #fff; box-shadow: 0 26px 70px rgba(20, 60, 48, 0.08); }
.architecture__master { display: flex; justify-content: center; padding: 22px; border-radius: 18px; background: var(--sm-cream); }
.architecture__master img { width: 176px; }
.architecture__line { width: 1px; height: 32px; margin: 0 auto; background: var(--sm-line); }
.architecture__products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-items: start; }
.architecture__branch { min-width: 0; }
.architecture__product { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--sm-line); border-radius: 18px; }
.architecture__product img { width: 46px; height: 46px; }
.architecture__product strong { display: block; font-size: 16px; }
.architecture__product small { display: block; color: var(--sm-muted); font-size: 12px; }
.architecture__subline { width: 1px; height: 16px; margin: 0 auto; background: var(--sm-line); }
.architecture__editions { display: flex; justify-content: space-around; gap: 8px; padding: 12px 8px; border-radius: 14px; color: var(--sm-forest); background: var(--sm-forest-soft); font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.architecture__branch-note { padding: 12px 8px; color: var(--sm-muted); font-size: 11px; font-weight: 750; text-align: center; }
.architecture__copy p { color: var(--sm-muted); font-size: 19px; }
.architecture__copy p + p { margin-top: 16px; }

.brand-statement { padding: 118px 0; text-align: center; }
.brand-statement p { max-width: 770px; margin: 22px auto 0; color: var(--sm-muted); font-size: 21px; }
.brand-principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-top: 46px; text-align: left; }
.brand-principle { padding: 27px; border: 1px solid var(--sm-line); border-radius: 22px; background: rgba(255, 255, 255, 0.58); }
.brand-principle__number { color: var(--sm-coral); font-size: 12px; font-weight: 840; letter-spacing: 0.12em; }
.brand-principle h3 { margin: 12px 0 8px; color: var(--sm-forest-deep); font-size: 20px; letter-spacing: -0.02em; }
.brand-principle p { margin: 0; color: var(--sm-muted); font-size: 15px; }
.brand-footer { border-top: 1px solid var(--sm-line); padding: 42px 0 48px; color: var(--sm-muted); background: var(--sm-cream); font-size: 14px; }
.brand-footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 34px; }
.brand-footer__brand img { display: block; width: 132px; margin-bottom: 13px; }
.brand-footer__brand p { max-width: 390px; margin: 0; }
.brand-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px 22px; }
.brand-footer__links a:hover { color: var(--sm-forest); }

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

@media (max-width: 900px) {
  .brand-nav__inner { grid-template-columns: 1fr auto; }
  .product-switcher { display: none; }
  .product-grid, .choice-grid, .architecture, .brand-principles { grid-template-columns: 1fr; }
  .product-card--wide { grid-template-columns: 1fr; }
  .health-card-preview { min-height: 390px; margin: 0 42px 42px; }
  .money-card-preview { min-height: 390px; margin: 0 42px 42px; }
  .architecture { gap: 38px; }
  .product-card { min-height: 630px; }
  .local-first__intro { grid-template-columns: 1fr; gap: 22px; }
  .local-first__rule { grid-template-columns: 1fr; gap: 9px; }
}

@media (max-width: 640px) {
  .brand-wrap { width: min(100% - 28px, var(--sm-max)); }
  .brand-nav__inner { min-height: 60px; gap: 12px; }
  .brand-nav__master img { width: 118px; }
  .brand-nav__action { font-size: 13px; }
  .brand-hero { min-height: 650px; padding: 84px 0 72px; }
  .brand-hero h1 { font-size: clamp(46px, 15vw, 70px); }
  .brand-hero__lead { font-size: 19px; }
  .brand-hero__marks {
    width: min(100%, 330px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-inline: auto;
  }
  .brand-hero__promise { display: grid; grid-template-columns: 1fr; width: min(100%, 310px); margin-inline: auto; }
  .brand-hero__promise span { text-align: left; }
  .brand-hero__marks a { min-width: 0; justify-content: flex-start; padding-right: 11px; }
  .brand-hero__marks img { width: 39px; height: 39px; }
  .brand-hero__divider { display: none; }
  .brand-section { padding: 82px 0; }
  .data-boundary { grid-template-columns: 1fr; }
  .data-card { min-height: auto; padding: 25px 22px; }
  .data-card__top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .local-first__rule { padding: 21px 20px; }
  .section-heading { margin-bottom: 32px; }
  .product-grid { gap: 16px; }
  .product-card { min-height: 560px; border-radius: 25px; }
  .product-card__content { padding: 28px 24px 24px; }
  .product-card__logo { margin-bottom: 28px; }
  .product-card__copy { font-size: 16px; }
  .product-card__visual { min-height: 230px; margin-left: 24px; border-radius: 18px 0 0 0; }
  .health-card-preview { min-height: 360px; margin: 0 24px 24px; padding: 21px; border-radius: 21px; }
  .health-card-preview__top b { width: 64px; height: 64px; font-size: 25px; }
  .money-card-preview { min-height: 360px; margin: 0 24px 24px; border-radius: 21px; }
  .money-card-preview__phone { width: 184px; height: 376px; }
  .choice-card { padding: 25px 22px; }
  .architecture__diagram { padding: 17px; }
  .architecture__products { grid-template-columns: 1fr; }
  .architecture__editions { flex-wrap: wrap; }
  .brand-footer__inner { display: block; }
  .brand-footer__links { justify-content: flex-start; margin-top: 28px; }
}

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