:root {
  --ink: #0b1826;
  --steel: #4f6071;
  --muted: #748292;
  --line: #dde5ee;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #1f5f8f;
  --blue-dark: #123a5a;
  --cyan: #5f8798;
  --accent: #8aa0b4;
  --shadow: 0 12px 32px rgba(11, 24, 38, 0.06);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 229, 238, 0.95);
  backdrop-filter: blur(10px);
}

.nav-inner {
  width: min(calc(100% - 48px), 1440px);
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  box-shadow: none;
}

.menus {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu {
  border: 0;
  padding: 12px 16px;
  color: var(--steel);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menu.active {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  place-items: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 78px;
  overflow: hidden;
  background: #070e12;
}

.hero-bg {
  position: absolute;
  inset: 78px 0 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 18, 0.98) 0%, rgba(7, 14, 18, 0.94) 48%, rgba(7, 14, 18, 0.76) 100%),
    #070e12;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0 5% 0 50%;
  background: url("./seagate-official-32tb.png") center right / min(760px, 46vw) auto no-repeat;
  opacity: 0.54;
  filter: saturate(0.9) contrast(0.96);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1440px);
  min-height: 682px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: end;
  padding: 92px 0 56px;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
  align-self: center;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3,
p {
  margin: 0;
  min-width: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(52px, 5.6vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.hero .btn-primary,
.site-footer .btn-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-panel div {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-panel div:nth-child(2n) {
  border-right: 0;
}

.hero-panel div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-panel strong {
  display: block;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1;
  font-weight: 900;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: var(--steel);
  font-weight: 700;
}

.section-pad {
  padding: clamp(72px, 8vw, 120px) 0;
}

#why {
  margin-top: -1px;
  background: var(--paper);
}

.section-head,
.split-head,
.capability-grid,
.partners-layout,
.about-grid,
.product-showcase,
.footer-inner {
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto;
}

.section-head {
  max-width: 980px;
  margin-bottom: 46px;
  text-align: center;
}

.section-head h2,
.split-head h2,
.partners-layout h2,
.about-grid h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p:last-child,
.split-head > p,
.partners-layout p,
.about-copy p,
.product-card p {
  color: var(--steel);
  font-size: 19px;
  line-height: 1.7;
}

.section-head p:last-child {
  margin-top: 20px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 900;
}

.capability-grid h3,
.brand-cards strong {
  font-size: 26px;
  line-height: 1.12;
  font-weight: 900;
}

.capability-grid p,
.brand-cards span {
  margin-top: 18px;
  color: var(--steel);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0;
  padding: 0;
  margin-bottom: clamp(72px, 8vw, 120px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card {
  min-height: 0;
  display: grid;
  grid-template-rows: 280px auto;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.product-card + .product-card {
  border-left: 1px solid var(--line);
}

.product-card-featured .product-media,
.product-media {
  margin: 0;
  background: #f4f7fa;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card > div {
  padding: clamp(30px, 3vw, 44px);
  max-width: none;
}

.product-card h2 {
  color: var(--ink);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.product-card p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--steel);
}

.brands-section {
  background: #fbfcfd;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.6fr);
  gap: 60px;
  align-items: end;
}

.brand-strip {
  width: min(calc(100% - 64px), 1440px);
  margin: 52px auto 28px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.seagate-strip {
  padding: 0;
  background: #070e12;
  overflow: hidden;
}

.brand-strip img {
  width: 100%;
}

.seagate-strip img {
  display: block;
  width: 100%;
}

.brand-cards {
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.brand-cards article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.brand-cards span {
  display: block;
}

.partners-section {
  background: var(--paper);
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.7fr);
  gap: 50px;
  align-items: center;
}

.coverage-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  font-weight: 800;
}

.partner-strip {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.9fr);
  gap: 80px;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-points {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.about-points span {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: var(--paper);
  font-weight: 900;
}

.site-footer {
  color: var(--white);
  background: #070e12;
}

.footer-inner {
  padding: clamp(64px, 7vw, 100px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.7fr);
  gap: 80px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.footer-inner h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
}

.footer-inner h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.footer-inner p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a:not(.btn) {
  color: var(--white);
  font-weight: 800;
}

.footer-contact .btn {
  margin-top: 28px;
}

.copyright {
  margin: 0;
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  z-index: 30;
  background: #1db954 url("./icons8-whatsapp-128.png") center / 34px 34px no-repeat;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(11, 24, 38, 0.18);
}

@media (max-width: 980px) {
  .nav-inner,
  .hero-inner,
  .section-head,
  .split-head,
  .capability-grid,
  .partners-layout,
  .about-grid,
  .product-showcase,
  .footer-inner,
  .brand-strip,
  .brand-cards {
    width: min(calc(100% - 32px), 720px);
  }

  .nav-inner {
    height: 72px;
  }

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

  .menu-toggle {
    display: grid;
  }

  .menus {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(11, 24, 38, 0.1);
  }

  .nav-open .menus {
    display: flex;
  }

  .menu {
    text-align: left;
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    top: 72px;
    background:
      linear-gradient(180deg, rgba(11, 24, 38, 0.96), rgba(11, 24, 38, 0.88)),
      #0b1826;
  }

  .hero-bg::after {
    inset: 0;
    background: url("./seagate-official-32tb.png") center bottom / 115% auto no-repeat;
    opacity: 0.18;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 82px 0 38px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .lead {
    font-size: 20px;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .capability-grid,
  .product-showcase,
  .brand-cards,
  .partners-layout,
  .about-grid,
  .footer-inner,
  .split-head {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

  .product-showcase {
    margin-bottom: clamp(64px, 8vw, 96px);
  }

  .product-card {
    min-height: 0;
    grid-template-rows: 260px auto;
  }

  .product-card + .product-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .hero-inner,
  .section-head,
  .split-head,
  .capability-grid,
  .partners-layout,
  .about-grid,
  .product-showcase,
  .footer-inner,
  .brand-strip,
  .brand-cards {
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }

  .nav-inner {
    margin-left: 14px;
    margin-right: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .hero-panel div:nth-child(2n),
  .hero-panel div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  .section-head h2,
  .split-head h2,
  .partners-layout h2,
  .about-grid h2 {
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .capability-grid h3,
  .brand-cards strong,
  .product-card h2,
  .footer-inner h2 {
    overflow-wrap: anywhere;
  }

  .section-head p:last-child,
  .split-head > p,
  .partners-layout p,
  .about-copy p,
  .product-card p {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .product-card {
    grid-template-rows: 210px auto;
  }

  .product-card > div {
    padding: 24px;
  }

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

  .brand-strip {
    padding: 18px;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
    background-size: 30px 30px;
  }
}
