/*
Theme Name: Nest Recruitment
Theme URI: https://nest-recruitment.com/
Author: Nest Recruitment
Description: Theme premium et moderne pour Nest Recruitment.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: nest-recruitment
*/

:root {
  --nest-primary: #091828;
  --nest-electric: #0D5EA8;
  --nest-sky: #7DC8F5;
  --nest-steel: #8BAFC4;
  --nest-fog: #EDF2F7;
  --nest-white: #ffffff;
  --nest-bg: #F7F9FB;
  --nest-gold: #C09252;
  --nest-gold-pale: rgba(192, 146, 82, 0.10);
  --nest-cta-gradient: linear-gradient(120deg, var(--nest-electric), #2e89dd);
  --nest-cta-gradient-hover: linear-gradient(120deg, #1a6bc5, var(--nest-electric));
  --nest-cta-shadow: 0 14px 34px rgba(1, 93, 177, 0.3);
  --nest-surface-border: rgba(13, 94, 168, 0.12);
  --nest-surface-shadow: 0 16px 36px rgba(9, 24, 40, 0.1);
  --nest-shadow: 0 20px 60px rgba(9, 24, 40, 0.11);
  --nest-shadow-lg: 0 40px 90px rgba(9, 24, 40, 0.17);
  --nest-radius-xl: 24px;
  --nest-radius-lg: 16px;
  --nest-radius-md: 10px;
  --nest-container: 1200px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--nest-primary);
  background: var(--nest-bg);
  line-height: 1.65;
}

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

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus {
  background-color: var(--nest-white);
  clip: auto;
  clip-path: none;
  color: var(--nest-primary);
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 12px 14px;
  text-decoration: none;
  top: 8px;
  width: auto;
  z-index: 100000;
}

.nest-container {
  width: min(var(--nest-container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(-112%);
}

.site-header__inner {
  background: rgba(17, 41, 68, 0.5);
  border: 1px solid rgba(239, 243, 246, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(17, 41, 68, 0.26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 24px;
}

.site-header.is-scrolled .site-header__inner,
.site-header.is-compact .site-header__inner {
  background: rgba(247, 250, 253, 0.95);
  border-color: rgba(17, 41, 68, 0.08);
  box-shadow: 0 14px 38px rgba(17, 41, 68, 0.17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 155px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  position: relative;
}

.brand__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand__logo--dark {
  opacity: 0;
  transform: scale(0.9);
}

.site-header.is-scrolled .brand__logo--dark {
  opacity: 1;
  transform: scale(1);
}

.site-header.is-scrolled .brand__logo--light {
  opacity: 0;
  transform: scale(0.9);
}

.brand__name {
  font-family: var(--font-title);
  letter-spacing: 0.11em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--nest-fog);
}

.site-header.is-scrolled .brand__name {
  color: var(--nest-primary);
}

.menu-toggle {
  appearance: none;
  border: 1px solid rgba(239, 243, 246, 0.16);
  background: rgba(13, 94, 168, 0.18);
  color: var(--nest-fog);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(17, 41, 68, 0.16);
  background: rgba(13, 94, 168, 0.1);
  color: var(--nest-primary);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(130, 204, 250, 0.16);
  border-color: rgba(130, 204, 250, 0.55);
  outline: none;
}

.menu-toggle__icon {
  width: 20px;
  height: 15px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle__bar {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--nest-fog);
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled .main-navigation a {
  color: var(--nest-primary);
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
  background: rgba(130, 204, 250, 0.22);
  color: var(--nest-white);
  transform: translateY(-1px);
  outline: none;
}

.site-header.is-scrolled .main-navigation a:hover,
.site-header.is-scrolled .main-navigation a:focus-visible {
  color: var(--nest-primary);
}

.main-navigation .menu-item-has-cta>a {
  background: linear-gradient(120deg, var(--nest-electric), #2d85d8);
  color: var(--nest-white);
  font-weight: 700;
  padding-inline: 18px;
}

.main-navigation .menu>li:last-child>a {
  background: linear-gradient(120deg, var(--nest-electric), #2d85d8);
  color: var(--nest-white);
  font-weight: 700;
  padding-inline: 18px;
}

.main-navigation .menu-item-has-cta>a:hover,
.main-navigation .menu-item-has-cta>a:focus-visible {
  background: linear-gradient(120deg, #1a6bc5, var(--nest-electric));
  color: var(--nest-white);
}

.main-navigation .menu>li:last-child>a:hover,
.main-navigation .menu>li:last-child>a:focus-visible {
  background: linear-gradient(120deg, #1a6bc5, var(--nest-electric));
  color: var(--nest-white);
}

.main-content {
  overflow: clip;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: clamp(140px, 16vh, 190px) 0 90px;
  color: var(--nest-white);
  background:
    radial-gradient(ellipse 55% 45% at 8% 18%, rgba(192, 146, 82, 0.09) 0%, transparent 100%),
    radial-gradient(circle at 92% 78%, rgba(13, 94, 168, 0.52) 0%, transparent 42%),
    linear-gradient(138deg, #040E1C 0%, #081B35 42%, #0D3669 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(17, 41, 68, 0.65), rgba(17, 41, 68, 0.1)),
    repeating-linear-gradient(135deg,
      rgba(239, 243, 246, 0.03) 0,
      rgba(239, 243, 246, 0.03) 1px,
      transparent 1px,
      transparent 13px);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
  animation: floatOrb 15s ease-in-out infinite;
  translate: 0 var(--parallax-y, 0px);
}

.hero__orb--two {
  width: 300px;
  height: 300px;
  bottom: 4%;
  right: -90px;
  animation-delay: -4s;
  background: radial-gradient(circle at 50% 45%, rgba(1, 93, 177, 0.7) 0%, rgba(130, 204, 250, 0.2) 72%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 10px 12px 0;
  transform-origin: top center;
}

.hero__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
}

.hero__content {
  max-width: 840px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--nest-gold);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--nest-gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-title);
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 7.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.hero__description {
  margin-top: 22px;
  margin-bottom: 0;
  max-width: 65ch;
  color: rgba(239, 243, 246, 0.9);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button--primary {
  background: var(--nest-cta-gradient);
  color: var(--nest-white);
  box-shadow: var(--nest-cta-shadow);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--nest-cta-gradient-hover);
}

.button--ghost {
  border: 1px solid rgba(239, 243, 246, 0.46);
  color: var(--nest-white);
  background: rgba(239, 243, 246, 0.08);
}

.hero__chips {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__chip {
  border-radius: 4px;
  border: 1px solid rgba(192, 146, 82, 0.28);
  background: rgba(192, 146, 82, 0.07);
  color: rgba(237, 242, 247, 0.75);
  padding: 9px 15px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__insight {
  border-radius: 26px;
  border: 1px solid rgba(239, 243, 246, 0.2);
  background: linear-gradient(145deg, rgba(17, 41, 68, 0.46) 0%, rgba(130, 204, 250, 0.14) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 54px rgba(1, 18, 39, 0.34);
  overflow: hidden;
}

.hero__insight-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hero__insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 19%;
  transform: scale(1);
}

.hero__insight-body {
  padding: 20px;
}

.hero__insight-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nest-sky);
}

.hero__insight-title {
  margin: 10px 0 0;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.18;
}

.hero__insight-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero__insight-list li {
  border-radius: 999px;
  border: 1px solid rgba(239, 243, 246, 0.28);
  background: rgba(3, 21, 45, 0.38);
  color: rgba(239, 243, 246, 0.94);
  padding: 9px 14px;
  font-size: 0.9rem;
}

/* ── Presence triptych ────────────────────────────────── */

.section__description--light {
  margin-top: 12px;
  color: rgba(239, 243, 246, 0.72);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  max-width: 560px;
}

.presence-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(130, 204, 250, 0.18) 0%, rgba(130, 204, 250, 0) 38%),
    radial-gradient(circle at 86% 86%, rgba(192, 146, 82, 0.1) 0%, rgba(192, 146, 82, 0) 36%),
    linear-gradient(160deg, #ffffff 0%, #f5f9fd 100%);
}

.presence-section.section--dark {
  color: var(--nest-primary);
}

.presence-section .section__title {
  color: var(--nest-primary);
}

.presence-section .section__description--light {
  color: rgba(17, 41, 68, 0.78);
}

.presence-triptych {
  margin-top: 48px;
  display: flex;
  gap: 0;
  height: clamp(380px, 46vw, 560px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 42px rgba(4, 16, 32, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.presence-panel {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  min-width: 0;
  contain: layout paint;
  will-change: flex-grow;
  transition: flex-grow 0.38s cubic-bezier(0.25, 1, 0.5, 1);
}

.presence-panel:hover,
.presence-panel:focus-visible,
.presence-panel.is-touch-open {
  flex-grow: 2.1;
}

/* Photo background */
.presence-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.001);
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  filter: brightness(1.08) saturate(1.05);
}

.presence-panel:hover .presence-panel__bg,
.presence-panel:focus-visible .presence-panel__bg,
.presence-panel.is-touch-open .presence-panel__bg {
  transform: scale(1.028);
}

.presence-panel--paris .presence-panel__bg {
  background-image:
    linear-gradient(160deg, rgba(5, 18, 38, 0.46) 0%, rgba(5, 18, 38, 0.14) 100%),
    url("assets/city/paris.jpg");
  background-position: center center, center 46%;
  background-size: cover, cover;
}

.presence-panel--lyon .presence-panel__bg {
  background-image:
    linear-gradient(160deg, rgba(5, 18, 38, 0.46) 0%, rgba(5, 18, 38, 0.14) 100%),
    url("assets/city/lyon.jpg");
  background-position: center center, center 58%;
  background-size: cover, cover;
}

.presence-panel--marseille .presence-panel__bg {
  background-image:
    linear-gradient(160deg, rgba(5, 18, 38, 0.46) 0%, rgba(5, 18, 38, 0.14) 100%),
    url("assets/city/marseille.jpg");
  background-position: center center, center 48%;
  background-size: cover, cover;
}

/* Gradient overlay — darkens bottom for readability */
.presence-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(4, 14, 32, 0.5) 0%,
      rgba(4, 14, 32, 0.18) 44%,
      rgba(4, 14, 32, 0.02) 100%);
  pointer-events: none;
}

/* Gold top line — expands on hover */
.presence-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, var(--nest-gold), rgba(192, 146, 82, 0.4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s ease;
}

.presence-panel:hover::after,
.presence-panel:focus-visible::after,
.presence-panel.is-touch-open::after {
  transform: scaleX(1);
}

/* Inner content — pinned to bottom */
.presence-panel__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

/* Number */
.presence-panel__num {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.02em;
  transition: color 0.28s ease;
}

.presence-panel:hover .presence-panel__num,
.presence-panel:focus-visible .presence-panel__num,
.presence-panel.is-touch-open .presence-panel__num {
  color: var(--nest-gold);
}

/* Body */
.presence-panel__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.presence-panel__city {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--nest-white);
  white-space: nowrap;
  text-shadow: 0 4px 16px rgba(4, 14, 32, 0.6);
}

.presence-panel__desc {
  margin: 0;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.58;
  color: rgba(239, 243, 246, 0.82);
  max-width: 28ch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.26s ease 0.06s, transform 0.26s ease 0.06s;
}

.presence-panel:hover .presence-panel__desc,
.presence-panel:focus-visible .presence-panel__desc,
.presence-panel.is-touch-open .presence-panel__desc {
  opacity: 1;
  transform: translateY(0);
}

.presence-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.26s ease 0.1s, transform 0.26s ease 0.1s;
}

.presence-panel:hover .presence-panel__tags,
.presence-panel:focus-visible .presence-panel__tags,
.presence-panel.is-touch-open .presence-panel__tags {
  opacity: 1;
  transform: translateY(0);
}

.presence-panel__tags span {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(192, 146, 82, 0.45);
  color: var(--nest-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(192, 146, 82, 0.08);
}

.premium-gateway {
  padding-top: clamp(62px, 7.5vw, 112px);
  padding-bottom: clamp(74px, 8.4vw, 122px);
  background:
    radial-gradient(circle at 12% 18%, rgba(134, 206, 248, 0.2) 0%, transparent 38%),
    radial-gradient(circle at 86% 84%, rgba(13, 94, 168, 0.16) 0%, transparent 34%),
    linear-gradient(165deg, #f4f8fe 0%, #eaf1fb 100%);
}

.premium-gateway__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
  align-items: stretch;
}

.premium-gateway-card {
  position: relative;
  border-radius: 34px;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(14, 45, 76, 0.18);
  box-shadow: 0 26px 56px rgba(8, 30, 53, 0.15);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.8vw, 22px);
  height: 100%;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.premium-gateway-card::before {
  content: "";
  position: absolute;
  inset: auto -38px -44px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.75;
  filter: blur(1px);
}

.premium-gateway-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: linear-gradient(90deg, transparent 0%, rgba(125, 200, 245, 0.92) 52%, transparent 100%);
  pointer-events: none;
}

.premium-gateway-card--recruiter {
  color: var(--nest-white);
  background:
    radial-gradient(circle at 94% 14%, rgba(125, 200, 245, 0.24) 0%, transparent 46%),
    linear-gradient(152deg, #06172d 0%, #0a2f57 52%, #0f63ad 100%);
  border-color: rgba(219, 237, 255, 0.24);
}

.premium-gateway-card--recruiter::before {
  background: radial-gradient(circle, rgba(125, 200, 245, 0.34) 0%, transparent 72%);
}

.premium-gateway-card--candidate {
  color: #0d2743;
  background:
    radial-gradient(circle at 96% 12%, rgba(13, 94, 168, 0.14) 0%, transparent 48%),
    linear-gradient(162deg, #f9fcff 0%, #edf4fd 100%);
  border-color: rgba(13, 94, 168, 0.22);
}

.premium-gateway-card--candidate::before {
  background: radial-gradient(circle, rgba(13, 94, 168, 0.24) 0%, transparent 74%);
}

.premium-gateway-card__tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-gateway-card--recruiter .premium-gateway-card__tag {
  border: 1px solid rgba(140, 211, 252, 0.58);
  background: rgba(124, 199, 244, 0.16);
  color: #def2ff;
}

.premium-gateway-card--candidate .premium-gateway-card__tag {
  border: 1px solid rgba(13, 94, 168, 0.25);
  background: rgba(13, 94, 168, 0.08);
  color: #1b5188;
}

.premium-gateway-card__title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.028em;
  max-width: 11.5ch;
}

.premium-gateway-card__lead {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.52;
  letter-spacing: 0.01em;
}

.premium-gateway-card--recruiter .premium-gateway-card__lead {
  color: rgba(236, 245, 255, 0.88);
}

.premium-gateway-card--candidate .premium-gateway-card__lead {
  color: rgba(13, 39, 67, 0.82);
}

.premium-gateway-card__list {
  margin: 0;
  padding: 6px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.premium-gateway-card__list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.premium-gateway-card__icon {
  margin-top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}

.premium-gateway-card__icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-gateway-card--recruiter .premium-gateway-card__list li {
  color: rgba(245, 250, 255, 0.95);
}

.premium-gateway-card--candidate .premium-gateway-card__list li {
  color: rgba(12, 37, 63, 0.88);
}

.premium-gateway-card--recruiter .premium-gateway-card__icon {
  color: #8fd1fb;
  border-color: rgba(143, 209, 251, 0.55);
  background: rgba(137, 201, 247, 0.15);
}

.premium-gateway-card--candidate .premium-gateway-card__icon {
  color: #0d5ea8;
  border-color: rgba(13, 94, 168, 0.3);
  background: rgba(13, 94, 168, 0.08);
}

.premium-gateway-card__cta {
  margin-top: clamp(6px, 1.2vw, 12px);
  width: fit-content;
  min-height: 62px;
  padding: 13px 28px;
  border-radius: 16px;
  font-size: clamp(1.04rem, 1.2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(9, 24, 40, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.premium-gateway-card__cta span:last-child {
  font-size: 1.4rem;
  line-height: 1;
}

.premium-gateway-card__cta--light {
  color: #173f6e;
  background: linear-gradient(145deg, #f6faff 0%, #e5effc 100%);
  border: 1px solid rgba(125, 200, 245, 0.58);
}

.premium-gateway-card__cta--dark {
  color: var(--nest-white);
  background: linear-gradient(145deg, #0d5ea8 0%, #1f78cb 100%);
  border: 1px solid rgba(13, 94, 168, 0.92);
}

.premium-gateway-card:hover,
.premium-gateway-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 34px 70px rgba(8, 29, 52, 0.2);
}

.premium-gateway-card__cta:hover,
.premium-gateway-card__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(9, 24, 40, 0.26);
  outline: none;
}

.premium-gateway-card__cta--light:hover,
.premium-gateway-card__cta--light:focus-visible {
  background: linear-gradient(145deg, #ffffff 0%, #edf4ff 100%);
}

.premium-gateway-card__cta--dark:hover,
.premium-gateway-card__cta--dark:focus-visible {
  background: linear-gradient(145deg, #0b578f 0%, #166ab3 100%);
}

.section.about-story-lead {
  padding-top: clamp(62px, 7vw, 104px);
  padding-bottom: clamp(36px, 4.8vw, 62px);
}

.about-story-lead__grid {
  display: grid;
  gap: clamp(12px, 1.8vw, 24px);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.about-story-lead__media {
  margin: 0;
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(175, 193, 207, 0.45);
  box-shadow: 0 24px 48px rgba(9, 24, 40, 0.16);
  isolation: isolate;
}

.about-story-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 24, 40, 0.08) 0%, rgba(9, 24, 40, 0.68) 100%),
    radial-gradient(circle at 12% 14%, rgba(130, 204, 250, 0.24) 0%, transparent 40%);
  pointer-events: none;
}

.about-story-lead__media--manifest::after {
  background:
    linear-gradient(180deg, rgba(9, 24, 40, 0.04) 0%, rgba(9, 24, 40, 0.38) 100%),
    radial-gradient(circle at 12% 14%, rgba(130, 204, 250, 0.14) 0%, transparent 44%);
}

.about-story-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.94) contrast(1.03);
}

.about-story-lead__media--manifest img {
  opacity: 0.62;
  filter: saturate(0.8) contrast(0.94) brightness(1.08);
}

.about-story-lead__media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(239, 243, 246, 0.96);
  background: rgba(9, 24, 40, 0.62);
  border: 1px solid rgba(239, 243, 246, 0.18);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.section.about-values {
  position: relative;
  overflow: hidden;
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(66px, 8vw, 104px);
}

.about-values::before {
  content: "";
  position: absolute;
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  border-radius: 999px;
  right: max(-6vw, -90px);
  top: -120px;
  background: radial-gradient(circle, rgba(130, 204, 250, 0.22) 0%, rgba(130, 204, 250, 0) 72%);
  filter: blur(1px);
  pointer-events: none;
}

.about-values::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 44%),
    repeating-linear-gradient(140deg,
      rgba(17, 41, 68, 0.015) 0,
      rgba(17, 41, 68, 0.015) 1px,
      transparent 1px,
      transparent 16px);
  pointer-events: none;
}

.about-values__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-values__head {
  max-width: none;
}

.about-values__head .section__description {
  max-width: 44ch;
}

.about-values__grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  position: relative;
  z-index: 1;
  counter-reset: value-counter;
}

.value-card {
  --value-accent: #1f7bc9;
  --value-accent-rgb: 31, 123, 201;
  counter-increment: value-counter;
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  border: 1px solid rgba(17, 41, 68, 0.09);
  background:
    linear-gradient(155deg, #ffffff 0%, rgba(235, 242, 250, 0.9) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45));
  box-shadow: 0 16px 32px rgba(9, 24, 40, 0.08);
  padding: 24px 24px 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.value-card::before {
  content: var(--value-mark, "✨");
  position: absolute;
  right: 6px;
  bottom: -28px;
  top: auto;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 8.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(var(--value-accent-rgb), 0.055);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--nest-gold) 0%, rgba(var(--value-accent-rgb), 0.4) 55%, transparent 100%);
  opacity: 0.75;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-card.is-visible::after {
  clip-path: inset(0 0% 0 0);
  transition-delay: calc(var(--reveal-delay, 0s) + 0.12s);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(17, 41, 68, 0.16);
  border-color: rgba(var(--value-accent-rgb), 0.52);
}

.value-card:hover::before {
  color: rgba(var(--value-accent-rgb), 0.1);
  transform: translateY(-10px);
}

.value-card__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 41, 68, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-card__eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: rgba(var(--value-accent-rgb), 0.58);
}

.value-card__icon {
  margin-top: 16px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--value-accent-rgb), 0.24) 0%, rgba(var(--value-accent-rgb), 0.9) 100%);
  color: var(--nest-white);
  box-shadow: 0 14px 22px rgba(17, 41, 68, 0.22);
  position: relative;
}

.value-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(var(--value-accent-rgb), 0.45);
  opacity: 0.38;
  animation: valueRing 3.2s ease-out infinite;
}

.value-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 16px 0 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.16;
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
}

.value-card>p:not(.value-card__eyebrow) {
  margin: 12px 0 0;
  color: rgba(17, 41, 68, 0.82);
  line-height: 1.62;
}

.value-card:hover .value-card__eyebrow {
  color: rgba(var(--value-accent-rgb), 0.78);
}

.value-card--human {
  --value-accent: #1a6fbf;
  --value-accent-rgb: 26, 111, 191;
  --value-mark: "🧠";
}

.value-card--collective {
  --value-accent: #0f8bcf;
  --value-accent-rgb: 15, 139, 207;
  --value-mark: "🤝";
}

.value-card--transparency {
  --value-accent: #2f95d6;
  --value-accent-rgb: 47, 149, 214;
  --value-mark: "👁️";
}

.about-story__head {
  max-width: 820px;
}

.about-story__card {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid rgba(175, 193, 207, 0.36);
  background:
    radial-gradient(120% 160% at 96% 2%, rgba(130, 204, 250, 0.24) 0%, rgba(130, 204, 250, 0) 56%),
    radial-gradient(110% 120% at 8% 88%, rgba(192, 146, 82, 0.14) 0%, rgba(192, 146, 82, 0) 54%),
    linear-gradient(152deg, rgba(8, 24, 43, 0.99) 0%, rgba(8, 75, 144, 0.93) 100%);
  box-shadow:
    0 30px 62px rgba(9, 24, 40, 0.28),
    inset 0 1px 0 rgba(239, 243, 246, 0.18);
  padding: clamp(20px, 2.2vw, 30px);
  position: relative;
  overflow: hidden;
}

.about-story__card .about-story__eyebrow {
  margin: 0 0 8px;
  color: rgba(130, 204, 250, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.about-story__title {
  margin: 0 0 16px;
  font-family: var(--font-title);
  color: var(--nest-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.08;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.about-story__content {
  display: grid;
  gap: 12px;
}

.about-story__content p {
  margin: 0;
  color: rgba(239, 243, 246, 0.94);
  line-height: 1.62;
  font-size: clamp(0.95rem, 1.15vw, 1.02rem);
  max-width: none;
}

.about-story__points-wrap {
  margin-top: 2px;
  border-radius: 16px;
  border: 1px solid rgba(175, 204, 228, 0.3);
  background: linear-gradient(160deg, rgba(2, 24, 46, 0.42) 0%, rgba(2, 24, 46, 0.24) 100%);
  box-shadow: inset 0 1px 0 rgba(239, 243, 246, 0.09);
  padding: 14px 14px 12px;
}

.about-story__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.about-story__points li {
  position: relative;
  padding-left: 18px;
  color: rgba(239, 243, 246, 0.94);
  line-height: 1.45;
  font-size: 0.91rem;
}

.about-story__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #e8c87a 48%, var(--nest-gold) 100%);
}

.about-story__highlight {
  margin-top: auto;
  margin-bottom: 2px;
  border-radius: 18px;
  border: 1px solid rgba(192, 146, 82, 0.38);
  background: linear-gradient(165deg, rgba(192, 146, 82, 0.12) 0%, rgba(192, 146, 82, 0.03) 100%);
  padding: 14px 14px 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.about-story__highlight-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 6px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #e8c87a 48%, var(--nest-gold) 100%);
  box-shadow: 0 0 0 0 rgba(192, 146, 82, 0.55);
  animation: storyDotPulse 2.4s ease-out infinite;
}

.about-story__highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  line-height: 1.54;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  letter-spacing: 0.01em;
}

.pillars-grid {
  margin-top: 34px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.pillar-card {
  grid-column: span 6;
  border-radius: var(--nest-radius-lg);
  border: 1px solid rgba(17, 41, 68, 0.08);
  background: rgba(239, 243, 246, 0.82);
  box-shadow: 0 14px 28px rgba(17, 41, 68, 0.08);
  padding: 24px;
}

.pillar-card h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 12px 0 0;
  color: rgba(17, 41, 68, 0.78);
}

.section {
  padding: clamp(78px, 9vw, 120px) 0;
}

.section--light {
  background: linear-gradient(170deg, #ffffff 0%, #EAF1F9 100%);
}

.section--soft {
  background: linear-gradient(170deg, #EDF3F9 0%, #E0EAF5 100%);
}

.section__head {
  max-width: 760px;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nest-gold);
  margin: 0 0 14px;
}

.section__eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--nest-gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.section__title {
  margin: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
}

.section__description {
  margin: 18px 0 0;
  color: rgba(17, 41, 68, 0.8);
  font-size: 1.05rem;
}

.service-grid {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}

.service-card {
  grid-column: span 6;
  padding: 30px;
  border-radius: var(--nest-radius-xl);
  background: rgba(239, 243, 246, 0.78);
  border: 1px solid rgba(17, 41, 68, 0.08);
  box-shadow: var(--nest-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -76px;
  top: -80px;
  background: radial-gradient(circle, rgba(130, 204, 250, 0.56) 0%, transparent 68%);
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 58px rgba(17, 41, 68, 0.16);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--nest-electric), #1f76ca);
  color: var(--nest-white);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-card__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.service-card__text {
  margin: 12px 0 0;
  color: rgba(17, 41, 68, 0.84);
}

.service-card--link {
  display: flex;
  flex-direction: column;
}

.service-card__link {
  margin-top: 24px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nest-white);
  background: linear-gradient(120deg, var(--nest-primary), var(--nest-electric));
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(1, 93, 177, 0.26);
  filter: brightness(1.06);
  outline: none;
}

.process-strip {
  margin-top: 34px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.process-step {
  grid-column: span 3;
  border-radius: var(--nest-radius-lg);
  border: 1px solid rgba(17, 41, 68, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(17, 41, 68, 0.08);
  padding: 22px;
}

.process-step__num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--nest-white);
  background: linear-gradient(120deg, var(--nest-primary), var(--nest-electric));
}

.process-step h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.process-step p {
  margin: 9px 0 0;
  color: rgba(17, 41, 68, 0.78);
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card li {
  position: relative;
  padding-left: 22px;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nest-electric);
  position: absolute;
  left: 0;
  top: 0.56em;
}

.identity {
  margin-top: 44px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(12, 1fr);
}

.identity__panel {
  grid-column: span 7;
  padding: 34px;
  border-radius: var(--nest-radius-xl);
  background: linear-gradient(140deg, rgba(17, 41, 68, 0.98) 0%, rgba(1, 93, 177, 0.92) 82%);
  color: var(--nest-fog);
  position: relative;
  overflow: hidden;
}

.identity__panel::after {
  content: "";
  position: absolute;
  inset: auto -110px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 204, 250, 0.46) 0%, transparent 68%);
}

.identity__panel h3 {
  margin-top: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}

.identity__panel p {
  margin-bottom: 0;
  max-width: 56ch;
  color: rgba(239, 243, 246, 0.95);
}

.identity__values {
  grid-column: span 5;
  border-radius: var(--nest-radius-xl);
  background: rgba(239, 243, 246, 0.88);
  border: 1px solid rgba(17, 41, 68, 0.08);
  box-shadow: var(--nest-shadow);
  padding: 32px;
}

.values-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.values-list li {
  background: var(--nest-white);
  border-radius: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(17, 41, 68, 0.08);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.timeline {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline__step {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(130, 204, 250, 0.22);
  color: var(--nest-primary);
  font-family: var(--font-title);
  font-size: 1.12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 41, 68, 0.08);
}

.timeline__item h4 {
  margin: 5px 0 4px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline__item p {
  margin: 0;
  color: rgba(17, 41, 68, 0.78);
}

.founder-premium {
  position: relative;
  overflow: hidden;
  color: var(--nest-white);
  background:
    radial-gradient(circle at 12% 10%, rgba(130, 204, 250, 0.14) 0%, rgba(130, 204, 250, 0) 46%),
    radial-gradient(circle at 88% 88%, rgba(192, 146, 82, 0.11) 0%, rgba(192, 146, 82, 0) 42%),
    linear-gradient(142deg, #031120 0%, #082241 46%, #0a2e54 100%);
}

.founder-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(239, 243, 246, 0.08) 0%, rgba(239, 243, 246, 0) 36%),
    repeating-linear-gradient(138deg,
      rgba(239, 243, 246, 0.025) 0,
      rgba(239, 243, 246, 0.025) 1px,
      transparent 1px,
      transparent 18px);
}

.founder-premium .nest-container {
  position: relative;
  z-index: 1;
}

.founder-premium__head {
  margin-bottom: clamp(18px, 2.8vw, 32px);
  max-width: 860px;
}

.founder-premium__head .section__title {
  color: var(--nest-white);
  line-height: 1.04;
}

.founder-premium__head .section__description {
  max-width: 58ch;
  color: rgba(239, 243, 246, 0.83);
}

.founder-premium__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 clamp(20px, 2.6vw, 32px);
}

.founder-premium__signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(175, 204, 228, 0.24);
  background: rgba(11, 41, 68, 0.52);
  color: rgba(239, 243, 246, 0.94);
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.founder-premium__signals span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--nest-gold) 0%, #d5aa72 100%);
}

