:root {
  --ink: #17324a;
  --ink-soft: #355c7a;
  --brand: #1384b3;
  --brand-strong: #1b4764;
  --brand-accent: #42b5e4;
  --brand-fog: rgba(19, 132, 179, 0.12);
  --surface: #ffffff;
  --surface-alt: #f4f9fc;
  --surface-deep: #edf5fb;
  --line: rgba(27, 71, 100, 0.14);
  --line-strong: rgba(19, 132, 179, 0.24);
  --success: #5dc38d;
  --warn: #f3c86d;
  --danger: #ea8c8c;
  --shadow-soft: 0 18px 40px rgba(23, 50, 74, 0.08);
  --shadow-strong: 0 26px 56px rgba(23, 50, 74, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --maxw: 1240px;
  --maxw-wide: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 560px at 88% -8%, rgba(66, 181, 228, 0.2), transparent 64%),
    radial-gradient(900px 520px at -12% 14%, rgba(19, 132, 179, 0.12), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 26%, #ffffff 58%),
    var(--surface);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p,
ul {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  z-index: 300;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 12px 0;
  padding: 0.8rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  left: 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-accent));
  z-index: 220;
  transition: width 120ms linear;
}

.container {
  width: min(var(--maxw), calc(100% - 2rem));
  margin-inline: auto;
}

.container-wide {
  width: min(var(--maxw-wide), calc(100% - 2rem));
  margin-inline: auto;
}

.hero-band {
  width: min(1520px, calc(100% - 4.5rem));
  max-width: none;
  margin-inline: auto;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
}

.eyebrow::after,
.badge::after {
  content: "";
  width: 38px;
  height: 1px;
  flex: 0 0 38px;
  background: linear-gradient(90deg, rgba(19, 132, 179, 0.92), rgba(66, 181, 228, 0.24));
}

.section {
  position: relative;
  padding: 6.4rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(237, 245, 251, 0.76), rgba(255, 255, 255, 0.66));
}

.section.tight {
  padding: 4.8rem 0;
}

.section-head {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 1.2vw + 1.6rem, 3rem);
  max-width: 16ch;
}

.section-head p {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(19, 132, 179, 0.12);
  box-shadow: 0 14px 36px rgba(23, 50, 74, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.brand img {
  width: clamp(104px, 8vw, 126px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(23, 50, 74, 0.12));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--brand);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 132, 179, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.18rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 2px solid rgba(66, 181, 228, 0.7);
  outline-offset: 2px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  box-shadow: 0 16px 34px rgba(19, 132, 179, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(19, 132, 179, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.button-tertiary {
  color: var(--brand);
  border-color: rgba(19, 132, 179, 0.18);
  background: rgba(19, 132, 179, 0.08);
}

.hero-home {
  position: relative;
  padding: 8.8rem 0 5.1rem;
  overflow: clip;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 2rem auto auto 0;
  width: min(52vw, 760px);
  height: min(52vw, 760px);
  background:
    radial-gradient(circle, rgba(66, 181, 228, 0.2) 0 1px, transparent 1px 100%);
  background-size: 16px 16px;
  opacity: 0.26;
  filter: blur(0.4px);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  width: min(1520px, calc(100% - 4.5rem));
  max-width: none;
  margin-inline: auto;
  padding: 1.4rem 0 0;
  isolation: isolate;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -3rem -5vw -3rem 24%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  background:
    repeating-radial-gradient(
      circle at 78% 50%,
      rgba(19, 132, 179, 0) 0 54px,
      rgba(19, 132, 179, 0.1) 54px 56px,
      rgba(19, 132, 179, 0) 56px 104px
    );
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0.78) 72%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.96) 16%, rgba(0, 0, 0, 0.96) 84%, transparent 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 2rem;
  align-items: start;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  padding-top: 1.4rem;
}

.hero-title {
  font-size: clamp(3.2rem, 4.6vw, 6rem);
  max-width: 10.6ch;
  line-height: 0.9;
}

.hero-title span {
  display: block;
}

.hero-highlight {
  color: var(--brand);
}

.hero-copy p {
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-media-stack {
  display: grid;
  gap: 1rem;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(19, 132, 179, 0.18);
  background:
    linear-gradient(180deg, rgba(9, 26, 40, 0.96), rgba(19, 46, 68, 0.92)),
    var(--brand-strong);
  box-shadow: var(--shadow-strong);
}

.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(7, 19, 29, 0.3), rgba(7, 19, 29, 0.4)),
    radial-gradient(circle at 50% 50%, rgba(66, 181, 228, 0.32), transparent 54%);
  text-align: center;
  transition: opacity 160ms ease;
}

.hero-video-placeholder.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-video-placeholder h3 {
  font-size: clamp(1.4rem, 1.3vw + 1rem, 2rem);
  max-width: 16ch;
  color: #fff;
}

.hero-video-placeholder p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
}

