:root {
  --ink: #101828;
  --muted: #667085;
  --soft: #f5f8fb;
  --ai-soft: #f2fbff;
  --ai-blue: #eef7ff;
  --ai-lilac: #f7f4ff;
  --paper: #ffffff;
  --line: #e4e9f0;
  --brand: #0098c8;
  --brand-deep: #006f95;
  --brand-dark: #004d68;
  --aqua: #00a9d8;
  --mint-2: #bdefff;
  --sky-2: #d9f4ff;
  --gold: #f6b84b;
  --dark: #0d1722;
  --dark-2: #142436;
  --shadow: 0 22px 60px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-elevated {
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.brand img {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #344054;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 10px 12px;
}

.menu-button svg,
.header-cta svg,
.primary-btn svg,
.secondary-btn svg,
.text-link svg,
.contact-panel svg {
  width: 18px;
  height: 18px;
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta {
  padding: 0 16px;
  background: var(--dark);
  color: white;
  font-size: 0.92rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--brand-deep);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

.primary-btn {
  width: fit-content;
  padding: 0 20px;
  border: 0;
  background: var(--brand-deep);
  color: white;
  box-shadow: 0 16px 30px rgba(21, 95, 132, 0.2);
  cursor: pointer;
}

.secondary-btn {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5.2vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-family: Inter, "Plus Jakarta Sans", Arial, sans-serif;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-family: Inter, "Plus Jakarta Sans", Arial, sans-serif;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
  line-height: 1.28;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: clamp(42px, 6vw, 76px);
  border: 1px solid rgba(0, 152, 200, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 16%, rgba(189, 239, 255, 0.94), transparent 30%),
    radial-gradient(circle at 68% 8%, rgba(229, 248, 255, 0.94), transparent 24%),
    radial-gradient(circle at 95% 78%, rgba(194, 235, 249, 0.78), transparent 28%),
    linear-gradient(135deg, #f2fbff 0%, #f8fdff 44%, #edf9ff 100%);
  box-shadow: 0 28px 90px rgba(36, 66, 89, 0.1);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 18px -2vw auto auto;
  width: min(440px, 36vw);
  height: min(440px, 36vw);
  background:
    linear-gradient(90deg, rgba(0, 152, 200, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 152, 200, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  mask-image: radial-gradient(circle, #000 10%, transparent 72%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 42%;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(0, 152, 200, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-simple {
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
  text-align: center;
}

.hero-simple .hero-copy {
  margin: 0 auto;
}

.hero-simple h1,
.hero-simple .hero-lede {
  margin-right: auto;
  margin-left: auto;
}

.hero-simple .hero-actions,
.hero-simple .trust-row {
  justify-content: center;
}

.hero-lede,
.page-hero p,
.intro-copy p,
.service-card p,
.product-card p,
.product-row p,
.story-card p,
.value-card p,
.contact-panel p,
.cta-inner p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(21, 95, 132, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.hero h1 {
  max-width: 1040px;
  color: #0b1f2f;
  font-size: clamp(3.15rem, 6.2vw, 5.85rem);
}

.hero h1::selection,
.hero p::selection {
  background: var(--mint-2);
}

.hero-lede {
  max-width: 860px;
  color: #405162;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.trust-row,
.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 26px;
}

.trust-row span,
.capability-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #344054;
  font-size: 0.87rem;
  font-weight: 800;
}

.trust-row span {
  padding: 10px 15px;
  border-color: rgba(0, 152, 200, 0.18);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.hero-capabilities {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.hero-visual {
  padding: 18px;
  border: 1px solid rgba(0, 152, 200, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(232, 249, 255, 0.72)),
    linear-gradient(135deg, rgba(0, 152, 200, 0.1), rgba(0, 169, 216, 0.22));
  box-shadow: 0 24px 60px rgba(0, 152, 200, 0.13);
  backdrop-filter: blur(14px);
}

.screen-card {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.07);
  border-radius: 14px;
  background: white;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.13);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-weight: 800;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
}

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

.screen-grid article {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.screen-grid article:last-child {
  border-right: 0;
}

.screen-grid small {
  color: var(--muted);
  font-weight: 800;
}

.screen-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  background: #f7fbfd;
}

.pipeline div {
  padding: 14px;
  border-radius: 6px;
  background: white;
  border: 1px solid var(--line);
}

.pipeline span {
  color: #344054;
  font-size: 0.84rem;
  font-weight: 800;
}

.pipeline b {
  display: block;
  height: 7px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--aqua));
}

.activity-list {
  padding: 6px 18px 18px;
}

.activity-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  color: #344054;
  font-weight: 700;
}

.activity-list svg {
  width: 18px;
  height: 18px;
  color: var(--brand-deep);
}

.capability-strip {
  justify-content: center;
  padding: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.capability-strip span {
  padding: 8px 14px;
}

.intro-section,
.story-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 86px 0;
}

.story-layout.alt {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
}

.story-layout:has(.inline-values) {
  grid-template-columns: 1fr;
}

.section-kicker,
.section-heading {
  max-width: 720px;
}

.intro-copy {
  align-self: end;
}

.intro-copy a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  font-weight: 800;
}

.showcase-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 10px 0 86px;
}

.showcase-copy {
  max-width: 560px;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
}

.showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.showcase-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 800;
}

.showcase-points svg {
  width: 17px;
  height: 17px;
  color: var(--brand-deep);
}

.sprint-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #d8e7ef;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 152, 200, 0.14), rgba(0, 169, 216, 0.12)),
    #f8fbfd;
}