.founder-premium__grid {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  grid-template-columns: 1fr;
  align-items: stretch;
}

.founder-card {
  --founder-accent: #82cbff;
  --founder-accent-soft: rgba(130, 203, 255, 0.18);
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(164, 210, 245, 0.46);
  background:
    radial-gradient(120% 140% at 16% 6%, rgba(130, 204, 250, 0.28) 0%, rgba(130, 204, 250, 0) 48%),
    radial-gradient(105% 125% at 96% 84%, rgba(9, 94, 168, 0.32) 0%, rgba(9, 94, 168, 0) 50%),
    linear-gradient(156deg, rgba(4, 18, 35, 0.98) 0%, rgba(6, 34, 63, 0.96) 46%, rgba(7, 44, 82, 0.94) 100%);
  box-shadow:
    0 34px 64px rgba(1, 8, 18, 0.52),
    inset 0 1px 0 rgba(239, 243, 246, 0.2),
    inset 0 0 0 1px rgba(125, 200, 245, 0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 31%) minmax(0, 1fr);
  min-height: 100%;
  isolation: isolate;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.founder-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 31%);
}

.founder-card__media {
  grid-column: 1;
  grid-row: 1;
}

.founder-card__body {
  grid-column: 2;
  grid-row: 1;
}

.founder-card--reverse .founder-card__media {
  grid-column: 2;
  grid-row: 1;
}

.founder-card--reverse .founder-card__body {
  grid-column: 1;
  grid-row: 1;
}

.founder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(125% 100% at -8% 50%, rgba(192, 146, 82, 0.14) 0%, rgba(192, 146, 82, 0) 52%),
    radial-gradient(125% 100% at 108% 50%, rgba(130, 204, 250, 0.18) 0%, rgba(130, 204, 250, 0) 52%),
    repeating-linear-gradient(135deg,
      rgba(239, 243, 246, 0.02) 0,
      rgba(239, 243, 246, 0.02) 1px,
      transparent 1px,
      transparent 18px);
  opacity: 0.82;
}

.founder-card--reverse::after {
  background:
    radial-gradient(120% 95% at 108% 50%, rgba(192, 146, 82, 0.24) 0%, rgba(192, 146, 82, 0) 54%),
    radial-gradient(120% 95% at -8% 50%, rgba(130, 204, 250, 0.2) 0%, rgba(130, 204, 250, 0) 54%);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(192, 146, 82, 0.92) 0%, rgba(130, 204, 250, 0.75) 46%, rgba(130, 204, 250, 0) 100%);
  opacity: 0.95;
  pointer-events: none;
}

.founder-card:hover,
.founder-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(130, 204, 250, 0.72);
  box-shadow:
    0 40px 74px rgba(1, 8, 18, 0.6),
    0 0 0 1px rgba(130, 204, 250, 0.38),
    inset 0 1px 0 rgba(239, 243, 246, 0.24);
}

