:root {
  --ink: #101717;
  --ink-soft: #4e5a57;
  --paper: #f4f2eb;
  --paper-strong: #ebe8df;
  --white: #ffffff;
  --green: #00b578;
  --green-dark: #0a221b;
  --green-deep: #071712;
  --line: rgba(16, 23, 23, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 22px 60px rgba(20, 29, 27, 0.12);
  --shell: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-140%);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  background: rgba(6, 17, 14, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-ugreen {
  font-size: 22px;
}

.brand-nasync {
  color: #64e8a5;
  font-size: 16px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.header-nav a {
  opacity: 0.78;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--green-deep);
}

.hero-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: clamp(420px, 42vw, 590px);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide--family > img {
  object-position: center 58%;
}

.hero-slide--family::after {
  background: linear-gradient(90deg, rgba(246, 244, 236, 0.98) 0%, rgba(246, 244, 236, 0.85) 31%, rgba(246, 244, 236, 0) 62%);
}

.hero-slide--gt::after {
  background: linear-gradient(90deg, rgba(3, 10, 9, 0.92) 0%, rgba(3, 10, 9, 0.66) 40%, rgba(3, 10, 9, 0) 68%);
}

.hero-slide--trust {
  background: #da471c;
}

.hero-slide--trust > img {
  object-fit: contain;
}

.hero-slide--world {
  background:
    radial-gradient(circle at 72% 42%, rgba(47, 213, 146, 0.14), transparent 30%),
    #141e26;
}

.hero-picture,
.hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: contain;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(32px, calc((100vw - 1240px) / 2));
  width: min(520px, 43vw);
  color: var(--ink);
  transform: translateY(-50%);
}

.hero-copy--light {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.hero-copy > p:not(.eyebrow) {
  margin: 18px 0 26px;
  font-size: clamp(15px, 1.25vw, 18px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--outline {
  border-color: rgba(16, 23, 23, 0.34);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 15, 12, 0.58);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
}

.hero-dots a:first-child {
  background: var(--white);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 54px;
}

.section-heading--split > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 15px;
}

.section-heading--stacked {
  display: block;
}

.section-heading__description {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.series-nav {
  padding-block: 88px 76px;
}

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

.series-card {
  position: relative;
  display: grid;
  min-height: 224px;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.series-card:hover,
.series-card:focus-visible {
  box-shadow: 0 16px 40px rgba(12, 30, 24, 0.1);
  transform: translateY(-4px);
}

.series-card > b {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 20px;
}

.series-kicker {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.series-card h3 {
  margin: 5px 0 8px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.series-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.nas-symbol {
  position: relative;
  display: flex;
  height: 100px;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  padding: 19px 14px 24px;
  border: 3px solid #49504f;
  border-radius: 15px 15px 12px 12px;
  background: linear-gradient(135deg, #777d7d, #303433);
  box-shadow: inset 0 0 0 3px #b7b9b8, 10px 14px 28px rgba(16, 23, 23, 0.16);
}

.nas-symbol::after {
  position: absolute;
  right: 12px;
  bottom: 9px;
  width: 7px;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: -12px 0 0 rgba(255, 255, 255, 0.55);
  content: "";
}

.nas-symbol span {
  flex: 1;
  max-width: 14px;
  border-radius: 2px 2px 5px 5px;
  background: linear-gradient(#aeb2b1 0 64%, #292d2c 65%);
}

.nas-symbol--gt {
  border-color: #8d7a66;
  box-shadow: inset 0 0 0 3px #c1a78b, 10px 14px 28px rgba(16, 23, 23, 0.16);
}

.nas-symbol--dh {
  height: 112px;
  max-width: 82px;
  margin-inline: auto;
  padding-inline: 18px;
}

.nas-symbol--dh span {
  display: none;
}

.nas-symbol--dh::before {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #373b3a;
  content: "";
}

.nas-symbol--dxp {
  height: 82px;
  margin-top: 18px;
}

.trust-band {
  padding-block: 0 28px;
  color: var(--ink);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f8f5;
}

.trust-item {
  display: grid;
  min-height: 112px;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.trust-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-item__media,
.trust-item__symbol {
  position: relative;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

.trust-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-item--cert .trust-item__media img {
  width: 270%;
  height: 270%;
  max-width: none;
  object-fit: cover;
  object-position: 100% 0;
  transform: translate(-62%, 0);
}

.trust-item--raid .trust-item__media img {
  object-fit: cover;
  object-position: center;
}

.trust-item__symbol {
  display: grid;
  place-items: center;
  background: #e7f7ef;
}

.trust-item__symbol::before {
  width: 30px;
  height: 24px;
  border: 4px solid var(--green-dark);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
}

.trust-item__symbol::after {
  position: absolute;
  top: 32px;
  width: 38px;
  height: 20px;
  border-right: 5px solid var(--green-dark);
  border-left: 5px solid var(--green-dark);
  border-radius: 8px;
  content: "";
}

.trust-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.legal-note {
  width: var(--shell);
  margin: 0 auto;
  padding-block: 10px 14px;
  color: #6b7370;
  font-size: 10px;
  line-height: 1.7;
}

.use-cases {
  padding-bottom: 110px;
}

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

.use-card {
  position: relative;
  height: auto;
  aspect-ratio: 1.46 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: #17221f;
}

.use-card::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(2, 10, 8, 0.82));
  content: "";
}

.use-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.use-card:first-child img {
  object-position: 35% center;
}

.use-card:hover img,
.use-card:focus-visible img {
  transform: scale(1.035);
}

.use-card > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  font-size: 18px;
  font-weight: 800;
}

.use-card small {
  grid-column: 1 / -1;
  color: #76edb3;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.lineup {
  background: var(--paper-strong);
}

.recommended {
  padding-block: 104px 112px;
}

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

.recommended-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(12, 30, 24, 0.06);
}

.recommended-card--primary {
  border-color: rgba(0, 181, 120, 0.44);
  box-shadow: 0 22px 54px rgba(0, 126, 82, 0.12);
}

.recommend-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.recommended-card--primary .recommend-badge {
  color: var(--green-dark);
  background: #70e6ad;
}

.recommended-card__image {
  display: grid;
  height: 238px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.recommended-card__image img {
  width: auto;
  height: 188px;
  max-width: 78%;
  object-fit: contain;
}

.recommended-card__copy {
  padding: 24px 24px 26px;
}

.recommended-card__copy h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.recommended-card__copy > p:not(.product-series-name) {
  min-height: 66px;
  margin: 10px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.recommended-more {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 24px;
  margin: 28px auto 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lineup-heading {
  padding-block: 102px 32px;
  margin-bottom: 0;
}

.product-series {
  padding-block: 80px 96px;
  scroll-margin-top: 68px;
}

.product-series--gt {
  color: var(--white);
  background: #0d1614;
}

.product-series--dh {
  background: #dedbcf;
}

.product-series--dxp {
  background: var(--paper-strong);
}

.series-intro {
  display: block;
  margin-bottom: 42px;
}

.series-intro h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.26;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
}

.series-intro > p {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.product-series--gt .series-intro > p {
  color: rgba(255, 255, 255, 0.64);
}

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

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

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(16, 23, 23, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
}

.product-image {
  display: grid;
  height: 360px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 23, 23, 0.08);
  background: #fff;
}

.product-grid--three .product-image {
  height: 286px;
}

.product-image img {
  width: auto;
  height: 278px;
  max-width: 82%;
  object-fit: contain;
}

.product-series--gt .product-image img {
  height: 258px;
  max-width: 76%;
}

.product-grid--three .product-image img {
  height: 220px;
}

.product-copy {
  padding: 26px 28px 28px;
}

.product-series-name {
  margin: 0 0 5px;
  color: #008d5d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.product-lead {
  min-height: 48px;
  margin: 10px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-chips li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #40504b;
  font-size: 10px;
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #007e52;
  font-size: 13px;
  font-weight: 800;
}

.product-link[hidden] {
  display: none;
}

.compare {
  padding-block: 112px;
}

.compare--lineup {
  padding-block: 0 88px;
}

.choice-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 126, 82, 0.18);
  border-radius: var(--radius-md);
  background: rgba(0, 126, 82, 0.15);
}

.choice-guide article {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.82);
}

.choice-guide article span {
  display: block;
  margin-bottom: 6px;
  color: #008d5d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.choice-guide article strong {
  display: block;
  font-size: 18px;
}

.choice-guide article p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.choice-guide__answer {
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px 24px;
  color: #d7ece4;
  background: var(--green-dark);
  font-size: 13px;
  line-height: 1.65;
}

.choice-guide__answer strong {
  color: #76edb3;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

thead th {
  color: var(--white);
  background: var(--green-dark);
  font-size: 11px;
  letter-spacing: 0.05em;
}

tbody th {
  font-size: 14px;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table {
  width: max-content;
  min-width: 100%;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  width: 158px;
  min-width: 158px;
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
}

.compare-table .compare-table__label,
.compare-table tbody th {
  position: sticky;
  z-index: 2;
  left: 0;
  width: 132px;
  min-width: 132px;
  text-align: left;
}

.compare-table thead th {
  padding-block: 14px 18px;
  background: #f4f5f2;
  color: var(--ink);
}

.compare-table thead .compare-table__label {
  z-index: 3;
  color: var(--white);
  background: var(--green-dark);
}

.compare-table tbody th {
  background: #f4f5f2;
  color: var(--ink);
  font-size: 12px;
}

.compare-table tbody td {
  color: #34413d;
  font-size: 12px;
  line-height: 1.55;
}

.compare-product {
  position: relative;
  display: grid;
  min-height: 154px;
  place-items: end center;
  gap: 8px;
  color: inherit;
}

.compare-product img {
  width: 118px;
  height: 112px;
  object-fit: contain;
}

.compare-product span {
  min-height: 36px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.compare-product em {
  position: absolute;
  top: -2px;
  left: 50%;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #70e6ad;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}

.compare-product:hover span,
.compare-product:focus-visible span {
  color: #008d5d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compare-cta-row th,
.compare-cta-row td {
  background: #eef5f1;
}

.compare-cta-row a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
}

.spec-note {
  margin: 14px 2px 0;
  color: #6b7370;
  font-size: 10px;
}

.features {
  padding-block: 112px;
  background: var(--white);
}

.features > .section-shell > .section-heading--split {
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.35fr);
  align-items: end;
  gap: 44px;
}

.features > .section-shell > .section-heading h2 {
  max-width: 940px;
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature {
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f1f2ef;
}

.feature--reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.feature--reverse .feature-media {
  order: 2;
}

.feature-media {
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature--ugos .feature-media img {
  object-position: 60% center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.feature-copy > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-copy h3 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.feature-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-mini-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f8f8f5;
}

.feature-mini-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #006c47;
  background: #d9f5e8;
  font-size: 20px;
  font-weight: 800;
}

.feature-mini-grid h3 {
  margin: 18px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.feature-mini-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.data-protection {
  padding-block: 100px;
  color: var(--white);
  background: var(--green-deep);
}

.data-protection-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 64px;
}

.raid-visual {
  overflow: hidden;
  aspect-ratio: 1.82 / 1;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.raid-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.raid-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
}

.raid-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.caution {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid #72e7aa;
  background: rgba(255, 255, 255, 0.06);
}

.video {
  padding-block: 112px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: #050807;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: inline-flex;
  margin-top: 18px;
  color: #007e52;
  font-size: 13px;
  font-weight: 800;
}

.faq {
  padding-bottom: 112px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--green);
  content: "+";
  font-size: 26px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 900px;
  margin: -3px 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
}

.support {
  padding-block: 92px;
  color: var(--white);
  background: #12231e;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.support h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.045em;
}

.support p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.support-links {
  display: grid;
  align-content: center;
}

.support-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.site-footer {
  padding-block: 28px;
  color: rgba(255, 255, 255, 0.58);
  background: #07100d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner p {
  margin: 0;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .hero-copy {
    left: 30px;
  }

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

  .series-card {
    min-height: 170px;
    grid-template-columns: 112px 1fr;
  }

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

  .use-card:last-child {
    grid-column: 1 / -1;
    height: 320px;
    aspect-ratio: auto;
  }

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

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .recommended-card:last-child {
    grid-column: 1 / -1;
  }

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

  .feature,
  .feature--reverse {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 20px;
  }

  .site-header {
    min-height: 60px;
  }

  .header-nav {
    gap: 14px;
  }

  .header-nav a:nth-child(3),
  .header-nav a:nth-child(4) {
    display: none;
  }

  .hero-slide {
    height: 500px;
  }

  .hero-slide--family > img {
    object-position: 68% center;
  }

  .hero-slide--family::after {
    background: linear-gradient(180deg, rgba(246, 244, 236, 0.96) 0%, rgba(246, 244, 236, 0.76) 53%, rgba(246, 244, 236, 0.06) 100%);
  }

  .hero-slide--gt > img {
    object-position: 68% center;
  }

  .hero-slide--gt::after {
    background: linear-gradient(180deg, rgba(3, 10, 9, 0.93), rgba(3, 10, 9, 0.55) 58%, rgba(3, 10, 9, 0.15));
  }

  .hero-slide--trust > img {
    object-fit: contain;
    object-position: 50% center;
  }

  .hero-copy {
    top: 42px;
    left: 24px;
    width: calc(100% - 48px);
    transform: none;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(100%, 260px);
  }

  .hero-controls {
    bottom: 14px;
  }

  .section-heading--split,
  .series-intro,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading--split > p,
  .series-intro > p {
    max-width: 620px;
  }

  .series-nav {
    padding-block: 70px 60px;
  }

  .series-card {
    min-height: 150px;
    grid-template-columns: 90px 1fr;
    padding: 20px;
  }

  .nas-symbol {
    height: 82px;
  }

  .nas-symbol--dh {
    height: 94px;
  }

  .nas-symbol--dxp {
    height: 68px;
  }

  .trust-band {
    padding-bottom: 22px;
  }

  .trust-item {
    min-height: 98px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .trust-item__media,
  .trust-item__symbol {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .trust-item strong {
    font-size: 13px;
  }

  .trust-item span {
    font-size: 9px;
  }

  .use-grid,
  .product-grid--two,
  .product-grid--three,
  .recommended-grid,
  .feature-mini-grid,
  .data-protection-grid {
    grid-template-columns: 1fr;
  }

  .recommended {
    padding-block: 78px 84px;
  }

  .recommended-card:last-child {
    grid-column: auto;
  }

  .recommended-card__copy > p:not(.product-series-name) {
    min-height: 0;
  }

  .use-card,
  .use-card:last-child {
    grid-column: auto;
    height: min(78vw, 320px);
    aspect-ratio: auto;
  }

  .lineup-heading {
    padding-block: 78px 28px;
  }

  .choice-guide {
    grid-template-columns: 1fr;
  }

  .choice-guide__answer {
    grid-column: auto;
  }

  .product-series {
    padding-block: 64px 72px;
  }

  .series-intro {
    margin-bottom: 30px;
  }

  .product-image,
  .product-grid--three .product-image {
    height: min(74vw, 340px);
  }

  .product-image img,
  .product-grid--three .product-image img,
  .product-series--gt .product-image img {
    height: min(62vw, 260px);
  }

  .feature,
  .feature--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .feature--reverse .feature-media {
    order: initial;
  }

  .feature-media {
    height: 300px;
  }

  .feature-copy {
    padding: 32px 26px 38px;
  }

  .data-protection {
    padding-block: 76px;
  }

  .video,
  .compare,
  .features {
    padding-block: 84px;
  }

  .support-grid {
    gap: 38px;
  }

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

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

@media (max-width: 420px) {
  .brand-ugreen {
    font-size: 19px;
  }

  .brand-nasync {
    font-size: 14px;
  }

  .header-nav {
    font-size: 11px;
  }

  .hero-slide {
    height: 470px;
  }

  .series-card {
    grid-template-columns: 76px 1fr;
    gap: 15px;
  }

  .nas-symbol {
    height: 70px;
    padding: 15px 10px 20px;
  }

  .nas-symbol--dh {
    height: 82px;
  }

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

  .product-lead {
    min-height: 0;
  }
}

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

  .use-card img,
  .series-card {
    transition: none;
  }
}