.sprint-column {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.06);
}

.sprint-column.active {
  background: linear-gradient(160deg, var(--dark), var(--brand-deep));
  color: white;
  transform: translateY(-14px);
}

.sprint-column span {
  display: inline-flex;
  margin-bottom: 90px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sprint-column.active span,
.sprint-column.active p {
  color: white;
}

.sprint-column p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.ai-presence-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(189, 239, 255, 0.66), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(217, 239, 255, 0.84), transparent 30%),
    linear-gradient(135deg, var(--ai-soft), var(--ai-blue) 56%, var(--ai-lilac));
  border-top: 1px solid #dcefe9;
  border-bottom: 1px solid #dfeaf5;
}

.ai-presence-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.ai-presence-copy {
  max-width: 580px;
}

.ai-presence-copy p:not(.eyebrow) {
  color: #526071;
}

.ai-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 4px;
}

.ai-feature-pills span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(21, 95, 132, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #244259;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.04);
}

.ai-demo-card {
  padding: 18px;
  border: 1px solid rgba(21, 95, 132, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(18px);
}

.listing-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.listing-logo {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--aqua));
  color: white;
  font-weight: 900;
}

.listing-card strong {
  display: block;
  color: var(--ink);
}

.listing-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.ai-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.ai-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #344054;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.ai-actions svg {
  width: 16px;
  height: 16px;
  color: var(--brand-deep);
}

.assistant-card {
  padding: 18px;
  border: 1px solid #dce8ef;
  border-radius: 12px;
  background: #ffffff;
}

.assistant-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
}

.assistant-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.assistant-top small {
  color: var(--brand-deep);
  font-weight: 800;
}

.assistant-card p {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f5faf8;
  color: #334155;
}

.ask-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 0 12px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ask-bar svg {
  width: 18px;
  height: 18px;
  color: var(--brand-deep);
}

.discover-section {
  padding: 86px 0 0;
}

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

.discover-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid #dfeaf2;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.94)),
    white;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.06);
}

.discover-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #f4fbf8);
}

.discover-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #f7f4ff);
}

.discover-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--brand-deep);
  font-weight: 900;
}

.discover-card p {
  margin: 0;
  color: var(--muted);
}

.card-section,
.process-section {
  padding: 86px 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 86px 0;
}

.product-grid,
.service-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.products-heading {
  position: relative;
  display: block;
  max-width: none;
  margin-bottom: 34px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(67, 142, 183, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 18%, rgba(189, 239, 255, 0.82), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(217, 239, 255, 0.84), transparent 28%),
    linear-gradient(135deg, #f2fbff 0%, #eef8ff 58%, #f8fbff 100%);
  box-shadow: 0 18px 50px rgba(21, 95, 132, 0.07);
  overflow: hidden;
}

.products-heading::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(67, 142, 183, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.products-heading h2 {
  position: relative;
  max-width: 720px;
  margin-bottom: 14px;
  color: #0b1f2f;
}

.products-heading .eyebrow,
.products-heading .text-link {
  position: relative;
}

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

.service-grid.full {
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 0 86px;
}

.product-card,
.service-card,
.value-card,
.story-card,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.06);
}

.product-card,
.service-card,
.value-card {
  padding: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 330px;
}

.product-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 110px;
  height: 110px;
  border: 22px solid rgba(67, 142, 183, 0.08);
  border-radius: 50%;
  content: "";
}

.product-card > span,
.product-row span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card ul,
.product-row ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.product-card ul {
  margin-bottom: 20px;
}

.product-card li {
  position: relative;
  margin-top: 9px;
  padding-left: 17px;
  color: #344054;
  font-weight: 700;
}

.product-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.product-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-deep);
  font-size: 0.94rem;
  font-weight: 800;
}

.product-link svg {
  width: 17px;
  height: 17px;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(13, 23, 34, 0.98), rgba(20, 36, 54, 0.96)),
    var(--dark);
  color: white;
}