.founder-card__media {
  position: relative;
  overflow: hidden;
  margin: 12px;
  border-radius: 16px;
  border: 1px solid rgba(175, 204, 228, 0.42);
  aspect-ratio: auto;
  min-height: 272px;
  z-index: 1;
  background: linear-gradient(180deg, #dce8f3 0%, #cfddea 100%);
  box-shadow:
    0 22px 38px rgba(2, 11, 21, 0.36),
    inset 0 1px 0 rgba(239, 243, 246, 0.34);
}

.founder-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(130% 95% at 50% -6%, rgba(239, 243, 246, 0.26) 0%, rgba(239, 243, 246, 0.04) 36%, rgba(8, 24, 42, 0.26) 100%),
    linear-gradient(180deg, rgba(8, 24, 42, 0.02) 0%, rgba(8, 24, 42, 0.2) 100%);
}

.founder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.56s ease, filter 0.4s ease;
  filter: saturate(1.04) contrast(1.05) brightness(0.97);
}

.founder-card:hover .founder-card__media img,
.founder-card:focus-within .founder-card__media img {
  transform: scale(1.05);
  filter: saturate(1.14) contrast(1.06) brightness(1);
}

.founder-card__body {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(12px, 1.5vw, 18px) clamp(14px, 1.6vw, 20px) clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  backdrop-filter: blur(1.5px);
}

.founder-card__body::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin-bottom: 4px;
  background: linear-gradient(90deg, rgba(192, 146, 82, 0.4) 0%, rgba(130, 204, 250, 0.36) 42%, rgba(130, 204, 250, 0) 100%);
}

.founder-card__role {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nest-gold);
  font-weight: 700;
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(192, 146, 82, 0.36);
  background: rgba(192, 146, 82, 0.1);
}

.founder-card__location {
  margin: 1px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: rgba(239, 243, 246, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 1px;
}

.founder-card__location span {
  color: var(--nest-sky);
  font-size: 0.88rem;
  line-height: 1;
}

.founder-card__name {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.02;
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  text-wrap: balance;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.founder-card__focus {
  margin: 2px 0 0;
  color: rgba(239, 243, 246, 0.84);
  line-height: 1.34;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  width: 100%;
  max-width: none;
  flex: 0 0 auto;
}

.founder-card__actions {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(175, 204, 228, 0.18);
}

.founder-card__action {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 9px;
  border-radius: 14px;
  border: 1px solid rgba(130, 204, 250, 0.44);
  background: rgba(130, 204, 250, 0.14);
  color: rgba(239, 243, 246, 0.98);
  font-weight: 700;
  font-size: clamp(0.78rem, 0.78vw, 0.86rem);
  letter-spacing: 0.005em;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  backdrop-filter: blur(3px);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.founder-card__action span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.founder-card__action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


.founder-card__action--linkedin svg {
  fill: currentColor;
  stroke: none;
}

.founder-card__action--phone span {
  white-space: nowrap;
}

.founder-card__action:hover,
.founder-card__action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(130, 204, 250, 0.78);
  background: rgba(130, 204, 250, 0.24);
  box-shadow: 0 14px 22px rgba(1, 93, 177, 0.3);
  filter: brightness(1.04);
  outline: none;
}

@media (max-width: 1450px) {
  .founder-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.founder-card__action--mail {
  border-color: rgba(192, 146, 82, 0.42);
  background: linear-gradient(145deg, rgba(192, 146, 82, 0.14) 0%, rgba(192, 146, 82, 0.09) 100%);
}

.founder-card__action--mail:hover,
.founder-card__action--mail:focus-visible {
  border-color: rgba(192, 146, 82, 0.72);
  background: rgba(192, 146, 82, 0.24);
  box-shadow: 0 14px 22px rgba(192, 146, 82, 0.28);
}

.founder-card__action--phone {
  border-color: rgba(130, 204, 250, 0.58);
  background: linear-gradient(145deg, rgba(60, 126, 187, 0.24) 0%, rgba(43, 102, 162, 0.18) 100%);
}

.founder-card__action--linkedin {
  border-color: rgba(164, 210, 245, 0.58);
  background: linear-gradient(145deg, rgba(78, 139, 197, 0.24) 0%, rgba(60, 116, 172, 0.18) 100%);
}

.founder-card__action--vcard {
  display: none;
  border-color: rgba(122, 207, 171, 0.56);
  background: linear-gradient(145deg, rgba(77, 168, 130, 0.24) 0%, rgba(60, 149, 114, 0.18) 100%);
  gap: 5px;
  padding-inline: 8px;
  font-size: clamp(0.76rem, 0.78vw, 0.86rem);
  letter-spacing: 0;
}

.founder-card__action--vcard:hover,
.founder-card__action--vcard:focus-visible {
  border-color: rgba(136, 215, 160, 0.78);
  background: rgba(110, 187, 133, 0.26);
  box-shadow: 0 14px 22px rgba(58, 140, 83, 0.28);
}

.founder-card--nassim {
  --founder-accent: #8fd2ff;
  --founder-accent-soft: rgba(143, 210, 255, 0.22);
}

.founder-card--kenzi {
  --founder-accent: #75c2ff;
  --founder-accent-soft: rgba(117, 194, 255, 0.22);
}

.founder-card--sofian {
  --founder-accent: #65b0ec;
  --founder-accent-soft: rgba(101, 176, 236, 0.22);
}

.founder-card--sofian .founder-card__media img {
  object-position: center 12%;
}

.founder-card--kenzi .founder-card__media img {
  object-position: center 10%;
}

.founder-card--nassim .founder-card__media img {
  object-position: center 13%;
}

@media (max-width: 1050px) {

  .founder-card,
  .founder-card--reverse {
    grid-template-columns: 1fr;
  }

  .founder-card__media,
  .founder-card__body,
  .founder-card--reverse .founder-card__media,
  .founder-card--reverse .founder-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .founder-card__media {
    min-height: 240px;
  }

  .founder-card__body {
    padding: 16px 16px 14px;
  }

  .founder-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .founder-card__action {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .founder-premium__signals span {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .founder-premium__grid {
    gap: 14px;
  }

  .founder-card {
    grid-column: span 12;
    border-radius: 22px;
  }

  .founder-card__actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .founder-card__action {
    width: 100%;
    font-size: 0.96rem;
    min-width: 0;
    min-height: 50px;
  }

  .founder-card__action--vcard {
    display: inline-flex;
  }

}

.team-section__head {
  margin-bottom: 24px;
  max-width: 900px;
}

.team-showcase {
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(130, 204, 250, 0.26) 0%, transparent 40%),
    radial-gradient(circle at 8% 84%, rgba(1, 93, 177, 0.18) 0%, transparent 42%),
    linear-gradient(138deg, #163656 0%, #1c4f81 48%, #2f74b6 100%);
  box-shadow:
    0 46px 92px rgba(17, 41, 68, 0.28),
    inset 0 1px 0 rgba(239, 243, 246, 0.3),
    inset 0 -24px 46px rgba(12, 29, 49, 0.2);
  border: 1px solid rgba(175, 193, 207, 0.5);
  padding: 28px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
}

.team-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(239, 243, 246, 0.08) 0%, rgba(239, 243, 246, 0) 34%),
    repeating-linear-gradient(135deg,
      rgba(239, 243, 246, 0.035) 0,
      rgba(239, 243, 246, 0.035) 1px,
      transparent 1px,
      transparent 14px);
}

.team-showcase::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(130, 204, 250, 0.48) 0%, rgba(130, 204, 250, 0) 84%);
  pointer-events: none;
}

.team-showcase__media {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(175, 193, 207, 0.58);
  box-shadow:
    0 28px 54px rgba(7, 25, 44, 0.38),
    inset 0 1px 0 rgba(239, 243, 246, 0.18);
}

.team-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 36, 0.14) 0%, rgba(8, 20, 36, 0.03) 40%, rgba(8, 20, 36, 0.2) 100%);
  pointer-events: none;
}

.team-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(0.93) brightness(0.94) contrast(1.03);
}

.team-focus {
  position: absolute;
  width: 28%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  z-index: 2;
  border: 2px solid rgba(130, 204, 250, 0.78);
  box-shadow:
    0 0 0 220vmax rgba(4, 14, 28, 0.64),
    0 0 24px rgba(130, 204, 250, 0.45),
    inset 0 0 0 1px rgba(239, 243, 246, 0.38);
  background: radial-gradient(circle, rgba(239, 243, 246, 0.08) 0%, rgba(239, 243, 246, 0.03) 48%, rgba(130, 204, 250, 0.18) 69%, rgba(130, 204, 250, 0.02) 84%, rgba(130, 204, 250, 0) 100%);
  transition: opacity 0.32s ease, transform 0.38s ease;
}

.team-focus--nassim {
  left: 78%;
  top: 28%;
  width: 26%;
}

.team-focus--kenzi {
  left: 53%;
  top: 24%;
  width: 29%;
}

.team-focus--sofian {
  left: 24%;
  top: 28%;
  width: 26%;
}

