:root {
  --bg: #050608;
  --bg-soft: #0d1015;
  --surface: #11151c;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f8ff;
  --muted: #a8b1c2;
  --blue: #b9dcff;
  --blue-strong: #7cbcff;
  --container: 1180px;
  --display-font: "Orbitron", Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.68), rgba(5, 6, 8, 0.06));
  pointer-events: none;
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  pointer-events: auto;
}

.logo {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  display: block;
  width: auto;
  height: 34px;
}

.logo::after {
  content: none;
}

.menu-check {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.desktop-nav {
  pointer-events: auto;
  position: relative;
  justify-self: center;
  transform: translateX(-185px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  min-height: 56px;
  padding: 0 42px;
  width: min(100%, 520px);
  clip-path: polygon(7.5% 0, 92.5% 0, 100% 100%, 0 100%);
  border: 1px solid rgba(185, 220, 255, 0.12);
  background: transparent;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.desktop-nav::before,
.desktop-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.desktop-nav::before {
  background: linear-gradient(90deg,
    rgba(18, 28, 43, 0) 0%,
    rgba(18, 28, 43, 0.9) 10%,
    rgba(28, 37, 50, 0.86) 50%,
    rgba(44, 29, 20, 0.88) 90%,
    rgba(44, 29, 20, 0) 100%);
}

.desktop-nav::after {
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 188, 255, 0), rgba(124, 188, 255, 0.30), rgba(255, 123, 35, 0.30), rgba(255, 123, 35, 0));
}

.desktop-nav a,
.header-link {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: rgba(220, 230, 242, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 188, 255, 0), rgba(124, 188, 255, 0.9), rgba(255, 123, 35, 0.9), rgba(255, 123, 35, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-link {
  display: none;
}

.menu-pill {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 220, 255, 0.26);
  background: rgba(185, 220, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.menu-check:focus-visible + .header__inner .menu-pill {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.menu-pill__icon,
.menu-pill__icon::before,
.menu-pill__icon::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

.menu-pill__icon {
  position: relative;
}

.menu-pill__icon::before,
.menu-pill__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-pill__icon::before {
  top: -6px;
}

.menu-pill__icon::after {
  top: 6px;
}

.mobile-menu {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin-top: 8px;
  background: transparent;
  transition: grid-template-rows 220ms ease;
  pointer-events: none;
}

.menu-check:checked ~ .mobile-menu {
  grid-template-rows: 1fr;
  pointer-events: auto;
}

.mobile-menu__inner {
  min-height: 0;
  display: grid;
  gap: 8px;
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid transparent;
  background: rgba(8, 11, 16, 0);
  backdrop-filter: blur(20px);
  transition: padding 220ms ease, border-color 220ms ease, background 220ms ease;
}

.menu-check:checked ~ .mobile-menu .mobile-menu__inner {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: rgba(185, 220, 255, 0.16);
  background: rgba(8, 11, 16, 0.86);
}

.mobile-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(185, 220, 255, 0.12);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  margin-top: -80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.78), rgba(5, 6, 8, 0.34) 46%, rgba(5, 6, 8, 0.06) 72%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.06), rgba(5, 6, 8, 0.42));
}

.hero__content {
  padding: 160px 0 74px;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: 72px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero__text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid rgba(185, 220, 255, 0.6);
  border-radius: 12px;
  background: rgba(185, 220, 255, 0.14);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(124, 188, 255, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(185, 220, 255, 0.24);
  border-color: rgba(185, 220, 255, 0.86);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  box-shadow: none;
}

.section {
  padding: 72px 0 84px;
}

.section__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section__heading h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section__heading p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

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

.product-card img {
  width: 100%;
  height: clamp(210px, 18vw, 250px);
  object-fit: cover;
  object-position: center;
  background: var(--bg-soft);
}

.product-card__body {
  min-height: 164px;
  padding: 18px;
}

.product-card span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 32px;
  align-items: baseline;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  text-align: right;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .product-grid,
  .section__heading,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .header {
    padding-top: 12px;
  }

  .header__inner {
    min-height: 60px;
    gap: 12px;
    padding: 0 12px 0 16px;
  }

  .logo img {
    height: 30px;
  }

  .desktop-nav {
    gap: 0;
  }

  .desktop-nav a {
    padding: 0 8px;
    font-size: 12px;
  }

  .header-link {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero {
    margin-top: -72px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 548px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.16), rgba(5, 6, 8, 0.74)),
      linear-gradient(90deg, rgba(5, 6, 8, 0.82), rgba(5, 6, 8, 0.18));
  }

  .hero__content {
    padding: 132px 0 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0 68px;
  }

  .section__heading h2 {
    font-size: 34px;
  }

  .product-card img {
    height: 210px;
  }
}

@media (max-width: 620px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-link {
    display: none;
  }

  .menu-pill {
    display: inline-flex;
  }
}

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

  .desktop-nav a,
  .mobile-menu,
  .mobile-menu__inner,
  .button,
  .product-card {
    transition: none;
  }
}

.button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
}

