:root {
  --bg: #020b16;
  --bg-soft: #07111f;
  --surface: #0b1726;
  --surface-strong: #101d2d;
  --gold: #f3c969;
  --gold-deep: #d89b2b;
  --green: #4cdd87;
  --text: #fff5d6;
  --muted: #aeb9c8;
  --line: rgba(243, 201, 105, 0.34);
  --line-soft: rgba(174, 185, 200, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(216, 155, 43, 0.12), transparent 24rem),
    linear-gradient(150deg, var(--bg), var(--bg-soft) 58%, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
  content: "";
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(100% - 36px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(243, 201, 105, 0.15);
  background: rgba(2, 11, 22, 0.92);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  gap: 14px;
}

.brand {
  background: linear-gradient(180deg, #fff5c9, var(--gold) 54%, var(--gold-deep));
  background-clip: text;
  color: transparent;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 7px 24px rgba(243, 201, 105, 0.22);
}

.menu-toggle {
  justify-self: end;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
  cursor: pointer;
}

.menu-toggle svg,
.back-to-top svg,
.mobile-register svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.primary-navigation {
  position: absolute;
  top: calc(100% + 1px);
  right: 18px;
  left: 18px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(7, 17, 31, 0.98);
  box-shadow: var(--shadow);
}

.primary-navigation.is-open {
  display: grid;
}

.primary-navigation a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.primary-navigation a:hover {
  background: rgba(243, 201, 105, 0.08);
  color: var(--text);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--gold {
  border-color: #ffd77d;
  background: linear-gradient(135deg, #fff0b4, var(--gold) 46%, var(--gold-deep));
  box-shadow: 0 14px 34px rgba(216, 155, 43, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  color: #171006;
}

.button--gold:hover {
  box-shadow: 0 18px 40px rgba(216, 155, 43, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.button--ghost {
  border-color: var(--gold);
  background: rgba(2, 11, 22, 0.5);
  color: var(--gold);
}

.button--compact {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 14px;
}

.section {
  padding-block: 56px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.content-section h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(27px, 7vw, 42px);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-heading p,
.content-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding-block: 54px 42px;
}

.hero::after {
  position: absolute;
  right: -30%;
  bottom: 5%;
  z-index: -1;
  width: 75%;
  height: 36%;
  border-radius: 50%;
  background: rgba(216, 155, 43, 0.13);
  filter: blur(80px);
  content: "";
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 32px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(76, 221, 135, 0.7);
  border-radius: 999px;
  background: rgba(76, 221, 135, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero__badge svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  background: linear-gradient(180deg, #fff8d9 8%, var(--gold) 78%, var(--gold-deep));
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, 10vw, 64px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero__lead,
.page-hero__lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #d5dbe5;
  font-size: clamp(17px, 4.6vw, 21px);
  line-height: 1.55;
}

.hero__actions,
.page-hero__actions {
  display: grid;
  margin-top: 28px;
  gap: 12px;
}

.hero__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(243, 201, 105, 0.25);
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(2, 11, 22, 0.35);
  content: "";
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 67% center;
}

.trust-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(16, 29, 45, 0.94), rgba(7, 17, 31, 0.94));
  box-shadow: var(--shadow);
}

.trust-item {
  display: grid;
  min-width: 0;
  place-items: center;
  gap: 7px;
  padding: 20px 6px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line-soft);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item:first-child svg {
  stroke: var(--green);
}

.trust-item strong {
  font-size: clamp(10px, 2.9vw, 14px);
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.product-card::after {
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(2, 11, 22, 0.96));
  content: "";
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.product-card strong {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  z-index: 2;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  text-align: center;
}

.steps-band {
  display: grid;
  gap: 20px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface-strong), rgba(7, 17, 31, 0.88));
}

.steps-band h2 {
  margin: 0;
  color: var(--gold);
  font-size: 25px;
  line-height: 1.15;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.step {
  position: relative;
  display: grid;
  place-items: center;
  gap: 9px;
  text-align: center;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 23px;
  right: -8px;
  color: var(--gold-deep);
  content: "›";
  font-size: 28px;
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 23px;
  font-weight: 900;
}

.step strong {
  font-size: clamp(11px, 3.1vw, 15px);
  line-height: 1.3;
}

.welcome-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 24px;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 32%, rgba(243, 201, 105, 0.24), transparent 18rem),
    linear-gradient(125deg, #171005, #0b1726 56%, #111b29);
  box-shadow: var(--shadow);
}

.welcome-panel::after {
  position: absolute;
  right: -35px;
  bottom: -50px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border: 28px solid rgba(243, 201, 105, 0.12);
  border-radius: 50%;
  content: "";
}

.welcome-panel h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(28px, 7vw, 43px);
  line-height: 1.12;
}

.welcome-panel p {
  max-width: 610px;
  margin: 14px 0 24px;
  color: var(--muted);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reason {
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 23, 38, 0.82);
  text-align: center;
}

.reason svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.reason strong {
  font-size: 14px;
  line-height: 1.3;
}

.faq-list {
  display: grid;
  max-width: 820px;
  margin-inline: auto;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(11, 23, 38, 0.82);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 16px 18px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.page-hero {
  padding-block: 54px 38px;
}

.page-hero__grid {
  display: grid;
  align-items: center;
  gap: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(36px, 9vw, 58px);
}

.page-hero__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-wrap {
  display: grid;
  gap: 22px;
}

.content-section {
  padding: 26px 22px;
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(110deg, rgba(16, 29, 45, 0.86), rgba(7, 17, 31, 0.55));
}

.content-section h2 {
  font-size: clamp(23px, 6vw, 32px);
}

.inline-cta {
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(216, 155, 43, 0.16), rgba(11, 23, 38, 0.9));
}

.inline-cta h2 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 25px;
}

.inline-cta p {
  margin: 0;
  color: var(--muted);
}

.guide-links {
  display: grid;
  gap: 12px;
}

.guide-link {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(11, 23, 38, 0.7);
  color: var(--text);
  font-weight: 750;
}

.guide-link svg {
  width: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.listing-grid {
  display: grid;
  gap: 18px;
}

.archive-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 23, 38, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: border-color 160ms ease, transform 160ms ease;
}

.archive-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.archive-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-strong);
}

.archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.archive-card:hover .archive-card__media img {
  transform: scale(1.025);
}

.archive-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.archive-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 5.5vw, 28px);
  line-height: 1.2;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
}

