:root {
  color-scheme: light;
  --ink: #122033;
  --muted: #5e6f85;
  --line: rgba(38, 72, 105, 0.16);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --teal: #007c89;
  --teal-dark: #005865;
  --green: #2d9b73;
  --amber: #e8a331;
  --coral: #d66757;
  --sky: #e8f6fb;
  --shadow: 0 24px 70px rgba(31, 66, 96, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #edf9fd 0%, #f8fbf8 46%, #eef4f0 100%);
  overflow-x: hidden;
}

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

.sky-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.92) 0 16%, transparent 32%),
    linear-gradient(180deg, #bfeaf6 0%, #eef9fb 58%, #f5f7ed 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
.top-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 30px;
  place-items: center;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  display: block;
  background: linear-gradient(135deg, var(--teal), #71b78e);
  box-shadow: 0 8px 18px rgba(0, 124, 137, 0.2);
}

.brand-mark::before {
  right: 3px;
  bottom: 5px;
  width: 29px;
  height: 15px;
  border-radius: 11px;
}

.brand-mark::after {
  left: 3px;
  bottom: 5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
}

.brand-mark span {
  right: 8px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.top-nav {
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 16px 42px rgba(42, 74, 97, 0.08);
}

.top-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #30445c;
  font-size: 0.91rem;
  font-weight: 700;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: min(780px, 82svh);
  margin: 0 auto;
  padding: 52px 0 92px;
}

.hero-content {
  min-width: 0;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #314960;
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 18px 38px rgba(0, 124, 137, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  border-color: rgba(0, 88, 101, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.hero-panel {
  min-width: 0;
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.panel-row,
.metric-grid,
.status-list div,
.site-footer,
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-row span,
.metric-grid span,
.status-list dt {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

.panel-row strong {
  font-size: 2rem;
}

.capacity-bar {
  overflow: hidden;
  height: 9px;
  margin: 18px 0 20px;
  border-radius: 99px;
  background: rgba(38, 72, 105, 0.12);
}

.capacity-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--amber));
}

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

.metric-grid div {
  min-width: 0;
  padding: 15px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid strong {
  margin-top: 7px;
  font-size: 1.02rem;
}

.platform,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 46px rgba(31, 66, 96, 0.08);
}

.service-card h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.service-card p,
.contact-strip p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-icon {
  position: relative;
  width: 56px;
  height: 48px;
  color: var(--teal);
}

.cloud-icon::before,
.cloud-icon::after,
.shield-icon::before,
.shield-icon::after,
.backup-icon::before,
.backup-icon::after {
  position: absolute;
  content: "";
  display: block;
}

.cloud-icon::before {
  left: 4px;
  bottom: 8px;
  width: 48px;
  height: 24px;
  border-radius: 20px;
  background: currentColor;
}

.cloud-icon::after {
  left: 13px;
  top: 5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 17px 8px 0 -4px currentColor;
}

.shield-icon::before {
  left: 11px;
  top: 4px;
  width: 34px;
  height: 40px;
  border: 4px solid currentColor;
  border-radius: 18px 18px 8px 8px;
  transform: rotate(45deg);
}

.shield-icon::after {
  left: 25px;
  top: 15px;
  width: 8px;
  height: 20px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(39deg);
}

.backup-icon::before {
  inset: 6px 5px;
  border: 4px solid currentColor;
  border-radius: 50%;
  border-left-color: transparent;
}

.backup-icon::after {
  left: 2px;
  top: 15px;
  width: 16px;
  height: 16px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(38deg);
}

.status-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 66px max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(0, 124, 137, 0.92), rgba(45, 155, 115, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  color: #fff;
}

.status-band .eyebrow,
.status-band .status-list dt {
  color: rgba(255, 255, 255, 0.76);
}

.status-band h2 {
  max-width: 620px;
}

.status-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.status-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.status-list dd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #baf0c7;
  box-shadow: 0 0 0 6px rgba(186, 240, 199, 0.16);
}

.contact-strip {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(31, 66, 96, 0.08);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    gap: 14px;
  }

  .top-nav {
    overflow-x: auto;
    max-width: 64vw;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 50px 0 70px;
  }

  .hero-panel {
    align-self: stretch;
  }

  .service-grid,
  .status-band {
    grid-template-columns: 1fr;
  }

  .platform,
  .contact,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .status-band {
    padding-right: 14px;
    padding-left: 14px;
  }

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

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    max-width: 362px;
    margin-right: auto;
    margin-left: 14px;
    padding: 14px 0;
  }

  .top-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    border-radius: 8px;
  }

  .top-nav a {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 0 6px;
    font-size: 0.8rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.2rem);
    line-height: 0.94;
  }

  .hero,
  .platform,
  .contact,
  .site-footer {
    width: calc(100% - 28px);
    max-width: 362px;
    margin-right: auto;
    margin-left: 14px;
  }

  .hero-content,
  .hero-copy,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .panel-row strong {
    flex: 0 0 auto;
    font-size: 1.72rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 220px;
  }

  .status-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

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

  .button {
    transition: none;
  }
}
