:root {
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #182230;
  --muted: #667085;
  --line: #e6ebf2;
  --soft: #f7f9fc;
  --accent: #16756f;
  --accent-dark: #0f5d58;
  --blue: #174fc4;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
span,
strong,
em,
a,
label {
  overflow-wrap: anywhere;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  margin: 0 auto;
  padding: 12px max(16px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(230, 235, 242, 0.9);
  background: rgba(245, 247, 250, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--accent);
}

main,
.footer {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.section {
  scroll-margin-top: 90px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 38px;
  align-items: center;
  min-height: 620px;
  padding: 72px 0 58px;
}

.hero-logo-wrap {
  width: 136px;
  height: 136px;
  margin-bottom: 22px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow);
}

.hero-slogan span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.hero-slogan strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.2;
}

.hero-slogan p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  color: var(--text);
  background: var(--card);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

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

.stats div,
.awards article,
.steps article,
.apply-form,
.form-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.stats div {
  min-height: 88px;
  padding: 18px 10px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 28px;
  line-height: 1;
  color: var(--blue);
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.future-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.24fr) minmax(0, 0.76fr);
  gap: 38px;
  align-items: center;
  padding: 70px 0;
  background: transparent;
}

.future-title h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.42;
  font-weight: 900;
}

.future-title i {
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 22px;
  background: #d71920;
}

.future-cards {
  min-width: 0;
  display: flex;
  gap: 20px;
  height: 430px;
  overflow: visible;
}

.future-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.35s ease, box-shadow 0.35s ease;
}

.future-cards:hover .future-card {
  flex: 0.72 1 0;
}

.future-cards .future-card:hover {
  flex: 2.45 1 0;
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
}

.future-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.68) 100%);
}

.future-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.future-card:hover img {
  transform: scale(1.035);
}

.future-card span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 24px 24px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.26);
}

.section {
  padding: 54px 0;
}

.soft {
  width: auto;
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef3f7;
}

.section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin-top: 8px;
}

.awards,
.steps {
  display: grid;
  gap: 14px;
}

.awards {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.awards article {
  min-width: 0;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-color: rgba(214, 224, 235, 0.95);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.awards article:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 117, 111, 0.34);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.11);
}

.awards .award-more {
  justify-content: center;
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 250, 252, 0.95));
}

.awards .award-feature {
  grid-column: span 2;
  min-height: 252px;
  color: #ffffff;
  border: 0;
  background:
    linear-gradient(135deg, rgba(23, 79, 196, 0.94), rgba(22, 117, 111, 0.94)),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.28), transparent 28%);
}

.awards-compact article {
  min-height: 150px;
}

.awards span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.awards .award-feature span {
  background: rgba(255, 255, 255, 0.18);
}

.awards h3,
.steps h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.awards p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.awards .award-feature h3 {
  font-size: 26px;
}

.awards .award-feature p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.awards p + h3 {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.apply-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 64px;
}

.apply-cta .section-head {
  margin-bottom: 0;
}

.apply-main {
  width: min(980px, calc(100% - 32px));
}

.apply-hero {
  padding: 64px 0 22px;
}

.apply-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(40px, 7vw, 72px);
}

.apply-section {
  padding-top: 10px;
}

.steps article {
  min-width: 0;
  padding: 22px;
}

.roles-section {
  padding: 70px 0 76px;
  scroll-margin-top: 90px;
}

.roles-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}

.roles-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 900;
}

.roles-head i {
  display: block;
  width: 118px;
  height: 4px;
  margin-top: 22px;
  background: #d71920;
}

.roles-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(243, 248, 250, 0.96), rgba(237, 246, 248, 0.78)),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.92) 0 15%, transparent 16%),
    linear-gradient(150deg, transparent 0 24%, rgba(255, 255, 255, 0.82) 25% 34%, transparent 35% 100%),
    linear-gradient(18deg, transparent 0 30%, rgba(62, 113, 142, 0.16) 31% 39%, transparent 40% 100%),
    #e6eff2;
}

.roles-stage::before,
.roles-stage::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 150px;
  border-radius: 999px;
  border: 34px solid rgba(255, 255, 255, 0.72);
  transform: rotate(-10deg);
}