.archive-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
}

.pagination {
  margin-top: 30px;
  color: var(--muted);
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(11, 23, 38, 0.72);
}

.pagination a:hover,
.pagination .thisclass {
  border-color: var(--gold);
  color: var(--gold);
}

.article-layout {
  display: grid;
  gap: 26px;
}

.article-summary {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(76, 221, 135, 0.07);
  color: #dbe5e4;
  font-size: 17px;
}

.article-body {
  min-width: 0;
  padding: 24px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 23, 38, 0.68);
  color: #dbe1e9;
  font-size: 17px;
  line-height: 1.78;
}

.article-body h2,
.article-body h3 {
  color: var(--gold);
  line-height: 1.2;
}

.article-body h2 {
  margin: 2em 0 0.65em;
  font-size: clamp(26px, 6vw, 36px);
}

.article-body h3 {
  margin: 1.7em 0 0.55em;
  font-size: clamp(22px, 5vw, 28px);
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-block: 1em;
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(243, 201, 105, 0.45);
  text-underline-offset: 3px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: var(--radius);
}

.article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
}

.article-navigation {
  display: grid;
  gap: 10px;
}

.article-navigation > div {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(11, 23, 38, 0.72);
  color: var(--muted);
}

.article-navigation a {
  color: var(--text);
}

.related-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-list a {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(11, 23, 38, 0.7);
}

.site-footer {
  padding: 54px 0 108px;
  border-top: 1px solid rgba(243, 201, 105, 0.15);
  background: rgba(1, 7, 14, 0.86);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid nav a {
  color: var(--muted);
}

.footer-grid nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
}

.age-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.mobile-register {
  position: fixed;
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  left: max(10px, env(safe-area-inset-left));
  z-index: 60;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ffe09a;
  border-radius: 13px;
  background: linear-gradient(135deg, #fff1b8, var(--gold), var(--gold-deep));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: #171006;
  font-size: 17px;
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 55;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(11, 23, 38, 0.94);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Approved homepage lower-half density. Scoped to avoid changing inner pages. */
.home-page #products,
.home-page #steps,
.home-page #welcome,
.home-page #reasons,
.home-page #faq {
  padding-block: 28px;
}

.home-page #products .section-heading,
.home-page #reasons .section-heading,
.home-page #faq .section-heading {
  margin-bottom: 18px;
}

.home-page #products .section-heading h2,
.home-page #reasons .section-heading h2,
.home-page #faq .section-heading h2 {
  margin-bottom: 7px;
  font-size: clamp(22px, 6vw, 30px);
}

.home-page #products .section-heading p,
.home-page #reasons .section-heading p,
.home-page #faq .section-heading p {
  font-size: 14px;
  line-height: 1.45;
}

