:root {
  color-scheme: dark;
  --bg: #070a0f;
  --bg-2: #0d111a;
  --panel: rgba(16, 23, 34, 0.74);
  --panel-solid: #111824;
  --ink: #eef6ff;
  --muted: #9ba9b8;
  --line: rgba(178, 205, 225, 0.16);
  --cyan: #55e6ff;
  --mint: #57f2b4;
  --violet: #8f7cff;
  --amber: #ffbf5f;
  --red: #ff6b6b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(85, 230, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(255, 191, 95, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--bg), #0b1018 45%, #080a0f 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.76);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(85, 230, 255, 0.5);
  background:
    radial-gradient(circle at center, rgba(85, 230, 255, 0.12), transparent 68%),
    rgba(7, 10, 15, 0.76);
  box-shadow:
    inset 0 0 24px rgba(85, 230, 255, 0.1),
    0 0 28px rgba(85, 230, 255, 0.1);
}

.brand-mark img {
  display: block;
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(85, 230, 255, 0.28));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: calc(100svh - 104px);
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(46px, 6vw, 72px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(85, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 230, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 62%, transparent 100%);
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(85, 230, 255, 0.18);
  transform: rotate(-10deg);
}

.hero-bg::before {
  top: 16%;
  right: 9%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(85, 230, 255, 0.18), transparent 62%);
}

.hero-bg::after {
  right: -7%;
  bottom: 0;
  width: 590px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(143, 124, 255, 0.16), transparent 70%);
}

.hero-content,
.ops-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.7vw, 6.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  letter-spacing: 0;
}

.hero-copy {
  max-width: 740px;
  color: #c6d2df;
  font-size: clamp(1.06rem, 1.65vw, 1.28rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-weight: 850;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: #041016;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 12px 38px rgba(85, 230, 255, 0.22);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(238, 246, 255, 0.22);
  background: rgba(238, 246, 255, 0.06);
}

.ops-panel {
  padding: 18px;
  border: 1px solid rgba(85, 230, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(17, 24, 36, 0.86), rgba(10, 14, 22, 0.9)),
    url("assets/cloud-security-ops.svg") center / cover;
  box-shadow: var(--shadow);
}

.ops-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.ops-grid div,
.terminal-card {
  background: rgba(7, 10, 15, 0.72);
}

.ops-grid div {
  min-height: 110px;
  padding: 16px;
}

.ops-label {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ops-grid strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
}

.terminal-card {
  display: grid;
  gap: 11px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.terminal-card span {
  color: var(--amber);
  font-size: 0.82rem;
}

.terminal-card code {
  color: var(--cyan);
  font-size: 0.88rem;
}

.terminal-card code::before {
  color: var(--mint);
  content: "> ";
}

.brief,
.section,
.platform-section,
.why,
.cta {
  padding-inline: clamp(20px, 5vw, 72px);
}

.brief {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 82px);
  padding-block: clamp(54px, 8vw, 92px);
  border-block: 1px solid var(--line);
  background: rgba(238, 246, 255, 0.035);
}

.brief h2,
.section-heading h2,
.platform-copy h2,
.cta h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.65rem);
  line-height: 1.02;
}

.brief p:last-child,
.platform-copy p,
.cta p,
.capability-card p,
.delivery-card p,
.why p {
  color: var(--muted);
  line-height: 1.68;
}

.brief p:last-child {
  max-width: 820px;
  font-size: 1.08rem;
}

.section {
  padding-block: clamp(58px, 8vw, 108px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.capability-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 246, 255, 0.07), rgba(238, 246, 255, 0.035)),
    var(--panel);
  overflow: hidden;
}

.capability-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 56px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.capability-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(85, 230, 255, 0.18), rgba(143, 124, 255, 0.08)),
    var(--panel-solid);
}

.card-index {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.capability-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding-block: clamp(58px, 8vw, 108px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(85, 230, 255, 0.08), transparent 36%),
    #0b0f16;
}

.platform-copy p {
  max-width: 640px;
  font-size: 1.04rem;
}

.stack-board {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stack-board div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px;
  background: rgba(16, 23, 34, 0.86);
}

.stack-board span {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-board p {
  margin: 0;
  color: #d8e4ef;
  line-height: 1.55;
}

.subcontract {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 191, 95, 0.11), transparent 32rem),
    transparent;
}

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

.delivery-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 246, 255, 0.04);
}

.delivery-card strong {
  display: block;
  margin-bottom: 44px;
  color: var(--amber);
  font-size: 1.35rem;
}

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.why div {
  min-height: 190px;
  padding: 28px;
  background: #0a0e15;
}

.why span {
  display: block;
  margin-bottom: 26px;
  color: var(--violet);
  font-weight: 900;
}

.why p {
  margin: 0;
  color: #c4d1dd;
}

.cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 0.95fr);
  align-items: start;
  gap: 32px;
  padding-block: clamp(58px, 8vw, 108px);
  background:
    linear-gradient(135deg, rgba(85, 230, 255, 0.12), transparent 44%),
    #090d13;
}

.cta h2 {
  max-width: 860px;
  margin-bottom: 18px;
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
}

.cta .button {
  width: fit-content;
}

.inquiry-form {
  display: grid;
  grid-column: 2;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(85, 230, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 23, 34, 0.76);
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(7, 10, 15, 0.72);
  font: inherit;
}

.form-field select {
  padding-right: 42px;
  line-height: 1.3;
  text-overflow: ellipsis;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(85, 230, 255, 0.5);
  outline-offset: 2px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #718193;
}

.inquiry-form .button {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(85, 230, 255, 0.06), transparent 48%),
    #070a0f;
}

.footer-heading,
.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-heading {
  display: block;
  margin-bottom: 12px;
  color: #eaf4ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-sitemap,
.footer-engagement {
  min-width: 0;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links {
  justify-content: flex-start;
  color: #c7d3df;
  font-size: 0.86rem;
  font-weight: 850;
}

.footer-engagement {
  justify-self: end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(85, 230, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: #eaf4ff;
  font-size: 0.86rem;
  font-weight: 850;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: var(--cyan);
  border-color: rgba(85, 230, 255, 0.54);
}

.footer-meta {
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(178, 205, 225, 0.1);
}

.response-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(20px, 5vw, 72px);
}

.response-card {
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(85, 230, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 230, 255, 0.12), transparent 44%),
    rgba(16, 23, 34, 0.82);
  box-shadow: var(--shadow);
}

.response-card h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.4rem);
}

.response-card p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.65;
}

.response-note {
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero,
  .brief,
  .platform-section,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .ops-panel {
    max-width: 720px;
  }

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

  .delivery-grid,
  .why {
    grid-template-columns: 1fr;
  }

  .cta {
    display: grid;
  }

  .inquiry-form {
    grid-column: 1;
    justify-self: start;
  }

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

  .footer-links,
  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .ops-grid,
  .capability-grid,
  .stack-board div,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .inquiry-form .button {
    width: 100%;
  }

  .footer-links,
  .footer-meta {
    display: grid;
  }

  .capability-card.featured {
    grid-column: auto;
  }

  .capability-card,
  .delivery-card {
    min-height: auto;
  }

  .card-index,
  .delivery-card strong {
    margin-bottom: 28px;
  }
}
