:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #112033;
  --muted: #5e6c80;
  --line: rgba(17, 32, 51, 0.1);
  --accent: #0a66c2;
  --accent-strong: #004182;
  --teal: #0f9d84;
  --gold: #f5b84d;
  --danger: #b42318;
  --success: #147d64;
  --shadow-soft: 0 18px 44px rgba(17, 32, 51, 0.08);
  --shadow-strong: 0 34px 90px rgba(17, 32, 51, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
  --scroll-progress: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(10, 102, 194, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(15, 157, 132, 0.12), transparent 20%),
    linear-gradient(180deg, #fdfefe 0%, #eef4fb 54%, #e7eef8 100%);
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 32, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 51, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 88%);
  pointer-events: none;
  z-index: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 40;
  pointer-events: none;
}

.scroll-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), #4ca8ff);
  box-shadow: 0 0 22px rgba(10, 102, 194, 0.3);
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: -5rem;
  left: -3rem;
  width: 20rem;
  height: 20rem;
  background: rgba(10, 102, 194, 0.16);
}

.ambient-two {
  right: -4rem;
  bottom: -7rem;
  width: 19rem;
  height: 19rem;
  background: rgba(245, 184, 77, 0.12);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.section {
  padding-top: 3rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition: background-color 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 32, 51, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #d8e8fb);
  box-shadow: inset 0 0 0 1px rgba(17, 32, 51, 0.06);
}

.brand-mark img {
  width: 1.7rem;
  height: 1.7rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.04;
}

.brand-copy strong,
.hero-copy-block h1,
.section-head h2,
.role-card h3,
.info-card h2,
.info-card h3,
.page-hero h1,
.site-footer strong {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

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

.brand-copy span,
.hero-copy-block p,
.page-copy,
.section-copy,
.info-copy,
.site-footer p,
.contact-form label,
.helper-text,
.faq-item p {
  color: var(--muted);
}

.brand-copy span {
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  color: var(--muted);
}

.nav-link.is-active {
  background: rgba(17, 32, 51, 0.06);
  color: var(--text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #3d95ed);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(10, 102, 194, 0.18);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle-line {
  display: inline-block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #3a92ea);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 102, 194, 0.18);
}

.button-secondary {
  background: rgba(17, 32, 51, 0.05);
  border-color: rgba(17, 32, 51, 0.09);
  color: var(--text);
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.eyebrow::before,
.section-kicker::before,
.card-label::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.hero-layout,
.support-grid,
.content-grid,
.stack-grid,
.steps-grid,
.values-grid {
  display: grid;
  gap: 1rem;
}

.hero {
  padding-top: 2.4rem;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.hero-copy-block,
.hero-panel,
.role-carousel,
.role-card,
.info-card,
.contact-form,
.faq-item,
.site-footer {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-copy-block {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.hero-copy-block h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 60ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions,
.card-action-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.hero-proof-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 32, 51, 0.05);
}

.hero-proof-card strong,
.role-count,
.metric-value {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.hero-proof-card strong {
  font-size: 1rem;
}

.hero-proof-card span,
.metric-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(245, 184, 77, 0.24), transparent 30%),
    linear-gradient(150deg, #071624 0%, #11314b 58%, #0f5b68 100%);
  color: #f5fbff;
}

.hero-panel p {
  margin: 0;
  color: rgba(245, 251, 255, 0.82);
  line-height: 1.7;
}

.hero-panel-list {
  display: grid;
  gap: 0.8rem;
}

.hero-panel-item {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel-item strong {
  font-size: 1rem;
}

.section-head {
  display: grid;
  gap: 0.65rem;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.section-copy,
.page-copy {
  margin: 0;
  line-height: 1.8;
}

.role-carousel {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.role-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.carousel-controls,
.role-pager {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.carousel-button,
.pager-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(17, 32, 51, 0.05);
  color: var(--text);
}

.carousel-button[disabled] {
  opacity: 0.35;
  cursor: default;
}

.carousel-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-track-viewport {
  overflow: hidden;
}

.role-track {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.2rem;
  transition: transform 0.32s ease;
  touch-action: pan-y;
  will-change: transform;
}

.role-card {
  flex: 0 0 100%;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.92));
}

.role-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.role-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.78rem;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.08);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.role-meta {
  display: grid;
  gap: 0.2rem;
  text-align: right;
}

.role-count {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.role-count-note {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.role-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.info-copy {
  margin: 0;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.pager-dot {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(17, 32, 51, 0.12);
}

.pager-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(10, 102, 194, 0.1);
}

.support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.content-grid,
.stack-grid,
.steps-grid,
.values-grid {
  margin-top: 1.25rem;
}

.content-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

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

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

.info-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.info-card h2,
.info-card h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.02;
}

.info-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.metric-chip {
  display: grid;
  gap: 0.2rem;
  min-width: 8.5rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.metric-value {
  font-size: 1.2rem;
}

.page-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(17, 32, 51, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(10, 102, 194, 0.4);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.08);
}

.helper-text {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
}

.faq-item[open] {
  border-color: rgba(10, 102, 194, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

.faq-item summary {
  position: relative;
  padding: 1.1rem 3.7rem 1.1rem 1.15rem;
  list-style: none;
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 1rem;
  height: 2px;
  background: var(--accent-strong);
  transform: translateY(-50%);
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::before {
  opacity: 0;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
}

.site-footer strong {
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.94rem;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(10, 102, 194, 0.34);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .nav-link:hover,
  .nav-cta:hover,
  .carousel-button:hover,
  .hero-copy-block:hover,
  .role-card:hover,
  .info-card:hover,
  .contact-form:hover,
  .faq-item:hover {
    transform: translateY(-3px);
  }

  .nav-link:hover {
    background: rgba(17, 32, 51, 0.05);
    color: var(--text);
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.55rem;
    padding: 0.8rem;
    border: 1px solid rgba(17, 32, 51, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  .hero-layout,
  .content-grid,
  .stack-grid,
  .steps-grid,
  .values-grid,
  .support-grid,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .role-carousel-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (min-width: 981px) {
  .site-nav {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .page-shell {
    width: min(calc(100% - 0.9rem), var(--max-width));
    padding-top: 0.8rem;
  }

  .site-header {
    border-radius: 26px;
  }

  .hero-copy-block,
  .hero-panel,
  .role-carousel,
  .role-card,
  .info-card,
  .contact-form,
  .page-hero,
  .site-footer {
    border-radius: 24px;
  }

  .hero-copy-block h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero-actions .button,
  .card-action-row .button,
  .footer-links,
  .site-footer {
    width: 100%;
  }

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

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

  .site-header,
  .site-nav,
  .button,
  .nav-link,
  .nav-cta,
  .carousel-button,
  .js .reveal {
    transition: none;
  }

  .role-track {
    transition: none;
  }

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