:root {
  --bg: #cdf1ff;
  --bg-deep: #bfe8ff;
  --text: #1e1e1e;
  --text-muted: #515151;
  --navy: #060b2e;
  --navy-soft: #1d2a74;
  --blue: #2f5dff;
  --blue-soft: #7c9ef8;
  --yellow: #ffe135;
  --white: #ffffff;
  --border: rgba(6, 11, 46, 0.14);
  --shadow: 0 18px 35px rgba(29, 42, 116, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    url("../assets/images/bg-sphere-yellow.png"),
    url("../assets/images/bg-sphere-blue.png"),
    url("../assets/images/bg-star.png"),
    url("../assets/images/bg-star.png"),
    url("../assets/images/bg-vertical.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y;
  background-position:
    left -18px top 10px,
    right -28px top 54px,
    left 150px top 8px,
    right 148px bottom 288px,
    center top;
  background-size:
    84px 84px,
    132px 132px,
    42px 42px,
    42px 42px,
    100% auto;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("../assets/images/bg-circles-top.png") no-repeat center top / min(178vw, 2560px) auto,
    url("../assets/images/bg-horizontal.png") no-repeat center 44% / 100% auto,
    url("../assets/images/bg-looper.png") no-repeat left 60px bottom 680px / 520px auto;
  opacity: 0.45;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 11% 12%, rgba(255, 225, 53, 0.16) 0, rgba(255, 225, 53, 0) 22%),
    radial-gradient(circle at 88% 10%, rgba(24, 71, 244, 0.12) 0, rgba(24, 71, 244, 0) 20%),
    radial-gradient(circle at 20% 100%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0) 14%);
  opacity: 0.8;
}

.page-shell>* {
  position: relative;
  z-index: 1;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
  background: linear-gradient(180deg, rgba(24, 71, 244, 0.45) 0%, rgba(205, 241, 255, 0.21) 100%);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 73px;
  gap: 24px;
  padding: 14px 0;
}

.topbar-logo {
  flex: 0 0 136px;
  width: 136px;
  height: 53px;
}

.topbar-logo img {
  width: 136px;
  height: 53px;
  object-fit: contain;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.31;
}

.topbar-cta,
.primary-button,
.secondary-button,
.role-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.topbar-cta,
.primary-button {
  background: var(--yellow);
  color: var(--navy);
}

.topbar-cta {
  min-height: 45px;
  padding: 12px 26px;
  box-shadow: 3px 3px 0 0 var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28px;
  white-space: nowrap;
}

.topbar-mobile-actions,
.topbar-mobile-nav {
  display: none;
}