.promo-section {
  padding-top: 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 188, 255, 0.14), rgba(5, 6, 8, 0) 34%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.96), rgba(8, 11, 16, 0.98));
}

.promo-grid {
  display: grid;
  gap: 22px;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 220, 255, 0.14);
  background: #06080d;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 112, 18, 0.18);
  box-shadow: inset 0 0 46px rgba(124, 188, 255, 0.08);
}

.promo-banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.footer__links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.footer__links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(185, 220, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.footer__links a:hover {
  border-color: rgba(255, 112, 18, 0.58);
  color: var(--text);
  background: rgba(255, 112, 18, 0.08);
}

.footer__links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .promo-section {
    padding-top: 54px;
  }

  .promo-grid {
    gap: 16px;
  }

  .promo-banner img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
  }

  .footer__links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.about {
  padding-top: 48px;
  padding-bottom: 18px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 112, 18, 0.12), rgba(5, 6, 8, 0) 34%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.98), rgba(8, 11, 16, 0.98));
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.74fr);
  gap: 32px;
  align-items: end;
  padding: 34px;
  border: 1px solid rgba(185, 220, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(17, 21, 28, 0.94), rgba(7, 10, 15, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 70px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(255, 112, 18, 0.42);
  color: #ff7012;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-card h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .about-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .about {
    padding-top: 34px;
  }

  .about-card {
    padding: 24px;
  }

  .about-card p {
    font-size: 15px;
  }
}

.product-grid--image-links {
  align-items: stretch;
}

.product-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(185, 220, 255, 0.14);
  border-radius: 6px;
  background: #06080d;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 112, 18, 0.10);
  box-shadow: inset 0 0 34px rgba(124, 188, 255, 0.06);
}

.product-image-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 112, 18, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(255, 112, 18, 0.10);
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.desktop-nav a,
.header-link,
.mobile-menu a,
.hero h1,
.section__heading h2,
.about-card h2,
.eyebrow,
.button,
.footer__links a {
  font-family: var(--display-font);
}

.desktop-nav a,
.header-link,
.mobile-menu a,
.footer__links a {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section__heading h2,
.about-card h2 {
  letter-spacing: 0.03em;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  letter-spacing: 0.04em;
}

.footer__inner--compact {
  justify-content: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.desktop-nav a:last-child {
  color: var(--text);
  padding: 0 18px;
  border: 1px solid rgba(255, 112, 18, 0.46);
  background: rgba(255, 112, 18, 0.12);
  box-shadow: 0 0 22px rgba(255, 112, 18, 0.13);
}

.desktop-nav a:last-child:hover {
  border-color: rgba(255, 112, 18, 0.78);
  background: rgba(255, 112, 18, 0.18);
}

.about-card__content {
  display: grid;
  gap: 16px;
}

.about-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.about-card__button {
  width: fit-content;
  margin-top: 8px;
  border-color: rgba(255, 112, 18, 0.64);
  background: rgba(255, 112, 18, 0.10);
  color: var(--text);
  box-shadow: 0 0 28px rgba(255, 112, 18, 0.12);
}

.about-card__button span {
  margin-left: 12px;
  color: #ff7012;
}

@media (max-width: 760px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .about-card h2 {
    font-size: 28px;
  }

  .about-card__button {
    width: 100%;
  }
}

.about {
  padding-top: 40px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 10% 26%, rgba(255, 112, 18, 0.10), rgba(5, 6, 8, 0) 34%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.98), rgba(8, 11, 16, 0.98));
}

.about-card {
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.94fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 21, 28, 0.72), rgba(7, 10, 15, 0.92)),
    rgba(255, 255, 255, 0.02);
}

