.home-hero {
  position: relative;
  overflow: hidden;
  padding: var(--gc-space-16) 0 var(--gc-space-8);
  background: var(--gc-bg-deep);
  border-bottom: 1px solid var(--gc-border);
}

.home-hero__layout {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: var(--gc-space-8);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-block: var(--gc-space-8);
}

.home-hero__content h1 {
  max-width: 760px;
  margin-bottom: var(--gc-space-6);
  font-size: 56px;
}

.home-hero__lead {
  max-width: 620px;
  color: var(--gc-text-secondary);
  font-size: 19px;
}

.home-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  isolation: isolate;
}

.home-hero__contours {
  position: absolute;
  z-index: -2;
  top: 18%;
  right: 8%;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(180, 195, 207, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(180, 195, 207, 0.06),
    0 0 0 84px rgba(180, 195, 207, 0.04),
    0 0 0 126px rgba(180, 195, 207, 0.025);
  transform: rotate(-12deg) scaleY(0.68);
}

.home-hero__tank {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: min(900px, 64vw);
  max-width: none;
  filter:
    drop-shadow(0 34px 34px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 24px rgba(233, 134, 63, 0.11));
}

.home-hero__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--gc-space-5);
  border-top: 1px solid var(--gc-border);
}

.home-fact {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: var(--gc-space-3);
  padding: var(--gc-space-5) var(--gc-space-6);
  color: var(--gc-text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.home-fact + .home-fact {
  border-left: 1px solid var(--gc-border);
}

.home-fact svg {
  flex: 0 0 22px;
  color: var(--gc-accent);
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--gc-space-8);
  margin-bottom: var(--gc-space-10);
}

.home-section-heading > div {
  min-width: 0;
}

.home-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 38px;
}

.home-section-heading > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--gc-text-muted);
}

.home-section-heading__action {
  flex: 0 0 auto;
}

.home-filter-section {
  background: var(--gc-bg);
}

.home-filter {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(280px, 1.3fr) minmax(280px, 1fr) auto;
  align-items: end;
  gap: var(--gc-space-5);
  padding: var(--gc-space-6);
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
}

.home-filter__field {
  min-width: 0;
}

.home-filter__toggles {
  display: grid;
  min-height: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: var(--gc-space-3);
}

.home-filter__toggles label {
  padding: 0 var(--gc-space-3);
  color: var(--gc-text-secondary);
  background: var(--gc-bg-deep);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-control);
}

.home-filter__toggles label:hover {
  border-color: var(--gc-border-strong);
}

.home-filter__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gc-space-3);
}

.home-filter__submit {
  white-space: nowrap;
}

.home-unavailable {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: var(--gc-space-4);
  padding: var(--gc-space-6);
  color: var(--gc-text-secondary);
  background: var(--gc-surface-soft);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-card);
}

.home-unavailable svg {
  flex: 0 0 24px;
  color: var(--gc-warning);
}

.home-unavailable strong {
  display: block;
  margin-bottom: var(--gc-space-1);
  color: var(--gc-text);
}

.home-unavailable p {
  margin: 0;
}

.home-categories-section {
  background: var(--gc-bg-deep);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gc-space-6);
}

.home-category-card {
  --category-image-position: 70% 50%;
  --category-image-scale: 1.14;
  --category-image-scale-hover: 1.17;

  position: relative;
  display: flex;
  min-height: 272px;
  flex-direction: column;
  padding: var(--gc-space-6);
  overflow: hidden;
  background: var(--gc-surface-soft);
  border-color: var(--gc-border-strong);
}

.home-category-card.is-unavailable {
  color: var(--gc-text-disabled);
}

.home-category-card > :not(.home-category-card__visual) {
  position: relative;
  z-index: 2;
}

.home-category-card__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-category-card__visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 25, 34, 0.97) 0%, rgba(16, 25, 34, 0.9) 32%, rgba(16, 25, 34, 0.46) 52%, rgba(16, 25, 34, 0.08) 78%),
    linear-gradient(0deg, rgba(16, 25, 34, 0.68) 0%, transparent 44%);
}