.topbar-menu-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.topbar-menu-button span {
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-mobile-nav-open .topbar-menu-button span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.topbar.is-mobile-nav-open .topbar-menu-button span:nth-child(2) {
  opacity: 0;
}

.topbar.is-mobile-nav-open .topbar-menu-button span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.topbar-mobile-nav {
  width: min(100% - 40px, var(--container));
  margin: 0 auto 12px;
  padding: 12px 16px 16px;
  border: 2px solid rgba(6, 11, 46, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(6, 11, 46, 0.08);
}

.topbar-mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.secondary-button {
  margin-top: 22px;
  background: var(--yellow);
  color: var(--navy);
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.section-title-center {
  text-align: center;
}

.hero {
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 120px;
  text-align: center;
  background: url(../assets/images/background.png) no-repeat top center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 28%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-circles,
.hero-bg-sphere,
.hero-bg-star,
.hero-bg-sparkle {
  position: absolute;
}

.hero-bg-circles {
  top: -419px;
  left: 50%;
  width: 2559.54px;
  height: 1584.49px;
  transform: translateX(-50%);
  opacity: 1;
}

.hero-bg-glow {
  position: absolute;
  display: block;
  filter: blur(100px);
}

.hero-bg-glow-left {
  left: -74px;
  top: -124px;
  width: 697px;
  height: 614px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.42) 16%, rgba(255, 225, 53, 0.09) 34%, rgba(255, 225, 53, 0) 62%);
  transform: rotate(154.55deg);
}

.hero-bg-glow-right {
  right: -176px;
  top: 0;
  width: 539px;
  height: 760px;
  background:
    radial-gradient(circle at 78% 54%, rgba(23, 74, 255, 0.25) 0, rgba(23, 74, 255, 0.12) 18%, rgba(23, 74, 255, 0) 54%);
}

.hero-bg-sphere-yellow {
  left: 76px;
  top: 142px;
  width: 110px;
  height: 110px;
}

.hero-bg-sphere-blue {
  right: -58px;
  top: 325px;
  width: 176px;
  height: 176px;
}

.hero-bg-star-left {
  left: 220px;
  top: 98px;
  width: 64px;
  height: 64px;
}

.hero-bg-star-right {
  right: 220px;
  top: 144px;
  width: 64px;
  height: 64px;
}

.hero-bg-sparkle-small {
  left: 211px;
  bottom: 145px;
  width: 38px;
  height: 38px;
  opacity: 0.95;
}

.hero-bg-sparkle-tiny {
  left: 300px;
  bottom: 210px;
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 40px;
}

.hero-logo-image {
  width: 294px;
  height: 166px;
  object-fit: contain;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(64px, 9vw, 140px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 123px;
  white-space: nowrap;
}

.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 3px #1264d2;
}

.hero-title-fill {
  position: relative;
  color: var(--yellow);
  text-shadow: 5px 5px 0 #0a0a0a;
}

.hero-copy {
  width: min(100%, 834px);
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 2px solid var(--navy);
  border-radius: 10px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 0 var(--navy);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 33px;
  text-transform: uppercase;
}

.hero-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-down-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.reason-card,
.reason-feature,
.benefit-card,
.journey-card,
.process-card,
.role-card,
.gallery-card,
.profile-photo {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow);
}

.reasons-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.reasons-copy {
  width: 476px;
}

.reasons-pill {
  min-height: 54px;
  padding: 0 26px;
  border-width: 2px;
  border-radius: 50px;
  box-shadow: 3px 3px 0 0 var(--navy);
  background: #1847f4;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2.5px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.reason-card {
  min-height: 225px;
  padding: 18px 16px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.28);
}

.reason-no {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.reason-card h3 {
  margin-top: 4px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.reason-card p {
  margin-top: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.reason-card-light {
  background: #c5dcff;
  color: var(--navy);
}

.reason-card-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.reason-card-primary {
  background: #1847f4;
  color: var(--white);
  border: 3px solid var(--yellow);
  box-shadow: 0 0 32px rgba(255, 225, 53, 0.3), 6px 6px 0 0 rgba(0, 0, 0, 0.35);
}

.reason-card-dark {
  background: var(--navy);
  color: var(--white);
}

.reason-card-dark h3 {
  color: var(--yellow);
}

.reason-feature {
  position: relative;
  width: 628px;
  height: 524px;
  overflow: visible;
  border: none;
  box-shadow: inherit;
}

.reason-feature-frame {
  position: relative;
  width: 628px;
  height: 496px;
  overflow: hidden;
  border: 3px solid #1847f4;
  border-radius: 24px;
  box-shadow: 14px 14px 0 0 var(--navy);
  background: #1847f4;
}

.reason-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 16px;
}

.window-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.window-dot-red {
  background: #ff5f57;
}

.window-dot-yellow {
  background: #ffe135;
}

.window-dot-green {
  background: #28ca41;
}

.reason-window-url {
  margin-left: 8px;
  flex: 1;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  font-family: "Be Vietnam Pro", sans-serif;
}

.reason-feature-stage {
  position: absolute;
  inset: 50px 0 0 0;
  overflow: hidden;
}

.reason-feature-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(24, 71, 244, 0.25) 100%);
}

.reason-feature-grid,
.reason-feature-people {
  position: absolute;
  inset: 0;
}

.reason-feature-grid {
  width: 138%;
  left: -0.06%;
  object-fit: cover;
}

.reason-feature-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 234px;
  height: 132px;
  object-fit: cover;
}

