/* ==========================================================================
   DEXS Recruit — Layout & Resets
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  background-image:
    linear-gradient(to right, oklch(96% 0 0 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(96% 0 0 / 0.04) 1px, transparent 1px);
  background-size: clamp(48px, 6vw, 88px) clamp(48px, 6vw, 88px);
  background-position: 0 0;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--text-mono);
  font-size: 0.8125rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.shell {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--space-section);
}

.section + .section {
  border-top: 1px solid var(--color-line-soft);
}

/* Section header (number + label) ----------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: var(--space-block);
}

.section-head__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Top nav ----------------------------------------------------------------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(14% 0.02 260 / 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-line-soft);
}

/* --- Layer 1: Global nav (corporate-wide) --- */
.topnav__global {
  border-bottom: 1px solid var(--color-line-soft);
}

.topnav__global-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.25rem;
}

.topnav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--text-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  flex-shrink: 0;
}

.topnav__brand-mark {
  width: 26px; height: 26px;
  background: var(--color-accent);
  position: relative;
}
.topnav__brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px 6px 6px 12px;
  background: var(--color-bg);
}

.topnav__global-links {
  display: flex;
  gap: clamp(0.875rem, 2vw, 1.75rem);
  font-family: var(--text-body-ja);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}
.topnav__global-links a {
  color: inherit;
  padding: 0.25rem 0;
  transition: color var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.topnav__global-links a:hover { color: var(--color-text); }
.topnav__global-links a.is-current {
  color: var(--color-text);
}
.topnav__global-links a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--color-accent);
}

/* MENU button (mobile only) */
.topnav__menu-btn {
  display: none;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--color-line);
  background: transparent;
}
.topnav__menu-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.topnav__menu-bars {
  position: relative;
  width: 18px; height: 12px;
  display: inline-block;
}
.topnav__menu-bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.topnav__menu-bars span:nth-child(1) { top: 0; }
.topnav__menu-bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.topnav__menu-bars span:nth-child(3) { bottom: 0; }
.topnav__menu-btn[aria-expanded="true"] .topnav__menu-bars span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.topnav__menu-btn[aria-expanded="true"] .topnav__menu-bars span:nth-child(2) {
  opacity: 0;
}
.topnav__menu-btn[aria-expanded="true"] .topnav__menu-bars span:nth-child(3) {
  bottom: auto; top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile drawer */
.topnav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-line-soft);
  gap: 0.25rem;
  font-family: var(--text-body-ja);
}
.topnav__mobile.is-open { display: flex; }
.topnav__mobile a {
  display: block;
  padding: 0.875rem 0.25rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line-soft);
  transition: color var(--dur-fast);
}
.topnav__mobile a:last-child { border-bottom: 0; }
.topnav__mobile a:hover,
.topnav__mobile a.is-current { color: var(--color-accent); }

@media (max-width: 900px) {
  .topnav__global-links { display: none; }
  .topnav__menu-btn { display: inline-flex; }
}

/* --- Layer 2: Section nav (in-page anchors) --- */
.topnav__section {
  background: oklch(14% 0.02 260 / 0.85);
}

.topnav__section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 1rem;
}

.topnav__links {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  overflow-x: auto;
  flex-grow: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.topnav__links::-webkit-scrollbar { display: none; }
.topnav__links a {
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
  color: inherit;
  transition: color var(--dur-fast);
}
.topnav__links a:hover,
.topnav__links a.is-active {
  color: var(--color-accent);
}
.topnav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--color-accent);
}

.topnav__cta {
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--color-line);
  color: var(--color-text);
  flex-shrink: 0;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.topnav__cta:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (max-width: 640px) {
  .topnav__section-inner { height: 48px; }
  .topnav__cta { display: none; }
  .topnav__links { font-size: 0.7rem; gap: 1.125rem; }
}

/* Lock body scroll while mobile menu open */
html.topnav-locked, html.topnav-locked body { overflow: hidden; }

/* Hide Astra default scroll-to-top (broken on this page) */
#ast-scroll-top, .ast-scroll-top-icon { display: none !important; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  padding-block: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  right: -160px;
  bottom: -200px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    oklch(80% 0.14 220 / 0.45) 0%,
    oklch(80% 0.14 220 / 0.18) 35%,
    transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero__orb--accent {
  position: absolute;
  left: -200px;
  top: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 50% 50%,
    oklch(90% 0.22 125 / 0.18) 0%,
    transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}

@media (min-width: 1025px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: end;
  }
}

