:root {
  --urker-blue: #0033a1;
  --deep-space: #001428;
  --titanium: #8d96a4;
  --silver: #d7dde5;
  --white: #ffffff;
  --paper: #f7f9fc;
  --line-soft: rgba(0, 20, 40, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text-main: #07111f;
  --text-muted: #5d6878;
  --shadow-soft: 0 24px 80px rgba(3, 15, 34, 0.12);
  --shadow-strong: 0 30px 100px rgba(0, 13, 30, 0.28);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shell-width: min(1320px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(0, 51, 161, 0.1), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(141, 150, 164, 0.18), transparent 24%),
    linear-gradient(180deg, #fcfdff 0%, #eef2f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 20, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 20, 40, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 92%);
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
  width: var(--shell-width);
  margin: 0 auto;
  padding: 24px 0 48px;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}

.page-glow-left {
  top: -120px;
  left: -120px;
  background: rgba(0, 51, 161, 0.55);
}

.page-glow-right {
  right: -160px;
  top: 260px;
  background: rgba(141, 150, 164, 0.5);
}

.hero {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

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

.brand-logo {
  width: 170px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--urker-blue);
  transition: transform 0.25s ease;
}

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

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

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
}

.hero-primary,
.hero-secondary,
.section-copy,
.brandboard-card,
.capability-card,
.metrics-band,
.process-card,
.contact-section {
  box-shadow: var(--shadow-soft);
}

.hero-primary {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 252, 0.94)),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.eyebrow,
.panel-label,
.card-tag,
.process-step,
.principle-index {
  margin: 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--urker-blue);
  font-size: 0.92rem;
}

.hero-wordmark {
  width: min(540px, 100%);
  margin: 24px 0 18px;
}

.hero-primary h1,
.section-copy h2,
.section-heading h2,
.metrics-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-primary h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  text-transform: uppercase;
}

.hero-text,
.section-copy p,
.capability-card p,
.metrics-copy p,
.process-card p,
.contact-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0b49cb, var(--urker-blue));
  box-shadow: 0 18px 40px rgba(0, 51, 161, 0.28);
}

.button-secondary {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.75);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.hero-stats div {
  padding: 18px 18px 0 0;
  border-top: 1px solid rgba(0, 20, 40, 0.12);
}

.hero-stats dt,
.metric-value {
  display: block;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--urker-blue);
  font-size: 2rem;
}

.hero-stats dd,
.metric-label {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-secondary {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.trajectory-card,
.signal-card,
.metrics-band,
.process-card,
.contact-panel {
  border-radius: var(--radius-xl);
}

.trajectory-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  min-height: 100%;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 51, 161, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--deep-space);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.trajectory-card h2,
.capability-card h3,
.process-card h3 {
  margin: 8px 0 12px;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.trajectory-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.trajectory-card p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.trajectory-diagram {
  position: relative;
  min-height: 260px;
  margin-top: 30px;
}

.trajectory-ring,
.trajectory-line,
.trajectory-dot {
  position: absolute;
}

.trajectory-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ring-large {
  right: -8%;
  bottom: -12%;
  width: 320px;
  height: 320px;
}

.ring-small {
  left: 10%;
  top: 10%;
  width: 164px;
  height: 164px;
  border-style: dashed;
}

.trajectory-line {
  left: 14%;
  top: 50%;
  width: 72%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.85));
  border-radius: 999px;
  transform: rotate(-18deg);
  transform-origin: left center;
}

.trajectory-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -6px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
}

.trajectory-dot {
  left: 32%;
  top: 52%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.85);
}

.signal-card {
  padding: 22px 26px;
  color: var(--white);
  background: linear-gradient(180deg, #032454 0%, #011427 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row span {
  color: rgba(255, 255, 255, 0.62);
}

.signal-row strong,
.signal-row a {
  text-align: right;
  font-weight: 600;
}

.section {
  margin-top: 26px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
}

.section-copy {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.section-copy h2,
.section-heading h2,
.metrics-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  max-width: 11ch;
}

.section-copy p + p {
  margin-top: 16px;
}

.principles {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 51, 161, 0.04);
  border: 1px solid rgba(0, 51, 161, 0.08);
}

.principle-index {
  color: var(--urker-blue);
  font-size: 1.05rem;
}

.principle p {
  margin: 0;
}

.brandboard-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(180deg, #021121 0%, #031a35 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.brandboard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.brandboard-header span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
}

.brandboard-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading {
  margin-bottom: 20px;
}

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

.capability-card {
  min-height: 320px;
  padding: 30px;
  border-radius: 30px;
}

.capability-card h3 {
  font-size: 2rem;
}

.card-tag {
  color: var(--urker-blue);
  font-size: 0.92rem;
}

.capability-card-light {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.capability-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 51, 161, 0.32), transparent 28%),
    linear-gradient(180deg, #041325 0%, #001428 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.capability-card-dark p,
.capability-card-dark .card-tag {
  color: rgba(255, 255, 255, 0.72);
}

.capability-card-accent {
  color: var(--white);
  background: linear-gradient(160deg, #0f49c9 0%, #022b86 45%, #001428 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.capability-card-accent p,
.capability-card-accent .card-tag {
  color: rgba(255, 255, 255, 0.8);
}

.metrics-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at right bottom, rgba(0, 51, 161, 0.45), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--deep-space);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.metrics-copy p,
.metrics-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  margin-bottom: 6px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

.process-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 252, 0.92)),
    var(--white);
}

.process-step {
  color: var(--urker-blue);
  font-size: 0.9rem;
}

.process-card h3 {
  font-size: 2rem;
}

.contact-section {
  padding: 0;
  background: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at right center, rgba(0, 51, 161, 0.48), transparent 22%),
    linear-gradient(180deg, #021121 0%, #001428 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.contact-copy .eyebrow,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--white);
  color: var(--deep-space);
}

.contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .hero-layout,
  .section-grid,
  .metrics-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --shell-width: min(100% - 24px, 1320px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    padding: 20px;
  }

  .hero-primary,
  .trajectory-card,
  .signal-card,
  .section-copy,
  .brandboard-card,
  .capability-card,
  .metrics-band,
  .process-card,
  .contact-panel {
    padding: 24px;
  }

  .hero-stats,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .brandboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-top: 16px;
  }

  .brand-logo {
    width: 138px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-primary h1,
  .section-copy h2,
  .section-heading h2,
  .metrics-copy h2,
  .contact-copy h2 {
    max-width: none;
    line-height: 0.98;
  }

  .trajectory-diagram {
    min-height: 190px;
  }

  .ring-large {
    width: 240px;
    height: 240px;
  }

  .ring-small {
    width: 124px;
    height: 124px;
  }

  .contact-email {
    width: 100%;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