.team-showcase__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(175, 193, 207, 0.32);
  background: linear-gradient(165deg, rgba(8, 31, 56, 0.34) 0%, rgba(8, 31, 56, 0.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(239, 243, 246, 0.15),
    0 18px 36px rgba(8, 24, 42, 0.2);
  padding: 18px;
}

.team-showcase__intro {
  margin: 0;
  color: rgba(239, 243, 246, 0.98);
  font-size: 1.12rem;
  line-height: 1.42;
  max-width: 44ch;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.team-roles {
  display: grid;
  gap: 12px;
}

.team-role {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(175, 193, 207, 0.42);
  background:
    linear-gradient(135deg, rgba(239, 243, 246, 0.18) 0%, rgba(239, 243, 246, 0.09) 52%, rgba(239, 243, 246, 0.05) 100%);
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  outline: none;
}

.team-role::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(180deg, rgba(130, 204, 250, 0.9) 0%, rgba(130, 204, 250, 0.35) 100%);
  transition: width 0.28s ease;
}

.team-role:hover,
.team-role:focus-visible {
  border-color: rgba(130, 204, 250, 0.95);
  background: rgba(130, 204, 250, 0.22);
  box-shadow:
    0 24px 40px rgba(1, 93, 177, 0.28),
    inset 0 1px 0 rgba(239, 243, 246, 0.22);
  transform: translateX(4px);
}

.team-role:hover::before,
.team-role:focus-visible::before {
  width: 5px;
}

.team-role__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.team-role__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(239, 243, 246, 0.3);
  background: rgba(17, 41, 68, 0.44);
  color: rgba(239, 243, 246, 0.92);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.team-role h3 {
  margin: 0;
  color: var(--nest-white);
  font-family: var(--font-title);
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.08;
}

.team-role p {
  margin: 6px 0 0;
  color: rgba(239, 243, 246, 0.92);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.team-role__linkedin {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(175, 204, 228, 0.48);
  background: rgba(17, 41, 68, 0.42);
  color: rgba(239, 243, 246, 0.96);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.team-role__linkedin svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.team-role__linkedin:hover,
.team-role__linkedin:focus-visible {
  background: rgba(130, 204, 250, 0.28);
  border-color: rgba(130, 204, 250, 0.9);
  transform: translateY(-1px);
  outline: none;
}

.team-showcase.is-focus-nassim .team-focus--nassim,
.team-showcase.is-focus-kenzi .team-focus--kenzi,
.team-showcase.is-focus-sofian .team-focus--sofian {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.team-showcase.is-focus-nassim .team-showcase__media img,
.team-showcase.is-focus-kenzi .team-showcase__media img,
.team-showcase.is-focus-sofian .team-showcase__media img {
  transform: scale(1.015);
  filter: saturate(1.02) brightness(1.02) contrast(1.05);
}

.team-showcase.is-focus-nassim .team-role[data-person="nassim"],
.team-showcase.is-focus-kenzi .team-role[data-person="kenzi"],
.team-showcase.is-focus-sofian .team-role[data-person="sofian"] {
  border-color: rgba(130, 204, 250, 0.92);
  background: rgba(130, 204, 250, 0.16);
  box-shadow: 0 16px 28px rgba(1, 93, 177, 0.24);
  transform: translateX(4px);
}

.team-showcase.is-focus-nassim .team-role[data-person="nassim"]::before,
.team-showcase.is-focus-kenzi .team-role[data-person="kenzi"]::before,
.team-showcase.is-focus-sofian .team-role[data-person="sofian"]::before {
  width: 4px;
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 76% 0%, rgba(125, 200, 245, 0.24) 0%, transparent 36%),
    linear-gradient(162deg, #081425 0%, #0d2035 66%, #112948 100%);
  color: var(--nest-fog);
  padding: 74px 0 26px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(192, 146, 82, 0.18), transparent 38%),
    radial-gradient(circle at 82% 90%, rgba(124, 192, 239, 0.18), transparent 42%);
  pointer-events: none;
}

.site-footer>.nest-container {
  position: relative;
  z-index: 1;
}

.site-footer__cta {
  margin-bottom: 36px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 24px;
  border: 1px solid rgba(130, 204, 250, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 42px rgba(3, 11, 23, 0.32);
}

.site-footer__cta-kicker {
  margin: 0;
  color: #9fd3f2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer__cta-title {
  margin: 14px 0 0;
  max-width: 32ch;
  color: #f4f8fd;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
}

.site-footer__cta-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__cta-button {
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.site-footer__cta-button--primary {
  color: #f7fbff;
  background: linear-gradient(120deg, #0f67bb, #2e89dd);
  box-shadow: 0 14px 24px rgba(1, 93, 177, 0.3);
}

.site-footer__cta-button--ghost {
  color: #d9ebf9;
  border: 1px solid rgba(159, 211, 242, 0.46);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer__cta-button:hover,
.site-footer__cta-button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.site-footer__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.footer-brand img {
  width: 62px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand h3 {
  margin: 0;
  font-family: var(--font-title);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.footer-brand p {
  margin-top: 10px;
  color: rgba(239, 243, 246, 0.78);
  max-width: 36ch;
}

.footer-brand__linkedin {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(130, 204, 250, 0.42);
  border-radius: 999px;
  color: #bce6ff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.footer-brand__linkedin:hover,
.footer-brand__linkedin:focus-visible {
  color: #ffffff;
  border-color: rgba(130, 204, 250, 0.82);
  background: rgba(130, 204, 250, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.footer-col h4 {
  margin: 0 0 13px;
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(130, 204, 250, 0.96);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: rgba(239, 243, 246, 0.8);
  transition: color 0.22s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--nest-white);
  outline: none;
}

.site-footer__bottom {
  border-top: 1px solid rgba(239, 243, 246, 0.15);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(239, 243, 246, 0.72);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-dir="right"] {
  transform: translateX(40px) scale(0.97);
}

[data-reveal][data-reveal-dir="right"].is-visible {
  transform: none;
}

.about-story__card[data-reveal] {
  transform: scale(0.97) translateY(22px);
}

.about-story__card[data-reveal][data-reveal-dir="right"] {
  transform: translateX(40px) scale(0.97);
}

.about-story__card[data-reveal].is-visible {
  transform: none;
}

@keyframes floatOrb {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }

  50% {
    transform: translateY(24px) translateX(12px) scale(1.07);
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes valueRing {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  65% {
    transform: scale(1.13);
    opacity: 0;
  }

  100% {
    transform: scale(1.13);
    opacity: 0;
  }
}

@keyframes storyDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 146, 82, 0.58);
  }

  75% {
    box-shadow: 0 0 0 12px rgba(192, 146, 82, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(192, 146, 82, 0);
  }
}

/* ─── Dark section variant ───────────────────────────── */
.section--dark {
  background: var(--nest-primary);
  color: var(--nest-white);
}

/* ─── Metrics section ────────────────────────────────── */
.metrics-section {
  padding: clamp(50px, 1vw, 1px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.metrics-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 90% at 12% 50%, rgba(192, 146, 82, 0.08) 0%, transparent 100%),
    radial-gradient(ellipse 50% 90% at 88% 50%, rgba(13, 94, 168, 0.10) 0%, transparent 100%);
  pointer-events: none;
}

.metrics-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.metric-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, transparent, rgba(192, 146, 82, 0.38), transparent);
  margin: 0 clamp(24px, 5vw, 68px);
}

.metric-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: clamp(14px, 2vw, 20px) clamp(10px, 1.5vw, 16px);
}

.metric-number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--nest-gold);
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 242, 247, 0.58);
  max-width: 18ch;
  text-align: center;
}

/* ─── Hero second button ghost style ─────────────────── */
.hero__actions .button--primary:nth-child(2) {
  background: transparent;
  border: 1px solid rgba(237, 242, 247, 0.28);
  color: rgba(237, 242, 247, 0.82);
  box-shadow: none;
}

.hero__actions .button--primary:nth-child(2):hover,
.hero__actions .button--primary:nth-child(2):focus-visible {
  background: rgba(237, 242, 247, 0.06);
  border-color: rgba(192, 146, 82, 0.55);
  color: var(--nest-gold);
  transform: translateY(-2px);
  box-shadow: none;
}

/* ─── About story decorative quote mark ──────────────── */
.about-story__card::before {
  content: "\201C";
  position: absolute;
  top: -24px;
  left: clamp(16px, 3vw, 26px);
  font-family: var(--font-title);
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(192, 146, 82, 0.12);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  opacity: 0;
  transform: translateY(-18px) scale(0.85);
  transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.28s,
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.28s;
}

.about-story__card.is-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-story__card>* {
  position: relative;
  z-index: 1;
}

/* ─── Team role gold accent on active ────────────────── */
.team-role:hover .team-role__index,
.team-role:focus-visible .team-role__index {
  border-color: rgba(192, 146, 82, 0.5);
  background: rgba(192, 146, 82, 0.15);
  color: var(--nest-gold);
}

/* ─── Footer gold top accent ─────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(192, 146, 82, 0.18);
}

/* ─── Value card icon bounce on hover ────────────────── */
.value-card:hover .value-card__icon {
  animation: iconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Team showcase Ken Burns on photo ───────────────── */
.team-showcase.is-active .team-showcase__media img {
  animation: kenBurns 18s ease-in-out infinite;
  transition: none;
}

/* ─── Team role stagger slide-in ─────────────────────── */
.team-role--enter {
  animation: roleSlideIn 0.7s cubic-bezier(0.25, 1, 0.5, 1) var(--role-delay, 0.5s) both;
}

/* ─── Metric divider draw animation ──────────────────── */
.metric-divider {
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.18s;
}

.metrics-section.is-active .metric-divider {
  transform: scaleY(1);
}

/* ─── @keyframes ─────────────────────────────────────── */
@keyframes iconBounce {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(0.86);
  }

  68% {
    transform: scale(1.16);
  }

  86% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  35% {
    transform: scale(1.04) translate(-0.4%, 0.3%);
  }

  70% {
    transform: scale(1.03) translate(0.3%, -0.3%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes roleSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Title shimmer (single pass, motion-safe) ───────── */
@media (prefers-reduced-motion: no-preference) {
  @supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero__title {
      background: linear-gradient(100deg,
          #ffffff 0%,
          #ffffff 36%,
          rgba(255, 255, 255, 0.48) 44%,
          #ffffff 52%,
          #ffffff 100%);
      background-size: 300% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: titleShimmer 2.6s cubic-bezier(0.4, 0, 0.2, 1) 2.6s both;
    }
  }
}

@keyframes titleShimmer {
  from {
    background-position: 200% center;
  }

  to {
    background-position: -200% center;
  }
}

@media (max-width: 1050px) {
  .premium-gateway__grid {
    grid-template-columns: 1fr;
  }

  .premium-gateway-card__title {
    max-width: 100%;
  }

  .premium-gateway-card__lead {
    max-width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .metric-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 146, 82, 0.35), transparent);
    margin: 4px auto;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.18s;
  }

  .metrics-section.is-active .metric-divider {
    transform: scaleX(1);
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .about-story-lead__grid {
    grid-template-columns: 1fr;
  }

  .about-story-lead__media {
    min-height: 320px;
  }

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

  .value-card {
    grid-column: span 3;
  }

  .pillar-card {
    grid-column: span 12;
  }

  .process-step {
    grid-column: span 6;
  }

  .service-card {
    grid-column: span 12;
  }

  .team-showcase {
    grid-template-columns: 1fr;
  }

  .team-showcase__content {
    padding: 18px 18px 16px;
  }

  .identity__panel,
  .identity__values {
    grid-column: span 12;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .hero__inner {
    transform: scale(1.1);
  }
}

@media (min-width: 861px) and (max-width: 1199px) {
  .hero__inner {
    transform: scale(1.04);
  }
}

@media (max-width: 883px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(9, 24, 40, 0.15);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(9, 24, 40, 0.25);
    backdrop-filter: blur(9px);
    max-height: min(78vh, 600px);
    overflow-y: auto;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

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

  .main-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .main-navigation a {
    justify-content: flex-start;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.012em;
    line-height: 1.25;
    padding: 14px 16px;
    color: var(--nest-primary);
    background: #f3f7fc;
    border: 1px solid rgba(9, 24, 40, 0.12);
    border-radius: 14px;
  }

  .main-navigation a:hover,
  .main-navigation a:focus-visible {
    background: #e8f2fd;
    border-color: rgba(13, 94, 168, 0.35);
    color: var(--nest-primary);
    transform: none;
  }

  .main-navigation .menu-item-has-cta>a,
  .main-navigation .menu>li:last-child>a {
    border-color: transparent;
    padding-inline: 18px;
  }

  .site-header.is-scrolled .main-navigation a {
    color: var(--nest-primary);
  }
}

@media (max-width: 860px) {
  .nest-container {
    width: min(var(--nest-container), calc(100% - 34px));
  }

  .hero__inner {
    transform: none;
    padding: 0;
  }

  .value-card {
    grid-column: span 6;
  }

  .about-values__grid {
    gap: 16px;
  }

  .about-story-lead__media {
    border-radius: 20px;
    min-height: 280px;
  }

  .about-story-lead__media figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  .about-story__card {
    border-radius: 22px;
    gap: 12px;
  }

  .about-story__title {
    font-size: 1.42rem;
  }

  .about-story__points-wrap {
    padding: 12px 12px 10px;
  }

  .about-story__points li {
    font-size: 0.9rem;
  }

  .hero__insight-body {
    padding: 16px;
  }

  .team-showcase__media img {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  .premium-gateway {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  .premium-gateway-card {
    border-radius: 24px;
    padding: 22px 18px 20px;
    gap: 16px;
  }

  .premium-gateway-card__tag {
    min-height: 38px;
    padding: 6px 15px;
    font-size: 0.73rem;
  }

  .premium-gateway-card__title {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: 1.02;
  }

  .premium-gateway-card__lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .premium-gateway-card__list li {
    font-size: 0.98rem;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .premium-gateway-card__icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .premium-gateway-card__icon svg {
    width: 12px;
    height: 12px;
  }

  .premium-gateway-card__cta {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    border-radius: 14px;
    font-size: 1.02rem;
    padding: 12px 16px;
  }

  .section.about-story-lead {
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .about-story-lead__grid {
    gap: 14px;
  }

  .about-story-lead__media {
    min-height: 230px;
  }

  .section.about-values {
    padding-top: 18px;
  }

  .metric-number {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }

  .process-step {
    grid-column: span 12;
  }

  .hero {
    min-height: 92vh;
    padding: 134px 0 72px;
  }

  .hero__insight-title {
    font-size: 1.06rem;
  }

  .hero__chips {
    gap: 8px;
  }

  .hero__chip {
    font-size: 0.79rem;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline__step {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .team-showcase {
    padding: 16px;
    gap: 16px;
  }

  .team-showcase__content {
    border-radius: 16px;
    padding: 14px 14px 12px;
  }

  .value-card {
    border-radius: 16px;
    padding: 16px;
  }

  .value-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .value-card h3 {
    margin-top: 14px;
    font-size: 1.06rem;
  }

  .about-story__card {
    border-radius: 18px;
    padding: 18px;
    gap: 11px;
  }

  .about-story__title {
    font-size: 1.22rem;
    max-width: 100%;
  }

  .about-story__content p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .about-story__points-wrap {
    border-radius: 14px;
    padding: 10px 10px 9px;
  }

  .about-story__highlight {
    border-radius: 14px;
    padding: 11px 10px 10px;
  }

  .about-story__highlight p {
    font-size: 1.02rem;
  }

  .team-showcase__media {
    border-radius: 16px;
  }

  .team-showcase__media img {
    min-height: 250px;
  }

  .team-focus--nassim {
    left: 77%;
    top: 31%;
    width: 28%;
  }

  .team-focus--kenzi {
    left: 53%;
    top: 27%;
    width: 31%;
  }

  .team-focus--sofian {
    left: 24%;
    top: 31%;
    width: 28%;
  }

  .team-role {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }

  .team-role h3 {
    font-size: 1.08rem;
  }

  .team-role__linkedin {
    font-size: 0.8rem;
    padding: 8px 11px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  /* Triptych: on mobile stack vertically */
  .presence-triptych {
    flex-direction: column;
    height: auto;
    gap: 3px;
    border-radius: 16px;
  }

  .presence-panel {
    flex: none;
    height: 220px;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .presence-panel:hover,
  .presence-panel:focus-visible,
  .presence-panel.is-touch-open {
    flex: none;
    height: 272px;
  }

  .presence-panel__desc {
    opacity: 1;
    transform: translateY(0);
  }

  .presence-panel__tags {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .presence-panel,
  .presence-panel__bg,
  .presence-panel::after,
  .presence-panel__desc,
  .presence-panel__tags,
  .presence-panel__num {
    transition: none !important;
  }
}

/* Recruiter experience page */
.recruit-experience {
  --rx-bg: #ffffff;
  --rx-bg-soft: #f6f9fc;
  --rx-border: #dce6f0;
  --rx-text: #102743;
  --rx-muted: #5d7288;
  --rx-accent: #0f5ea9;
  --rx-accent-soft: #e8f3ff;
  background: var(--rx-bg);
  color: var(--rx-text);
}

.rx-section {
  position: relative;
  padding: clamp(72px, 8vw, 114px) 0;
  border-top: 1px solid #eef3f8;
}

.rx-section:nth-of-type(odd) {
  background: var(--rx-bg);
}

.rx-section:nth-of-type(even) {
  background: var(--rx-bg-soft);
}

.rx-hero {
  padding-top: clamp(130px, 16vh, 184px);
  background:
    radial-gradient(circle at 90% 8%, rgba(15, 94, 169, 0.09), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.rx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: start;
}

.rx-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rx-accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

.rx-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rx-accent);
}

.rx-title {
  margin: 18px 0 0;
  color: #0f223b;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.rx-description {
  margin: 18px 0 0;
  max-width: 66ch;
  color: var(--rx-muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

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

.rx-button {
  min-height: 48px;
  padding-inline: 22px;
}

.rx-button--ghost {
  border: 1px solid #c5d8ea;
  background: #fff;
  color: #14365c;
}

.rx-button--ghost:hover,
.rx-button--ghost:focus-visible {
  border-color: #9fc1e4;
  background: #f1f7fd;
  color: #102743;
}

.rx-metrics {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rx-metric-card {
  border-radius: 14px;
  border: 1px solid var(--rx-border);
  background: #fff;
  padding: 14px 15px;
  box-shadow: 0 12px 28px rgba(16, 39, 67, 0.08);
}

.rx-metric-card strong {
  display: block;
  font-size: clamp(1.22rem, 2vw, 1.9rem);
  line-height: 1;
  color: #0f5ea9;
}

.rx-metric-card span {
  display: block;
  margin-top: 8px;
  color: #4e657c;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

.rx-hero__visual {
  border-radius: 22px;
  border: 1px solid var(--rx-border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 39, 67, 0.12);
}

.rx-hero__visual img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 24%;
}

.rx-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: clamp(24px, 3.8vw, 40px);
}

.rx-heading__index {
  width: clamp(52px, 6vw, 74px);
  height: clamp(52px, 6vw, 74px);
  border-radius: 999px;
  border: 1px solid #c8dff3;
  background: var(--rx-accent-soft);
  color: var(--rx-accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
}

.rx-heading h2 {
  margin: 0;
  color: #102743;
  font-size: clamp(1.55rem, 3.4vw, 2.95rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.rx-heading p {
  margin: 10px 0 0;
  color: var(--rx-muted);
  max-width: 68ch;
}

.rx-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.rx-benefit-card {
  --card-accent-rgb: 31, 123, 201;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 41, 68, 0.09);
  background:
    linear-gradient(155deg, #ffffff 0%, rgba(235, 242, 250, 0.9) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45));
  box-shadow: 0 16px 32px rgba(9, 24, 40, 0.08);
  padding: 24px 24px 22px;
  isolation: isolate;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.rx-benefit-card::before {
  content: var(--card-mark, "✨");
  position: absolute;
  right: 6px;
  bottom: -26px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 7.6rem;
  line-height: 1;
  color: rgba(var(--card-accent-rgb), 0.055);
  pointer-events: none;
  z-index: -1;
  transition: color 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rx-benefit-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--nest-gold) 0%, rgba(var(--card-accent-rgb), 0.4) 55%, transparent 100%);
  opacity: 0.78;
}

.rx-benefit-card:hover,
.rx-benefit-card.rx-tilt:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(17, 41, 68, 0.16);
  border-color: rgba(var(--card-accent-rgb), 0.52);
}

.rx-benefit-card:hover::before {
  color: rgba(var(--card-accent-rgb), 0.1);
  transform: translateY(-10px);
}

.rx-benefit-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.24) 0%, rgba(var(--card-accent-rgb), 0.9) 100%);
  box-shadow: 0 14px 22px rgba(17, 41, 68, 0.22);
  position: relative;
}

.rx-benefit-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.45);
  opacity: 0.38;
  animation: valueRing 3.2s ease-out infinite;
}

.rx-benefit-card__icon span {
  font-size: 1.7rem;
  line-height: 1;
}

.rx-benefit-card h3 {
  margin: 16px 0 0;
  color: #102743;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.04rem, 1.55vw, 1.3rem);
  line-height: 1.22;
}

.rx-benefit-card p {
  margin: 12px 0 0;
  color: rgba(17, 41, 68, 0.82);
  line-height: 1.62;
}

.rx-benefit-card--autonomy {
  --card-accent-rgb: 26, 111, 191;
}

.rx-benefit-card--stack {
  --card-accent-rgb: 15, 139, 207;
}

.rx-benefit-card--collective {
  --card-accent-rgb: 47, 149, 214;
}

.rx-benefit-card--secure {
  --card-accent-rgb: 34, 122, 194;
}

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

.rx-hub-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #c7d9ea;
  box-shadow: 0 16px 34px rgba(16, 39, 67, 0.12);
}

.rx-hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.rx-hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 31, 56, 0.04) 35%, rgba(8, 31, 56, 0.78) 100%);
  z-index: 1;
}

.rx-hub-card__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
}

.rx-hub-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.1vw, 1.9rem);
}

.rx-hub-card p {
  margin: 7px 0 0;
  color: rgba(239, 243, 246, 0.95);
}

.rx-hub-card:hover img,
.rx-hub-card:focus-within img {
  transform: scale(1.04);
}

.rx-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rx-journey-card {
  --card-accent-rgb: 31, 123, 201;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 41, 68, 0.09);
  background:
    linear-gradient(155deg, #ffffff 0%, rgba(235, 242, 250, 0.9) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45));
  box-shadow: 0 16px 32px rgba(9, 24, 40, 0.08);
  padding: 24px 24px 22px;
  isolation: isolate;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.rx-journey-card::before {
  content: var(--card-mark, "✨");
  position: absolute;
  right: 10px;
  bottom: -22px;
  font-family: var(--font-title);
  font-size: clamp(5.2rem, 8vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(var(--card-accent-rgb), 0.08);
  pointer-events: none;
  z-index: -1;
  transition: color 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rx-journey-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--nest-gold) 0%, rgba(var(--card-accent-rgb), 0.4) 55%, transparent 100%);
  opacity: 0.78;
}

.rx-journey-card:hover,
.rx-journey-card.rx-tilt:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(17, 41, 68, 0.16);
  border-color: rgba(var(--card-accent-rgb), 0.52);
}

.rx-journey-card:hover::before {
  color: rgba(var(--card-accent-rgb), 0.1);
  transform: translateY(-10px);
}

.rx-journey-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rx-journey-card__num {
  min-width: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.32);
  background: rgba(var(--card-accent-rgb), 0.1);
  color: rgba(17, 41, 68, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  line-height: 1;
}

.rx-journey-card__emoji {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.2) 0%, rgba(var(--card-accent-rgb), 0.84) 100%);
  box-shadow: 0 10px 18px rgba(17, 41, 68, 0.18);
  position: relative;
}

.rx-journey-card__emoji::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 15px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.35);
  opacity: 0.32;
}

.rx-journey-card__emoji span {
  font-size: 1.4rem;
  line-height: 1;
}

.rx-journey-card h3 {
  margin: 16px 0 0;
  color: #102743;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.24;
}

.rx-journey-card p {
  margin: 12px 0 0;
  color: rgba(17, 41, 68, 0.82);
  line-height: 1.62;
}

.rx-journey-card--positioning {
  --card-accent-rgb: 26, 111, 191;
}

.rx-journey-card--onboarding {
  --card-accent-rgb: 15, 139, 207;
}

.rx-journey-card--acceleration {
  --card-accent-rgb: 47, 149, 214;
}

.rx-journey-card--scale {
  --card-accent-rgb: 34, 122, 194;
}

.rx-compensation__board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-radius: 18px;
  border: 1px solid var(--rx-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(16, 39, 67, 0.08);
  padding: 18px;
}

.rx-compensation__intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d6e6f6;
  background: #f4f9ff;
}