.home-category-card__tank {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--category-image-position);
  opacity: 0.96;
  filter: saturate(0.88) contrast(1.04) brightness(0.98);
  transform: scale(var(--category-image-scale));
  transform-origin: center;
  transition: transform var(--gc-motion-base) var(--gc-ease);
}

.home-category-card--xi-uroven {
  --category-image-position: 68% 50%;
  --category-image-scale: 1.18;
  --category-image-scale-hover: 1.21;
}

.home-category-card--10-19-tankov-x-urovnya {
  --category-image-position: 74% 50%;
  --category-image-scale: 1.16;
  --category-image-scale-hover: 1.19;
}

.home-category-card--20-29-tankov-x-urovnya {
  --category-image-position: 71% 54%;
  --category-image-scale: 1.2;
  --category-image-scale-hover: 1.23;
}

.home-category-card--30-44-tanka-x-urovnya {
  --category-image-position: 74% 50%;
  --category-image-scale: 1.17;
  --category-image-scale-hover: 1.2;
}

.home-category-card--45-69-tankov-x-urovnya {
  --category-image-position: 70% 51%;
  --category-image-scale: 1.22;
  --category-image-scale-hover: 1.25;
}

.home-category-card--vip-akkaunty {
  --category-image-position: 72% 51%;
  --category-image-scale: 1.19;
  --category-image-scale-hover: 1.22;
}

.home-category-card.is-unavailable .home-category-card__tank {
  opacity: 0.84;
}

.home-category-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gc-space-4);
  margin-bottom: auto;
}

.home-category-card__number {
  display: grid;
  width: 48px;
  min-height: 36px;
  place-items: center;
  color: var(--gc-accent);
  background: rgba(16, 25, 34, 0.62);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-control);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.home-category-card__count {
  padding: 6px 10px;
  color: var(--gc-text-muted);
  background: rgba(16, 25, 34, 0.68);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-round);
  font-size: 13px;
  font-weight: 600;
}

.home-category-card h3 {
  max-width: 50%;
  margin: var(--gc-space-6) 0 var(--gc-space-2);
  font-size: 24px;
  line-height: 1.18;
}

.home-category-card p {
  max-width: 50%;
  margin: 0;
  color: var(--gc-text-secondary);
  font-size: 15px;
}

.home-category-card__link {
  display: inline-flex;
  min-height: 44px;
  max-width: 50%;
  align-items: center;
  justify-content: space-between;
  gap: var(--gc-space-3);
  margin-top: auto;
  color: var(--gc-accent);
  font-weight: 600;
  text-decoration: none;
}

.home-category-card__link svg {
  transition: transform var(--gc-motion-base) var(--gc-ease);
}

.home-category-card__status {
  display: inline-flex;
  min-height: 44px;
  max-width: 50%;
  align-items: center;
  margin-top: auto;
  color: var(--gc-text-disabled);
  font-size: 14px;
  font-weight: 600;
}

.home-category-card:has(.home-category-card__link:focus-visible) {
  border-color: var(--gc-border-accent);
  box-shadow: var(--gc-shadow-accent);
}

.home-category-card:has(.home-category-card__link:focus-visible) .home-category-card__tank {
  transform: scale(var(--category-image-scale-hover));
}

@media (hover: hover) and (pointer: fine) {
  .home-category-card:not(.is-unavailable):hover .home-category-card__tank {
    transform: scale(var(--category-image-scale-hover));
  }

  .home-category-card:not(.is-unavailable):hover .home-category-card__link svg {
    transform: translateX(4px);
  }
}

@media (max-width: 1023px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-category-grid {
    grid-template-columns: 1fr;
    gap: var(--gc-space-4);
  }

  .home-category-card {
    min-height: 268px;
  }
}

@media (max-width: 479px) {
  .home-category-card {
    min-height: 260px;
    padding: var(--gc-space-5);
  }

  .home-category-card h3,
  .home-category-card p,
  .home-category-card__link,
  .home-category-card__status {
    max-width: 68%;
  }
}

.home-products-section {
  background: var(--gc-bg);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gc-space-5);
}

.home-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gc-surface-raised) 0%, var(--gc-surface) 44%, var(--gc-surface-soft) 100%);
  border-color: var(--gc-border-strong);
}

