:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #686d76;
  --blue: #0066cc;
  --surface: #f5f5f7;
  --line: rgba(29, 29, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.industry-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(93, 112, 145, 0.12);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
}

.industry-header nav {
  display: flex;
  width: min(100% - 40px, 1180px);
  height: 58px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.industry-brand,
.industry-back {
  display: inline-flex;
  align-items: center;
}

.industry-brand {
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
}

.industry-brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.industry-back {
  gap: 7px;
  color: #5f6672;
  font-size: 13px;
}

.industry-back svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

main {
  overflow: hidden;
}

.industry-hero {
  display: grid;
  width: min(100% - 40px, 1180px);
  min-height: 640px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  margin: auto;
  padding: 90px 0;
}

.industry-eyebrow,
.industry-section-heading > p,
.industry-product-card p,
.industry-contact p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.industry-hero h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.industry-hero-copy > p:not(.industry-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.industry-hero-actions a,
.industry-contact > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.industry-hero-actions a:first-child,
.industry-contact > a {
  background: #1d1d1f;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}

.industry-hero-actions a:last-child {
  border: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.industry-hero-panel {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(0, 113, 227, 0.22), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(29, 29, 31, 0.1), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 238, 247, 0.82));
  box-shadow: 0 34px 80px rgba(38, 56, 84, 0.14), inset 0 1px 0 #fff;
  place-items: center;
}

.industry-hero-panel span {
  position: absolute;
  z-index: 2;
  max-width: 170px;
  color: #313944;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.industry-hero-panel svg {
  width: 74%;
  fill: none;
  stroke: rgba(0, 102, 204, 0.24);
  stroke-width: 1.2;
}

.industry-orbit {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: 50%;
}

.industry-orbit::before,
.industry-orbit::after {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: inherit;
  content: "";
}

.industry-orbit::after {
  inset: 38%;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 #fff;
}

.industry-orbit i {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 10px 22px rgba(0, 113, 227, 0.24);
}

.industry-orbit i:nth-child(1) {
  top: 9%;
  left: 48%;
}

.industry-orbit i:nth-child(2) {
  top: 45%;
  right: 7%;
  background: #1d1d1f;
}

.industry-orbit i:nth-child(3) {
  bottom: 10%;
  left: 35%;
  background: #48a868;
}

.industry-orbit i:nth-child(4) {
  top: 38%;
  left: 7%;
  background: #9b6cff;
}

.industry-operating-system {
  padding: 96px 20px 104px;
  background: #fff;
}

.industry-signal-strip {
  display: flex;
  width: min(100%, 1180px);
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px auto 30px;
}

.industry-signal-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(245, 245, 247, 0.8);
  color: #515154;
  font-size: 13px;
  font-weight: 650;
}

.industry-system-grid {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
  margin: auto;
}

.industry-system-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0, rgba(0, 113, 227, calc(0.08 + (var(--system-index) * 0.025))), transparent 28%),
    rgba(245, 245, 247, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.industry-system-card span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: #1d1d1f;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-system-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.industry-system-card p {
  margin: 0;
  color: #626872;
  font-size: 15px;
  line-height: 1.55;
}

.industry-system-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.industry-system-card small {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.72);
  color: #515154;
  font-size: 12px;
  font-weight: 650;
}

.industry-products {
  padding: 100px 20px 120px;
  background: linear-gradient(180deg, #f5f5f7, #fff);
}

.industry-section-heading,
.industry-product-grid {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.industry-section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 42px;
}

.industry-section-heading > p {
  grid-column: 1 / -1;
}

.industry-section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.industry-section-heading span {
  color: #858b95;
  font-size: 13px;
}

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

.industry-product-card {
  display: grid;
  position: relative;
  min-height: 300px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 5%, hsl(var(--card-hue) 90% 92% / 0.64), transparent 32%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.055), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.industry-product-card::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 50%;
  content: "";
}

.industry-product-number {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 14px;
  background: linear-gradient(145deg, hsl(var(--card-hue) 78% 92%), #fff);
  box-shadow: inset 0 1px 0 #fff;
  color: hsl(var(--card-hue) 68% 40%);
  font-size: 13px;
  font-weight: 750;
  place-items: center;
}

.industry-product-card h3 {
  margin: 8px 0 13px;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.045em;
}

.industry-product-card span {
  display: block;
  max-width: 470px;
  color: #696f79;
  font-size: 15px;
  line-height: 1.55;
}

.industry-product-card > a {
  display: inline-flex;
  grid-column: 2;
  width: fit-content;
  align-items: center;
  align-self: end;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.industry-product-card > a svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.industry-contact {
  display: flex;
  width: min(100% - 40px, 1180px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 70px auto;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 28px;
  background: #0a101b;
  color: #fff;
}

.industry-contact p {
  color: #76b8ff;
}

.industry-contact h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.industry-contact > a {
  flex: 0 0 auto;
}

footer {
  display: flex;
  width: min(100% - 40px, 1180px);
  justify-content: space-between;
  gap: 20px;
  margin: auto;
  padding: 34px 0 48px;
  border-top: 1px solid rgba(80, 96, 122, 0.14);
  color: #777e89;
  font-size: 12px;
}

@media (max-width: 820px) {
  .industry-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 72px 0;
  }

  .industry-hero-panel {
    width: min(100%, 470px);
    justify-self: center;
  }

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

  .industry-system-grid {
    grid-template-columns: 1fr;
  }

  .industry-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .industry-header nav,
  .industry-hero,
  .industry-contact,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .industry-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .industry-products {
    padding-inline: 14px;
  }

  .industry-operating-system {
    padding: 70px 14px 76px;
  }

  .industry-section-heading {
    grid-template-columns: 1fr;
  }

  .industry-product-card {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
    padding: 21px;
  }

  .industry-system-card {
    min-height: 0;
    padding: 22px;
  }

  .industry-product-number {
    width: 43px;
    height: 43px;
  }

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