.reason-feature-people {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-floating-qr {
  position: absolute;
  left: -24px;
  bottom: -28px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 129px;
}

.reason-qr-label {
  min-height: 34px;
  padding: 8px 12px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 0 var(--navy);
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reason-qr-box {
  width: 129px;
  height: 129px;
  padding: 12px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 0 var(--navy);
}

.reason-qr-box img {
  width: 105px;
  height: 105px;
  object-fit: cover;
}

.reason-apply-button {
  position: absolute;
  right: 16px;
  bottom: -24px;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 2px solid var(--navy);
  border-radius: 36px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 3px 3px 0 0 var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  display: grid;
  gap: 2px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(14deg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.benefit-card {
  min-height: 154px;
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--white);
}

.section-header-center {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.section-header-left {
  display: grid;
  gap: 24px;
}

.benefits-pill,
.process-pill,
.profile-pill {
  min-height: 50px;
  padding: 0 24px;
  border-width: 1px;
  box-shadow: 2px 2px 0 0 var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.benefits-grid-figma {
  gap: 24px;
  margin-top: 56px;
}

.benefit-card-figma {
  min-height: 172px;
  padding: 24px 18px;
  border: 2px solid var(--navy);
  border-radius: 20px;
  box-shadow: 5px 5px 0 0 var(--navy);
}

.benefit-figma-icon {
  width: 52px;
  height: 52px;
  padding: 2px;
  border: 2px solid var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-figma-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.benefit-figma-icon-light {
  background: #c5dcff;
}

.benefit-figma-icon-yellow {
  background: var(--yellow);
}

.benefit-card-figma h3 {
  margin-top: 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.benefit-card-figma p {
  margin-top: 8px;
  color: #4a5275;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.benefit-icon,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.benefit-icon-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.benefit-card h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}

.benefit-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.journey {
  background: url(../assets/images/bg_discovery.png) no-repeat top center / cover;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.journey-heading {
  color: #4a5565;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.journey-card {
  min-height: 276px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.journey-card-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.journey-card-white {
  background: var(--white);
  color: var(--navy);
}

.journey-card-dark {
  background: var(--navy);
  color: var(--white);
}

.journey-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.journey-index {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.journey-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 68px;
}

.journey-phase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.journey-phase-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
}

.journey-tag {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.journey-role {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}

.journey-card-dark .journey-tag,
.journey-card-dark .journey-role,
.journey-card-dark .journey-time {
  color: var(--yellow);
}

.journey-time {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.journey-copy {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.journey-roadmap {
  margin-top: 56px;
}

.journey-roadmap-track {
  position: relative;
  height: 78px;
  border-radius: 20px;
  background: #111827;
  overflow: hidden;
}

.journey-roadmap-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg,
      var(--yellow) 0 20px,
      transparent 20px 38px);
}

.journey-title {
  border-radius: 50px;
  border: 1px solid var(--Black, #060B2E);
  background: var(--Yellow, #FFE135);
  box-shadow: 2px 2px 0 0 #060B2E;

  padding: 12px 24px;

  color: var(--Black, #060B2E);
  text-align: center;
  font-family: "Barlow Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.5px;
}

.roadmap-car,
.roadmap-flag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
}

.roadmap-car {
  left: 62px;
  width: 48px;
  height: 48px;
}

.roadmap-flag {
  right: 52px;
  width: 44px;
  height: 44px;
}

.roadmap-stop {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 3px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-stop img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.roadmap-stop-yellow {
  left: 18%;
  background: var(--yellow);
}

.roadmap-stop-white {
  left: 50%;
  background: #f5f8ff;
}

.roadmap-stop-dark {
  left: 83%;
  background: var(--navy);
}

.journey-roadmap-dates {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 0 12%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.process {
  text-align: center;
}

.process-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.process-intro-figma {
  width: min(100%, 756px);
  margin: 0;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.process-card {
  min-height: 138px;
  padding: 16px 12px;
  border-radius: 18px;
  background: var(--white);
  text-align: left;
}

.process-card h3 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.process-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.process-card-highlight {
  background: linear-gradient(180deg, #fff6b2 0%, #ffe135 100%);
}

.process-grid-figma {
  gap: 15px;
  margin-top: 56px;
  align-items: stretch;
}

.process-card-figma {
  min-height: 174px;
  padding: 24px;
  border: 2px solid var(--navy);
  border-radius: 18px;
  box-shadow: 4px 4px 0 0 rgba(6, 11, 46, 0.1);
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
}

.process-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(21, 93, 252) 0%, rgb(20, 71, 230) 100%);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-icon-wrap-yellow {
  background: var(--yellow);
}

.process-icon-image {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.process-badge-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #1c398e;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.process-card-figma h3 {
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.process-date-chip {
  min-height: 34px;
  padding: 8px 14px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  box-shadow: 3px 3px 0 0 var(--navy);
  background: #c5dcff;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.process-date-chip-yellow {
  background: var(--yellow);
}

.process-cta-wrap {
  display: grid;
  justify-items: center;
  margin-top: 48px;
}

.process-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  box-shadow: 5px 5px 0 0 var(--navy);
  background: var(--yellow);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.profile-layout-figma {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profile-copy-figma {
  display: grid;
  gap: 24px;
}

.profile-title-figma {
  color: #1c398e;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1.5px;
}

.profile-title-figma span {
  color: #1847f4;
}

.profile-list-figma {
  display: grid;
  gap: 12px;
  width: 482px;
}

.profile-item-figma {
  min-height: 68px;
  padding: 15.5px 25.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-check-box {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #1847f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.profile-check-box img {
  width: 10px;
  height: 8px;
  object-fit: contain;
}

.profile-item-figma p {
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.profile-card-figma {
  position: relative;
  width: 462px;
  min-width: 462px;
  height: 555px;
}

.profile-card-frame {
  position: absolute;
  top: 0;
  left: 22.55px;
  width: 417.62px;
  height: 554.82px;
  overflow: hidden;
  border: 3px solid rgba(24, 71, 244, 0.55);
  border-radius: 28px;
  background: #8fd08b;
}

.profile-card-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 411.62px;
  height: 548.82px;
  overflow: hidden;
}

.profile-card-image {
  position: absolute;
  display: block;
  top: -56.28%;
  left: -106.12%;
  width: 210.41%;
  height: 157.81%;
  max-width: none;
  object-fit: cover;
}

.profile-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 230.5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 11, 46, 0.97) 100%);
}

.profile-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 1;
}

.profile-card-heading {
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.6px;
}

.profile-card-subtitle {
  color: rgba(197, 220, 255, 0.65);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.profile-top-badge,
.profile-bottom-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 41px;
  padding: 10px 18px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  box-shadow: 3px 3px 0 0 var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.66px;
  font-family: "Montserrat", sans-serif;
}

.profile-top-badge {
  top: 16px;
  left: 0;
  background: var(--yellow);
  color: var(--navy);
}

.profile-bottom-badge {
  right: 0;
  bottom: 28px;
  background: #1847f4;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.35);
}

.profile-top-badge img,
.profile-bottom-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.profile-content h2 {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.profile-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.profile-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--blue);
}

.profile-photo {
  overflow: hidden;
  border-radius: 26px;
}

.profile-photo img {
  height: 100%;
  object-fit: cover;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.role-card {
  position: relative;
  overflow: hidden;
  min-height: 294px;
  border-radius: 26px;
}

.role-card img {
  height: 100%;
  object-fit: cover;
}

.role-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(6, 11, 46, 0.06) 0%, rgba(6, 11, 46, 0.92) 100%);
  color: var(--white);
}

.role-overlay-light {
  background: linear-gradient(180deg, rgba(47, 93, 255, 0.08) 0%, rgba(37, 57, 170, 0.94) 100%);
}

.role-brand {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--yellow);
}

.role-overlay p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.role-button {
  justify-self: start;
  min-height: 38px;
  padding: 0 16px;
  background: var(--yellow);
  color: var(--navy);
}

.role-button-light {
  background: var(--white);
}

.environment .section-pill,
.environment .section-title {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 20px;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  min-height: 32px;
  padding: 0 14px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.gallery-card-wide {
  grid-column: span 2;
}

.footer {
  padding: 36px 0 42px;
  background: rgba(255, 255, 255, 0.42);
  border-top: 2px solid rgba(6, 11, 46, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.footer-branding p,
.footer-contact {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.roles-figma {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.roles-heading,
.gallery-heading-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.roles-pill,
.gallery-pill {
  min-height: 54px;
  padding: 12px 24px;
  background: #1847f4;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  box-shadow: 2px 2px 0 0 var(--navy);
}

.roles-title,
.gallery-title-figma {
  color: #1c398e;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-align: center;
}

.roles-title span,
.gallery-title-figma span {
  color: #1847f4;
}

.roles-grid-figma {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.role-card-figma {
  min-width: 0;
  border: 3px solid var(--navy);
  border-radius: 28px;
  overflow: hidden;
  padding: 3px;
}

.role-card-gamota {
  background: var(--navy);
  box-shadow: 8px 8px 0 0 #1847f4;
}

.role-card-adsota {
  background: #1847f4;
  box-shadow: 8px 8px 0 0 var(--yellow);
}

.role-card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.role-card-media>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-card-gradient {
  position: absolute;
  inset: 0;
}

.role-card-gradient-dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(6, 11, 46, 0.93) 100%);
}

.role-card-gradient-blue {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #1847f4 100%);
}

.role-card-branding {
  position: absolute;
  left: 28px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.role-accent-line {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.role-brand-title {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.08px;
}

.role-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.role-card-body-dark {
  gap: 24px;
}

.role-card-body-blue {
  gap: 20px;
}

.role-card-body h3 {
  color: var(--white);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.role-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
}

.role-card-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex: 0 0 7px;
}

.role-card-button {
  width: 100%;
  min-height: 54px;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.15);
}

.role-card-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.role-card-button-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 20px 0 rgba(255, 225, 53, 0.3);
}

.role-card-button-white {
  background: var(--white);
  color: #1847f4;
}

.gallery-figma {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-subtitle-figma {
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
  text-align: center;
}

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

.gallery-card-figma {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2px;
  min-height: 230px;
}

.gallery-card-figma img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.gallery-badge-blue {
  background: #1847f4;
  color: var(--white);
}

.gallery-badge-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.footer {
  padding: 0;
  background: transparent;
  border-top: 0;
}

.footer-main {
  background: var(--white);
  padding: 40px 0;
}

.footer-inner-figma {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-branding-figma {
  width: 246px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-image {
  width: 247px;
  height: 96px;
  object-fit: contain;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e1e1e;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.footer-contact-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}

.footer-contact-item-address {
  align-items: flex-start;
  gap: 5px;
}

.footer-contact-item-address img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.footer-social-block {
  width: 310px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-social-title {
  color: #1e1e1e;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-social-figma {
  display: flex;
  gap: 16px;
}

.footer-social-figma a {
  width: 40px;
  height: 40px;
  display: inline-flex;
}

.footer-social-figma img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-social-copy {
  color: #515151;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.83;
}

.footer-bottom {
  background: #0d0e14;
  border-top: 0.5px solid #171a1f;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.footer-bottom-inner p {
  color: #878693;
}

.footer-bottom-inner a {
  color: #7c9ef8;
  text-decoration: none;
}

.footer-bottom-divider {
  width: 1px;
  height: 10px;
  background: #878693;
  opacity: 0.4;
}

@media (max-width: 1100px) {
  .topbar {
    background-color: rgba(197, 220, 255, 0.7);
    background-image: none;
    backdrop-filter: none;
  }

  .topbar-inner {
    min-height: 73px;
    padding: 14px 0;
  }

  .topbar-nav,
  .topbar-inner>.topbar-cta {
    display: none;
  }

  .topbar-mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }

  .topbar-cta-mobile {
    min-height: 45px;
    padding: 12px 26px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .topbar.is-mobile-nav-open .topbar-mobile-nav {
    display: block;
  }

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

  .reasons-layout {
    display: grid;
  }

  .reasons-copy,
  .reason-feature {
    width: 100%;
  }

  .reason-feature {
    max-width: 628px;
    margin: 0 auto;
  }

  .reason-feature-frame {
    width: 100%;
  }

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

  .journey-cards,
  .role-grid,
  .gallery-grid,
  .profile-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .roles-grid-figma,
  .gallery-grid-figma,
  .footer-inner-figma {
    grid-template-columns: 1fr;
  }

  .footer-inner-figma {
    display: grid;
  }

  .profile-layout-figma {
    display: grid;
  }

  .profile-copy-figma,
  .profile-list-figma,
  .profile-card-figma {
    width: 100%;
    min-width: 0;
  }

  .profile-card-figma {
    max-width: 462px;
    margin: 0 auto;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .role-card-figma,
  .footer-branding-figma,
  .footer-social-block {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .page-shell {
    background-size:
      62px 62px,
      96px 96px,
      30px 30px,
      30px 30px,
      auto 100%;
    background-position:
      left -10px top 18px,
      right -18px top 70px,
      left 96px top 24px,
      right 32px bottom 220px,
      center top;
  }

  .page-shell::before {
    background:
      url("../assets/images/bg-circles-top.png") no-repeat center top / 220% auto,
      url("../assets/images/bg-horizontal.png") no-repeat center 52% / 140% auto,
      url("../assets/images/bg-looper.png") no-repeat left -80px bottom 520px / 360px auto;
    opacity: 0.34;
  }

  .topbar-inner {
    justify-content: space-between;
    padding: 14px 0;
  }

  .topbar-logo {
    flex-basis: 120px;
    width: 120px;
    height: 47px;
  }

  .topbar-logo img {
    width: 120px;
    height: 47px;
  }

  .topbar-mobile-actions {
    gap: 16px;
  }

  .topbar-cta-mobile {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .topbar-mobile-nav {
    width: min(100% - 24px, var(--container));
    margin-bottom: 10px;
    padding: 10px 14px 14px;
  }

  .section {
    padding: 42px 0;
  }

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

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

  .roles-grid-figma,
  .gallery-grid-figma {
    grid-template-columns: 1fr;
  }

  .journey-roadmap-dates {
    padding: 0;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 24%);
  }

  .hero-bg-circles {
    top: -172px;
    left: 50%;
    width: 2180px;
    height: auto;
  }

  .hero-bg-glow-left {
    left: -130px;
    top: -86px;
    width: 420px;
    height: 360px;
  }

  .hero-bg-glow-right {
    right: -116px;
    top: 122px;
    width: 360px;
    height: 360px;
  }

  .hero-bg-sphere-yellow {
    left: -8px;
    top: 122px;
    width: 82px;
    height: 82px;
  }

  .hero-bg-sphere-blue {
    right: -46px;
    top: 330px;
    width: 128px;
    height: 128px;
  }

  .hero-bg-star-left {
    left: 88px;
    top: 88px;
    width: 46px;
    height: 46px;
  }

  .hero-bg-star-right {
    right: 72px;
    top: 136px;
    width: 46px;
    height: 46px;
  }

  .hero-bg-sparkle-small {
    left: 102px;
    bottom: 154px;
    width: 30px;
    height: 30px;
  }

  .hero-bg-sparkle-tiny {
    left: 146px;
    bottom: 202px;
    width: 12px;
    height: 12px;
  }

  .reason-floating-qr {
    left: 10px;
    bottom: 10px;
  }

  .reason-apply-button {
    right: 10px;
    bottom: 10px;
    width: 68px;
    height: 68px;
    font-size: 11px;
  }

  .reason-feature {
    height: auto;
    padding-bottom: 0;
  }

  .reason-feature-frame {
    height: auto;
    aspect-ratio: 628 / 496;
  }

  .reason-window-bar {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 2;
  }

  .reason-feature-stage {
    inset: 50px 0 0 0;
  }

  .journey-heading {
    font-size: 18px;
  }

  .hero-title {
    flex-direction: column;
    gap: 6px;
    font-size: clamp(56px, 15vw, 92px);
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 22px;
  }

  .hero-button {
    font-size: 20px;
    line-height: 1.2;
  }

  .journey-roadmap-track {
    height: 96px;
  }

  .roadmap-car {
    left: 28px;
    width: 40px;
    height: 40px;
  }

  .roadmap-flag {
    right: 18px;
    width: 36px;
    height: 36px;
  }

  .process-intro-figma {
    font-size: 18px;
  }

  .process-cta-button,
  .benefits-pill,
  .process-pill,
  .profile-pill {
    font-size: 20px;
  }

  .roles-pill,
  .gallery-pill {
    font-size: 20px;
  }

  .roles-title,
  .gallery-title-figma,
  .profile-title-figma {
    font-size: 38px;
  }

  .gallery-subtitle-figma {
    font-size: 18px;
    line-height: 1.45;
  }

  .profile-item-figma {
    min-height: 72px;
    padding: 14px 18px;
  }

  .role-brand-title {
    font-size: 42px;
  }

  .role-card-body h3,
  .role-card-button {
    font-size: 20px;
  }

  .footer-bottom-inner {
    flex-wrap: wrap;
  }

  .profile-card-figma {
    height: auto;
    aspect-ratio: 462 / 555;
  }

  .profile-card-frame {
    left: 4.88%;
    width: 90.39%;
    height: 100%;
  }

  .profile-card-image-wrap {
    width: 98.56%;
    height: 98.92%;
  }
}