.home-product-card__media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  color: var(--gc-text-muted);
  background: var(--gc-bg-deep);
  text-decoration: none;
}

.home-product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(16, 25, 34, 0.42));
}

.home-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--gc-motion-base) var(--gc-ease);
}

@media (hover: hover) and (pointer: fine) {
  .home-product-card:hover .home-product-card__image {
    transform: scale(1.01);
  }

  .home-product-card:hover .home-product-card__footer .acclot-button {
    box-shadow: var(--gc-shadow-accent);
  }
}

.home-product-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--gc-text-disabled);
}

.home-product-card__badges {
  position: absolute;
  z-index: 1;
  top: var(--gc-space-3);
  left: var(--gc-space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gc-space-2);
  max-width: calc(100% - (var(--gc-space-3) * 2));
}

.home-product-card__badge {
  min-height: 24px;
  padding: var(--gc-space-1) var(--gc-space-3);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-round);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.home-product-card__badge--stock {
  color: var(--gc-success);
  background: var(--gc-bg-deep);
  border: 1px solid rgba(88, 181, 104, 0.35);
}

.home-product-card__badge--sale,
.home-product-card__badge--featured {
  color: var(--gc-accent);
  background: rgba(16, 25, 34, 0.86);
  border-color: var(--gc-border-accent);
}

.home-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: var(--gc-space-4);
  padding: var(--gc-space-5);
}

.home-product-card h3 {
  display: -webkit-box;
  min-height: 2.6em;
  margin-bottom: 0;
  overflow: hidden;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-product-card h3 a {
  text-decoration: none;
}

.home-product-card h3 a:hover {
  color: var(--gc-accent);
}

.home-product-card__stats {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-product-card__stats li {
  display: grid;
  min-width: 0;
  min-height: 38px;
  grid-template-columns: 20px minmax(0, 1fr) minmax(48px, 45%);
  align-items: center;
  gap: var(--gc-space-2);
  padding-block: var(--gc-space-2);
  border-bottom: 1px solid var(--gc-border);
}

.home-product-card__stats li:last-child {
  border-bottom: 0;
}

.home-product-card__stat-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--gc-accent);
}

.home-product-card__stat-label {
  min-width: 0;
  overflow: hidden;
  color: var(--gc-text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-product-card__stat-value {
  min-width: 0;
  color: var(--gc-text);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.home-product-card__footer {
  display: grid;
  gap: var(--gc-space-4);
  margin-top: auto;
  padding-top: var(--gc-space-5);
  border-top: 1px solid var(--gc-border);
}

.home-product-card__footer--without-price {
  padding-top: 0;
  border-top: 0;
}

.home-product-card__price {
  color: var(--gc-accent);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.home-product-card__price del {
  display: block;
  color: var(--gc-text-muted);
  font-size: 14px;
  font-weight: 400;
}

.home-product-card__price ins {
  text-decoration: none;
}

.home-product-card__footer .acclot-button {
  width: 100%;
  min-height: 48px;
  color: var(--gc-accent);
  background: transparent;
  border-color: var(--gc-border-accent);
}

.home-product-card__footer .acclot-button:hover {
  color: var(--gc-bg-deep);
  background: var(--gc-accent);
}

.home-empty-state {
  padding: var(--gc-space-10);
  color: var(--gc-text-secondary);
  background: var(--gc-surface-soft);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-card);
  text-align: center;
}

.home-empty-state h3,
.home-empty-state p {
  max-width: 640px;
  margin-inline: auto;
}

.home-empty-state h3 {
  font-size: 24px;
}

.home-empty-state .acclot-button {
  margin-top: var(--gc-space-4);
}

.home-purchase-section {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--gc-surface-soft);
  border-block: 1px solid var(--gc-border);
}

.home-story {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--gc-space-16);
}

.home-story__visual {
  position: relative;
  align-self: end;
  height: 560px;
}

.home-story__visual img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(100%, 440px);
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
}

.home-story__content {
  padding-block: var(--gc-space-16);
}

.home-story__content h2,
.home-support__content h2 {
  font-size: 38px;
  line-height: 1.15;
}

