:root {
  --ink: #111312;
  --muted: #6d716f;
  --line: #e2e0d9;
  --paper: #f8f7f3;
  --white: #ffffff;
  --green: #2f5d55;
  --green-dark: #172522;
  --blue: #315b75;
  --coral: #8f5a4c;
  --gold: #b69d63;
  --soft-blue: #eef3f5;
  --soft-green: #f1f4f2;
  --soft-gold: #f6f1e4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

#top {
  scroll-margin-top: 96px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family:
    "Inter", "SF Pro Display", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #d9cda9;
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto auto;
  left: 0;
  padding: 16px clamp(20px, 5vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
  width: max-content;
}

.brand-sail {
  display: inline-block;
  height: 42px;
  position: relative;
  width: 48px;
}

.sail-main,
.sail-front {
  display: block;
  position: absolute;
}

.sail-main {
  background: linear-gradient(145deg, #385f76, #172522 70%);
  border-radius: 4px 16px 6px 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 22px rgba(17, 19, 18, 0.14);
  clip-path: polygon(83% 0, 14% 88%, 83% 76%);
  height: 32px;
  left: 7px;
  top: 2px;
  width: 28px;
}

.sail-front {
  background: linear-gradient(145deg, #f4efe2, #b69d63);
  border-radius: 12px 4px 6px 4px;
  clip-path: polygon(10% 18%, 92% 82%, 10% 76%);
  height: 24px;
  left: 25px;
  top: 9px;
  width: 20px;
}

.sail-mast {
  background: var(--green-dark);
  border-radius: 999px;
  display: block;
  height: 35px;
  left: 25px;
  position: absolute;
  top: 1px;
  width: 3px;
}

.sail-hull {
  background: linear-gradient(90deg, #111312, #315b75);
  border-radius: 0 0 18px 18px;
  display: block;
  height: 8px;
  left: 7px;
  position: absolute;
  top: 31px;
  transform: skewX(-16deg);
  width: 38px;
}

.sail-wave {
  background: linear-gradient(90deg, rgba(49, 91, 117, 0), #315b75, rgba(49, 91, 117, 0));
  border-radius: 999px;
  display: block;
  height: 3px;
  left: 3px;
  position: absolute;
  top: 40px;
  width: 42px;
}

.brand-word {
  align-items: baseline;
  display: inline-flex;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}

.brand-word::after {
  background: var(--gold);
  border-radius: 999px;
  bottom: -7px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 78%;
}

.brand-hi {
  color: var(--green-dark);
}

.brand-crew {
  color: var(--ink);
  margin-left: 4px;
}

.brand:hover .brand-sail {
  transform: translateY(-1px) rotate(-2deg);
}

.brand:hover .brand-word::after {
  width: 100%;
}

.brand-sail,
.brand-word::after {
  transition:
    transform 180ms ease,
    width 180ms ease;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

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

.language-switcher {
  align-items: center;
  display: flex;
  gap: 8px;
}

.language-switcher span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.language-switcher select {
  background: var(--white);
  border-color: var(--line);
  min-height: 38px;
  min-width: 132px;
}

.button {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.01em;
  min-height: 42px;
  padding: 10px 16px;
}

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

.button-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button:hover,
.text-button:hover {
  opacity: 0.82;
}

.section-band,
.content-section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 92px);
}

.section-band > *,
.content-section > * {
  max-width: 1180px;
}

.hero {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
}

.hero > * {
  max-width: none;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.hero-kicker-visual {
  border: 1px solid var(--line);
  border-radius: 4px;
  grid-column: 1 / -1;
  height: clamp(220px, 24vw, 320px);
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-kicker-visual img {
  display: block;
  height: 100%;
  object-fit: fill;
  object-position: center center;
  width: 100%;
}

.tech-canvas,
.hero-kicker-canvas {
  height: 100%;
  inset: 0;
  opacity: 0.92;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 780;
  line-height: 0.98;
  margin: 0;
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 760;
  line-height: 1.04;
  margin: 0;
}

h3 {
  font-size: 18px;
  font-weight: 760;
  line-height: 1.25;
  margin: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.82;
  max-width: 620px;
}

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

.trust-line {
  border-left: 1px solid var(--ink);
  font-size: 14px;
  line-height: 1.74;
  margin-top: 28px;
  max-width: 560px;
  padding-left: 14px;
}

.persona-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.persona-badges span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.01em;
  padding: 6px 10px;
}

.hero-visual {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 560px;
  overflow: hidden;
  perspective: 1200px;
  position: relative;
}

.hero-visual::before {
  background: linear-gradient(180deg, rgba(17, 19, 18, 0), rgba(17, 19, 18, 0.14));
  border: 0;
  border-radius: 0;
  content: "";
  filter: none;
  inset: 0;
  position: absolute;
  transform: none;
  z-index: 1;
}

.hero-visual img {
  display: block;
  filter: none;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 34%;
  position: relative;
  transform: none;
  width: 100%;
}

.content-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.problem,
.about-section,
.apply-section,
.join-section,
.recruitment-section {
  margin-left: auto;
  margin-right: auto;
}

.section-heading,
.pillar-grid,
.mentor-grid,
.article-layout,
.steps,
.join-grid,
.join-form,
.recruitment-grid,
.recruitment-proof {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.problem {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.recruitment-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
}

.recruitment-intro {
  max-width: 600px;
}

.recruitment-intro .button {
  margin-top: 18px;
}

.recruitment-portrait {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.recruitment-portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}

.join-visual {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.join-visual::after {
  background: linear-gradient(180deg, rgba(11, 17, 27, 0) 48%, rgba(11, 17, 27, 0.34) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.join-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

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

.recruitment-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: none;
  padding: 28px;
}

.recruitment-grid h3 {
  font-size: 19px;
}

.recruitment-grid p,
.pillar-grid p,
.steps p,
.mentor-card p,
.article-list p,
.join-grid p {
  margin-bottom: 0;
}

.recruitment-proof {
  background: var(--ink);
  border-radius: 4px;
  color: var(--white);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.recruitment-proof div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 24px;
}

.recruitment-proof div:first-child {
  border-left: 0;
}

.recruitment-proof strong {
  color: var(--white);
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.recruitment-proof span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 13px;
  font-weight: 750;
  margin-top: 8px;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
}

.about-copy {
  max-width: 620px;
}

.about-facts {
  display: grid;
  gap: 14px;
}

.about-facts article {
  border-left: 1px solid var(--line);
  padding: 8px 0 8px 20px;
}

.about-facts span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 10px;
}

.about-facts p {
  margin-bottom: 0;
}

.problem-copy {
  max-width: 720px;
}

.check-list {
  color: var(--ink);
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.62;
  padding: 14px 0 14px 28px;
  position: relative;
}

.check-list li::before {
  background: var(--ink);
  border-radius: 0;
  content: "";
  height: 9px;
  left: 4px;
  position: absolute;
  top: 21px;
  width: 9px;
}

.section-heading {
  max-width: 780px;
}

.section-heading p {
  max-width: 700px;
}

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

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

.pillar-grid article,
.steps article,
.mentor-card,
.featured-article,
.article-list article,
.application-form,
.join-form,
.join-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}

.pillar-grid h3,
.steps h3,
.mentor-card h3,
.featured-article h3,
.article-list h3,
.join-grid h3,
.recruitment-grid h3 {
  margin-bottom: 10px;
}

.pillar-grid article,
.steps article,
.mentor-card,
.featured-article,
.article-list article,
.application-form,
.join-form,
.join-grid article,
.recruitment-grid article,
.about-facts article,
.apply-visual,
.recruitment-portrait,
.join-visual,
.mentor-photo-wrap,
.hero-kicker-visual,
.hero-visual {
  position: relative;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.pillar-grid article:hover,
.steps article:hover,
.mentor-card:hover,
.featured-article:hover,
.article-list article:hover,
.application-form:hover,
.join-form:hover,
.join-grid article:hover,
.recruitment-grid article:hover,
.about-facts article:hover,
.apply-visual:hover,
.recruitment-portrait:hover,
.join-visual:hover,
.mentor-photo-wrap:hover,
.hero-kicker-visual:hover,
.hero-visual:hover,
.pillar-grid article:focus-within,
.steps article:focus-within,
.mentor-card:focus-within,
.featured-article:focus-within,
.article-list article:focus-within,
.application-form:focus-within,
.join-form:focus-within,
.join-grid article:focus-within,
.recruitment-grid article:focus-within,
.about-facts article:focus-within,
.apply-visual:focus-within,
.recruitment-portrait:focus-within,
.join-visual:focus-within,
.mentor-photo-wrap:focus-within,
.hero-kicker-visual:focus-within,
.hero-visual:focus-within {
  background-color: #fffdfa;
  border-color: #a9a293;
  box-shadow: 0 22px 48px rgba(17, 19, 18, 0.14);
  transform: translateY(-6px) scale(1.012);
  z-index: 2;
}

.join-grid article:hover,
.join-grid article:focus-within,
.join-visual:hover,
.join-visual:focus-within,
.featured-article:hover,
.featured-article:focus-within {
  background-color: #1c211f;
  border-color: rgba(255, 255, 255, 0.34);
}

.number {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  margin-bottom: 38px;
}

.stacked {
  display: block;
}

.mentor-card {
  display: grid;
  gap: 16px;
  grid-template-rows: auto 1fr auto;
}

.avatar {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 850;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.avatar-blue {
  background: var(--soft-blue);
  border-color: var(--line);
}

.avatar-coral {
  background: var(--soft-gold);
  border-color: var(--line);
}

.mentor-photo-wrap {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  width: 64px;
}

.mentor-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  width: 100%;
}

.mentor-card-photo {
  grid-template-rows: auto 1fr auto;
}

.mentor-card span,
.tag {
  color: var(--muted);
  display: inline-block;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
}

.text-button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 780;
  padding: 0;
  text-align: left;
}

.article-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  margin-top: 34px;
}

.featured-article {
  background: var(--ink);
}

.featured-article h3,
.featured-article p {
  color: var(--white);
}

.featured-article .tag {
  color: rgba(255, 255, 255, 0.68);
}

.featured-article .button {
  background: var(--white);
  color: var(--ink);
  margin-top: 12px;
}

.article-list {
  display: grid;
  gap: 16px;
}

.apply-section {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
}

.apply-intro,
.join-intro {
  max-width: 500px;
}

.apply-visual {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.apply-visual::after {
  background: linear-gradient(180deg, rgba(17, 19, 18, 0) 48%, rgba(17, 19, 18, 0.2) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.apply-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.join-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
}

.join-section .eyebrow,
.join-section h2,
.join-section h3 {
  color: var(--white);
}

.join-section p {
  color: rgba(255, 255, 255, 0.72);
}

.join-grid {
  grid-column: 1 / -1;
  margin-top: 0;
}

.join-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.join-grid .number {
  color: rgba(255, 255, 255, 0.58);
}

.join-form {
  grid-column: 1 / -1;
}

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

label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 780;
  gap: 7px;
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #9d9686;
  box-shadow: 0 0 0 3px rgba(182, 157, 99, 0.16);
  outline: none;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.application-form .button {
  margin-top: 18px;
}

.form-note {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.form-note.success {
  color: var(--ink);
  font-weight: 750;
}

.article-modal {
  border: 0;
  border-radius: 4px;
  max-width: 760px;
  padding: 0;
  width: min(92vw, 760px);
}

.article-modal::backdrop {
  background: rgba(17, 19, 18, 0.48);
}

.article-modal article {
  padding: clamp(24px, 4vw, 42px);
}

.article-modal h2 {
  padding-right: 42px;
}

.close-button {
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  height: 42px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
}

.debug-panel {
  bottom: 18px;
  position: fixed;
  right: 18px;
  width: min(330px, calc(100vw - 36px));
  z-index: 20;
}

.debug-toggle {
  background: var(--ink);
  border: 0;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-weight: 850;
  margin-left: auto;
  min-height: 40px;
  padding: 10px 14px;
}

.debug-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(17, 19, 18, 0.12);
  display: none;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
}

.debug-panel.is-open .debug-body {
  display: grid;
}

.debug-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
  margin: 0;
}

.debug-copy {
  font-size: 13px;
  line-height: 1.45;
  margin: 4px 0 0;
}

.debug-actions {
  display: flex;
  gap: 8px;
}

.debug-actions .button {
  flex: 1;
}

.debug-state {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  max-height: 142px;
  overflow: auto;
  padding: 10px;
  white-space: pre-wrap;
}

.is-personalized {
  animation: pulsePersonalized 700ms ease;
}

@keyframes pulsePersonalized {
  0% {
    background: rgba(17, 19, 18, 0.06);
  }
  100% {
    background: transparent;
  }
}

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

  .site-header > .button {
    display: none;
  }

  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero,
  .problem,
  .recruitment-section,
  .about-section,
  .article-layout,
  .apply-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .pillar-grid,
  .recruitment-grid,
  .recruitment-proof,
  .mentor-grid,
  .steps,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-proof div,
  .recruitment-proof div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .recruitment-proof div:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  #top,
  section[id] {
    scroll-margin-top: 126px;
  }

  .site-header {
    align-items: center;
    gap: 10px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 20px;
  }

  .brand-sail {
    height: 34px;
    transform: scale(0.82);
    transform-origin: left center;
    width: 40px;
  }

  .brand-word {
    font-size: 19px;
  }

  .language-switcher {
    grid-column: auto;
    justify-self: end;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher select {
    min-height: 34px;
    min-width: 104px;
    padding: 7px 30px 7px 10px;
  }

  .nav {
    gap: 18px;
    grid-column: 1 / -1;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .section-band,
  .content-section {
    padding: 44px 20px;
  }

  .hero {
    gap: 28px;
    padding-top: 54px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-kicker-visual {
    height: 180px;
    margin-bottom: 4px;
    width: 100%;
  }

  h1 {
    font-size: 32px;
    line-height: 1.05;
    max-width: 100%;
  }

  h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  p {
    font-size: 15px;
  }

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

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 140px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .trust-line {
    margin-top: 24px;
  }

  .persona-badges {
    gap: 7px;
  }

  .persona-badges span {
    font-size: 11px;
    max-width: 100%;
  }

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

  .hero-visual img {
    object-position: center 28%;
  }

  .join-visual {
    min-height: 260px;
  }

  .pillar-grid article,
  .steps article,
  .mentor-card,
  .featured-article,
  .article-list article,
  .application-form,
  .join-form,
  .join-grid article,
  .recruitment-grid article {
    padding: 22px;
  }

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

  input,
  select,
  textarea {
    min-height: 44px;
  }

  .debug-panel {
    margin: 0 20px 24px;
    position: static;
    width: auto;
  }

  .debug-toggle {
    margin-left: 0;
    width: 100%;
  }
}
