:root {
  --ink: #14213d;
  --muted: #5e6a7d;
  --line: rgba(20, 33, 61, 0.12);
  --paper: #f7f9fc;
  --white: #ffffff;
  --cyan: #1fb6ff;
  --green: #18b982;
  --yellow: #f5b642;
  --red: #f05d5e;
  --shadow: 0 20px 55px rgba(18, 32, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 249, 252, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-logo {
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(20, 33, 61, 0.14);
  display: block;
  height: 46px;
  width: 46px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: -3px;
}

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

.site-nav a,
.nav-parent {
  color: rgba(20, 33, 61, 0.78);
}

.site-nav a:hover,
.nav-parent:hover {
  color: var(--ink);
}

.nav-group {
  position: relative;
}

.nav-parent {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 24px 0;
}

.nav-parent::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
  display: inline-block;
  margin-left: 7px;
  transform: translateY(-1px);
}

.nav-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 33, 61, 0.12);
  display: grid;
  gap: 2px;
  min-width: 190px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 62px;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  border-radius: 6px;
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: #f1f6fb;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.98) 0%, rgba(247, 249, 252, 0.9) 43%, rgba(247, 249, 252, 0.5) 100%),
    radial-gradient(circle at 78% 30%, rgba(31, 182, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(24, 185, 130, 0.16), transparent 36%),
    linear-gradient(135deg, #eef5fb 0%, #f7f9fc 55%, #eef8f4 100%);
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: min(860px, 92vh);
  overflow: hidden;
  padding: 116px clamp(20px, 5vw, 72px) 54px;
  position: relative;
}

.hero::after {
  background-image:
    linear-gradient(rgba(20, 33, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  bottom: 0;
  content: "";
  left: 48%;
  opacity: 0.45;
  position: absolute;
  right: 0;
  top: 76px;
}

.hero-copy {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

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

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

h1 {
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 26px;
  max-width: 820px;
}

.hero-text {
  color: rgba(20, 33, 61, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 650px;
}

.hero-actions,
.contact-section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.22);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.ops-visual {
  aspect-ratio: 1.18;
  min-height: 480px;
  position: relative;
  z-index: 1;
}

.world-grid {
  background:
    linear-gradient(90deg, rgba(31, 182, 255, 0.22), transparent 1px),
    linear-gradient(rgba(31, 182, 255, 0.22), transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(223, 238, 249, 0.72));
  background-size: 52px 52px, 52px 52px, 100% 100%;
  border: 1px solid rgba(31, 182, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(31, 182, 255, 0.14), var(--shadow);
  height: 72%;
  position: absolute;
  right: 6%;
  top: 3%;
  width: 72%;
}

.dashboard,
.server-stack,
.cloud-node {
  box-shadow: var(--shadow);
  position: absolute;
}

.dashboard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 8px;
  bottom: 8%;
  left: 4%;
  padding: 18px;
  width: min(360px, 52vw);
}

.dash-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.dash-top span {
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.dash-top span:nth-child(1) { background: var(--red); }
.dash-top span:nth-child(2) { background: var(--yellow); }
.dash-top span:nth-child(3) { background: var(--green); }

.metric-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.metric-row div {
  background: #f3f7fb;
  border-radius: 8px;
  padding: 12px;
}

.metric-row small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 700;
}

.metric-row strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.chart-bars {
  align-items: end;
  background: linear-gradient(180deg, #eef7ff, #f7fbff);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  height: 142px;
  padding: 16px;
}

.chart-bars span {
  background: linear-gradient(180deg, var(--cyan), var(--green));
  border-radius: 5px 5px 0 0;
  flex: 1;
  min-width: 18px;
}

.server-stack {
  background: rgba(20, 33, 61, 0.93);
  border-radius: 8px;
  bottom: 14%;
  right: 0;
  padding: 16px;
  width: 220px;
}

.server-stack span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  display: block;
  height: 42px;
  margin-bottom: 10px;
  position: relative;
}

.server-stack span::after {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 8px;
  position: absolute;
  right: 14px;
  top: 16px;
  width: 8px;
}

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

.cloud-node {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 182, 255, 0.2);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.node-one { right: 13%; top: 7%; }
.node-two { left: 18%; top: 22%; }
.node-three { right: 23%; top: 48%; }

.signal-line {
  background: linear-gradient(90deg, transparent, rgba(31, 182, 255, 0.6), transparent);
  height: 2px;
  position: absolute;
  transform-origin: left center;
}

.line-one {
  left: 28%;
  top: 31%;
  transform: rotate(16deg);
  width: 330px;
}

.line-two {
  right: 18%;
  top: 43%;
  transform: rotate(112deg);
  width: 250px;
}

.platform-strip,
.capability-strip {
  background: #ffffff;
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, 1fr);
}

.platform-strip span,
.capability-strip span {
  align-items: center;
  background: #f1f6fb;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 82px;
  padding: 18px;
  text-align: center;
}

.capability-strip {
  background: #ffffff;
  color: var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.capability-strip span {
  background: #f1f6fb;
  border-bottom: 1px solid var(--line);
  color: rgba(20, 33, 61, 0.84);
  min-height: 70px;
}

.section,
.split-section,
.contact-section {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-heading p,
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 410px;
  padding: 26px;
}

.service-visual {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.service-visual img {
  background: #f1f7fb;
  border: 1px solid rgba(31, 182, 255, 0.14);
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.service-card .icon {
  align-self: start;
  background: rgba(31, 182, 255, 0.1);
  border-radius: 999px;
  color: var(--cyan);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-width: 38px;
  padding: 6px 10px;
}

.service-card h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.feature-section {
  background: #eef4f8;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.feature-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.feature-panel h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.feature-panel ul {
  color: var(--muted);
  margin: 0;
  padding-left: 19px;
}

.feature-panel li {
  margin-bottom: 10px;
}

.about-section {
  background: #eef4f8;
}

.legal-section {
  background: #eef4f8;
}

.about-grid,
.legal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.about-grid div,
.legal-card {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

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

.about-grid strong,
.legal-card h3 {
  color: var(--ink);
  display: block;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.about-grid p,
.legal-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.mission-panel {
  align-items: center;
  background: linear-gradient(135deg, #14213d 0%, #123f58 62%, #12604f 100%);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 18px;
  padding: clamp(28px, 5vw, 46px);
}

.mission-panel .eyebrow,
.mission-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.mission-panel h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  margin-bottom: 0;
}

.mission-panel > p {
  font-size: 17px;
  margin-bottom: 0;
}

.values-block {
  margin-top: 58px;
  scroll-margin-top: 96px;
}

.compact-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.values-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.values-grid article {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.values-grid span {
  color: var(--green);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 28px;
}

.values-grid h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.values-grid p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.legal-card a {
  color: var(--green);
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 18px;
}

.policy-page {
  background: #f7f9fc;
  color: var(--ink);
}

.policy-main {
  padding: 116px clamp(20px, 5vw, 72px) 72px;
}

.policy-hero {
  background: linear-gradient(135deg, #14213d 0%, #123f58 64%, #12604f 100%);
  border-radius: 8px;
  color: var(--white);
  margin-bottom: 24px;
  padding: clamp(34px, 7vw, 70px);
}

.policy-hero .eyebrow,
.policy-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.policy-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 18px;
}

.policy-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 26px;
  padding: clamp(26px, 5vw, 52px);
}

.policy-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.policy-content section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}

.split-section {
  align-items: start;
  background: #ffffff;
  display: grid;
  gap: clamp(32px, 6vw, 92px);
  grid-template-columns: 0.85fr 1.15fr;
}

.section-divider {
  background: #0f192c;
  height: 2px;
  margin: 0 clamp(20px, 5vw, 72px);
}

.timeline {
  border-left: 2px solid rgba(31, 182, 255, 0.22);
  display: grid;
  gap: 28px;
  padding-left: 28px;
}

.timeline div {
  position: relative;
}

.timeline div::before {
  background: var(--green);
  border: 5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(24, 185, 130, 0.2);
  content: "";
  height: 16px;
  left: -37px;
  position: absolute;
  top: 4px;
  width: 16px;
}

.timeline span {
  display: block;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
}

.timeline p {
  margin-bottom: 0;
}

.contact-section {
  background: linear-gradient(135deg, #14213d 0%, #123f58 62%, #12604f 100%);
  color: var(--white);
  justify-content: space-between;
}

.contact-section > div {
  max-width: 760px;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .button.primary {
  background: var(--white);
  color: var(--ink);
  flex: 0 0 auto;
}

.contact-domain {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 15px !important;
  font-weight: 800;
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  background: #0f192c;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 13px;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::after {
    left: 0;
    opacity: 0.25;
  }

  .ops-visual {
    min-height: 420px;
  }

  .platform-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

@media (max-width: 780px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(247, 249, 252, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
    width: 100%;
  }

  .nav-group {
    border-top: 1px solid var(--line);
    width: 100%;
  }

  .nav-parent {
    padding: 14px 0;
    text-align: left;
    width: 100%;
  }

  .nav-menu {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 0;
    min-width: 0;
    opacity: 1;
    padding: 0 0 8px 14px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .nav-menu a {
    border-top: 0;
    color: var(--muted);
    padding: 9px 0;
    white-space: normal;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .ops-visual {
    min-height: 360px;
  }

  .dashboard {
    width: min(320px, 82vw);
  }

  .server-stack {
    width: 160px;
  }

  .server-stack span {
    height: 34px;
  }

  .cloud-node {
    height: 60px;
    width: 60px;
  }

  .platform-strip,
  .capability-strip,
  .service-grid,
  .split-section,
  .feature-grid,
  .about-grid,
  .legal-grid,
  .mission-panel,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .platform-strip span,
  .capability-strip span {
    min-height: 62px;
  }

  .service-card {
    min-height: auto;
  }

  .service-visual {
    margin-bottom: 24px;
  }

  .service-visual img {
    max-height: 170px;
    object-fit: cover;
  }

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

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

@media (max-width: 520px) {
  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

  .ops-visual {
    min-height: 300px;
  }

  .world-grid {
    height: 76%;
    right: -20%;
    width: 100%;
  }

  .dashboard {
    bottom: 0;
    left: 0;
  }

  .chart-bars {
    height: 100px;
  }

  .server-stack,
  .node-two,
  .line-one,
  .line-two {
    display: none;
  }
}
