:root {
  --violet: #7c3aed;
  --violet-soft: #8b5cf6;
  --orange: #f97316;
  --dark: #1e1b4b;
  --dark-2: #15123a;
  --light: #fafafa;
  --ink: #0f0d2e;
  --muted: #6b6a86;
  --line: rgba(15, 13, 46, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --max: 1320px;
  --pad-x: clamp(20px, 5vw, 72px);
  --section-y: clamp(56px, 7vw, 96px);
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.site-shell {
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.wordmark {
  display: inline-block;
  padding-bottom: 2px;
  font-family: var(--font);
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wordmark .pri {
  color: var(--violet);
}

.wordmark .ac {
  color: var(--orange);
}

.wordmark.dark .pri {
  color: #fff;
}

.product-name {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding-left: 10px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav {
  margin-left: auto;
}

.nav a {
  border-radius: 8px;
  color: var(--ink);
  font-size: 13.5px;
  padding: 8px 14px;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(124, 58, 237, 0.06);
  color: var(--violet);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 22px;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, opacity 200ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: #6b25e0;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
  border: 1px solid rgba(15, 13, 46, 0.18);
  color: var(--ink);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
}

.btn .arrow {
  transition: transform 200ms ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.eyebrow {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow.lg {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.22em;
}

.eyebrow.muted {
  color: var(--muted);
}

.display {
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.h-hero {
  font-size: clamp(42px, 7.4vw, 96px);
}

.h-xl {
  font-size: clamp(40px, 6vw, 76px);
}

.h-1 {
  font-size: clamp(38px, 6.2vw, 84px);
}

.h-2 {
  font-size: clamp(30px, 4vw, 48px);
}

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

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.lead.dark {
  color: rgba(255, 255, 255, 0.72);
}

.hero,
.inner-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero {
  padding-top: clamp(86px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.inner-hero {
  padding-top: clamp(62px, 8vw, 110px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.hero::before,
.hero::after,
.inner-hero::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero::before,
.inner-hero::before {
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: var(--violet);
  opacity: 0.18;
}

.hero::after {
  bottom: -25%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: var(--orange);
  opacity: 0.12;
}

.hero-inner,
.inner-hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 40px;
}

.hero-title {
  max-width: 12ch;
  margin: 0 0 28px;
  color: #fff;
}

.hero-lead {
  max-width: 60ch;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.hero-tagline,
.tagline-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-tagline {
  margin-top: 8px;
  font-size: clamp(18px, 2vw, 28px);
}

.hero-tagline .dot,
.tagline-mini .dot {
  color: rgba(255, 255, 255, 0.35);
}

.hero-tagline .s1,
.tagline-mini .s1 {
  color: var(--violet-soft);
}

.hero-tagline .s2,
.tagline-mini .s2 {
  color: var(--orange);
}

.hero-tagline .s3 {
  color: var(--violet-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 40px);
}

.section-light,
.section-dark {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 1060px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section-head h2 {
  max-width: 20ch;
  margin: 0;
  color: var(--ink);
}

.section-head p {
  margin: 0;
}

.notice {
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  margin-bottom: 22px;
  background: rgba(124, 58, 237, 0.05);
  color: #3a3858;
  padding: 16px 18px;
}

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

.job-card,
.detail-main,
.aside-box,
.apply-panel,
.empty {
  border: 1px solid var(--line);
  background: #fff;
}

.job-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  padding: 30px 28px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.job-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 16px 40px -20px rgba(15, 13, 46, 0.18);
  transform: translateY(-2px);
}

.job-card .glyph {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(15, 13, 46, 0.32);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.job-card h3 {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.12;
}

.job-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-right: 64px;
}

.tag {
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.07);
  color: var(--violet);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 10px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.detail-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 28px;
  align-items: start;
}

.form-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.detail-main,
.aside-box,
.apply-panel,
.empty {
  border-radius: 18px;
}

.detail-main {
  padding: clamp(28px, 4.8vw, 56px);
}

.detail-main h1 {
  max-width: 14ch;
  margin-bottom: 20px;
}

.detail-main h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.detail-main p,
.detail-main li {
  color: #2c2a4a;
  line-height: 1.7;
}

.detail-main ul {
  margin: 0;
  padding-left: 20px;
}

.aside-box {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.aside-box h2,
.apply-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.aside-box p {
  color: var(--muted);
}

.info-line {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.info-line span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-line strong {
  color: var(--ink);
  font-weight: 500;
}

.apply-panel {
  padding: clamp(24px, 4vw, 38px);
}

.apply-panel h2 {
  margin-top: 16px;
  margin-bottom: 12px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.field label .req {
  color: var(--orange);
  margin-left: 2px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 15.5px;
  outline: none;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(15, 13, 46, 0.25);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--violet);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.file-input {
  border-style: dashed !important;
  background: rgba(124, 58, 237, 0.04) !important;
}

.help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.btn-submit {
  width: fit-content;
  border-radius: 12px;
  padding: 16px 28px;
}

.status {
  display: none;
  border-radius: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  line-height: 1.5;
}

.status.is-visible {
  display: block;
}

.status-success {
  border: 1px solid rgba(22, 163, 74, 0.25);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.status-error {
  border: 1px solid rgba(220, 38, 38, 0.25);
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
}

.method-block {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}

.method-title {
  max-width: 20ch;
  margin: 0;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

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

.method-card {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}

.method-card .method-num {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(72px, 8.5vw, 132px);
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.method-card h3 {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.method-card p {
  max-width: 30ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  line-height: 1.6;
}

.empty {
  padding: clamp(30px, 5vw, 56px);
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: clamp(56px, 7vw, 80px);
}

.foot-col h4 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.foot-col a:hover {
  color: #fff;
}

.foot-brand-tag {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

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

.foot-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.foot-social a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.tagline-mini {
  font-size: 11px;
}

@media (max-width: 980px) {
  .job-grid,
  .method-grid,
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .wordmark {
    font-size: 24px;
  }

  .hero-title {
    max-width: 10ch;
  }

  .job-grid,
  .method-grid,
  .foot-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-actions,
  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-submit {
    width: 100%;
  }

  .tags {
    padding-right: 0;
  }

  .job-card .glyph {
    position: static;
    margin-bottom: 16px;
  }

  .foot-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}