.home-page #products .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-page #products .product-card,
.home-page #products .product-card img {
  min-height: 132px;
}

.home-page #products .product-card {
  border-radius: 12px;
}

.home-page #products .product-card strong {
  right: 4px;
  bottom: 7px;
  left: 4px;
  font-size: clamp(9px, 2.6vw, 12px);
  line-height: 1.05;
}

.home-page #steps .steps-band {
  gap: 14px;
  padding: 20px 14px;
}

.home-page #steps .steps-band h2 {
  font-size: clamp(20px, 5.6vw, 27px);
}

.home-page #steps .step {
  gap: 6px;
}

.home-page #steps .step:not(:last-child)::after {
  top: 17px;
  right: -6px;
  font-size: 23px;
}

.home-page #steps .step-number {
  width: 38px;
  height: 38px;
  font-size: 19px;
}

.home-page #steps .step strong {
  font-size: clamp(9px, 2.6vw, 12px);
}

.home-page #welcome .welcome-panel {
  min-height: 190px;
  padding: 24px 18px;
  background: #07111f;
}

.home-page #welcome .welcome-panel::after {
  display: none;
}

.home-page .welcome-panel__content {
  position: relative;
  z-index: 2;
  width: 58%;
}

.home-page #welcome .welcome-panel h2 {
  font-size: clamp(23px, 6.2vw, 31px);
}

.home-page #welcome .welcome-panel p {
  max-width: 300px;
  margin: 9px 0 15px;
  font-size: 13px;
  line-height: 1.45;
}

.home-page #welcome .welcome-panel .button {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.home-page .welcome-panel__art {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}

.home-page .welcome-panel__art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07111f 4%, rgba(7, 17, 31, 0.86) 42%, transparent 68%);
  content: "";
}

.home-page .welcome-panel__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page #reasons .reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-page #reasons .reason {
  min-height: 112px;
  gap: 7px;
  padding: 12px 5px;
  border-radius: 12px;
}

.home-page #reasons .reason svg {
  width: 28px;
  height: 28px;
}

.home-page #reasons .reason strong {
  font-size: clamp(8px, 2.25vw, 11px);
  line-height: 1.22;
}

.home-page #faq .faq-list {
  gap: 7px;
}

.home-page #faq .faq-question {
  min-height: 46px;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.3;
}

.home-page #faq .faq-question svg {
  width: 17px;
}

.home-page #faq .faq-answer {
  padding: 0 13px 13px;
  font-size: 13px;
}

.home-page .site-footer {
  padding: 28px 0 88px;
}

.home-page .footer-grid {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 18px;
}

.home-page .footer-grid > div {
  grid-row: 1 / 3;
}

.home-page .footer-brand {
  margin: 0;
}

.home-page .footer-grid p {
  display: none;
}

.home-page .footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
}

.home-page .footer-grid nav a {
  font-size: 12px;
}

.home-page .footer-bottom {
  justify-content: center;
  margin-top: 18px;
  padding-top: 14px;
  font-size: 12px;
}

@media (max-width: 359px) {
  .home-page #products .product-grid,
  .home-page #reasons .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-page .footer-grid > div {
    grid-row: auto;
  }
}

@media (min-width: 560px) {
  .hero__actions,
  .page-hero__actions {
    grid-template-columns: repeat(2, minmax(0, 220px));
  }

  .product-grid {
    gap: 18px;
  }

  .product-card,
  .product-card img {
    min-height: 280px;
  }

  .inline-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 768px) {
  .site-shell {
    width: min(100% - 48px, 1180px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-navigation {
    position: static;
    display: flex;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-actions {
    display: flex;
  }

  .hero {
    min-height: 650px;
    padding-block: 64px 42px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .hero__media {
    min-height: 420px;
  }

  .hero__media img {
    min-height: 420px;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card,
  .product-card img {
    min-height: 260px;
  }

  .steps-band {
    grid-template-columns: minmax(190px, 0.7fr) 1.8fr;
    align-items: center;
    padding: 34px;
  }

  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-card__body,
  .article-body {
    padding: 32px;
  }

  .article-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
  }

  .site-footer {
    padding-bottom: 42px;
  }

  .mobile-register {
    display: none;
  }

  .back-to-top {
    bottom: 24px;
  }
}

@media (min-width: 1100px) {
  .site-shell {
    width: min(1180px, calc(100% - 64px));
  }

  .section {
    padding-block: 76px;
  }

  .hero__grid {
    gap: 58px;
  }

  .content-section {
    padding: 34px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
