:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #536171;
  --line: #d8e1e8;
  --paper: #f8faf7;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --blue: #1d4ed8;
  --amber: #c98022;
  --shadow: 0 20px 50px rgba(23, 32, 42, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #ffffff;
}

.site-header.solid,
.simple-page .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(248, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: inherit;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.38));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  background: rgba(8, 18, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.site-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0.98;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.simple-page .site-nav {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.simple-page .site-nav a {
  text-shadow: none;
}

.simple-page .site-nav a:hover {
  background: #eef7f5;
}

.section-tabs {
  position: sticky;
  z-index: 8;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  background: rgba(248, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.section-tabs a {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--teal-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 32, 42, 0.05);
}

.section-tabs a:hover,
.section-tabs a:focus-visible {
  color: #ffffff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 74svh, 780px);
  overflow: hidden;
  align-items: center;
  padding: 108px clamp(20px, 5vw, 72px) 64px;
  color: #ffffff;
  background:
    #101f28 url("cloud-consulting-hero.png") center 30% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.54) 0%, rgba(8, 35, 40, 0.26) 42%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(0deg, rgba(8, 18, 24, 0.16), rgba(8, 18, 24, 0.04));
}

.hero-content {
  position: relative;
  max-width: 690px;
}

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

.hero .eyebrow {
  color: #f7b45c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.9rem, 6.4vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: #071216;
  background: #ffffff;
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

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

.intro > p,
.contact-section p,
.legal-copy p,
.service-card p,
.approach-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.intro > p {
  margin: 28px 0 0;
  font-size: 1.07rem;
}

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

.service-card {
  min-height: 284px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.06);
}

.service-kicker {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 850;
}

.service-card p {
  margin: 18px 0 0;
}

.industries {
  border-top: 1px solid var(--line);
}

.industries > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.industry-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--teal-dark);
  background: #eef7f5;
  border: 1px solid #bfddd8;
  border-radius: 8px;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-list {
  display: grid;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.approach-list > div {
  padding: 24px;
}

.approach-list > div + div {
  border-top: 1px solid var(--line);
}

.approach-list p {
  margin: 10px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p {
  max-width: 660px;
}

.contact-panel {
  padding: 28px;
  background: #102a2b;
  border-radius: 8px;
  color: #ffffff;
}

.contact-panel a {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 6px;
}

.contact-email span {
  display: block;
}

.contact-label,
.contact-note {
  margin: 0;
}

.address-label {
  margin-top: 26px;
}

.business-address {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-note {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

.legal-main {
  min-height: calc(100svh - 172px);
}

.tech-main {
  min-height: calc(100svh - 172px);
}

.page-hero {
  padding-top: clamp(64px, 10vw, 116px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.page-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.tech-section {
  border-bottom: 1px solid var(--line);
}

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

.tech-card {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.06);
}

.tech-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.tech-card li::marker {
  color: var(--teal);
}

.tech-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.tech-note p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 750;
}

.updated {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-top: 16px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .site-nav a:nth-child(5) {
    display: none;
  }

  .brand {
    max-width: 220px;
  }

  .hero {
    min-height: clamp(580px, 78svh, 700px);
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 18, 24, 0.72), rgba(8, 35, 40, 0.34)),
      linear-gradient(0deg, rgba(8, 18, 24, 0.2), rgba(15, 118, 110, 0.08));
  }

  .intro,
  .split,
  .contact-section,
  .service-grid,
  .tech-grid,
  .tech-note {
    grid-template-columns: 1fr;
  }

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

  .service-kicker {
    margin-bottom: 28px;
  }

  .contact-panel {
    padding: 24px;
  }

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

@media (max-width: 520px) {
  .site-header {
    gap: 14px;
  }

  .brand span:last-child {
    font-size: 0.92rem;
  }

  .site-nav {
    flex-shrink: 0;
  }

  .site-nav a:nth-child(3) {
    display: none;
  }

  .simple-page .site-nav a:nth-child(4) {
    display: none;
  }

  .section-tabs {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }
}