.hero__topmark {
  display: flex;
  gap: 1rem;
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: clamp(2rem, 6vw, 5rem);
}

.hero__topmark span:nth-child(2) { color: var(--color-accent); }

.hero__head {
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.hero__title { color: var(--color-text); }
.hero__title .ln1 { display: block; }
.hero__title .ln2 {
  display: block;
  color: var(--color-accent);
}

.hero__sub {
  font-family: var(--text-body-ja);
  font-size: clamp(1rem, 1.4vw, 1.375rem);
  color: var(--color-muted);
  letter-spacing: 0.02em;
  max-width: 30ch;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__kpis {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

/* WHY DEXS ---------------------------------------------------------------- */
.why-list { display: flex; flex-direction: column; }

.why-item {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--color-line);
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--color-line); }

.why-item__num {
  font-family: var(--text-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.why-item__body {
  display: flex; flex-direction: column;
  gap: 1rem;
}

.why-item__label {
  font-family: var(--text-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.why-item__h {
  font-family: var(--text-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--color-text);
}

.why-item__p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
  max-width: 60ch;
  text-wrap: pretty;
}

.why-item__metric {
  margin-top: 0.5rem;
  font-family: var(--text-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-signal);
}
.why-item__metric::before { content: "→ "; color: var(--color-muted); }

@media (max-width: 720px) {
  .why-item { grid-template-columns: 1fr; gap: 1rem; }
  .why-item__num { font-size: 4.5rem; }
}

/* WORK ENVIRONMENT -------------------------------------------------------- */
.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}
@media (max-width: 980px) {
  .env-grid { grid-template-columns: 1fr; }
}

.env-cell {
  background: var(--color-bg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex; flex-direction: column;
  gap: 1.25rem;
  min-height: 280px;
  transition: background var(--dur-fast);
  position: relative;
}
.env-cell:hover { background: var(--color-surface); }

.env-cell--featured {
  outline: 1px solid var(--color-accent);
  outline-offset: -1px;
  background: oklch(14% 0.02 260);
}
.env-cell--featured::before {
  content: "LIVE";
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--text-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
}
.env-cell--featured .live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 0.5rem;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

.env-cell__h {
  font-family: var(--text-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.env-cell__p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-muted);
}
.env-cell__note {
  margin-top: auto;
  font-family: var(--text-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--color-line);
  text-transform: uppercase;
}

/* OPEN POSITIONS ---------------------------------------------------------- */
.positions { display: flex; flex-direction: column; }

.position {
  border-top: 1px solid var(--color-line);
  position: relative;
  transition: background var(--dur-normal);
}
.positions .position:last-child { border-bottom: 1px solid var(--color-line); }
.position[open] { background: oklch(18% 0.02 260 / 0.5); }
.position:hover:not([open]) { background: oklch(18% 0.02 260 / 0.35); }

.position__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  align-items: center;
}

.position__meta {
  display: flex; flex-direction: column;
  gap: 0.875rem;
}

.position__cat {
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-signal);
}

.position__title {
  font-family: var(--text-display);
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.position__sub {
  font-family: var(--text-body-ja);
  font-size: 0.9375rem;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.position__sub span { display: inline-flex; align-items: center; gap: 0.5rem; }
.position__sub span + span::before {
  content: "|";
  color: var(--color-line);
  margin-right: 1.5rem;
  margin-left: -2rem;
}
@media (max-width: 640px) {
  .position__sub span + span::before { display: none; }
}

.position__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--text-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}
.position__toggle .icn {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-line);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  position: relative;
}
.position__toggle .icn::before, .position__toggle .icn::after {
  content: ""; position: absolute;
  background: currentColor;
}
.position__toggle .icn::before { width: 12px; height: 1.5px; }
.position__toggle .icn::after  { width: 1.5px; height: 12px; transition: transform var(--dur-fast); }

.position[open] .position__toggle .icn {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}
.position[open] .position__toggle .icn::after { transform: scaleY(0); }
.position[open] .position__toggle .label-closed { display: none; }
.position:not([open]) .position__toggle .label-open { display: none; }

.position__body {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
}

.position__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.position__table th, .position__table td {
  text-align: left;
  vertical-align: top;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-line);
}
.position__table th {
  font-family: var(--text-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  width: clamp(140px, 22%, 220px);
  white-space: nowrap;
}
.position__table td { color: var(--color-text); }
.position__table td .note {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--text-mono);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.position__apply {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.25rem 0;
}

@media (max-width: 640px) {
  .position__head { grid-template-columns: 1fr; }
  .position__toggle { justify-self: start; }
  .position__table th, .position__table td { display: block; width: auto; padding: 0.5rem 0; border-top: 0; }
  .position__table tr { display: block; padding: 0.875rem 0; border-top: 1px solid var(--color-line); }
}

/* PROCESS ----------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 36px;
  height: 1px;
  background: var(--color-line);
  z-index: 0;
}

.process__step {
  display: flex; flex-direction: column;
  gap: 1.25rem;
  padding-right: clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.process__node {
  width: 72px; height: 72px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  font-family: var(--text-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.process__step:first-child .process__node {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.process__label {
  font-family: var(--text-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.process__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.process__meta {
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-signal);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 0; }
  .process::before {
    left: 36px; right: auto;
    top: 0; bottom: 0;
    width: 1px; height: auto;
  }
  .process__step {
    padding: 1.5rem 0 1.5rem 7rem;
    position: relative;
    min-height: 110px;
  }
  .process__node { position: absolute; left: 0; top: 1.5rem; }
}

/* VOICE ------------------------------------------------------------------- */
.voice {
  display: block;
  margin: 0;
}

.voice__quote {
  position: relative;
  padding-left: clamp(2.5rem, 4vw, 4rem);
  padding-right: 0;
  padding-top: clamp(3rem, 5vw, 4.5rem);
  max-width: none;
  margin: 0;
}

.voice__quote::before {
  content: "“";
  position: absolute;
  left: -0.5rem;
  top: -1.25rem;
  font-family: var(--text-display);
  font-weight: 600;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: var(--color-accent);
  pointer-events: none;
}

.voice__body p {
  font-family: var(--text-body-ja);
  font-size: clamp(1rem, 1.2vw, 1.1875rem);
  line-height: 1.95;
  color: var(--color-text);
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
  max-width: none;
  margin-bottom: 1.5em;
}
.voice__body p:last-child { margin-bottom: 0; }

.voice__sig {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex; justify-content: flex-end;
  font-family: var(--text-body-ja);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

/* FAQ --------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; max-width: none; }

.faq__item {
  border-top: 1px solid var(--color-line);
  padding-block: 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--color-line); }

.faq__summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  list-style: none;
  transition: color var(--dur-fast);
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::marker { content: ""; }
.faq__summary > .faq__num { flex-shrink: 0; }
.faq__summary > .faq__q { flex-grow: 1; min-width: 0; }
.faq__summary > .faq__icn { flex-shrink: 0; margin-left: auto; }
.faq__summary:hover { color: var(--color-accent); }

.faq__num {
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.faq__q {
  font-family: var(--text-body-ja);
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  line-height: 1.5;
}

.faq__icn {
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq__icn::before, .faq__icn::after {
  content: "";
  position: absolute;
  background: currentColor;
  inset: 0; margin: auto;
}
.faq__icn::before { height: 1.5px; width: 14px; top: 50%; transform: translateY(-50%); }
.faq__icn::after  { width: 1.5px; height: 14px; left: 50%; transform: translateX(-50%); transition: transform var(--dur-fast); }
.faq__item[open] .faq__icn::after { transform: translateX(-50%) scaleY(0); }
.faq__item[open] .faq__summary { color: var(--color-accent); }

.faq__a {
  padding: 0 0 1.75rem clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: none;
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: pretty;
}
.faq__a p { max-width: none; margin: 0; }

/* CTA --------------------------------------------------------------------- */
.cta {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, oklch(80% 0.14 220 / 0.18), transparent 60%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.cta__h {
  font-family: var(--text-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.cta__h .accent { color: var(--color-accent); }

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta__note {
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* Footer ------------------------------------------------------------------ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand-mark {
  font-family: var(--text-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer__brand-mark::before {
  content: "";
  width: 28px; height: 28px;
  background: var(--color-accent);
  position: relative;
}

.footer__tag {
  font-family: var(--text-mono);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.footer__legal {
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--color-muted);
}
.footer__legal strong {
  color: var(--color-text);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.footer__nav {
  display: flex; flex-direction: column;
  gap: 0.875rem;
  font-family: var(--text-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__nav a { color: var(--color-muted); transition: color var(--dur-fast); }
.footer__nav a:hover { color: var(--color-accent); }

.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--text-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
}


/* DEXS-A11y-fix v1.0.2 (2026-05-20) — WCAG 2.5.5 tap-target 48px for hamburger */
.topnav__menu-btn { min-height: 48px; min-width: 48px; }