.roles-stage::before {
  top: 18px;
}

.roles-stage::after {
  bottom: -42px;
}

.role-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #111827;
  text-align: center;
  transition: color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.role-item:hover {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(79, 129, 161, 0.92), rgba(38, 105, 150, 0.95)),
    linear-gradient(160deg, transparent 0 68%, rgba(255, 255, 255, 0.2) 69% 74%, transparent 75%);
  box-shadow: 0 24px 52px rgba(38, 105, 150, 0.28);
}

.role-copy {
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.role-item:hover .role-copy {
  transform: translateY(-44px);
}

.role-item strong,
.role-item em {
  display: block;
  font-style: normal;
}

.role-item strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.role-item em {
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
  transition: color 0.35s ease;
}

.role-item:hover em {
  color: rgba(255, 255, 255, 0.92);
}

.role-actions {
  position: absolute;
  left: 50%;
  bottom: 90px;
  display: flex;
  gap: 22px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.role-item:hover .role-actions {
  opacity: 1;
  transform: translate(-50%, 0);
}

.role-actions b {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  white-space: nowrap;
}

.role-actions b::after {
  content: ">";
  margin-left: 8px;
  font-size: 20px;
  line-height: 1;
}

.apply-form {
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.form-group + .form-group {
  margin-top: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-size: 14px;
  font-weight: 900;
}

label:nth-child(odd) {
  border-right: 1px solid var(--line);
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

.apply-form .btn {
  margin-top: 16px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  word-break: break-word;
}

.form-status.success {
  color: var(--accent);
  font-weight: 900;
}

.form-status.error {
  color: #b42318;
  font-weight: 900;
}

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

.steps span {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  padding: 0;
  background: #dfeaff;
  color: var(--blue);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--accent);
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .future-section {
    grid-template-columns: 1fr;
  }

  .future-cards {
    height: 360px;
  }

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

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

@media (max-width: 640px) {
  .topbar {
    width: 100%;
    min-height: 66px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 10px 14px;
  }

  .nav {
    display: none;
  }

  main,
  .footer {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    overflow: hidden;
  }

  main > *,
  .hero > *,
  .section,
  .future-section,
  .roles-section {
    max-width: 100%;
  }

  .hero {
    gap: 22px;
    padding: 30px 0 38px;
  }

  .hero-logo-wrap {
    width: 104px;
    height: 104px;
    margin-bottom: 16px;
  }

  h1 {
    margin: 10px 0 14px;
    font-size: 31px;
  }

  h1,
  h2,
  h3,
  .lead,
  .hero-slogan p,
  .section-head h2,
  .awards p,
  .steps p {
    max-width: 100%;
    word-break: break-all;
  }

  .hero-copy,
  .section-head,
  .future-title,
  .roles-head {
    width: 100%;
    min-width: 0;
  }

  .lead {
    font-size: 15px;
  }

  .hero-panel {
    width: 100%;
    overflow: hidden;
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .stats,
  .awards,
  .steps,
  .form-group {
    grid-template-columns: 1fr;
  }

  .stats {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .stats div {
    flex: 0 0 112px;
    min-height: 74px;
    padding: 13px 5px;
    scroll-snap-align: start;
  }

  .stats strong {
    font-size: 22px;
  }

  .stats span {
    font-size: 11px;
  }

  .future-cards {
    display: flex;
    height: auto;
    gap: 12px;
    width: 100%;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .future-cards:hover .future-card,
  .future-cards .future-card:hover {
    flex: initial;
    transform: none;
  }

  label,
  label:nth-child(odd) {
    border-right: 0;
  }

  .section {
    padding: 42px 0;
    overflow: hidden;
  }

  .section-head {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .section-head h2 {
    font-size: 25px;
    line-height: 1.22;
  }

  .roles-section {
    padding: 46px 0 52px;
  }

  .roles-head {
    align-items: center;
    margin-bottom: 28px;
    text-align: center;
  }

  .roles-head h2 {
    font-size: 32px;
    line-height: 1.24;
  }

  .roles-head i {
    width: 82px;
    margin-top: 16px;
  }

  .roles-stage {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .roles-stage::before,
  .roles-stage::after {
    display: none;
  }

  .role-item {
    min-height: 168px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 14px;
    overflow: hidden;
    border: 1px solid rgba(214, 224, 235, 0.95);
    border-radius: 8px;
    color: #ffffff;
    text-align: left;
    background:
      linear-gradient(180deg, rgba(38, 105, 150, 0.88), rgba(13, 91, 86, 0.92)),
      linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0 28%, transparent 29% 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  }

  .role-item:nth-child(2) {
    background:
      linear-gradient(180deg, rgba(23, 79, 196, 0.86), rgba(38, 105, 150, 0.94)),
      linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0 28%, transparent 29% 100%);
  }

  .role-item:nth-child(3) {
    background:
      linear-gradient(180deg, rgba(22, 117, 111, 0.9), rgba(26, 75, 91, 0.94)),
      linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0 28%, transparent 29% 100%);
  }

  .role-item:nth-child(4) {
    background:
      linear-gradient(180deg, rgba(53, 76, 107, 0.9), rgba(22, 117, 111, 0.9)),
      linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0 28%, transparent 29% 100%);
  }

  .role-item:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  }

  .role-copy,
  .role-item:hover .role-copy {
    transform: none;
  }

  .role-item strong {
    font-size: 27px;
  }

  .role-item em,
  .role-item:hover em {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
  }

  .role-actions {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .role-item:hover .role-actions {
    transform: none;
  }

  .role-actions b::after {
    margin-left: 6px;
    font-size: 15px;
  }

  .future-section {
    padding: 46px 0;
  }

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

  .future-title h2 {
    font-size: 32px;
    line-height: 1.32;
  }

  .future-title i {
    width: 82px;
    margin: 16px auto 0;
  }

  .future-card {
    flex: 0 0 84%;
    height: 340px;
    min-height: 340px;
    scroll-snap-align: center;
  }

  .future-card span {
    padding: 0 18px 20px;
    font-size: 20px;
  }

  .awards {
    grid-template-columns: repeat(2, calc((100% - 8px) / 2));
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow: hidden;
  }

  .awards article {
    min-width: 0;
    max-width: 100%;
    min-height: 98px;
    padding: 10px;
    overflow: hidden;
  }

  .awards .award-feature {
    grid-column: auto;
    min-height: 98px;
    color: var(--text);
    border: 1px solid rgba(214, 224, 235, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  .awards .award-feature span {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
  }

  .awards .award-feature h3 {
    font-size: 12px;
  }

  .awards .award-feature p {
    color: var(--muted);
    font-size: 10px;
  }

  .awards p + h3 {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid var(--line);
  }

  .awards h3 {
    margin: 7px 0 4px;
    font-size: 12px;
    line-height: 1.18;
  }

  .awards p {
    font-size: 10px;
    line-height: 1.26;
  }

  .awards span {
    min-height: 22px;
    width: 100%;
    padding: 3px 6px;
    font-size: 10px;
  }

  .apply-cta {
    display: block;
    padding: 34px 0 48px;
  }

  .apply-cta .btn {
    width: 100%;
    margin-top: 18px;
  }

  .apply-main {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .apply-hero {
    padding: 34px 0 6px;
  }

  .apply-hero h1 {
    font-size: 36px;
  }

  .apply-form {
    padding: 10px;
  }

  label {
    gap: 8px;
    padding: 14px;
    font-size: 13px;
  }

  textarea {
    min-height: 104px;
  }

  .form-group + .form-group {
    margin-top: 10px;
  }

  .soft {
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .apply-form {
    padding: 14px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    max-width: 210px;
    font-size: 14px;
  }

  h1 {
    font-size: 29px;
  }

  h2,
  .roles-head h2,
  .future-title h2 {
    font-size: 27px;
  }

  .future-card {
    flex-basis: 88%;
    height: 315px;
    min-height: 315px;
  }

  .role-item {
    min-height: 156px;
    padding: 16px 12px;
  }

  .role-item strong {
    font-size: 25px;
  }

  .role-actions {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .nav a {
    transform: scale(0.94);
    transform-origin: center;
  }

  .roles-stage {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .role-item {
    min-height: 138px;
  }
}