.home-story__content h2 {
  max-width: 22ch;
}

.home-support__content h2 {
  max-width: 25ch;
}

.home-security__intro h2,
.home-seo-section h2 {
  font-size: 38px;
}

.home-story__content > p:not(.acclot-eyebrow) {
  color: var(--gc-text-secondary);
  font-size: 18px;
}

.home-check-list {
  display: grid;
  gap: var(--gc-space-4);
  margin: var(--gc-space-8) 0 0;
  padding: 0;
  list-style: none;
}

.home-check-list li {
  position: relative;
  min-height: 44px;
  padding: var(--gc-space-3) 0 var(--gc-space-3) var(--gc-space-8);
  color: var(--gc-text-secondary);
  border-bottom: 1px solid var(--gc-border);
}

.home-check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--gc-accent);
  border-left: 2px solid var(--gc-accent);
  transform: rotate(-45deg);
}

.home-steps-section {
  background: var(--gc-bg-deep);
}

.home-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--gc-border);
}

.home-step-list li {
  min-height: 260px;
  padding: var(--gc-space-8);
}

.home-step-list li + li {
  border-left: 1px solid var(--gc-border);
}

.home-step-list__number {
  display: block;
  margin-bottom: var(--gc-space-10);
  color: var(--gc-accent);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.home-step-list h3 {
  font-size: 24px;
}

.home-step-list p {
  color: var(--gc-text-secondary);
}

.home-security-section {
  background: var(--gc-bg);
}

.home-security {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: var(--gc-space-16);
  align-items: start;
}

.home-security__intro {
  position: sticky;
  top: 112px;
}

.home-security__intro p:not(.acclot-eyebrow) {
  color: var(--gc-text-secondary);
}

.home-security__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gc-border);
  border-left: 1px solid var(--gc-border);
}

.home-security__grid > div {
  min-height: 190px;
  padding: var(--gc-space-6);
  border-right: 1px solid var(--gc-border);
  border-bottom: 1px solid var(--gc-border);
}

.home-security__grid strong {
  display: block;
  margin-bottom: var(--gc-space-3);
  color: var(--gc-text);
  font-size: 18px;
}

.home-security__grid p {
  margin: 0;
  color: var(--gc-text-secondary);
}

.home-faq-section {
  background: var(--gc-surface-soft);
  border-block: 1px solid var(--gc-border);
}

.home-faq {
  border-top: 1px solid var(--gc-border);
}

.home-faq details {
  border-bottom: 1px solid var(--gc-border);
}

.home-faq summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: var(--gc-space-4) 56px var(--gc-space-4) 0;
  color: var(--gc-text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq summary::before,
.home-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--gc-space-4);
  width: 18px;
  height: 2px;
  background: var(--gc-accent);
  transform: translateY(-50%);
}

.home-faq summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.home-faq details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.home-faq details p {
  max-width: 780px;
  padding: 0 56px var(--gc-space-6) 0;
  color: var(--gc-text-secondary);
}

.home-support-section {
  overflow: hidden;
  padding-block: 0;
  background: var(--gc-bg-deep);
}

.home-support {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: var(--gc-space-10);
}

.home-support__content {
  padding-block: var(--gc-space-16);
}

.home-support__content > p:not(.acclot-eyebrow) {
  color: var(--gc-text-secondary);
}

.home-support__content .acclot-button {
  margin-top: var(--gc-space-4);
}

.home-support__visual {
  position: relative;
  align-self: end;
  height: 500px;
}

.home-support__visual img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(100%, 400px);
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.3));
}

.home-seo-section {
  background: var(--gc-bg);
}

.home-seo-section p {
  color: var(--gc-text-secondary);
}

.home-seo-section__disclaimer {
  padding-top: var(--gc-space-5);
  color: var(--gc-text-muted);
  border-top: 1px solid var(--gc-border);
  font-size: 14px;
}

@media (max-width: 1279px) {
  .home-hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  }

  .home-hero__content h1 {
    font-size: 48px;
  }

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

  .home-filter__submit {
    width: 100%;
  }

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