.rx-compensation__intro-title {
  margin: 0;
  color: #1b4f81;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
  font-weight: 800;
}

.rx-compensation__intro-text {
  margin: 0;
  color: #355a80;
  font-size: 0.96rem;
  line-height: 1.5;
}

.rx-tier {
  --rx-tier-step-size: 36px;
  --rx-tier-gap: 10px;
  --rx-board-gap: 14px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--rx-tier-gap);
}

.rx-tier::after {
  content: "";
  position: absolute;
  left: calc(var(--rx-tier-step-size) / 2);
  top: calc((var(--rx-tier-step-size) / 2) - 1px);
  width: calc(100% + var(--rx-board-gap) - (var(--rx-tier-step-size) / 2));
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 116, 194, 0.34) 0%, rgba(29, 116, 194, 0) 100%);
  pointer-events: none;
}

.rx-tier:last-child::after {
  display: none;
}

.rx-tier__step {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #9dc4e7;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f659f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.rx-tier__card {
  z-index: 1;
  border-radius: 14px;
  border: 1px solid #d7e5f3;
  background: #ffffff;
  padding: 12px;
  min-height: 100%;
  display: grid;
  gap: 9px;
  box-shadow: 0 10px 20px rgba(17, 57, 95, 0.06);
}

.rx-compensation__board.is-live .rx-tier__card {
  animation: rx-tier-enter 0.6s ease both;
}

.rx-compensation__board.is-live .rx-tier:nth-child(2) .rx-tier__card {
  animation-delay: 0.04s;
}

.rx-compensation__board.is-live .rx-tier:nth-child(3) .rx-tier__card {
  animation-delay: 0.13s;
}

.rx-compensation__board.is-live .rx-tier:nth-child(4) .rx-tier__card {
  animation-delay: 0.22s;
}

.rx-compensation__board.is-live .rx-tier:nth-child(5) .rx-tier__card {
  animation-delay: 0.31s;
}

.rx-tier__range {
  margin: 0;
  color: #3c6085;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.rx-tier__label {
  margin: 0;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #c9def1;
  background: #f2f8ff;
  color: #1a4c7b;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.rx-tier__viz {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.rx-tier__pie {
  --pie-size: clamp(112px, 10.4vw, 132px);
  --share-animated: var(--share, 70);
  width: var(--pie-size);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #cadef2;
  display: grid;
  place-items: center;
  position: relative;
  background:
    conic-gradient(#1f7fda calc(var(--share-animated, var(--share, 70)) * 1%), #e7eff8 0);
  box-shadow: 0 10px 22px rgba(17, 57, 95, 0.1);
  transform: scale(0.96);
}

.rx-tier__pie::before {
  content: "";
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d7e6f5;
}

.rx-tier__pie strong {
  position: absolute;
  margin: 0;
  color: #154a7a;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  line-height: 1;
}

.rx-tier__pie-caption {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #36618c;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}

.rx-compensation__board.is-live .rx-tier__pie {
  animation: rx-pie-fill 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rx-compensation__board.is-live .rx-tier:nth-child(2) .rx-tier__pie {
  animation-delay: 0.08s;
}

.rx-compensation__board.is-live .rx-tier:nth-child(3) .rx-tier__pie {
  animation-delay: 0.16s;
}

.rx-compensation__board.is-live .rx-tier:nth-child(4) .rx-tier__pie {
  animation-delay: 0.24s;
}

.rx-compensation__board.is-live .rx-tier:nth-child(5) .rx-tier__pie {
  animation-delay: 0.32s;
}

.rx-tier__rule {
  margin: 0;
  color: #4f6780;
  font-size: 0.83rem;
  line-height: 1.48;
}

@keyframes rx-tier-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@property --share-animated {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes rx-pie-fill {
  from {
    --share-animated: 0;
    transform: scale(0.9);
  }

  to {
    --share-animated: var(--share, 70);
    transform: scale(1);
  }
}

.rx-tools__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.rx-tools-card {
  border-radius: 16px;
  border: 1px solid var(--rx-border);
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 39, 67, 0.08);
  padding: 20px;
}

.rx-tools-card--stack {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 100% -10%, rgba(64, 140, 219, 0.2) 0%, rgba(64, 140, 219, 0) 48%), #fff;
}

.rx-tools-card--stack::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 94, 169, 0.2) 0%, rgba(16, 94, 169, 0) 70%);
  pointer-events: none;
}

.rx-tools-card h3 {
  margin: 0;
  color: #17395d;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.rx-tools-card p {
  margin: 14px 0 0;
  color: #5d7288;
}

.rx-tools-card__stack {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rx-tool-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid #c9ddf0;
  background: linear-gradient(160deg, #fbfdff 0%, #eef6ff 100%);
  box-shadow: 0 8px 16px rgba(17, 57, 95, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rx-tool-pill img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  border-radius: 10px;
}

.rx-tool-pill span {
  color: #1f4f7e;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.22;
}

@media (hover: hover) {
  .rx-tool-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(17, 57, 95, 0.14);
  }
}

.rx-tools-card__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.rx-tools-card__list li {
  position: relative;
  padding-left: 20px;
  color: #5d7288;
}

.rx-tools-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rx-accent);
}

.rx-tools-card__note {
  margin: 16px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8e7f5;
  background: #f7fbff;
  color: #4f657d;
}

.rx-tools-photo,
.rx-culture-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--rx-border);
  box-shadow: 0 16px 34px rgba(16, 39, 67, 0.08);
  background: linear-gradient(180deg, #f8fbff 0%, #edf5fe 100%);
}

.rx-tools-photo {
  position: relative;
  min-height: 320px;
}

.rx-tools-photo::after,
.rx-culture-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 31, 53, 0.04) 0%, rgba(9, 31, 53, 0) 48%);
}

.rx-tools-photo img,
.rx-culture-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.rx-tools-photo img {
  min-height: 320px;
  max-height: 430px;
  aspect-ratio: 3 / 4;
}

.rx-culture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 2.08fr);
  gap: 16px;
  align-items: start;
}

.rx-culture-photo {
  position: relative;
  align-self: start;
}

.rx-culture-photo img {
  aspect-ratio: 16 / 9;
  max-height: 235px;
}

.rx-culture__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rx-culture-card {
  border-radius: 16px;
  border: 1px solid var(--rx-border);
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 39, 67, 0.08);
  padding: 20px;
}

.rx-culture-card h3 {
  margin: 0;
  color: #17395d;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
}

.rx-culture-card p {
  margin: 10px 0 0;
  color: #5d7288;
  line-height: 1.55;
}

.rx-final-cta {
  margin-top: 22px;
  border-radius: 18px;
  border: 1px solid #c9ddf0;
  background: linear-gradient(140deg, #f7fbff 0%, #edf5fe 100%);
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.rx-final-cta__kicker {
  margin: 0;
  color: #2a5a89;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.rx-final-cta h3 {
  margin: 10px 0 0;
  color: #123353;
  font-size: clamp(1.28rem, 2.25vw, 2.05rem);
  line-height: 1.2;
}

.rx-final-cta__actions {
  display: grid;
  gap: 10px;
}

.rx-tilt {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .rx-tilt:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 39, 67, 0.12);
    border-color: #c7dcef;
  }
}