.dark-band .section-shell {
  padding: 86px 0;
}

.dark-band .eyebrow {
  color: var(--aqua);
}

.dark-band h2 {
  color: white;
}

.dark-band p {
  color: #cbd5e1;
}

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

.dark-band .service-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.service-card > svg,
.value-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--brand-deep);
}

.dark-band .service-card > svg {
  color: var(--aqua);
}

.services-preview .text-link {
  margin-top: 24px;
  color: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline-item {
  min-height: 138px;
  padding: 20px;
  border-left: 3px solid var(--brand);
  background: var(--soft);
}

.timeline-item:nth-child(2) {
  border-color: var(--aqua);
}

.timeline-item:nth-child(3) {
  border-color: var(--gold);
}

.timeline-item:nth-child(4) {
  border-color: #ff7a59;
}

.timeline-item span {
  color: var(--brand-deep);
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 24px;
}

.stack-section {
  padding: 78px 0;
  background: #f7fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stack-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.stack-layout .section-heading {
  margin: 0;
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #d8e2ea;
  border-radius: 999px;
  background: white;
  color: #344054;
  font-weight: 800;
}

.cta-section {
  width: min(1160px, calc(100% - 40px));
  margin: 86px auto 30px;
  padding: clamp(36px, 7vw, 70px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 23, 34, 0.9), rgba(21, 95, 132, 0.9)),
    var(--dark);
  color: white;
}

.cta-inner {
  max-width: 780px;
}

.cta-inner .eyebrow {
  color: var(--aqua);
}

.cta-inner .primary-btn {
  margin-top: 12px;
  background: white;
  color: var(--brand-deep);
}

.page-hero {
  position: relative;
  margin-top: 24px;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid rgba(67, 142, 183, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 18%, rgba(217, 239, 255, 0.92), transparent 30%),
    radial-gradient(circle at 88% 15%, rgba(238, 247, 255, 0.9), transparent 26%),
    linear-gradient(135deg, #f3f9ff 0%, #eef7ff 48%, #f8fbff 100%);
  box-shadow: 0 20px 60px rgba(21, 95, 132, 0.08);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(67, 142, 183, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  max-width: 920px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  color: #0b1f2f;
}

.page-hero p {
  position: relative;
  max-width: 760px;
  color: #4a5b6e;
}

.story-card {
  padding: clamp(28px, 5vw, 46px);
  background: var(--soft);
}

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

.inline-values {
  margin-top: 28px;
}

.inline-values .value-card {
  background: white;
  box-shadow: none;
}

.about-detail {
  padding: 0 0 86px;
}

.about-detail .section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}

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

.focus-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.05);
}

.focus-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--brand-deep);
  font-weight: 800;
}

.focus-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 800;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.05);
}

.product-row + .product-row {
  margin-top: 0;
}

.product-row h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.product-row li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #344054;
  font-weight: 800;
}

.product-row li svg {
  width: 18px;
  height: 18px;
  color: var(--brand-deep);
}

.contact-layout {
  padding-top: 20px;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #344054;
  font-weight: 800;
}

.contact-panel a svg {
  color: var(--brand-deep);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.form-alert.success {
  border: 1px solid rgba(0, 152, 200, 0.3);
  background: #edfaff;
  color: var(--brand-deep);
}

.form-alert.error {
  border: 1px solid rgba(255, 122, 89, 0.3);
  background: #fff4ef;
  color: #a43f24;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e2ea;
  border-radius: 6px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(20px, 4vw, 56px) 42px;
  color: var(--muted);
}

.site-footer img {
  width: 150px;
  height: auto;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
  color: #344054;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 10px 4px;
  }

  .hero,
  .intro-section,
  .showcase-section,
  .ai-presence-layout,
  .story-layout,
  .story-layout.alt,
  .about-band,
  .stack-layout,
  .contact-layout,
  .product-row {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-list,
  .discover-grid,
  .service-grid.full,
  .service-grid.compact,
  .value-grid,
  .focus-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    display: none;
  }

  .section-shell,
  .cta-section {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-visual {
    padding: 12px;
  }

  .screen-grid,
  .pipeline,
  .sprint-board,
  .ai-actions,
  .product-grid,
  .product-list,
  .discover-grid,
  .service-grid.full,
  .service-grid.compact,
  .value-grid,
  .focus-grid,
  .timeline,
  .about-list {
    grid-template-columns: 1fr;
  }

  .screen-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .screen-grid article:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .showcase-section,
  .ai-presence-section,
  .discover-section,
  .card-section,
  .process-section,
  .story-layout,
  .about-detail,
  .product-list,
  .contact-layout {
    padding: 60px 0;
  }

  .dark-band .section-shell,
  .stack-section {
    padding: 60px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