@media (max-width: 1023px) {
  .home-hero {
    padding-top: var(--gc-space-10);
  }

  .home-hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: 760px;
  }

  .home-hero__visual {
    min-height: 440px;
  }

  .home-hero__tank {
    right: 50%;
    width: min(900px, 100vw);
    transform: translateX(50%);
  }

  .home-story {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
    gap: var(--gc-space-8);
  }

  .home-security {
    grid-template-columns: 1fr;
    gap: var(--gc-space-8);
  }

  .home-security__intro {
    position: static;
  }
}

@media (max-width: 767px) {
  .home-hero {
    padding-top: var(--gc-space-8);
  }

  .home-hero__content {
    padding-block: var(--gc-space-4);
  }

  .home-hero__content h1 {
    font-size: 38px;
  }

  .home-hero__lead {
    font-size: 17px;
  }

  .home-hero__visual {
    min-height: 300px;
  }

  .home-hero__contours {
    top: 22%;
    right: 18%;
    width: 160px;
    box-shadow:
      0 0 0 30px rgba(180, 195, 207, 0.05),
      0 0 0 60px rgba(180, 195, 207, 0.03);
  }

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

  .home-fact {
    min-height: 64px;
    padding: var(--gc-space-3) 0;
  }

  .home-fact + .home-fact {
    border-top: 1px solid var(--gc-border);
    border-left: 0;
  }

  .home-section-heading {
    display: grid;
    gap: var(--gc-space-4);
    margin-bottom: var(--gc-space-8);
  }

  .home-section-heading h2,
  .home-story__content h2,
  .home-security__intro h2,
  .home-support__content h2,
  .home-seo-section h2 {
    font-size: 30px;
  }

  .home-filter {
    grid-template-columns: 1fr;
    padding: var(--gc-space-4);
  }

  .home-filter__toggles,
  .home-filter__prices {
    grid-template-columns: 1fr;
  }

  .home-product-grid {
    display: grid;
    width: calc(100% + var(--gc-gutter-mobile));
    grid-auto-columns: minmax(280px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: var(--gc-space-4);
    overflow-x: auto;
    padding: 2px var(--gc-gutter-mobile) var(--gc-space-4) 2px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .home-product-card {
    scroll-snap-align: start;
  }

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

  .home-story__visual {
    order: 2;
    height: 400px;
  }

  .home-story__content {
    padding-block: var(--gc-space-10) 0;
  }

  .home-step-list {
    grid-template-columns: 1fr;
  }

  .home-step-list li {
    min-height: 0;
    padding: var(--gc-space-6) 0;
  }

  .home-step-list li + li {
    border-top: 1px solid var(--gc-border);
    border-left: 0;
  }

  .home-step-list__number {
    margin-bottom: var(--gc-space-5);
  }

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

  .home-security__grid > div {
    min-height: 0;
  }

  .home-faq summary {
    min-height: 64px;
    padding-right: 48px;
    font-size: 17px;
  }

  .home-faq details p {
    padding-right: 0;
  }

  .home-support {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-support__content {
    padding-block: var(--gc-space-12) 0;
  }

  .home-support__visual {
    height: 380px;
  }
}

@media (max-width: 479px) {
  .home-hero__content h1 {
    font-size: 34px;
  }

  .home-hero__visual {
    min-height: 250px;
  }

  .home-story__visual,
  .home-support__visual {
    height: 330px;
  }
}

/* Phase 1.1: visual completion of the home-page sections. */
.home-hero {
  background:
    radial-gradient(circle at 76% 54%, rgba(233, 134, 63, 0.14), transparent 25%),
    linear-gradient(114deg, var(--gc-bg-deep) 14%, #17212b 62%, var(--gc-bg-deep) 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(180, 195, 207, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 195, 207, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 56%, transparent 100%);
}

.home-hero__content h1 {
  max-width: 680px;
  letter-spacing: 0;
}

.home-hero__lead {
  margin-bottom: 0;
}

.home-hero__facts {
  background: rgba(16, 25, 34, 0.5);
}

.home-fact {
  transition: color var(--gc-motion-base) ease, background-color var(--gc-motion-base) ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-fact:hover {
    color: var(--gc-text);
    background: var(--gc-accent-soft);
  }
}

.home-filter {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(233, 134, 63, 0.08), transparent 34%),
    var(--gc-surface);
  border-color: var(--gc-border-strong);
}

.home-filter::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -96px;
  width: 220px;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(233, 134, 63, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(233, 134, 63, 0.05), 0 0 0 68px rgba(233, 134, 63, 0.025);
}

.home-filter > * {
  position: relative;
  z-index: 1;
}

.home-filter__toggles label {
  min-height: 48px;
  padding: 0 var(--gc-space-3);
  transition: border-color var(--gc-motion-base) ease, background-color var(--gc-motion-base) ease;
}

.home-filter__toggles label:has(input:checked) {
  color: var(--gc-text);
  background: var(--gc-accent-soft);
  border-color: var(--gc-border-accent);
}

.home-purchase-section,
.home-support-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 74%, rgba(233, 134, 63, 0.12), transparent 22%),
    var(--gc-surface-soft);
}

.home-story__content,
.home-support__content {
  position: relative;
  z-index: 1;
}

.home-check-list li {
  padding-right: var(--gc-space-4);
}

.home-step-list {
  position: relative;
  gap: var(--gc-space-5);
  border: 0;
}

.home-step-list::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 16.67%;
  left: 16.67%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gc-border-accent), transparent);
}