.about-card__side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-card h2 {
  max-width: 320px;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.about-card__content {
  max-width: 720px;
  gap: 18px;
}

.about-card__content p {
  color: #c8d7f0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.about-card__button {
  width: max-content;
  min-height: 48px;
  margin-top: 0;
  padding: 0 22px;
}

@media (max-width: 760px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-card h2 {
    max-width: none;
    font-size: 26px;
  }
  .about-card__button {
    width: 100%;
  }
}



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

.section__heading p,
.eyebrow {
  display: none !important;
}

.about-card {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.about-card__content {
  max-width: none;
}

.about-card__content p {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero__text,
.section__heading p,
.footer__copy {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

.menu-pill {
  border-radius: 12px;
  border: 1px solid rgba(185, 220, 255, 0.24);
  background: rgba(185, 220, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.22);
}

.mobile-menu__inner {
  border-radius: 14px;
  overflow: hidden;
}

.mobile-menu a {
  border-radius: 10px;
  font-family: var(--display-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .header {
    padding-top: 10px;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 60px;
    gap: 12px;
    padding: 0 8px 0 2px;
  }

  .desktop-nav,
  .header-link {
    display: none !important;
  }

  .menu-pill {
    display: inline-flex !important;
  }

  .hero {
    margin-top: -64px;
    min-height: 610px;
  }

  .hero__content {
    padding: 122px 0 44px;
  }

  .hero h1 {
    max-width: 440px;
    font-size: 44px;
    line-height: 0.98;
  }

  .hero__text {
    max-width: 420px;
    font-size: 16px;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    min-height: 48px;
  }

  .about {
    padding-top: 30px;
    padding-bottom: 46px;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .about-card__side {
    gap: 14px;
  }

  .about-card h2 {
    max-width: none;
    font-size: 24px;
  }

  .about-card__content p {
    font-size: 15px;
    line-height: 1.62;
  }

  .about-card__button {
    width: 100%;
    justify-content: center;
  }

  .section__heading {
    margin-bottom: 18px;
  }

  .section__heading h2 {
    font-size: 36px;
  }

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

  .product-image-link {
    aspect-ratio: 16 / 10;
  }

  .footer {
    padding: 28px 0 34px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header__inner {
    padding-right: 0;
  }

  .logo img {
    height: 28px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .about-card {
    padding: 18px;
  }

  .section__heading h2 {
    font-size: 32px;
  }

  .product-image-link {
    aspect-ratio: 4 / 3;
  }
}


.about-card__figure {
  position: relative;
  width: min(100%, 250px);
  margin-top: -6px;
  margin-bottom: -10px;
}

.about-card__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.24));
}

@media (max-width: 760px) {
  .about-card__figure {
    width: min(100%, 210px);
    margin: 0 auto -6px 0;
  }
}

@media (max-width: 560px) {
  .about-card__figure {
    width: min(100%, 180px);
  }
}



.about-card {
  grid-template-columns: minmax(200px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.about-card__side {
  gap: 12px;
}

.about-card h2 {
  max-width: 260px;
  font-size: clamp(22px, 2.05vw, 30px);
  line-height: 1.06;
}

.about-card__figure {
  width: min(100%, 230px);
  margin-top: 0;
}

.about-card__content p {
  font-size: clamp(16px, 1.12vw, 18px);
}

@media (max-width: 760px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-card__side {
    gap: 10px;
  }

  .about-card h2 {
    max-width: none;
    font-size: 24px;
  }
}



.about-card {
  grid-template-columns: minmax(200px, 0.28fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 78px);
}

.about-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.about-card__button {
  margin-top: 14px;
  align-self: flex-start;
}

@media (max-width: 760px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-card__content {
    gap: 16px;
  }

  .about-card__button {
    width: 100%;
    margin-top: 8px;
  }
}


.hero__content {
  padding: 124px 0 82px;
}

.hero__text {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .hero__content {
    padding: 108px 0 42px;
  }

  .hero h1 {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 32px;
  }
}


.hero__content {
  padding: 112px 0 136px;
}

@media (max-width: 760px) {
  .hero__content {
    padding: 102px 0 72px;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding: 92px 0 56px;
  }
}


:root {
  --display-font: "Tektur", Inter, system-ui, sans-serif;
}

.hero__content {
  padding: 72px 0 220px;
}

.hero h1 {
  font-family: var(--display-font);
  letter-spacing: 0.015em;
  font-weight: 400;
}

.hero__text {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .hero__content {
    padding: 86px 0 170px;
  }
}

@media (max-width: 760px) {
  .hero__content {
    padding: 96px 0 84px;
  }

  .hero h1 {
    max-width: 540px;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding: 92px 0 62px;
  }

  .hero h1 {
    font-size: 32px;
  }
}


.sr-only-hero {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-hero {
  position: relative;
  min-height: min(760px, 92vh);
  overflow: hidden;
  isolation: isolate;
}

.home-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display-font);
  font-size: clamp(38px, 6.2vw, 86px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0;
}

.home-hero h1 span {
  display: block;
}

.page-hero {
  position: relative;
  padding: 118px 0 54px;
  background: radial-gradient(circle at 50% 0%, rgba(124, 188, 255, 0.16), transparent 38%), #050608;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero__inner {
  max-width: 920px;
}

.page-hero h1 {
  margin: 18px 0 0;
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--blue);
}

.category-grid,
.seo-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.category-tile,
.seo-card,
.article-card,
.note-panel {
  background: rgba(17, 21, 28, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
}

.category-tile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.category-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0d1015;
}

.category-tile span {
  display: block;
  padding: 16px 16px 0;
  font-weight: 700;
}

.category-tile p {
  margin: 8px 0 0;
  padding: 0 16px 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.seo-card {
  display: flex;
  flex-direction: column;
}

.seo-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
}

.seo-card__body,
.article-card {
  padding: 18px;
}

.seo-card__label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-card h3,
.article-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.seo-card p,
.article-card p,
.intro-copy p,
.note-panel p,
.article__inner p {
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.intro-copy h2,
.product-detail h2,
.article__inner h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.note-panel {
  padding: 20px;
}

.note-panel h3 {
  margin: 0 0 12px;
}

.note-panel ul,
.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: rgba(17, 21, 28, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.product-detail__media {
  background: rgba(17, 21, 28, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
}

.product-detail__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.article__inner {
  max-width: 860px;
}

.article__inner > p:first-child {
  font-size: 20px;
  color: var(--text);
}

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

@media (max-width: 860px) {
  .seo-grid,
  .article-grid,
  .product-detail__grid,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 98px 0 42px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }
}