.play-badge {
  width: 72px;
  height: 72px;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 0 0 12px rgba(66, 181, 228, 0.12);
}

.benefit-panel {
  border-radius: 24px;
  border: 1px solid rgba(19, 132, 179, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.benefit-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.benefit-card {
  padding: 0.86rem;
  border-radius: 18px;
  border: 1px solid rgba(19, 132, 179, 0.16);
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.9), rgba(255, 255, 255, 0.98));
}

.benefit-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.benefit-card span {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 132, 179, 0.16);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
  color: var(--brand);
}

.stat-card span {
  color: var(--ink-soft);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.service-card,
.preview-card,
.value-card,
.faq-card,
.insight-card,
.case-card,
.career-card,
.contact-panel,
.contact-form,
.story-card,
.feature-card,
.profile-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-card,
.preview-card,
.value-card,
.faq-card,
.story-card,
.career-card {
  padding: 1.15rem;
}

.service-card:hover,
.preview-card:hover,
.case-card:hover,
.insight-card:hover,
.career-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(19, 132, 179, 0.28);
}

.service-card,
.preview-card,
.case-card,
.insight-card,
.career-card {
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.service-card h3,
.preview-card h3,
.value-card h3,
.faq-card h3,
.story-card h3,
.career-card h3,
.insight-card h3,
.case-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.78rem;
}

.service-card p,
.preview-card p,
.value-card p,
.faq-card p,
.story-card p,
.career-card p,
.insight-card p,
.case-card p,
.timeline-copy p,
.page-hero p,
.contact-panel p,
.contact-form p {
  color: var(--ink-soft);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 132, 179, 0.18);
  background: rgba(19, 132, 179, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.icon-tile {
  width: 44px;
  height: 44px;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(19, 132, 179, 0.12), rgba(66, 181, 228, 0.24));
  border: 1px solid rgba(19, 132, 179, 0.16);
  color: var(--brand);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-rail::before {
  content: "";
  position: absolute;
  inset: 46px 8% auto;
  border-top: 2px dashed rgba(19, 132, 179, 0.22);
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.step-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 0.8rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(19, 132, 179, 0.2);
}

.formula-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.formula-panel {
  padding: 1.25rem;
  border-radius: 28px;
  color: #fff;
  border: 1px solid rgba(66, 181, 228, 0.24);
  background: linear-gradient(155deg, rgba(17, 43, 61, 0.98), rgba(27, 71, 100, 0.96));
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 1rem;
}

.formula-main {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.formula-main small {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  opacity: 0.88;
}

.formula-main strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.86rem, 1.7rem);
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.formula-grid article {
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.formula-grid b {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-bottom: 0.1rem;
}

.formula-grid span,
.formula-panel p {
  color: rgba(255, 255, 255, 0.88);
}

.side-card {
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.plain-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
}

.plain-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  box-shadow: 0 0 0 4px rgba(19, 132, 179, 0.12);
}

.ccc-calculator {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.ccc-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1rem;
}

.ccc-input-panel {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(19, 132, 179, 0.14);
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.92), rgba(255, 255, 255, 0.98));
}

.ccc-input-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.ccc-field {
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(19, 132, 179, 0.14);
  background: #fff;
  display: grid;
  gap: 0.45rem;
}

.ccc-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.ccc-field label,
.ccc-target-row label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ccc-field output {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--brand);
  font-weight: 800;
}

.ccc-field input[type="number"],
.ccc-target-row input {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(19, 132, 179, 0.2);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.ccc-field input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.ccc-field small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.ccc-result {
  padding: 1rem;
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(66, 181, 228, 0.2);
  background: linear-gradient(155deg, rgba(17, 43, 61, 0.98), rgba(27, 71, 100, 0.96));
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 0.75rem;
}

.ccc-result small {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.86;
}

.ccc-result-value {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  line-height: 1;
}

.ccc-result-value span {
  color: #9ce5ff;
}

.ccc-result p {
  color: rgba(255, 255, 255, 0.88);
}

.ccc-gap {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.ccc-result[data-state="good"] .ccc-gap {
  border-color: rgba(93, 195, 141, 0.8);
  background: rgba(93, 195, 141, 0.16);
}

.ccc-result[data-state="warn"] .ccc-gap {
  border-color: rgba(243, 200, 109, 0.82);
  background: rgba(243, 200, 109, 0.12);
}

.ccc-result[data-state="alert"] .ccc-gap {
  border-color: rgba(234, 140, 140, 0.82);
  background: rgba(234, 140, 140, 0.14);
}

.page-main {
  padding-top: 7.2rem;
}

.page-hero {
  position: relative;
  padding: 1.3rem 0 0.4rem;
  isolation: isolate;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -2.5rem -4vw -2rem 38%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-radial-gradient(
      circle at 82% 50%,
      rgba(19, 132, 179, 0) 0 48px,
      rgba(19, 132, 179, 0.09) 48px 50px,
      rgba(19, 132, 179, 0) 50px 92px
    );
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.88) 18%, rgba(0, 0, 0, 0.7) 74%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.96) 18%, rgba(0, 0, 0, 0.96) 84%, transparent 100%);
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: center;
  z-index: 1;
}