.home-step-list li {
  position: relative;
  min-height: 280px;
  padding: var(--gc-space-8);
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
}

.home-step-list li + li {
  border-left: 1px solid var(--gc-border);
}

.home-step-list__number {
  margin-bottom: var(--gc-space-3);
  font-size: 30px;
}

.home-step-list__icon,
.home-security__icon {
  margin-bottom: var(--gc-space-5);
  color: var(--gc-accent);
}

.home-security__grid {
  gap: var(--gc-space-4);
  border: 0;
}

.home-security__grid > div {
  min-height: 200px;
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
}

.home-security__grid > div:last-child {
  grid-column: span 2;
  min-height: 0;
}

.home-security__grid strong {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
}

.home-faq details {
  padding-inline: var(--gc-space-5);
  transition: background-color var(--gc-motion-base) ease, border-color var(--gc-motion-base) ease;
}

.home-faq details[open] {
  background: var(--gc-surface);
  border-color: var(--gc-border-strong);
}

.home-faq summary {
  transition: color var(--gc-motion-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-faq summary:hover {
    color: var(--gc-accent);
  }
}

.home-support-section {
  background:
    radial-gradient(circle at 83% 69%, rgba(233, 134, 63, 0.14), transparent 26%),
    var(--gc-bg-deep);
}

.home-support__content > p:not(.acclot-eyebrow) {
  max-width: 52ch;
  font-size: 18px;
}

.home-seo-section .acclot-container {
  padding: var(--gc-space-8);
  background: var(--gc-surface-soft);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-panel);
}

@media (max-width: 1023px) {
  .home-security__grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .home-hero::before {
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
  }

  .home-step-list {
    gap: var(--gc-space-4);
  }

  .home-step-list::before {
    display: none;
  }

  .home-step-list li {
    min-height: 0;
    padding: var(--gc-space-6);
  }

  .home-step-list li + li {
    border-left: 1px solid var(--gc-border);
  }

  .home-step-list__icon {
    margin-bottom: var(--gc-space-4);
  }

  .home-security__grid > div {
    min-height: 0;
  }

  .home-faq details {
    padding-inline: var(--gc-space-4);
  }

  .home-seo-section .acclot-container {
    padding: var(--gc-space-5);
  }
}

.home-story__content > p:not(.acclot-eyebrow),
.home-support__content > p:not(.acclot-eyebrow) {
  max-width: 54ch;
  font-size: 18px;
}

.home-story__content .acclot-eyebrow,
.home-support__content .acclot-eyebrow {
  margin-bottom: var(--gc-space-3);
}

.home-support__content .acclot-button {
  min-height: 52px;
  padding-inline: var(--gc-space-6);
}

@media (max-width: 1023px) {
  .home-story__content h2,
  .home-support__content h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .home-story__content h2,
  .home-support__content h2 {
    max-width: none;
    font-size: 30px;
  }
}