@media (max-width: 1200px) {

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

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

  .rx-tools-photo {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .rx-tools-photo img {
    min-height: 260px;
    max-height: 320px;
    aspect-ratio: 16 / 7;
  }

  .rx-culture-layout {
    grid-template-columns: 1fr;
  }

  .rx-culture-photo img {
    aspect-ratio: 16 / 8;
    max-height: 270px;
  }
}

@media (max-width: 980px) {

  .rx-hero__grid,
  .rx-tools__grid,
  .rx-culture-layout,
  .rx-culture__grid {
    grid-template-columns: 1fr;
  }

  .rx-hero__visual img {
    min-height: 370px;
  }

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

  .rx-final-cta {
    grid-template-columns: 1fr;
  }

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

  .rx-tools-photo,
  .rx-culture-photo {
    min-height: auto;
  }

  .rx-tools-photo img,
  .rx-culture-photo img {
    min-height: 220px;
    max-height: 260px;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 760px) {
  .rx-section {
    padding: clamp(56px, 10vw, 78px) 0;
  }

  .rx-heading {
    grid-template-columns: 1fr;
  }

  .rx-heading__index {
    width: 48px;
    height: 48px;
  }

  .rx-metrics,
  .rx-benefits__grid,
  .rx-hubs__grid,
  .rx-journey__grid,
  .rx-compensation__board {
    grid-template-columns: 1fr;
  }

  .rx-hub-card {
    min-height: 280px;
  }

  .rx-tier::after {
    display: none;
  }

  .rx-tier {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rx-tier__step {
    width: 32px;
    height: 32px;
  }

  .rx-tools-card__stack {
    grid-template-columns: 1fr;
  }

  .rx-tools-photo img,
  .rx-culture-photo img {
    min-height: 190px;
    max-height: 220px;
  }

  .rx-client-benefits .rx-benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* Candidate page premium layer */
.candidate-space {
  --candidate-soft-bg: #f6f9fd;
  --candidate-border: rgba(17, 41, 68, 0.1);
  --candidate-shadow: 0 18px 40px rgba(9, 24, 40, 0.11);
  --candidate-shadow-lg: 0 32px 66px rgba(9, 24, 40, 0.14);
  background: var(--rx-bg);
}

.candidate-space .nest-container {
  width: min(var(--nest-container), calc(100% - 48px));
  margin: 0 auto;
}

.candidate-hero {
  border-top: 0;
  min-height: auto;
  display: block;
  padding-top: clamp(130px, 16vh, 184px);
  padding-bottom: clamp(72px, 8vw, 114px);
  background:
    radial-gradient(circle at 90% 8%, rgba(15, 94, 169, 0.09), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.candidate-hero>.nest-container {
  width: min(var(--nest-container), calc(100% - 48px));
}

.candidate-hero__wrap {
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.candidate-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.candidate-hero__eyebrow {
  margin: 0;
}

.candidate-hero__title {
  margin: 20px 0 0;
  max-width: 13ch;
}

.candidate-hero__title span {
  display: inline;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #18385a;
}

.candidate-hero__description {
  margin: 22px 0 0;
  max-width: 60ch;
}

.candidate-hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.candidate-hero__actions .rx-button {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 22px;
}

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

.candidate-hero__pillars {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.candidate-hero__pillars .brand-hero__chip {
  min-height: 0;
}

.candidate-hero__metrics {
  margin-top: 24px;
  gap: 12px;
}

.candidate-hero__metrics .rx-metric-card {
  min-height: 0;
  border-radius: 14px;
  padding: 14px 15px;
}

.candidate-hero__metrics .rx-metric-card strong {
  font-size: clamp(1.22rem, 2vw, 1.9rem);
  line-height: 1;
}

.candidate-hero__metrics .rx-metric-card span {
  margin-top: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

.candidate-hero__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(162, 191, 218, 0.45);
  box-shadow:
    0 28px 56px rgba(9, 24, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  background: #f7fbff;
}

.candidate-hero__media::before {
  content: "";
  position: absolute;
  inset: auto 14% -28% 14%;
  height: 54%;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(50% 92% at 50% 48%, rgba(125, 200, 245, 0.36) 0%, rgba(125, 200, 245, 0) 100%);
  filter: blur(16px);
  z-index: 0;
}

.candidate-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 92% at 92% 8%, rgba(232, 198, 132, 0.14) 0%, rgba(232, 198, 132, 0) 52%),
    radial-gradient(120% 130% at 8% 96%, rgba(130, 204, 250, 0.14) 0%, rgba(130, 204, 250, 0) 56%),
    linear-gradient(180deg, rgba(8, 24, 40, 0.05) 0%, rgba(8, 24, 40, 0.28) 100%);
}

.candidate-hero__media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.95) contrast(1.02) brightness(0.97);
}

.candidate-hero__quote,
.candidate-hero__quote-mark,
.candidate-hero__quote p,
.candidate-hero__quote cite,
.candidate-hero__trust-icon,
.candidate-hero__trust-icon svg {
  display: none;
}

.candidate-approach {
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(46px, 6vw, 74px);
  background: transparent;
}

.candidate-approach__head {
  margin-bottom: clamp(24px, 3.8vw, 40px);
}

.candidate-approach__title {
  margin: 0;
  color: #102743;
  font-size: clamp(1.55rem, 3.4vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.candidate-steps {
  margin-top: clamp(30px, 3.8vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.candidate-step {
  --card-accent-rgb: 31, 123, 201;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid rgba(17, 41, 68, 0.12);
  background:
    linear-gradient(155deg, #ffffff 0%, rgba(241, 246, 252, 0.96) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45));
  box-shadow: 0 14px 28px rgba(9, 24, 40, 0.08);
  text-align: left;
  padding: 26px 26px 24px;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.candidate-step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--nest-gold) 0%, rgba(var(--card-accent-rgb), 0.4) 55%, transparent 100%);
  opacity: 0.78;
}

.candidate-step:hover,
.candidate-step:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(17, 41, 68, 0.16);
  border-color: rgba(var(--card-accent-rgb), 0.52);
}

.candidate-step__number {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(13, 94, 168, 0.28);
  background: rgba(13, 94, 168, 0.08);
  margin: 0;
  color: #0f5ea9;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.candidate-step__icon {
  margin: 16px 0 0;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.24) 0%, rgba(var(--card-accent-rgb), 0.9) 100%);
  box-shadow: 0 14px 22px rgba(17, 41, 68, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.candidate-step__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.candidate-step h3 {
  margin: 16px 0 0;
  color: #0f2942;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(1.22rem, 1.65vw, 1.5rem);
  line-height: 1.3;
  font-family: var(--font-body);
  font-weight: 700;
}

.candidate-step p {
  margin: 12px 0 0;
  color: #334f6b;
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 42ch;
}

.candidate-jobs {
  padding-top: clamp(54px, 6vw, 84px);
  padding-bottom: clamp(74px, 8vw, 112px);
  background: transparent;
}

.candidate-jobs__head {
  margin-bottom: clamp(24px, 3.8vw, 40px);
}

.candidate-jobs__title {
  margin: 0;
  color: #102743;
  font-size: clamp(1.55rem, 3.4vw, 2.95rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

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

.candidate-job-card {
  --card-accent-rgb: 31, 123, 201;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid rgba(17, 41, 68, 0.08);
  background:
    linear-gradient(155deg, #ffffff 0%, rgba(235, 242, 250, 0.9) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45));
  box-shadow: 0 16px 32px rgba(9, 24, 40, 0.08);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.candidate-job-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--nest-gold) 0%, rgba(var(--card-accent-rgb), 0.4) 55%, transparent 100%);
  opacity: 0.78;
}

.candidate-job-card:hover,
.candidate-job-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(var(--card-accent-rgb), 0.52);
  box-shadow: 0 24px 40px rgba(17, 41, 68, 0.16);
}

.candidate-job-card__logo {
  width: 96px;
  height: 56px;
  padding: 7px 9px;
  border-radius: 12px;
  border: 1px solid rgba(17, 41, 68, 0.1);
  background: rgba(255, 255, 255, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.candidate-job-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.candidate-job-card__type {
  margin: 2px 0 0;
  width: fit-content;
  border-radius: 999px;
  color: #1c5e9a;
  border: 1px solid rgba(13, 94, 168, 0.22);
  background: rgba(13, 94, 168, 0.07);
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.candidate-job-card__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  line-height: 1.24;
  color: #153252;
  font-family: var(--font-title);
  font-weight: 600;
  text-wrap: balance;
}

.candidate-job-card__title a {
  color: inherit;
}

.candidate-job-card__title a:hover,
.candidate-job-card__title a:focus-visible {
  color: #1a5e9f;
  outline: none;
}

.candidate-job-card__meta {
  margin-top: auto;
  display: grid;
  gap: 8px;
  color: #5d7590;
  font-size: 0.95rem;
  line-height: 1.5;
}

.candidate-job-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #1a5e9f;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.candidate-job-card__link:hover,
.candidate-job-card__link:focus-visible {
  color: #0d457a;
  outline: none;
}

.candidate-jobs__empty {
  margin-top: 24px;
  border-radius: 18px;
  border: 1px dashed rgba(13, 94, 168, 0.24);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 20px;
  text-align: center;
  color: #385979;
}

.candidate-jobs__empty p {
  margin: 0;
}

.candidate-jobs__actions {
  margin-top: clamp(26px, 3.2vw, 38px);
  display: flex;
  justify-content: flex-start;
}

.candidate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.36s ease;
}

.candidate-btn:hover,
.candidate-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.candidate-btn__arrow {
  font-size: 1.3rem;
  line-height: 1;
}

.candidate-space .sjob-apply-section {
  position: relative;
  padding: clamp(72px, 8.2vw, 112px) 0;
  background:
    radial-gradient(62% 46% at 86% 12%, rgba(125, 200, 245, 0.2) 0%, rgba(125, 200, 245, 0) 70%),
    radial-gradient(58% 42% at 10% 90%, rgba(192, 146, 82, 0.08) 0%, rgba(192, 146, 82, 0) 72%),
    linear-gradient(168deg, #f7fbff 0%, #edf4fb 100%);
}

.candidate-space .sjob-apply-section__inner {
  position: relative;
  max-width: none;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(17, 41, 68, 0.1);
  background:
    radial-gradient(110% 128% at 100% 0%, rgba(130, 204, 250, 0.16) 0%, rgba(130, 204, 250, 0) 56%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.95) 100%);
  box-shadow:
    var(--candidate-shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  padding: clamp(30px, 3.6vw, 50px);
  overflow: hidden;
}

.candidate-space .sjob-apply-section__inner::before {
  content: "";
  position: absolute;
  inset: auto 20% -36% 20%;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(50% 96% at 50% 50%, rgba(130, 204, 250, 0.22) 0%, rgba(130, 204, 250, 0) 100%);
  pointer-events: none;
  filter: blur(16px);
}

.candidate-space .sjob-apply-section__header {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-bottom: clamp(24px, 3.8vw, 40px);
  text-align: left;
}

.candidate-space .sjob-apply-section__title {
  margin-top: 8px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  font-weight: 500;
  color: #102843;
}

.candidate-space .sjob-apply-section__lead {
  margin: 14px 0 0;
  color: #5f7893;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.74;
  max-width: 62ch;
}

.candidate-space .sjob-apply-form-wrap {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 2.8vw, 36px);
  border-radius: 20px;
  border: 1px solid rgba(17, 41, 68, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 14px 32px rgba(9, 24, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  padding: clamp(18px, 2.2vw, 28px);
}

.candidate-space .apply-form {
  display: block;
}

.candidate-space .apply-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.candidate-space .apply-form__field--full {
  grid-column: 1 / -1;
}

.candidate-space .apply-form__label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 0 0 8px;
  color: #15324f;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.candidate-space .apply-form__required {
  color: #c09252;
}

.candidate-space :is(.apply-form__input, .apply-form__textarea) {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(17, 41, 68, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: #14314f;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  padding: 12px 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.candidate-space :is(.apply-form__input, .apply-form__textarea)::placeholder {
  color: #7b8fa3;
}

.candidate-space :is(.apply-form__input, .apply-form__textarea):focus {
  outline: none;
  border-color: rgba(13, 94, 168, 0.42);
  box-shadow: 0 0 0 3px rgba(130, 204, 250, 0.22);
  background: #ffffff;
}

.candidate-space .apply-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.candidate-space .apply-form__upload {
  position: relative;
  border-radius: 14px;
  border: 1px dashed rgba(13, 94, 168, 0.3);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(130, 204, 250, 0.12) 0%, rgba(130, 204, 250, 0) 54%),
    rgba(250, 253, 255, 0.92);
  padding: 16px;
}

.candidate-space .apply-form__upload-ui {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  color: #2b537c;
  min-height: 128px;
  pointer-events: none;
}

.candidate-space .apply-form__upload-label {
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

.candidate-space .apply-form__upload-label span {
  display: block;
  font-weight: 500;
  color: #5e7894;
}

.candidate-space .apply-form__upload-filename {
  margin: 0;
  color: #173f67;
  font-weight: 600;
}

.candidate-space .apply-form__hint {
  margin: 10px 0 0;
  color: #607991;
  font-size: 0.88rem;
}

.candidate-space .apply-form__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.candidate-space .apply-form__checkbox-label {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #4d6783;
  line-height: 1.62;
  font-size: 0.95rem;
}

.candidate-space .apply-form__checkbox {
  margin-top: 3px;
}

.candidate-space .apply-form__checkbox-custom {
  display: block;
  flex: 0 0 20px;
}

.candidate-space .apply-form__checkbox-label>span:last-child {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
}

.candidate-space .apply-form__checkbox-label a {
  color: #1a5e9f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.candidate-space .apply-form__status {
  margin-top: 12px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.candidate-space .apply-form__footer {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.candidate-space .apply-form__submit {
  min-height: 54px;
  border-radius: 14px;
  padding: 12px 24px;
  letter-spacing: 0.02em;
}

.candidate-space .apply-form__footer-note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f7893;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .candidate-hero__wrap {
    grid-template-columns: 1fr;
  }

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

  .candidate-hero__title {
    max-width: 16ch;
  }

  .candidate-hero__description {
    max-width: 60ch;
  }

  .candidate-hero__media img {
    min-height: 420px;
  }

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

@media (max-width: 860px) {
  .candidate-hero__description {
    max-width: 100%;
  }

  .candidate-steps {
    grid-template-columns: 1fr;
  }

  .candidate-step p {
    max-width: none;
  }

  .candidate-jobs__grid {
    grid-template-columns: 1fr;
  }

  .candidate-space .apply-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .candidate-hero__pillars {
    flex-direction: column;
    align-items: stretch;
  }

  .candidate-hero__actions {
    gap: 10px;
  }

  .candidate-hero__actions .rx-button {
    width: 100%;
    justify-content: center;
  }

  .candidate-hero__media img {
    min-height: 320px;
  }

  .candidate-space .sjob-apply-section__inner {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .candidate-space .sjob-apply-form-wrap {
    padding: 14px;
  }

  .candidate-space .apply-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .candidate-space .apply-form__submit {
    width: 100%;
  }
}

/* Home social proof */
.home-testimonials {
  padding-top: clamp(64px, 7.4vw, 104px);
  padding-bottom: clamp(52px, 6.2vw, 86px);
  background:
    radial-gradient(circle at 8% 14%, rgba(125, 200, 245, 0.2) 0%, transparent 44%),
    radial-gradient(circle at 88% 88%, rgba(192, 146, 82, 0.12) 0%, transparent 36%),
    linear-gradient(164deg, #f9fcff 0%, #edf4fc 100%);
}

.home-testimonials__head {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.home-testimonials__head .section__eyebrow {
  justify-content: center;
}

.home-testimonials__grid {
  margin-top: clamp(28px, 3.2vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.home-testimonial-card {
  border-radius: 22px;
  border: 1px solid rgba(13, 94, 168, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(9, 24, 40, 0.09);
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 244px;
}

.home-testimonial-card__rating {
  margin: 0;
  color: var(--nest-gold);
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.home-testimonial-card__quote {
  margin: 0;
}

.home-testimonial-card__quote p {
  margin: 0;
  color: rgba(17, 41, 68, 0.86);
  line-height: 1.68;
  font-size: clamp(0.96rem, 1.1vw, 1.04rem);
}

.home-testimonial-card__author {
  margin-top: auto;
  display: grid;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 94, 168, 0.14);
}

.home-testimonial-card__name {
  margin: 0;
  color: #153252;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-testimonial-card__role {
  margin: 0;
  color: #607995;
  font-size: 0.92rem;
}

.trust-marquee {
  padding-top: clamp(40px, 5vw, 70px);
  padding-bottom: clamp(62px, 7vw, 92px);
  background: linear-gradient(180deg, #edf4fc 0%, #f6faff 100%);
}

.trust-marquee__head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.trust-marquee__head .section__eyebrow {
  justify-content: center;
}

.trust-partners {
  margin-top: clamp(26px, 3vw, 38px);
}

.trust-partners__viewport {
  margin-top: 0;
  border-radius: 18px;
  border: 1px solid rgba(13, 94, 168, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--nest-surface-shadow);
  overflow: hidden;
  position: relative;
}

.trust-partners__viewport::before,
.trust-partners__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(36px, 7vw, 90px);
  z-index: 2;
  pointer-events: none;
}

.trust-partners__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0) 100%);
}

.trust-partners__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0) 100%);
}

.trust-partners__track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  width: max-content;
  padding: 18px clamp(12px, 2.4vw, 28px);
  animation: trustMarqueeMove 24s linear infinite;
}

.trust-partners__viewport:hover .trust-partners__track {
  animation-play-state: paused;
}

.trust-partner-card {
  min-width: clamp(168px, 16vw, 214px);
  min-height: clamp(78px, 8vw, 96px);
  border-radius: 14px;
  border: 1px solid rgba(13, 94, 168, 0.14);
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  padding: 14px 16px;
}

.trust-partner-card img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.32s ease, transform 0.32s var(--premium-ease);
}

.trust-partner-card:hover img,
.trust-partner-card:focus-within img {
  opacity: 1;
  transform: translateY(-1px);
}

.home-latest-jobs {
  background:
    radial-gradient(circle at 86% 8%, rgba(125, 200, 245, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 12% 92%, rgba(13, 94, 168, 0.1) 0%, transparent 36%),
    linear-gradient(170deg, #f8fbff 0%, #edf4fc 100%);
}

@keyframes trustMarqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-partners__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .home-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* Shared hero DNA (home, candidats, recruteurs) */
.brand-hero :is(.hero__eyebrow, .candidate-hero__eyebrow, .rx-kicker) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-hero :is(.hero__eyebrow, .candidate-hero__eyebrow, .rx-kicker)::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.brand-hero.brand-hero--light :is(.hero__eyebrow, .candidate-hero__eyebrow, .rx-kicker) {
  color: var(--nest-electric);
}

.brand-hero:not(.brand-hero--light) :is(.hero__eyebrow, .candidate-hero__eyebrow, .rx-kicker) {
  color: var(--nest-gold);
}

.brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.brand-hero__chips {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-hero__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(130, 204, 250, 0.24);
  background: rgba(17, 41, 68, 0.2);
  color: rgba(239, 243, 246, 0.84);
}

.brand-hero--light .brand-hero__chip {
  border-color: rgba(13, 94, 168, 0.2);
  background: rgba(13, 94, 168, 0.05);
  color: rgba(9, 24, 40, 0.76);
}

.brand-hero__chips--trust .brand-hero__chip {
  justify-content: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 500;
  min-height: auto;
  padding: 10px 12px;
  border-radius: 14px;
}

.brand-hero__media {
  border: 1px solid var(--nest-surface-border);
  box-shadow: var(--nest-surface-shadow);
}

/* Cross-page coherence layer */
.main-content .section__title,
.main-content .rx-heading h2,
.main-content .candidate-approach__title,
.main-content .sjob-apply-section__title,
.main-content .sjob-related__title,
.main-content .jobs-empty__title {
  letter-spacing: -0.01em;
}

.main-content .button--primary,
.main-content .candidate-btn--primary,
.main-content .jobs-hero__cta,
.main-content .jobs-filters__submit,
.main-content .sjob-apply-btn {
  background: var(--nest-cta-gradient);
  box-shadow: var(--nest-cta-shadow);
}

.main-content .button--primary:hover,
.main-content .button--primary:focus-visible,
.main-content .candidate-btn--primary:hover,
.main-content .candidate-btn--primary:focus-visible,
.main-content .jobs-hero__cta:hover,
.main-content .jobs-hero__cta:focus-visible,
.main-content .jobs-filters__submit:hover,
.main-content .jobs-filters__submit:focus-visible,
.main-content .sjob-apply-btn:hover,
.main-content .sjob-apply-btn:focus-visible {
  background: var(--nest-cta-gradient-hover);
}

/* ── Premium Home Evolution (additive layer) ───────────────────── */
body.home {
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --premium-ease-soft: cubic-bezier(0.19, 1, 0.22, 1);
  --premium-glass: rgba(255, 255, 255, 0.08);
  --premium-shadow-soft: 0 20px 38px rgba(4, 18, 33, 0.12);
  --premium-shadow-strong: 0 34px 74px rgba(4, 18, 33, 0.22);
}

body.home .hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(132px, 14vh, 184px) 0 clamp(86px, 9vw, 118px);
  --hero-glow-x: 78%;
  --hero-glow-y: 14%;
  --hero-glow-x-alt: 24%;
  --hero-glow-y-alt: 84%;
  background:
    radial-gradient(circle at 10% 18%, rgba(192, 146, 82, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(88, 165, 229, 0.18) 0%, transparent 40%),
    linear-gradient(140deg, #030a16 0%, #0a1a31 54%, #0f3260 100%);
}

body.home .hero::before {
  background:
    linear-gradient(118deg, rgba(3, 11, 23, 0.72), rgba(3, 11, 23, 0.32)),
    linear-gradient(180deg, rgba(9, 24, 40, 0) 56%, rgba(9, 24, 40, 0.42) 100%);
}

body.home .hero__mesh,
body.home .hero__grain,
body.home .hero__light {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.home .hero__mesh {
  background:
    radial-gradient(circle at 18% 22%, rgba(144, 206, 255, 0.12) 0, transparent 38%),
    radial-gradient(circle at 78% 68%, rgba(192, 146, 82, 0.12) 0, transparent 42%),
    radial-gradient(circle at 45% 74%, rgba(13, 94, 168, 0.18) 0, transparent 40%);
  animation: premiumMeshDrift 18s ease-in-out infinite alternate;
}

body.home .hero__grain {
  opacity: 0.26;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  animation: premiumGrainShift 1.2s steps(2) infinite;
}

body.home .hero__light--one {
  background: radial-gradient(ellipse 38% 24% at var(--hero-glow-x) var(--hero-glow-y), rgba(150, 215, 255, 0.22) 0, transparent 70%);
  animation: premiumLightSweep 14s var(--premium-ease-soft) infinite alternate;
}

body.home .hero__light--two {
  background: radial-gradient(ellipse 32% 18% at var(--hero-glow-x-alt) var(--hero-glow-y-alt), rgba(192, 146, 82, 0.16) 0, transparent 68%);
  animation: premiumLightSweep 18s var(--premium-ease-soft) infinite alternate-reverse;
}

body.home .hero__grid {
  gap: clamp(26px, 3vw, 44px);
}

body.home .hero__title {
  font-size: clamp(3.1rem, 8.4vw, 5rem);
  letter-spacing: 0.05em;
  text-shadow: 0 14px 30px rgba(3, 11, 23, 0.28);
}

body.home .hero__description {
  margin-top: 24px;
  max-width: 60ch;
  font-size: clamp(1.04rem, 1.6vw, 1.23rem);
  color: rgba(240, 245, 250, 0.9);
}

body.home .hero__actions .button {
  min-height: 54px;
  transition: transform 0.35s var(--premium-ease), box-shadow 0.35s var(--premium-ease), filter 0.35s ease;
}

body.home .hero__actions .button--primary {
  position: relative;
  overflow: hidden;
}

body.home .hero__actions .button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 14%, rgba(255, 255, 255, 0.5) 48%, transparent 86%);
  transform: translateX(-122%);
}

body.home .hero__actions .button--primary:hover::before,
body.home .hero__actions .button--primary:focus-visible::before {
  animation: navShimmer 0.92s var(--premium-ease) forwards;
}

body.home .hero__actions .button--primary:hover,
body.home .hero__actions .button--primary:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(1, 93, 177, 0.34);
}

body.home .hero__actions .button--ghost {
  border-color: rgba(239, 243, 246, 0.32);
  background: rgba(239, 243, 246, 0.08);
}

body.home .hero__chips {
  margin-top: 34px;
}

body.home .hero__chip {
  border-radius: 12px;
  border-color: rgba(130, 204, 250, 0.26);
  background: rgba(3, 21, 45, 0.44);
  color: rgba(239, 243, 246, 0.86);
}

body.home .hero__insight {
  border-radius: 28px;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(9, 28, 50, 0.6) 0%, rgba(95, 173, 237, 0.16) 100%);
  box-shadow: 0 34px 64px rgba(3, 11, 23, 0.42);
  transition: transform 0.55s var(--premium-ease), box-shadow 0.55s var(--premium-ease), border-color 0.55s ease;
}

body.home .hero__insight:hover,
body.home .hero__insight:focus-within {
  transform: translateY(-5px);
  border-color: rgba(130, 204, 250, 0.44);
  box-shadow: 0 40px 80px rgba(3, 11, 23, 0.52);
}

body.home .hero__insight-media img {
  filter: saturate(1.08) contrast(1.08) brightness(0.95);
  transition: transform 0.8s var(--premium-ease-soft), filter 0.8s ease;
}

body.home .hero__insight:hover .hero__insight-media img,
body.home .hero__insight:focus-within .hero__insight-media img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.09) brightness(0.98);
}

body.home .immersion-manifesto {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #102a45;
  padding-top: clamp(74px, 8vw, 108px);
  padding-bottom: clamp(74px, 8vw, 106px);
  background:
    radial-gradient(ellipse 62% 46% at 78% 18%, rgba(162, 215, 255, 0.26) 0%, rgba(162, 215, 255, 0) 76%),
    radial-gradient(ellipse 54% 42% at 16% 86%, rgba(185, 225, 255, 0.2) 0%, rgba(185, 225, 255, 0) 78%),
    linear-gradient(152deg, #fdfefe 0%, #f4f9ff 56%, #edf5ff 100%);
}

body.home .immersion-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 12%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(ellipse at 88% 84%, rgba(150, 212, 255, 0.16) 0%, rgba(150, 212, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.2)),
    repeating-radial-gradient(circle at 0 0, rgba(17, 41, 68, 0.035) 0 0.72px, transparent 0.72px 3.8px);
  mix-blend-mode: normal;
  opacity: 0.62;
  pointer-events: none;
}

body.home .immersion-manifesto__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(24px, 3.2vw, 52px);
  align-items: start;
}

body.home .immersion-manifesto__top {
  display: contents;
}

body.home .immersion-manifesto__content {
  grid-column: 1;
  max-width: 50ch;
  position: relative;
  padding-right: clamp(6px, 1vw, 16px);
}

body.home .immersion-manifesto__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: clamp(110px, 16vw, 180px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 108, 166, 0.48), rgba(36, 108, 166, 0.06));
  box-shadow: 0 0 18px rgba(113, 188, 245, 0.28);
}

body.home .immersion-manifesto__kicker {
  margin: 0;
  color: rgba(22, 92, 148, 0.86);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

body.home .immersion-manifesto__title {
  margin: 16px 0 0;
  max-width: 17ch;
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 5.5vw, 4.45rem);
  color: #102e4b;
  text-wrap: balance;
  text-shadow: 0 9px 22px rgba(140, 206, 252, 0.16);
  position: relative;
  z-index: 1;
}

body.home .immersion-manifesto__lead {
  margin: 24px 0 0;
  max-width: 54ch;
  color: rgba(29, 61, 90, 0.8);
  font-size: clamp(1.02rem, 1.22vw, 1.15rem);
  line-height: 1.76;
  position: relative;
  z-index: 1;
}

body.home .immersion-manifesto__pillars {
  grid-column: 2;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.3vw, 30px);
}

body.home .immersion-pillar {
  position: relative;
  padding: clamp(22px, 2.35vw, 30px);
  border-radius: 22px;
  border: 1px solid rgba(100, 165, 214, 0.24);
  background:
    radial-gradient(circle at 14% -20%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 58%),
    linear-gradient(164deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.84));
  backdrop-filter: blur(7px);
  box-shadow:
    0 22px 42px rgba(20, 54, 86, 0.11),
    0 10px 22px rgba(20, 54, 86, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.44s var(--premium-ease), border-color 0.44s ease, box-shadow 0.44s var(--premium-ease), background-color 0.44s ease, filter 0.44s ease;
}

body.home .immersion-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.66);
  opacity: 0.7;
  pointer-events: none;
}

body.home .immersion-pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(86, 154, 208, 0.54);
  box-shadow:
    0 34px 62px rgba(18, 50, 82, 0.18),
    0 14px 26px rgba(18, 50, 82, 0.08),
    0 0 0 1px rgba(170, 221, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 12% -16%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 58%),
    linear-gradient(162deg, rgba(255, 255, 255, 0.98), rgba(224, 238, 252, 0.84));
  filter: saturate(1.03);
}

body.home .immersion-pillar__index {
  margin: 0 0 10px;
  color: rgba(184, 143, 92, 0.62);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.045em;
}

body.home .immersion-pillar h3 {
  margin: 0;
  color: rgba(17, 48, 77, 0.93);
  font-size: clamp(1.08rem, 1.34vw, 1.26rem);
  line-height: 1.45;
  letter-spacing: 0.006em;
}

body.home .section--light.home-testimonials {
  background:
    radial-gradient(circle at 11% 9%, rgba(125, 200, 245, 0.16) 0%, transparent 44%),
    linear-gradient(167deg, #fdfefe 0%, #edf4fb 100%);
}

body.home .home-testimonials__grid {
  gap: clamp(16px, 1.8vw, 24px);
}

body.home .home-testimonial-card {
  min-height: 260px;
  border: 1px solid rgba(13, 94, 168, 0.18);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.88) 100%);
  box-shadow: var(--premium-shadow-soft);
  transition: transform 0.4s var(--premium-ease), box-shadow 0.4s var(--premium-ease), border-color 0.4s ease;
}