.page-hero h1 {
  margin-top: 0.9rem;
  margin-bottom: 1.3rem;
  font-size: clamp(2.5rem, 3vw + 1rem, 4.6rem);
  max-width: 11ch;
  line-height: 0.92;
}

.page-hero p {
  margin-top: 0;
  max-width: 62ch;
  font-size: 1.08rem;
}

.profile-card h2,
.contact-panel h2,
.contact-form h2,
.opening-card h2,
.feature-content h2,
.feature-content h3,
.cta-banner h2,
.timeline-copy h3 {
  margin-bottom: 0.95rem;
}

.page-side-panel {
  padding: 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(19, 132, 179, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.8rem;
}

.page-side-panel strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2.2rem);
  color: var(--brand);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.profile-image {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.profile-card {
  padding: 1.4rem;
}

.profile-card p + p {
  margin-top: 0.9rem;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(19, 132, 179, 0.12);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--brand);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-tile {
  min-height: 90px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(19, 132, 179, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}

.logo-tile img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

.case-card {
  overflow: hidden;
}

.case-media {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(23, 50, 74, 0.08), rgba(23, 50, 74, 0.12)),
    var(--surface-deep);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.case-media img,
.insight-media img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content,
.insight-content,
.feature-content {
  padding: 1.15rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.case-meta span {
  display: inline-flex;
  min-height: 30px;
  padding: 0.12rem 0.6rem;
  align-items: center;
  border-radius: 999px;
  background: rgba(19, 132, 179, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.case-outline {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.case-outline div {
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(19, 132, 179, 0.12);
  background: rgba(244, 249, 252, 0.78);
}

.case-outline strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
}

.feature-media {
  min-height: 100%;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.glossary-item {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.glossary-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.career-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.opening-card {
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(19, 132, 179, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.9));
  box-shadow: var(--shadow-soft);
}

.opening-card ul,
.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-panel,
.contact-form {
  padding: 1.2rem;
}

.contact-list li strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.74;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(19, 132, 179, 0.16);
  background: rgba(244, 249, 252, 0.68);
  color: var(--ink);
}

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

.field input:focus,
.field textarea:focus,
.ccc-field input:focus,
.ccc-target-row input:focus {
  outline: 2px solid rgba(66, 181, 228, 0.54);
  outline-offset: 2px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.form-status {
  min-height: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

.cta-banner {
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(66, 181, 228, 0.16);
  background:
    radial-gradient(460px 220px at 0% 0%, rgba(66, 181, 228, 0.16), transparent 60%),
    linear-gradient(155deg, rgba(17, 43, 61, 0.98), rgba(27, 71, 100, 0.96));
  color: #fff;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 60ch;
}

.site-footer {
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(19, 132, 179, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-links a {
  min-height: 34px;
  padding: 0.18rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 132, 179, 0.18);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
}

.source-note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.source-note a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .formula-layout,
  .profile-grid,
  .career-layout,
  .contact-layout,
  .ccc-grid,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding: 1rem 0 0;
  }

  .hero-shell::before {
    inset: -2.4rem -10vw -2rem 18%;
    opacity: 0.58;
  }

  .page-hero::before {
    inset: -2rem -8vw -1.6rem 22%;
    opacity: 0.42;
  }

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

  .stats-ribbon,
  .grid-3,
  .glossary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-rail::before {
    display: none;
  }

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

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 8px) 1rem auto 1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(19, 132, 179, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .nav-links a,
  .main-nav .button {
    width: 100%;
  }

  .hero-home {
    padding-top: 7.6rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 720px) {
  .container,
  .container-wide,
  .hero-band {
    width: min(var(--maxw), calc(100% - 1.2rem));
  }

  .section {
    padding: 4.4rem 0;
  }

  .hero-shell,
  .page-hero,
  .contact-panel,
  .contact-form,
  .formula-panel,
  .side-card,
  .ccc-calculator,
  .opening-card,
  .profile-card {
    padding: 1rem;
  }

  .hero-shell,
  .page-hero {
    padding-inline: 0;
    padding-top: 0.8rem;
  }

  .hero-shell::before,
  .page-hero::before {
    inset: -1.4rem -28vw -1rem 8%;
    opacity: 0.28;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 11vw, 4.4rem);
  }

  .benefit-grid,
  .stats-ribbon,
  .grid-2,
  .grid-3,
  .grid-4,
  .glossary-grid,
  .ccc-input-grid,
  .formula-grid,
  .field-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 1.15rem;
  }

  .hero-actions .button,
  .cta-banner .button {
    width: 100%;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
