* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(135deg,#b8d1f2, #416491 30%, #ff6417 45%, #05070d);
  color: #f4f7fb;
  min-height: 100vh;
}

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

.navbar {
  width: min(1150px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

nav {
  height: 15 px;
  display: flex;
  gap: 22px;
}

nav a {
  color: #020a17;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #022a73;
}

.hero {
  width: min(1150px, 92%);
  margin: 70px auto 40px;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-content p {
  color: #b9c4d8;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
}

.eyebrow {
  color: #39ffc4;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #ff9142 transparent;
  color: #db2a1a;
  box-shadow: 0 0 10px rgba(57, 255, 196, 0.25);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.18);
  color: #f4f7fb;
}

.button.secondary:hover {
  border-color: #39ffc4;
}

.pcb-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
}

.pcb-image {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(57,255,196,0.08) 1px, transparent 1px),
    linear-gradient(rgba(57,255,196,0.08) 1px, transparent 1px),
    radial-gradient(circle at center, #123d3a, #081720 65%);
  background-size: 34px 34px, 34px 34px, cover;
}

.chip {
  position: absolute;
  width: 130px;
  height: 130px;
  background: linear-gradient(145deg, #111827, #020617);
  border: 2px solid #39ffc4;
  border-radius: 18px;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 35px rgba(57,255,196,0.35);
}

.chip::before {
  content: "PCB";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #39ffc4;
  font-weight: 800;
  letter-spacing: 3px;
}

.trace {
  position: absolute;
  height: 4px;
  background: #39ffc4;
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(57,255,196,0.7);
}

.t1 {
  width: 150px;
  top: 155px;
  left: 30px;
}

.t2 {
  width: 150px;
  top: 220px;
  right: 30px;
}

.t3 {
  width: 4px;
  height: 110px;
  left: 50%;
  top: 15px;
}

.t4 {
  width: 4px;
  height: 110px;
  left: 50%;
  bottom: 15px;
}

.dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #39ffc4;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(57,255,196,0.9);
}

.d1 {
  top: 148px;
  left: 25px;
}

.d2 {
  top: 213px;
  right: 25px;
}

.d3 {
  top: 20px;
  left: calc(50% - 7px);
}

.d4 {
  bottom: 20px;
  left: calc(50% - 7px);
}

.section {
  width: min(1150px, 92%);
  margin: 60px auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.card h3 {
  margin-bottom: 12px;
  color: #39ffc4;
}

.card p {
  color: #b9c4d8;
  line-height: 1.6;
}

.status-page {
  width: min(900px, 92%);
  margin: 80px auto;
}

.status-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
}

.status-box h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 30px;
}

.status-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 22px;
  margin-bottom: 30px;
}

.status-card.online {
  background: rgba(57,255,196,0.10);
  border: 1px solid rgba(57,255,196,0.35);
}

.status-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #39ffc4;
  box-shadow: 0 0 22px rgba(57,255,196,0.9);
  flex-shrink: 0;
}

.status-card h2 {
  margin-bottom: 6px;
}

.status-card p {
  color: #b9c4d8;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-list span {
  color: #8fa0bd;
}

.info-list strong {
  color: #f4f7fb;
  text-align: right;
}

footer {
  width: min(1150px, 92%);
  margin: 80px auto 30px;
  color: #718096;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

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

  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .info-list div {
    flex-direction: column;
  }

  .info-list strong {
    text-align: left;
  }
}
.minimal-hero {
  min-height: 620px;
}

.server-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
}

.server-visual {
  position: relative;
  min-height: 390px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(57,255,196,0.25), transparent 22%),
    radial-gradient(circle at 30% 75%, rgba(84,132,255,0.2), transparent 25%),
    linear-gradient(135deg, #0b1728, #07111f 55%, #030712);
}

.server-rack {
  position: absolute;
  left: 50px;
  top: 105px;
  width: 210px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 60px rgba(57,255,196,0.12);
}

.server-unit {
  height: 54px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.server-unit:last-child {
  margin-bottom: 0;
}

.server-unit span {
  width: 10px;
  height: 10px;
  background: #39ffc4;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(57,255,196,0.9);
}

.cloud-node {
  position: absolute;
  right: 65px;
  top: 135px;
  width: 130px;
  height: 130px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  color: #061018;
  font-weight: 900;
  font-size: 2rem;
  background: #39ffc4;
  box-shadow: 0 0 55px rgba(57,255,196,0.45);
}

.network-lines .line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, #39ffc4, transparent);
  box-shadow: 0 0 16px rgba(57,255,196,0.8);
}

.l1 {
  width: 190px;
  top: 170px;
  left: 245px;
  transform: rotate(-10deg);
}

.l2 {
  width: 210px;
  top: 210px;
  left: 245px;
}

.l3 {
  width: 190px;
  top: 250px;
  left: 245px;
  transform: rotate(10deg);
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #8fb7ff;
  box-shadow: 0 0 22px rgba(143,183,255,0.9);
}

.n1 {
  right: 235px;
  top: 160px;
}

.n2 {
  right: 225px;
  top: 203px;
}

.n3 {
  right: 235px;
  top: 245px;
}

@media (max-width: 850px) {
  .server-rack {
    left: 25px;
    width: 180px;
  }

  .cloud-node {
    right: 30px;
    width: 105px;
    height: 105px;
    font-size: 1.5rem;
  }

  .l1,
  .l2,
  .l3 {
    width: 120px;
    left: 190px;
  }

  .node {
    display: none;
  }
}
