:root {
  --font-primary: "Be Vietnam Pro", "Segoe UI", Tahoma, sans-serif;
  --ink: #172a31;
  --ink-soft: #506269;
  --paper: #f6f3eb;
  --paper-deep: #e9e4d8;
  --white: #fffdf8;
  --line: #d8d5cb;
  --orange: #f2683a;
  --orange-dark: #c94d2b;
  --yellow: #f2c94c;
  --mint: #80c8a2;
  --sky: #8ebed1;
  --blue: #195269;
  --shadow: 0 18px 45px rgba(23, 42, 49, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.site-shell {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
}

.site-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 28px;
  color: #dce8e8;
  background: var(--ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-notice a {
  margin-left: auto;
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-notice > span:nth-of-type(2) {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-dot,
.nav-chat-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.15);
}

.site-notice-divider {
  width: 1px;
  height: 13px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.23);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 42px;
  border-bottom: 1px solid rgba(23, 42, 49, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.08em;
  transform: rotate(-5deg);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--font-primary);
  font-size: 17px;
  letter-spacing: 0.11em;
  line-height: 1;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--orange-dark);
}

.nav-chat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(23, 42, 49, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.nav-chat-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  box-shadow: none;
}

.profile-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(23, 42, 49, 0.18);
  border-radius: 999px;
  color: var(--ink) !important;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.profile-nav-link:hover,
.profile-nav-link.is-current {
  border-color: var(--ink);
  background: var(--yellow);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
  min-height: 650px;
  padding: 78px 42px 104px;
  background: var(--paper);
}

.home-hero-copy {
  min-width: 0;
  max-width: 575px;
}

.home-hero h1 {
  max-width: 575px;
  font-size: clamp(54px, 6.1vw, 92px);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
}

.home-meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.home-meta p {
  margin: 0;
}

.home-meta strong {
  color: var(--ink);
}

.meta-line {
  width: 32px;
  height: 1px;
  margin-top: 10px;
  background: var(--orange);
}

.home-hero-visual {
  min-width: 0;
}

.home-visual-label {
  position: absolute;
  top: 38px;
  right: 39px;
  z-index: 2;
  color: var(--white);
  text-align: right;
}

.home-visual-label span,
.home-visual-label strong {
  display: block;
}

.home-visual-label span {
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.home-visual-label strong {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 9vw, 145px);
  align-items: start;
  padding: 108px 12% 116px;
  background: var(--white);
}

.company-heading {
  min-width: 0;
}

.company-heading h2,
.registration-help h2,
.home-cta h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.1vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.company-content {
  min-width: 0;
  padding-top: 7px;
}

.company-lede {
  max-width: 590px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.company-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.company-points article {
  min-width: 0;
  padding-top: 15px;
  border-top: 2px solid var(--ink);
}

.company-points article > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.company-points h3 {
  margin: 18px 0 8px;
  font-size: 17px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.company-points p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.home-jobs-section {
  padding: 112px 12% 118px;
  color: var(--white);
  background: var(--ink);
}

.home-jobs-section .section-heading {
  margin-bottom: 43px;
}

.home-jobs-section .section-heading .eyebrow {
  color: var(--yellow);
}

.home-job-grid {
  max-width: 1100px;
}

.home-jobs-section .overview-card {
  min-height: 292px;
}

.overview-detail {
  display: grid;
  grid-column: 1 / -1;
  align-content: end;
  gap: 5px;
  min-width: 0;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 42, 49, 0.18);
}

.overview-detail span {
  color: rgba(23, 42, 49, 0.65);
  font-size: 10px;
}

.overview-detail strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.section-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.home-jobs-section .section-cta .button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.home-jobs-section .section-cta .button-primary:hover {
  background: var(--orange);
}

.news-section {
  padding: 112px 12% 120px;
  background: var(--paper-deep);
}

.news-heading {
  align-items: flex-end;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 15px;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 295px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(23, 42, 49, 0.15);
  background: var(--white);
}

.news-featured {
  color: var(--white);
  background: var(--blue);
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 49px;
}

.news-tag {
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-number {
  color: var(--orange-dark);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
}

.news-featured .news-number {
  color: var(--yellow);
}

.news-card h3 {
  max-width: 330px;
  margin-bottom: 11px;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.news-card p {
  max-width: 330px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-top: auto;
  padding: 13px 0 16px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.news-card-meta .news-deadline,
.news-article-meta .news-deadline {
  color: var(--orange-dark);
}

.news-featured .news-card-meta {
  color: rgba(255, 255, 255, 0.72);
}

.news-featured .news-card-meta .news-deadline {
  color: var(--yellow);
}

.news-empty-state {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 25px;
  border: 1px dashed rgba(23, 42, 49, 0.25);
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.6);
  font-size: 13px;
  text-align: center;
}

.news-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr);
  align-items: end;
  gap: 40px;
  padding: 92px 12% 78px;
  background: var(--paper);
}

.news-page-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -.075em;
}

.news-page-lede {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.news-page-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.news-page-note-mark {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.news-page-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.35;
}

.news-page-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.news-list-section {
  padding: 90px 12% 110px;
  background: var(--paper-deep);
}

.news-list-heading {
  align-items: end;
  margin-bottom: 38px;
}

.news-list-heading > p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.news-article-list {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

.news-article {
  padding: 31px 34px 34px;
  border: 1px solid rgba(23, 42, 49, .15);
  background: var(--white);
}

.news-article-featured {
  border-top: 5px solid var(--orange);
}

.news-article-top,
.news-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.news-article-top {
  justify-content: space-between;
  margin-bottom: 28px;
}

.news-article-date {
  color: var(--ink-soft);
  font-size: 11px;
}

.news-article h2 {
  max-width: 760px;
  margin-bottom: 13px;
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.06em;
}

.news-article-summary {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.news-article-meta {
  margin-bottom: 25px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.news-article-content {
  max-width: 760px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

.news-article-content p {
  margin: 0 0 16px;
}

.news-article-content p:last-child {
  margin-bottom: 0;
}

.news-faq-heading {
  margin: 34px 0 12px;
  font-size: 16px;
  letter-spacing: -.02em;
}

.news-faq-list {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.news-faq-list details {
  border: 1px solid var(--line);
  background: #faf9f4;
}

.news-faq-list summary {
  padding: 13px 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.news-faq-list details p {
  margin: 0;
  padding: 0 15px 15px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.news-article-action {
  margin-top: 27px;
}

.news-help-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  gap: 40px;
  padding: 94px 12% 110px;
  background: var(--blue);
  color: var(--white);
}

.news-help-section .eyebrow,
.news-help-section h2 em {
  color: var(--yellow);
}

.news-help-section h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.07em;
}

.news-help-copy {
  align-self: end;
}

.news-help-copy p {
  margin-bottom: 25px;
  color: rgba(255, 253, 248, .76);
  font-size: 14px;
  line-height: 1.7;
}

.news-help-copy .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.news-help-copy .button-secondary:hover {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.news-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.news-card > a,
.news-chat-link {
  align-self: flex-start;
  margin-top: 0;
  padding: 0;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.news-featured > a {
  color: var(--yellow);
}

.news-card > a span,
.news-chat-link span {
  margin-left: 7px;
  font-size: 17px;
  line-height: 0;
  text-decoration: none;
}

.home-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding: 84px 12% 91px;
  color: var(--white);
  background: var(--orange);
}

.home-cta .eyebrow {
  color: var(--ink);
}

.home-cta .eyebrow span {
  color: rgba(23, 42, 49, 0.62);
}

.home-cta h2 em {
  color: var(--ink);
}

.home-cta .button-primary {
  color: var(--white);
  background: var(--ink);
}

.home-cta .button-primary:hover {
  background: var(--blue);
}

.registration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 9vw, 145px);
  align-items: end;
  min-height: 420px;
  padding: 76px 12% 81px;
  color: var(--white);
  background: var(--blue);
}

.registration-hero .eyebrow {
  color: var(--yellow);
}

.registration-hero .eyebrow span {
  color: rgba(255, 255, 255, 0.56);
}

.registration-hero h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: clamp(50px, 5.6vw, 82px);
}

.registration-hero h1 em {
  color: var(--yellow);
}

.registration-lede {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.registration-steps-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}

.registration-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.registration-step > span {
  color: var(--yellow);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
}

.registration-step strong,
.registration-step small {
  display: block;
  grid-column: 2;
}

.registration-step strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.registration-step small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.registration-form-section {
  background: var(--white);
}

.registration-trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 290px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.registration-trust p {
  margin-bottom: 0;
  line-height: 1.5;
}

.registration-trust strong {
  color: var(--ink);
}

.trust-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.registration-help {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 9vw, 145px);
  align-items: end;
  padding: 98px 12% 104px;
  background: var(--paper-deep);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  min-height: 410px;
  padding: 76px 12% 82px;
  color: var(--white);
  background: var(--ink);
}

.profile-hero .eyebrow {
  color: var(--yellow);
}

.profile-hero .eyebrow span {
  color: rgba(255, 255, 255, 0.54);
}

.profile-hero h1 {
  max-width: 650px;
  margin-bottom: 23px;
  font-size: clamp(50px, 5.5vw, 80px);
}

.profile-hero h1 em {
  color: var(--yellow);
}

.profile-hero-lede {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.profile-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.profile-local-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.profile-hero-card strong,
.profile-hero-card p {
  display: block;
}

.profile-hero-card strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.profile-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(540px, 1fr);
  gap: clamp(40px, 8vw, 145px);
  align-items: start;
  padding: 106px 12% 124px;
  background: var(--white);
}

.profile-intro {
  position: sticky;
  top: 28px;
  padding-top: 22px;
}

.profile-intro h2,
.profile-next-section h2 {
  margin-bottom: 23px;
  font-size: clamp(42px, 4.1vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.profile-intro h2 em,
.profile-next-section h2 em {
  color: var(--orange-dark);
}

.profile-intro-copy {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.profile-security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.profile-security-note p {
  margin: 0;
  line-height: 1.5;
}

.profile-security-note strong {
  color: var(--ink);
}

.profile-card {
  width: 100%;
  max-width: 760px;
  padding: clamp(24px, 4vw, 43px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 14px 14px 0 rgba(23, 42, 49, 0.08);
}

.profile-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.profile-person {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.profile-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.profile-card-header h3 {
  margin: 0 0 3px;
  overflow: hidden;
  font-size: 24px;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-registration-id {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.profile-saved-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(128, 200, 162, 0.8);
  border-radius: 999px;
  color: #326849;
  background: rgba(128, 200, 162, 0.25);
  font-size: 10px;
  font-weight: 800;
}

.profile-saved-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #398254;
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 26px;
  border: 1px solid var(--line);
  background: var(--line);
}

.profile-details div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  background: var(--white);
}

.profile-details span,
.profile-status-card > div > span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-details strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.text-button {
  padding: 4px 0;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-button:hover {
  color: var(--ink);
}

.profile-edit-form {
  margin: 28px 0 30px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.profile-edit-heading,
.profile-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.profile-edit-heading {
  margin-bottom: 17px;
}

.profile-edit-heading h3,
.profile-section-heading h3 {
  margin-bottom: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.profile-edit-close {
  color: var(--ink);
  background: transparent;
}

.profile-form-note {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.field-group select {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid #c9c8c0;
  border-radius: var(--radius-sm);
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
}

.field-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 104, 58, 0.13);
}

.profile-update-message {
  min-height: 18px;
  margin: 17px 0 0;
  color: #326849;
  font-size: 11px;
  font-weight: 800;
}

.profile-update-message.is-error {
  color: var(--orange-dark);
}

.registration-save-error {
  color: var(--orange-dark);
  text-align: left;
}

.profile-status-section {
  padding-top: 28px;
}

.profile-section-heading {
  align-items: end;
  margin-bottom: 22px;
}

.profile-section-heading > p {
  max-width: 250px;
  margin: 0 0 2px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.profile-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-status-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  min-height: 132px;
  padding: 17px;
  border: 1px solid var(--line);
  background: var(--white);
}

.profile-status-card:last-child {
  grid-column: 1 / -1;
}

.status-card-main {
  border-color: rgba(242, 104, 58, 0.32);
  background: #f8e9df;
}

.status-card-sent {
  border-color: rgba(142, 190, 209, 0.6);
  background: #e8f2f3;
}

.status-card-warning {
  border-color: rgba(242, 201, 76, 0.58);
  background: #fbf2cf;
}

.status-card-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(23, 42, 49, 0.18);
  border-radius: 50%;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
}

.profile-status-card strong {
  display: block;
  margin: 6px 0 7px;
  font-size: 15px;
  line-height: 1.25;
}

.profile-status-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.profile-status-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 13px 15px;
  color: var(--ink-soft);
  background: #ebe8dd;
  font-size: 11px;
  line-height: 1.5;
}

.profile-status-disclaimer > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.profile-status-disclaimer p {
  margin: 0;
}

.profile-empty {
  max-width: 470px;
  margin: 0 auto;
  padding: 24px 0 12px;
  text-align: center;
}

.profile-empty-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-size: 31px;
  font-weight: 900;
}

.profile-empty h3 {
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.profile-empty h3 em {
  color: var(--orange-dark);
}

.profile-empty > p:not(.card-kicker) {
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.profile-next-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 9vw, 145px);
  align-items: end;
  padding: 98px 12% 104px;
  background: var(--paper-deep);
}

.profile-next-section .eyebrow {
  color: var(--blue);
}

.profile-next-copy {
  max-width: 450px;
}

.profile-next-copy p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.help-copy {
  max-width: 450px;
}

.help-copy p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  min-height: 650px;
  padding: 74px 42px 100px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow span {
  color: var(--ink-soft);
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-primary);
}

h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.5vw, 100px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 em,
h2 em {
  color: var(--orange);
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-lede {
  max-width: 460px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-point {
  display: grid;
  gap: 8px;
  padding-right: 13px;
  border-right: 1px solid var(--line);
}

.hero-point:last-child {
  border-right: 0;
}

.point-number {
  color: var(--orange-dark);
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: italic;
}

.hero-point strong,
.hero-point small {
  display: block;
}

.hero-point strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.hero-point small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-note strong {
  color: var(--ink);
}

.note-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.note-icon svg,
.step-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.17);
  content: "";
  pointer-events: none;
}

.art-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, black 0%, transparent 80%);
}

.art-sun {
  position: absolute;
  top: 70px;
  right: 9%;
  z-index: -1;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 20px rgba(242, 104, 58, 0.08), 0 0 0 45px rgba(242, 104, 58, 0.05);
}

.art-sun::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(23, 42, 49, 0.35);
  border-radius: 50%;
  content: "";
}

.art-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.ring-one {
  top: 28px;
  right: -60px;
  width: 430px;
  height: 430px;
}

.ring-two {
  top: 105px;
  right: 10px;
  width: 285px;
  height: 285px;
  border-color: rgba(23, 42, 49, 0.5);
}

.art-stamp {
  position: absolute;
  top: 38px;
  left: 40px;
  color: var(--yellow);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.15;
  transform: rotate(-7deg);
}

.art-stamp span {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.05em;
}

.art-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  box-shadow: var(--shadow);
}

.art-card-main {
  right: 13%;
  bottom: 53px;
  display: grid;
  width: 235px;
  gap: 3px;
  padding: 22px;
  transform: rotate(-4deg);
}

.art-card-main strong {
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 35px;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.art-card-main > span:not(.art-kicker) {
  color: var(--ink-soft);
  font-size: 12px;
}

.art-kicker {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.mini-avatars {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.mini-avatars i,
.mini-avatars b {
  display: grid;
  width: 29px;
  height: 29px;
  margin-right: -5px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.mini-avatars i:nth-child(2) {
  background: var(--mint);
}

.mini-avatars i:nth-child(3) {
  background: var(--sky);
}

.mini-avatars b {
  color: var(--white);
  background: var(--ink);
}

.art-card-small {
  bottom: 38px;
  left: 9%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: var(--ink-soft);
  font-size: 11px;
  transform: rotate(4deg);
}

.art-card-small strong {
  color: var(--ink);
}

.small-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.art-arrow {
  position: absolute;
  right: 7%;
  bottom: 34%;
  color: var(--yellow);
  font-family: var(--font-primary);
  font-size: 64px;
  line-height: 1;
  transform: rotate(-14deg);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(520px, 1fr);
  gap: clamp(40px, 9vw, 160px);
  align-items: start;
  padding: 106px 12% 124px;
  background: var(--white);
}

.application-intro {
  position: sticky;
  top: 28px;
  padding-top: 22px;
}

.application-intro h2,
.section-heading h2,
.how-head h2 {
  margin-bottom: 23px;
  font-size: clamp(42px, 4.1vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.application-intro > p {
  max-width: 290px;
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  font-size: 20px;
  line-height: 0;
  text-decoration: none;
}

.application-card {
  width: 100%;
  max-width: 720px;
  padding: clamp(24px, 4vw, 43px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 14px 14px 0 rgba(23, 42, 49, 0.08);
}

.card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.card-kicker {
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-title {
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.step-state {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-track {
  display: flex;
  gap: 5px;
  margin-bottom: 32px;
}

.progress-segment {
  height: 4px;
  flex: 1;
  background: #d8d7d0;
  transition: background 220ms ease;
}

.progress-segment.is-active {
  background: var(--orange);
}

.step-intro {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.step-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
}

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

.icon-orange {
  background: var(--orange);
}

.icon-blue {
  color: var(--white);
  background: var(--blue);
}

.step-intro h3 {
  margin-bottom: 4px;
  font-size: 21px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.step-intro p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.step-intro p strong {
  color: var(--ink);
}

.field-group {
  margin-bottom: 22px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.field-group label span {
  color: var(--orange-dark);
}

.field-group input {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid #c9c8c0;
  border-radius: var(--radius-sm);
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input::placeholder {
  color: #929997;
}

.field-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 104, 58, 0.13);
}

.field-group input.is-invalid {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 4px rgba(201, 77, 43, 0.1);
}

.field-hint,
.field-error {
  margin: 7px 0 0;
  font-size: 11px;
}

.field-hint {
  color: var(--ink-soft);
}

.field-error,
.selection-error {
  min-height: 17px;
  color: var(--orange-dark);
  font-weight: 700;
}

.simple-callout,
.privacy-warning,
.success-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  color: var(--ink-soft);
  background: #ebe8dd;
  font-size: 12px;
}

.simple-callout {
  margin: 4px 0 27px;
}

.simple-callout > span,
.success-note > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
}

.simple-callout p,
.success-note {
  margin-bottom: 0;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.action-end {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--ink-soft);
  border-color: #c9c8c0;
  background: transparent;
}

.button-secondary:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.button-wide {
  width: 100%;
}

.job-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.job-option {
  display: flex;
  min-height: 249px;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  color: var(--ink);
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.job-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(23, 42, 49, 0.1);
}

.job-option[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23, 42, 49, 0.12);
}

.job-option-sunrise,
.overview-sunrise {
  background: #ffd9be;
}

.job-option-mint,
.overview-mint {
  background: #cce8d8;
}

.job-option-sky,
.overview-sky {
  background: #cfe5ed;
}

.job-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.job-badge {
  display: grid;
  min-width: 41px;
  height: 29px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.job-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(23, 42, 49, 0.3);
  border-radius: 50%;
  color: transparent;
  font-size: 13px;
  font-weight: 900;
}

.job-option[aria-pressed="true"] .job-check {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.job-option-name {
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.job-option-description {
  color: rgba(23, 42, 49, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.job-option-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 42, 49, 0.15);
}

.job-option-bottom strong {
  max-width: 120px;
  font-size: 10px;
  line-height: 1.25;
}

.job-option-bottom > span {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.job-option-bottom b {
  font-size: 15px;
  line-height: 0;
}

.selection-error {
  margin: 9px 0 0;
}

.selected-job-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  padding: 9px 11px;
  background: rgba(128, 200, 162, 0.25);
  font-size: 12px;
}

.summary-check {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.selected-job-summary button {
  margin-left: auto;
  padding: 0;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-warning {
  margin: 24px 0 17px;
  border-left: 3px solid var(--orange);
  background: #f5e0d1;
}

.warning-icon {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.privacy-warning strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
}

.privacy-warning p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.consent-row {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}

.consent-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.fake-checkbox {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #aaa9a0;
  border-radius: 5px;
  color: transparent;
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.consent-row input:checked + .fake-checkbox {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.consent-row input:focus-visible + .fake-checkbox {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.consent-error {
  margin-left: 30px;
}

.success-panel {
  text-align: center;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--font-primary);
  font-size: 37px;
  font-weight: 700;
}

.success-kicker {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.success-panel h3 {
  margin-bottom: 9px;
  font-size: 30px;
  letter-spacing: -0.07em;
}

.success-message {
  max-width: 420px;
  margin: 0 auto 25px;
  color: var(--ink-soft);
  font-size: 13px;
}

.registration-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: left;
}

.registration-summary div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px;
  border-right: 1px solid var(--line);
}

.registration-summary div:last-child {
  border-right: 0;
}

.registration-summary span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-summary strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.success-note {
  margin-bottom: 23px;
  text-align: left;
}

.job-section {
  padding: 112px 12% 125px;
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 47px;
}

.section-heading .eyebrow {
  color: var(--yellow);
}

.section-heading .eyebrow span {
  color: rgba(255, 255, 255, 0.55);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading h2 em {
  color: var(--yellow);
}

.section-heading > p {
  max-width: 255px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.job-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.overview-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  min-height: 226px;
  padding: 23px;
  color: var(--ink);
}

.overview-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(23, 42, 49, 0.2);
  border-radius: 50%;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 900;
}

.overview-number {
  color: rgba(23, 42, 49, 0.6);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.overview-card h3 {
  margin: 8px 0 7px;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.overview-card p {
  margin-bottom: 0;
  color: rgba(23, 42, 49, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.overview-card a {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.overview-card a span {
  margin-left: 8px;
  font-size: 18px;
  line-height: 0;
  text-decoration: none;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
  align-items: start;
  padding: 112px 12% 120px;
  background: var(--paper-deep);
}

.how-head h2 {
  margin-bottom: 0;
}

.how-head h2 em {
  color: var(--blue);
}

.how-steps {
  display: grid;
  gap: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 25px;
  border-bottom: 1px solid rgba(23, 42, 49, 0.17);
}

.how-step p {
  grid-column: 2;
}

.how-step + .how-step {
  padding-top: 25px;
}

.how-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.how-step > span {
  color: var(--orange-dark);
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: italic;
}

.how-step h3 {
  margin-bottom: 5px;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.how-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding: 32px 42px 46px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  font-size: 10px;
}

.site-footer p {
  max-width: 630px;
  margin-bottom: 0;
  line-height: 1.6;
}

.site-footer strong {
  color: var(--yellow);
}

.assistant {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 10;
}

.assistant-launcher {
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 11px;
  padding: 10px 16px 10px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(201, 77, 43, 0.34);
  text-align: left;
  transition: transform 180ms ease;
}

.assistant-launcher:hover {
  transform: translateY(-3px);
}

.launcher-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--font-primary);
  font-size: 21px;
  font-weight: 700;
}

.assistant-launcher strong,
.assistant-launcher small {
  display: block;
}

.assistant-launcher strong {
  font-size: 13px;
}

.assistant-launcher small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  display: grid;
  width: min(360px, calc(100vw - 30px));
  overflow: hidden;
  border: 1px solid rgba(23, 42, 49, 0.18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(23, 42, 49, 0.22);
}

.assistant-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  color: var(--white);
  background: var(--ink);
}

.assistant-avatar {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

.assistant-header strong,
.assistant-header span {
  display: block;
}

.assistant-header strong {
  font-size: 13px;
}

.assistant-header span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.assistant-header span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--mint);
}

.icon-button {
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 25px;
  line-height: 1;
}

.assistant-messages {
  display: grid;
  max-height: 250px;
  gap: 9px;
  overflow: auto;
  padding: 16px;
  background: #f3f1ea;
}

.chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 3px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  line-height: 1.5;
}

.chat-bubble-user {
  justify-self: end;
  border-radius: 12px 12px 3px 12px;
  color: var(--white);
  background: var(--blue);
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 15px 3px;
}

.quick-questions button {
  padding: 7px 9px;
  border: 1px solid #d6d4cc;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 10px;
  font-weight: 700;
}

.quick-questions button:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.assistant-input {
  display: flex;
  gap: 8px;
  padding: 13px 15px 7px;
}

.assistant-input input {
  min-width: 0;
  flex: 1;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid #d0cec5;
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
}

.assistant-input input:focus {
  border-color: var(--orange);
}

.assistant-input button {
  width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: var(--orange-dark);
  font-size: 21px;
}

.assistant-footnote {
  margin: 0;
  padding: 0 15px 14px;
  color: #7b817d;
  font-size: 9px;
  line-height: 1.4;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero,
  .home-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: 45px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .application-layout,
  .job-section,
  .how-section,
  .company-section,
  .home-jobs-section,
  .news-section,
  .registration-hero,
  .registration-help,
  .home-cta,
  .profile-hero,
  .profile-layout,
  .profile-next-section {
    padding-right: 7%;
    padding-left: 7%;
  }

  .news-page-hero,
  .news-list-section,
  .news-help-section {
    padding-right: 7%;
    padding-left: 7%;
  }
}

@media (max-width: 900px) {
  .hero,
  .home-hero {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 60px;
  }

  .hero-copy,
  .home-hero-copy {
    max-width: 680px;
  }

  .hero-visual,
  .home-hero-visual {
    min-height: 420px;
  }

  .application-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .application-intro {
    position: static;
    padding-top: 0;
  }

  .application-intro > p {
    max-width: 480px;
  }

  .application-card {
    max-width: none;
  }

  .how-section,
  .company-section,
  .registration-hero,
  .registration-help,
  .profile-hero,
  .profile-layout,
  .profile-next-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .news-page-hero,
  .news-help-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .company-content {
    padding-top: 0;
  }

  .registration-steps-rail {
    max-width: 570px;
  }

  .profile-intro {
    position: static;
    padding-top: 0;
  }

  .profile-intro-copy {
    max-width: 480px;
  }

  .profile-card {
    max-width: none;
  }

  .home-cta {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-notice {
    gap: 7px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 9px;
  }

  .site-notice-divider {
    display: none;
  }

  .topbar {
    flex-wrap: wrap;
    padding: 18px 20px;
  }

  .main-nav a {
    display: none;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-end;
    gap: 0;
  }

  .main-nav a.profile-nav-link {
    display: inline-flex;
    padding: 9px 11px;
    font-size: 10px;
  }

  .main-nav .nav-chat {
    margin-left: 7px;
  }

  .hero,
  .home-hero {
    min-height: auto;
    padding: 53px 20px 74px;
  }

  h1,
  .home-hero h1,
  .registration-hero h1,
  .news-page-hero h1 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .news-page-hero {
    padding-top: 65px;
    padding-bottom: 72px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-points {
    gap: 9px;
  }

  .hero-point {
    padding-right: 8px;
  }

  .hero-point strong {
    font-size: 10px;
  }

  .hero-point small {
    font-size: 10px;
  }

  .hero-visual,
  .home-hero-visual {
    min-height: 365px;
  }

  .art-sun {
    top: 51px;
    right: 5%;
    width: 190px;
    height: 190px;
  }

  .ring-one {
    width: 330px;
    height: 330px;
  }

  .ring-two {
    top: 76px;
    width: 210px;
    height: 210px;
  }

  .art-card-main {
    right: 7%;
    bottom: 35px;
    width: 194px;
    padding: 16px;
  }

  .art-card-main strong {
    font-size: 27px;
  }

  .art-card-small {
    bottom: 23px;
    left: 6%;
    padding: 10px 12px;
  }

  .art-arrow {
    right: 2%;
    bottom: 36%;
    font-size: 44px;
  }

  .application-layout,
  .job-section,
  .how-section,
  .company-section,
  .home-jobs-section,
  .news-section,
  .registration-hero,
  .registration-help,
  .home-cta,
  .profile-hero,
  .profile-layout,
  .profile-next-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .news-page-hero,
  .news-list-section,
  .news-help-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .application-layout {
    padding-top: 75px;
    padding-bottom: 87px;
  }

  .job-section,
  .how-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .application-intro h2,
  .section-heading h2,
  .how-head h2 {
    font-size: 49px;
  }

  .job-options,
  .job-overview-grid,
  .company-points,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .job-option {
    min-height: 195px;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .overview-card {
    min-height: 180px;
  }

  .registration-hero {
    min-height: auto;
    padding-top: 65px;
    padding-bottom: 72px;
  }

  .registration-help {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .profile-hero {
    min-height: auto;
    padding-top: 65px;
    padding-bottom: 72px;
  }

  .profile-layout {
    padding-top: 75px;
    padding-bottom: 87px;
  }

  .profile-next-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .company-section,
  .home-jobs-section,
  .news-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .news-list-section,
  .news-help-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }

  .news-list-heading {
    display: block;
  }

  .news-list-heading > p {
    margin-top: 20px;
  }

  .news-article {
    padding: 24px 20px 25px;
  }

  .company-lede {
    font-size: 17px;
  }

  .home-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .section-cta {
    justify-content: flex-start;
  }

  .home-cta {
    display: grid;
    gap: 28px;
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .home-cta .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    gap: 24px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .assistant {
    right: 15px;
    bottom: 15px;
  }

  .assistant-launcher {
    min-width: 0;
    padding-right: 13px;
  }
}

@media (max-width: 480px) {
  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .nav-chat {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-point,
  .hero-point:last-child {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-point:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .point-number {
    flex: 0 0 auto;
  }

  .hero-visual {
    min-height: 320px;
  }

  .art-stamp {
    top: 28px;
    left: 28px;
    font-size: 10px;
  }

  .art-card-main {
    right: 5%;
    bottom: 26px;
    width: 174px;
  }

  .art-card-small {
    left: 5%;
    padding: 9px;
    font-size: 10px;
  }

  .card-header {
    align-items: flex-start;
  }

  .step-title {
    font-size: 20px;
  }

  .step-state {
    font-size: 9px;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .button-secondary,
  .form-actions .button-primary {
    width: 100%;
  }

  .registration-summary {
    grid-template-columns: 1fr;
  }

  .registration-summary div,
  .registration-summary div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .registration-summary div:last-child {
    border-bottom: 0;
  }

  .profile-card-header,
  .profile-actions,
  .profile-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-saved-badge {
    order: -1;
  }

  .profile-actions .button,
  .profile-actions .text-button {
    width: 100%;
  }

  .profile-actions .text-button {
    text-align: left;
  }

  .profile-details,
  .profile-status-grid {
    grid-template-columns: 1fr;
  }

  .profile-status-card:last-child {
    grid-column: auto;
  }

  .profile-edit-form {
    padding: 18px;
  }

  .profile-card-header h3 {
    white-space: normal;
  }

  .assistant-panel {
    right: -2px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