body.home .home-testimonial-card:hover {
  --lift-y: -6px;
  border-color: rgba(13, 94, 168, 0.34);
  box-shadow: 0 26px 50px rgba(4, 18, 33, 0.17);
}

body.home .home-testimonials__grid .home-testimonial-card:nth-child(2) {
  --base-offset-y: 14px;
}

body.home .home-testimonials__grid .home-testimonial-card:nth-child(3) {
  --base-offset-y: 6px;
}

body.home .home-testimonial-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.home .home-testimonial-card__identity {
  display: block;
}

body.home .home-testimonial-card__impact {
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(13, 94, 168, 0.2);
  color: #205387;
  background: rgba(13, 94, 168, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.home .home-testimonial-card__author {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

body.home .home-testimonial-card__rating {
  margin-top: 2px;
}

body.home .trust-marquee {
  background: linear-gradient(180deg, #eff5fc 0%, #f8fbff 100%);
}

body.home .trust-marquee__proofs {
  margin-top: clamp(22px, 2.8vw, 34px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

body.home .trust-proof-card {
  border-radius: 16px;
  border: 1px solid rgba(13, 94, 168, 0.16);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(16px, 2vw, 22px);
}

body.home .trust-proof-card__value {
  margin: 0;
  color: #102843;
  font-family: var(--font-title);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1;
}

body.home .trust-proof-card__label {
  margin: 10px 0 0;
  color: rgba(17, 41, 68, 0.74);
}

body.home .trust-marquee__viewport {
  margin-top: 18px;
}

body.home .trust-marquee__item {
  min-width: clamp(170px, 18vw, 220px);
  border-color: rgba(13, 94, 168, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(4, 18, 33, 0.08);
}

body.home .trust-marquee__item span {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #284968;
  text-align: center;
}

body.home .home-latest-jobs {
  position: relative;
  background:
    radial-gradient(circle at 82% 11%, rgba(13, 94, 168, 0.13) 0%, transparent 40%),
    radial-gradient(circle at 6% 84%, rgba(192, 146, 82, 0.1) 0%, transparent 34%),
    linear-gradient(170deg, #f7fbff 0%, #e9f1fa 100%);
}

body.home .candidate-jobs__grid {
  gap: clamp(16px, 1.8vw, 24px);
}

body.home .candidate-job-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 22px;
  border: 1px solid rgba(13, 94, 168, 0.15);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 248, 255, 0.9) 100%);
  box-shadow: var(--premium-shadow-soft);
  transition: transform 0.45s var(--premium-ease), box-shadow 0.45s var(--premium-ease), border-color 0.45s ease, background-color 0.45s ease;
}

body.home .candidate-job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 0%, rgba(125, 200, 245, 0.26) 0%, transparent 42%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.home .candidate-job-card:hover,
body.home .candidate-job-card:focus-within {
  --lift-y: -8px;
  border-color: rgba(13, 94, 168, 0.32);
  box-shadow: var(--premium-shadow-strong);
}

body.home .candidate-job-card:hover::before,
body.home .candidate-job-card:focus-within::before {
  opacity: 1;
}

body.home .candidate-job-card>* {
  position: relative;
  z-index: 1;
}

body.home .candidate-job-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

body.home .candidate-job-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

body.home .candidate-job-card__type,
body.home .candidate-job-card__badge {
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(13, 94, 168, 0.16);
  background: rgba(13, 94, 168, 0.08);
  padding: 4px 10px;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1b4f82;
}

body.home .candidate-job-card__salary {
  margin: 2px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #18457a;
}

body.home .candidate-job-card__category {
  margin: 0;
  color: #5d7590;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.home .candidate-job-card__meta {
  gap: 4px;
}

body.home .candidate-job-card__link {
  margin-top: 8px;
  width: fit-content;
  padding: 6px 2px 4px;
  border-bottom: 1px solid transparent;
  transition: transform 0.32s var(--premium-ease), border-color 0.32s ease, color 0.32s ease;
}

body.home .candidate-job-card__link:hover,
body.home .candidate-job-card__link:focus-visible {
  border-color: rgba(13, 94, 168, 0.5);
  transform: translateX(3px);
}

body.home .candidate-job-card__link span {
  transition: transform 0.32s var(--premium-ease);
}

body.home .candidate-job-card:hover .candidate-job-card__link span,
body.home .candidate-job-card:focus-within .candidate-job-card__link span {
  transform: translateX(3px);
}

body.home .premium-gateway {
  background:
    radial-gradient(circle at 94% 12%, rgba(125, 200, 245, 0.18) 0%, transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(192, 146, 82, 0.12) 0%, transparent 28%),
    linear-gradient(168deg, #f4f8fd 0%, #e9f2fb 100%);
}

body.home .premium-gateway-card {
  transition: transform 0.45s var(--premium-ease), box-shadow 0.45s var(--premium-ease), border-color 0.45s ease;
}

body.home .premium-gateway-card:hover {
  transform: translateY(-6px);
}

body.home .card-tier--interactive {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  --base-offset-y: 0px;
  transform: perspective(980px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(calc(var(--base-offset-y) + var(--lift-y)));
  transform-style: preserve-3d;
  transition: transform 0.4s var(--premium-ease), box-shadow 0.4s var(--premium-ease), border-color 0.4s ease;
}

body.home .card-tier--interactive:hover,
body.home .card-tier--interactive:focus-within {
  --lift-y: -6px;
}

/* ── Premium Refinement Pass ───────────────────────────── */
body.home {
  --premium-shadow-soft: 0 18px 34px rgba(4, 18, 33, 0.11), 0 2px 8px rgba(4, 18, 33, 0.04);
  --premium-shadow-strong: 0 34px 74px rgba(4, 18, 33, 0.2), 0 10px 24px rgba(4, 18, 33, 0.09);
}

body.home .hero {
  position: relative;
}

body.home .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(3, 11, 23, 0), rgba(3, 11, 23, 0.38));
  pointer-events: none;
}

body.home .hero__insight {
  box-shadow:
    0 34px 64px rgba(3, 11, 23, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body.home .immersion-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 48%, rgba(148, 211, 255, 0.24), transparent 56%),
    radial-gradient(circle at 84% 14%, rgba(109, 184, 242, 0.16), transparent 42%),
    linear-gradient(102deg, rgba(255, 255, 255, 0) 38%, rgba(142, 208, 255, 0.22) 50%, rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: soft-light;
  animation: manifestoAtmosShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

body.home .trust-marquee {
  position: relative;
}

body.home .trust-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 86%, rgba(140, 204, 248, 0.14), transparent 42%),
    radial-gradient(circle at 92% 14%, rgba(192, 146, 82, 0.1), transparent 36%);
  pointer-events: none;
}

body.home .trust-partners {
  margin-top: clamp(22px, 3vw, 34px);
}

body.home .trust-partner-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 255, 0.86));
  box-shadow: 0 10px 20px rgba(4, 18, 33, 0.06);
}

body.home .trust-partner-card img {
  opacity: 0.95;
}

body.home .trust-partner-card:hover img,
body.home .trust-partner-card:focus-within img {
  opacity: 1;
  transform: translateY(-1px);
}

body.home .home-latest-jobs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 88%, rgba(125, 200, 245, 0.15), transparent 40%),
    radial-gradient(circle at 14% 22%, rgba(13, 94, 168, 0.1), transparent 36%);
  pointer-events: none;
}

body.home .home-latest-jobs .nest-container {
  position: relative;
}

body.home .candidate-job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.home .candidate-job-card__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(13, 94, 168, 0.28);
}

body.home .candidate-job-card__link span {
  display: inline-block;
}

body.home .candidate-job-card:hover .candidate-job-card__logo,
body.home .candidate-job-card:focus-within .candidate-job-card__logo {
  box-shadow: 0 10px 18px rgba(4, 18, 33, 0.12);
}


@keyframes manifestoAtmosShift {
  0% {
    opacity: 0.62;
    transform: translateX(0);
  }

  100% {
    opacity: 0.94;
    transform: translateX(1.2%);
  }
}

@keyframes navShimmer {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes premiumMeshDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(1.8%, -1.2%) scale(1.05);
  }

  100% {
    transform: translate(-1.6%, 1.4%) scale(1.03);
  }
}

@keyframes premiumLightSweep {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(2%, -1.2%, 0);
  }
}

@keyframes premiumGrainShift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(1px, -1px);
  }
}

@media (max-width: 1050px) {
  body.home .immersion-manifesto__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.home .immersion-manifesto__content {
    grid-column: 1;
    max-width: 100%;
  }


  body.home .immersion-manifesto__pillars {
    grid-column: 1;
    margin-top: 20px;
  }

  body.home .immersion-manifesto__pillars {
    grid-template-columns: 1fr;
  }

  body.home .trust-marquee__proofs {
    grid-template-columns: 1fr;
  }

  body.home .candidate-job-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home .candidate-job-card__badges {
    justify-content: flex-start;
  }

  body.home .home-testimonials__grid .home-testimonial-card:nth-child(2),
  body.home .home-testimonials__grid .home-testimonial-card:nth-child(3) {
    --base-offset-y: 0px;
  }
}

@media (max-width: 883px) {
  .site-header.is-hidden {
    transform: none;
  }
}

@media (max-width: 680px) {
  body.home .immersion-manifesto {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  body.home .immersion-manifesto__title {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.08;
  }

  body.home .immersion-manifesto__lead {
    max-width: 100%;
  }

  body.home .immersion-manifesto__content::before {
    width: 118px;
    top: -10px;
  }


  body.home .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 126px;
  }

  body.home .hero__title {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  body.home .hero__actions .button {
    width: 100%;
  }

  .site-footer__cta-title {
    max-width: 100%;
  }

  .site-footer__cta-actions {
    flex-direction: column;
  }

  .site-footer__cta-button {
    width: 100%;
  }
}

.main-content .rx-metric-card,
.main-content .rx-benefit-card,
.main-content .rx-journey-card,
.main-content .rx-tools-card,
.main-content .rx-culture-card,
.main-content .job-card__inner,
.main-content .sjob-sidebar__card,
.main-content .candidate-step__icon {
  border-color: var(--nest-surface-border);
  box-shadow: var(--nest-surface-shadow);
}

/* Qui sommes-nous: premium editorial immersion layer */
.about-premium-journey {
  --about-scroll-progress: 0.16;
  --about-glow-shift: 0%;
  position: relative;
  background:
    radial-gradient(95% 65% at calc(8% + var(--about-glow-shift)) 2%, rgba(112, 191, 245, 0.16) 0%, rgba(112, 191, 245, 0) 72%),
    radial-gradient(85% 60% at calc(95% - var(--about-glow-shift)) 36%, rgba(192, 146, 82, 0.12) 0%, rgba(192, 146, 82, 0) 68%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7fc 48%, #eef4fb 100%);
}

.about-premium-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(132deg,
      rgba(17, 41, 68, 0.01) 0,
      rgba(17, 41, 68, 0.01) 1px,
      transparent 1px,
      transparent 18px),
    radial-gradient(120% 75% at 50% 0%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 66%);
  opacity: 0.88;
}

.about-premium-journey>.section {
  position: relative;
  z-index: 1;
}

.about-premium-journey>.section+.section {
  margin-top: 0;
  padding-top: clamp(78px, 9vw, 120px);
}

.about-premium-journey>.section+.section::before {
  content: none;
}

.about-premium-journey [data-parallax-depth] {
  translate: 0 var(--float-y, 0px);
  will-change: transform;
}

.about-premium-journey .section--light {
  background:
    radial-gradient(120% 110% at 100% 0%, rgba(130, 204, 250, 0.16) 0%, rgba(130, 204, 250, 0) 56%),
    radial-gradient(90% 100% at 0% 100%, rgba(142, 175, 207, 0.12) 0%, rgba(142, 175, 207, 0) 54%),
    linear-gradient(162deg, rgba(255, 255, 255, 0.86) 0%, rgba(236, 244, 252, 0.92) 100%);
}

.about-premium-journey .about-story-lead {
  padding-top: clamp(86px, 10vw, 142px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.about-premium-journey .about-story-lead__media {
  border-radius: 30px;
  border-color: rgba(156, 180, 200, 0.42);
  box-shadow:
    0 28px 60px rgba(9, 24, 40, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-premium-journey .about-story-lead__media::after {
  background:
    linear-gradient(180deg, rgba(9, 24, 40, 0.03) 0%, rgba(9, 24, 40, 0.44) 100%),
    radial-gradient(circle at 14% 12%, rgba(130, 204, 250, 0.24) 0%, transparent 46%),
    radial-gradient(circle at 85% 88%, rgba(192, 146, 82, 0.14) 0%, transparent 50%);
}

.about-premium-journey .about-story__card {
  border-radius: 30px;
  border-color: rgba(158, 193, 220, 0.34);
  padding: clamp(26px, 2.9vw, 40px);
  gap: 18px;
  background:
    radial-gradient(130% 150% at 98% 2%, rgba(130, 204, 250, 0.34) 0%, rgba(130, 204, 250, 0) 54%),
    radial-gradient(120% 120% at 5% 96%, rgba(192, 146, 82, 0.2) 0%, rgba(192, 146, 82, 0) 58%),
    linear-gradient(153deg, rgba(6, 18, 34, 0.98) 0%, rgba(8, 39, 70, 0.95) 50%, rgba(8, 59, 103, 0.92) 100%);
}

.about-premium-journey .about-story__title {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 0.98;
  max-width: 16ch;
}

.about-premium-journey .about-story__content p {
  color: rgba(240, 245, 250, 0.92);
  line-height: 1.74;
}

.about-premium-journey .about-story__highlight {
  border-color: rgba(192, 146, 82, 0.46);
  background:
    linear-gradient(165deg, rgba(192, 146, 82, 0.18) 0%, rgba(192, 146, 82, 0.04) 100%),
    radial-gradient(80% 120% at 100% 100%, rgba(130, 204, 250, 0.12) 0%, rgba(130, 204, 250, 0) 62%);
}

.about-premium-journey .about-values {
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(92px, 10vw, 138px);
}

.about-premium-journey .about-values::before {
  width: min(54vw, 700px);
  height: min(54vw, 700px);
  right: max(-12vw, -170px);
  top: -190px;
  background: radial-gradient(circle, rgba(130, 204, 250, 0.26) 0%, rgba(130, 204, 250, 0) 70%);
}

.about-premium-journey .about-values::after {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 48%),
    repeating-linear-gradient(140deg,
      rgba(17, 41, 68, 0.014) 0,
      rgba(17, 41, 68, 0.014) 1px,
      transparent 1px,
      transparent 22px);
}

.about-premium-journey .about-values__head .section__title {
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  line-height: 0.96;
}

.about-premium-journey .about-values__grid {
  margin-top: clamp(34px, 4.6vw, 62px);
  gap: clamp(18px, 2vw, 30px);
}

.about-premium-journey .value-card {
  border-radius: 26px;
  padding: clamp(22px, 2.2vw, 30px);
  border-color: rgba(17, 41, 68, 0.1);
  box-shadow:
    0 20px 38px rgba(9, 24, 40, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.about-premium-journey .value-card::before {
  content: counter(value-counter, decimal-leading-zero);
  right: 18px;
  top: 16px;
  bottom: auto;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.8rem, 5.2vw, 4.3rem);
  letter-spacing: 0.03em;
  color: rgba(var(--value-accent-rgb), 0.16);
  z-index: 0;
}

.about-premium-journey .value-card::after {
  height: 1px;
  opacity: 0.84;
}

.about-premium-journey .value-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(17, 41, 68, 0.22);
}

.about-premium-journey .value-card h3 {
  margin-top: 18px;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.08;
  font-size: clamp(1.26rem, 2.2vw, 1.76rem);
}

.about-premium-journey .value-card>p:not(.value-card__eyebrow) {
  margin-top: 14px;
  line-height: 1.72;
}

.about-premium-journey .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 46px rgba(17, 41, 68, 0.16);
}

.about-premium-journey .about-vision-break {
  padding-top: clamp(54px, 6.4vw, 82px);
  padding-bottom: clamp(62px, 7.2vw, 92px);
  margin-top: 0;
}

.about-premium-journey .about-vision-break::after {
  content: "";
  position: absolute;
  left: min(5vw, 60px);
  right: min(5vw, 60px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 41, 68, 0) 0%, rgba(17, 41, 68, 0.17) 16%, rgba(17, 41, 68, 0.17) 84%, rgba(17, 41, 68, 0) 100%);
}

.about-vision-break__quote {
  margin: 0;
  padding: clamp(24px, 3.2vw, 40px) clamp(18px, 2.4vw, 42px);
  border-radius: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(17, 41, 68, 0.12);
  background:
    radial-gradient(90% 160% at 0% 0%, rgba(130, 204, 250, 0.2) 0%, rgba(130, 204, 250, 0) 60%),
    radial-gradient(90% 140% at 100% 100%, rgba(192, 146, 82, 0.14) 0%, rgba(192, 146, 82, 0) 62%),
    linear-gradient(152deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 245, 252, 0.95) 100%);
  box-shadow:
    0 24px 44px rgba(9, 24, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  text-align: center;
}

.about-vision-break__quote p {
  margin: 0;
  font-family: var(--font-title);
  font-style: italic;
  color: rgba(8, 24, 40, 0.96);
  font-size: clamp(1.74rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.about-vision-break__quote cite {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(16px, 2vw, 22px);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 41, 68, 0.66);
}

.about-vision-break__quote cite::before,
.about-vision-break__quote cite::after {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(192, 146, 82, 0.62);
}

.about-premium-journey .founder-premium {
  padding-top: clamp(96px, 10vw, 146px);
  padding-bottom: clamp(96px, 10vw, 138px);
  background:
    radial-gradient(circle at calc(8% + var(--about-glow-shift)) 8%, rgba(130, 204, 250, 0.22) 0%, rgba(130, 204, 250, 0) 50%),
    radial-gradient(circle at 88% 88%, rgba(192, 146, 82, 0.18) 0%, rgba(192, 146, 82, 0) 46%),
    linear-gradient(144deg, #020c19 0%, #061a32 44%, #0a2c50 100%);
}

.about-premium-journey .founder-premium::after {
  content: "";
  position: absolute;
  inset: auto 6% 16% 6%;
  height: clamp(140px, 17vw, 220px);
  background: radial-gradient(50% 90% at 50% 50%, rgba(130, 204, 250, 0.15) 0%, rgba(130, 204, 250, 0) 100%);
  pointer-events: none;
}

.about-premium-journey .founder-premium__head .section__title {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(2.3rem, 5.1vw, 4.4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.about-premium-journey .founder-premium__statement {
  margin: 0 0 clamp(22px, 2.8vw, 34px);
  max-width: 64ch;
  color: rgba(239, 243, 246, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.about-premium-journey .founder-premium__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.about-premium-journey .founder-card {
  border-radius: 28px;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(220px, 250px) minmax(0, 1fr);
  min-height: clamp(430px, 33vw, 500px);
  height: 100%;
  border-color: rgba(164, 210, 245, 0.4);
  box-shadow:
    0 26px 56px rgba(1, 8, 18, 0.48),
    inset 0 1px 0 rgba(239, 243, 246, 0.2),
    inset 0 0 0 1px rgba(125, 200, 245, 0.1);
}

.about-premium-journey .founder-card:hover,
.about-premium-journey .founder-card:focus-within {
  transform: translateY(-4px);
  box-shadow:
    0 32px 64px rgba(1, 8, 18, 0.56),
    0 0 0 1px rgba(130, 204, 250, 0.26),
    inset 0 1px 0 rgba(239, 243, 246, 0.24);
}

.about-premium-journey .founder-card__media {
  grid-column: 1;
  grid-row: 1;
  margin: 14px 14px 8px;
  min-height: 220px;
  border-radius: 18px;
  box-shadow:
    0 18px 30px rgba(2, 11, 21, 0.32),
    inset 0 1px 0 rgba(239, 243, 246, 0.32);
}

.about-premium-journey .founder-card__media::before {
  content: "";
  position: absolute;
  inset: auto 14% -26% 14%;
  height: 44%;
  border-radius: 999px;
  background: radial-gradient(50% 95% at 50% 50%, rgba(130, 204, 250, 0.34) 0%, rgba(130, 204, 250, 0) 100%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.about-premium-journey .founder-card__media img {
  object-position: center 14%;
  filter: saturate(1.02) contrast(1.08) brightness(0.98);
}

.about-premium-journey .founder-card:hover .founder-card__media img,
.about-premium-journey .founder-card:focus-within .founder-card__media img {
  transform: scale(1.015);
  filter: saturate(1.06) contrast(1.08) brightness(1);
}

.about-premium-journey .founder-card__body {
  grid-column: 1;
  grid-row: 2;
  padding: clamp(18px, 1.8vw, 24px) clamp(20px, 2vw, 26px) clamp(22px, 2vw, 28px);
  gap: 10px;
  justify-content: flex-start;
}

.about-premium-journey .founder-card__name {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  line-height: 1;
  max-width: none;
}

.about-premium-journey .founder-card__statement {
  margin: 2px 0 0;
  color: rgba(239, 243, 246, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.56;
  font-weight: 500;
}

.about-premium-journey .founder-card__focus {
  margin-top: 0;
  color: rgba(239, 243, 246, 0.78);
  line-height: 1.62;
}

.about-premium-journey .founder-card__actions {
  margin-top: auto;
  padding-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-premium-journey .founder-card__action--linkedin {
  grid-column: 1 / -1;
}

.about-premium-journey .founder-card__action span {
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.about-premium-journey .presence-section {
  padding-top: clamp(96px, 10vw, 130px);
  padding-bottom: clamp(92px, 9vw, 130px);
  background:
    radial-gradient(120% 85% at 104% 0%, rgba(130, 204, 250, 0.2) 0%, rgba(130, 204, 250, 0) 58%),
    radial-gradient(95% 100% at -8% 100%, rgba(192, 146, 82, 0.11) 0%, rgba(192, 146, 82, 0) 60%),
    linear-gradient(163deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 245, 252, 0.96) 100%);
}

.about-premium-journey .presence-section .section__title {
  text-transform: none;
  letter-spacing: 0.005em;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 0.95;
}

.about-premium-journey .presence-triptych {
  margin-top: clamp(34px, 4vw, 54px);
  border-radius: 28px;
  box-shadow:
    0 30px 62px rgba(4, 16, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.about-premium-journey .presence-panel {
  transition: flex-grow 0.46s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-premium-journey .presence-panel:hover,
.about-premium-journey .presence-panel:focus-visible,
.about-premium-journey .presence-panel.is-touch-open {
  transform: translateY(-2px);
}

.about-premium-journey .presence-panel__bg {
  filter: saturate(1.06) contrast(1.08) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.48s ease;
}

.about-premium-journey .presence-panel:hover .presence-panel__bg,
.about-premium-journey .presence-panel:focus-visible .presence-panel__bg,
.about-premium-journey .presence-panel.is-touch-open .presence-panel__bg {
  transform: scale(1.065);
  filter: saturate(1.14) contrast(1.1) brightness(1);
}

.about-premium-journey .presence-panel::before {
  background:
    radial-gradient(120% 88% at 50% 100%, rgba(4, 14, 32, 0.72) 0%, rgba(4, 14, 32, 0.2) 62%, rgba(4, 14, 32, 0) 100%),
    linear-gradient(180deg, rgba(4, 14, 32, 0.02) 0%, rgba(4, 14, 32, 0.36) 72%, rgba(4, 14, 32, 0.72) 100%);
}

.about-premium-journey .presence-panel__body {
  backdrop-filter: blur(5px);
  background: linear-gradient(180deg, rgba(5, 16, 31, 0.06) 0%, rgba(5, 16, 31, 0.34) 100%);
  border-radius: 16px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(239, 243, 246, 0.16);
  box-shadow: inset 0 1px 0 rgba(239, 243, 246, 0.2);
}

.about-premium-journey .presence-panel__city {
  font-size: clamp(1.6rem, 2.8vw, 2.36rem);
  letter-spacing: 0.01em;
}

.about-premium-journey .presence-panel__desc {
  opacity: 0.72;
  transform: translateY(0);
  max-width: 30ch;
  color: rgba(239, 243, 246, 0.9);
}

.about-premium-journey .presence-panel:hover .presence-panel__desc,
.about-premium-journey .presence-panel:focus-visible .presence-panel__desc,
.about-premium-journey .presence-panel.is-touch-open .presence-panel__desc {
  opacity: 1;
}

.about-premium-journey .presence-panel__tags {
  opacity: 0.78;
  transform: translateY(0);
}

.about-premium-journey .presence-panel:hover .presence-panel__tags,
.about-premium-journey .presence-panel:focus-visible .presence-panel__tags,
.about-premium-journey .presence-panel.is-touch-open .presence-panel__tags {
  opacity: 1;
}

@media (min-width: 1061px) {
  .about-premium-journey .about-values__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .about-premium-journey .value-card {
    grid-column: span 4;
    min-height: 286px;
  }

  .about-premium-journey .value-card--human-center {
    padding-inline: clamp(24px, 2.3vw, 34px);
  }
}

@media (max-width: 1220px) {
  .about-premium-journey .founder-premium__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-premium-journey .founder-card {
    min-height: clamp(420px, 46vw, 500px);
  }
}

@media (max-width: 1050px) {
  .about-premium-journey>.section+.section {
    margin-top: 0;
    padding-top: clamp(72px, 8.6vw, 104px);
  }

  .about-premium-journey .about-story-lead__grid {
    gap: 16px;
  }

  .about-premium-journey .about-values__head .section__title,
  .about-premium-journey .founder-premium__head .section__title,
  .about-premium-journey .presence-section .section__title {
    font-size: clamp(1.92rem, 6.5vw, 3.1rem);
  }

  .about-premium-journey .founder-premium__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-premium-journey .founder-card {
    min-height: auto;
    grid-template-rows: minmax(240px, 300px) minmax(0, 1fr);
  }

  .about-premium-journey .founder-card__media {
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .about-premium-journey .about-story-lead {
    padding-top: 62px;
  }

  .about-premium-journey .about-story__card {
    border-radius: 22px;
    padding: 20px 18px;
  }

  .about-premium-journey .about-story__title {
    font-size: clamp(1.44rem, 7.8vw, 2rem);
  }

  .about-vision-break__quote {
    padding: 24px 16px 22px;
  }

  .about-vision-break__quote p {
    font-size: clamp(1.42rem, 8.8vw, 2.2rem);
    line-height: 1.02;
  }

  .about-premium-journey .founder-card {
    border-radius: 22px;
  }

  .about-premium-journey .founder-card__body {
    padding: 18px 14px 14px;
  }

  .about-premium-journey .founder-card__actions {
    grid-template-columns: 1fr;
  }

  .about-premium-journey .founder-card__action--linkedin {
    grid-column: auto;
  }

  .about-premium-journey .founder-card__name {
    font-size: clamp(1.34rem, 7vw, 1.72rem);
  }

  .about-premium-journey .presence-triptych {
    border-radius: 18px;
  }

  .about-premium-journey .presence-panel__body {
    padding: 10px 10px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
