:root {
  --bg: #eef0f3;
  --card: #ffffff;
  --surface: #ffffff;
  --ink: #14161a;
  --ink-soft: #5b6270;
  --ink-faint: #8a91a0;
  --accent-blue: #4b5875;
  --pill-dark: #14161a;
  --border: #e2e4e9;
  --line: #e2e4e9;
  --line-soft: rgba(20, 22, 26, 0.06);
  --line-dark: rgba(255, 255, 255, 0.14);
  --mono: "Courier New", ui-monospace, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(20, 22, 26, 0.04);
  --shadow-md: 0 18px 44px rgba(20, 22, 26, 0.1);
  --shadow-lg: 0 30px 60px rgba(20, 22, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  /* legacy aliases used by admin / apply */
  --bg-soft: #e4e6eb;
  --ink-2: #2c2f36;
  --lime: #14161a;
  --lime-dark: #2c2f36;
  --lime-text: #4b5875;
  --violet: #4b5875;
  --shadow-lime: 0 14px 30px rgba(20, 22, 26, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

.eyebrow,
.handle-eyebrow {
  font-family: var(--mono);
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 18px;
}
.eyebrow::before { display: none; }

/* Buttons — design language */
.btn-dark,
.btn-primary,
.btn-secondary,
.call-cta,
.btn-ghost,
.btn-ghost-dark,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}

.btn-dark {
  background: var(--pill-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}
.btn-dark:hover {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 10px 24px rgba(20, 22, 26, 0.22);
}
.btn-dark:active {
  transform: scale(0.94);
  transition-duration: 0.15s;
}

.btn-primary {
  background: var(--pill-dark);
  color: #fff;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}
.btn-primary span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(20, 22, 26, 0.28); }
.btn-primary:hover span { transform: translateX(4px); }
.btn-primary:active {
  transform: scale(0.95);
  transition-duration: 0.15s;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.btn-secondary:hover {
  border-color: #c7cad1;
  box-shadow: 0 10px 22px rgba(20, 22, 26, 0.08);
}
.btn-secondary:active {
  transform: scale(0.95);
  transition-duration: 0.15s;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-ghost:hover {
  border-color: #c7cad1;
  box-shadow: 0 10px 22px rgba(20, 22, 26, 0.08);
}

.btn-ghost-dark {
  border: 1px solid var(--line-dark);
  color: #fff;
  background: transparent;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost-dark:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

/* Legacy .btn for apply / admin pages */
.btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.btn .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.btn.btn-primary { background: var(--pill-dark); color: #fff; }
.btn.btn-primary .ic { background: #fff; color: var(--ink); }
.btn.btn-dark { background: var(--pill-dark); color: #fff; }
.btn.btn-dark .ic { background: #fff; color: var(--ink); }
.btn.btn-sm { padding: 8px 16px 8px 8px; font-size: 13px; }
.btn.btn-sm .ic { width: 24px; height: 24px; font-size: 0.75rem; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleOut 0.6s ease-out forwards;
  pointer-events: none;
}
.btn-secondary .ripple { background: rgba(20, 22, 26, 0.08); }
@keyframes rippleOut {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* NAV — pill */
header { padding-top: 20px; }
nav {
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  gap: 16px;
}
.brand,
.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-name {
  font-family: "Outfit", var(--sans);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  color: var(--ink);
}
.brand-north,
.brand-talent {
  display: block;
}
.brand-talent {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-logo,
.logo-badge {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
.brand-logo img,
.logo-badge img {
  height: 48px;
  width: auto;
  /* logo asset is white; invert for light backgrounds */
  filter: brightness(0);
}
.footer-logo .brand-logo img {
  height: 36px;
}
.nav-links,
.navlinks {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink);
}
.nav-links a,
.navlinks a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 1100px) {
  .nav-links,
  .navlinks { gap: 20px; }
}
@media (max-width: 980px) {
  .nav-links,
  .navlinks { display: none; }

  nav {
    padding: 10px 16px;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  nav > .btn-dark {
    flex-shrink: 0;
  }
}
@media (max-width: 720px) {
  nav {
    flex-wrap: wrap;
    border-radius: 22px;
    row-gap: 10px;
  }

  nav > .btn-dark {
    flex: 1 1 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .btn-dark { font-size: 12.5px; padding: 9px 14px; }
  .brand-logo img { height: 40px; }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 48px;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
}
.hero h1 .accent { color: var(--accent-blue); }
.lead {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.tags {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.badge-reviewed {
  position: absolute;
  top: 0;
  right: 40px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(20, 22, 26, 0.08);
  z-index: 3;
}
.badge-drag {
  position: absolute;
  bottom: -18px;
  right: 10px;
  background: #14161a;
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.call-card {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 380px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: cardSway 7s ease-in-out infinite;
  transform-origin: center bottom;
  color: var(--ink);
}
@keyframes cardSway {
  0%   { transform: translateX(0) rotate(1.2deg); }
  25%  { transform: translateX(10px) rotate(2deg); }
  50%  { transform: translateX(0) rotate(1.2deg); }
  75%  { transform: translateX(-10px) rotate(0.4deg); }
  100% { transform: translateX(0) rotate(1.2deg); }
}
.call-card h2 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
}
.call-card .sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef0f3;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.stat-box {
  background: #f3f4f6;
  border-radius: 14px;
  padding: 14px 10px;
}
.stat-box .big {
  font-size: 20px;
  font-weight: 800;
}
.stat-box .small {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 2px;
  text-transform: uppercase;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0 16px;
}
.in-call-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.in-call-copy {
  font-size: 14.5px;
  line-height: 1.5;
  color: #2c2f36;
}
.call-cta {
  margin-top: 22px;
  background: #14161a;
  color: #fff;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}
.call-cta:hover { box-shadow: 0 14px 30px rgba(20, 22, 26, 0.3); }
.call-cta:active {
  transform: scale(0.97);
  transition-duration: 0.15s;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero h1 { font-size: 40px; }
  .badge-reviewed { right: 12px; }
}

/* SIGNAL CARDS — claims */
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.signal-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
}
.signal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(20, 22, 26, 0.18);
}
.signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.signal-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef0f7;
  color: var(--accent-blue);
}
.signal-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.signal-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.signal-number {
  font-family: "Outfit", var(--sans);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.signal-number-word {
  font-size: 32px;
  letter-spacing: -0.02em;
  padding-top: 6px;
}
.signal-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.signal-bar {
  margin-top: 18px;
  height: 3px;
  border-radius: 2px;
  background: #eceef3;
  overflow: hidden;
}
.signal-bar-fill {
  height: 100%;
  width: 0;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: width 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.signal-card.in-view .signal-bar-fill { width: var(--fill); }
@media (max-width: 980px) {
  .signal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .signal-grid { grid-template-columns: 1fr; }
}

/* WHAT WE HANDLE */
.handle-section {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}
.wave-bg {
  position: absolute;
  inset: -40px 0 -40px 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.wave-bg svg {
  width: 100%;
  height: 100%;
}
.wave-line {
  fill: none;
  stroke: #cfd3da;
  stroke-width: 1;
  animation: waveDrift 18s ease-in-out infinite;
}
.wave-line:nth-child(1) { animation-duration: 16s; }
.wave-line:nth-child(2) { animation-duration: 20s; animation-delay: -4s; }
.wave-line:nth-child(3) { animation-duration: 24s; animation-delay: -9s; }
.wave-line:nth-child(4) { animation-duration: 19s; animation-delay: -2s; }
.wave-line:nth-child(5) { animation-duration: 22s; animation-delay: -11s; }
@keyframes waveDrift {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(-24px, 8px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.handle-inner { position: relative; z-index: 1; }
.handle-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.handle-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.handle-header h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
}
.handle-header p {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
  transition-delay: var(--d, 0s);
}
.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  box-shadow: 0 20px 40px rgba(20, 22, 26, 0.1);
  transform: translateY(-6px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #14161a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card:hover .feature-icon {
  transform: rotate(-6deg) scale(1.06);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .handle-header h2 { font-size: 32px; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.solutions-grid > .solution-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.solution-card {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 26px;
  border-radius: 16px;
}
.solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--tone);
  transform: scaleX(0.16);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.feature-card.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -14px rgba(20, 22, 26, 0.16);
  border-color: color-mix(in srgb, var(--tone) 35%, var(--border));
}
.feature-card.solution-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.solution-card .feature-icon {
  background: linear-gradient(145deg, var(--tone), color-mix(in srgb, var(--tone) 45%, #000));
  box-shadow: 0 6px 14px -6px color-mix(in srgb, var(--tone) 70%, transparent);
  margin-bottom: 18px;
}
a.feature-icon {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.solution-card a.feature-icon:hover,
.solution-card a.feature-icon:focus-visible {
  transform: rotate(-6deg) scale(1.08);
}
.solution-card a.feature-icon:focus-visible {
  outline: 2px solid var(--tone);
  outline-offset: 3px;
}
.solution-card .feature-icon svg {
  width: 19px;
  height: 19px;
}
.solution-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.solution-card p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.role-tag-row {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.role-tags span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0;
  background: color-mix(in srgb, var(--tone) 12%, #fff);
  color: color-mix(in srgb, var(--tone) 75%, #000);
  border-radius: 20px;
  padding: 5px 10px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}
.solutions-grid .role-tag {
  appearance: none;
  border: 0;
  margin: 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0;
  background: color-mix(in srgb, var(--tone) 12%, #fff);
  color: color-mix(in srgb, var(--tone) 75%, #000);
  border-radius: 20px;
  padding: 5px 10px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.solutions-grid .role-tag:hover {
  background: color-mix(in srgb, var(--tone) 22%, #fff);
}
.solutions-grid .role-tag:focus-visible {
  outline: 2px solid var(--tone);
  outline-offset: 2px;
}
.solutions-grid .role-tag[aria-expanded="true"] {
  background: color-mix(in srgb, var(--tone) 28%, #fff);
  color: color-mix(in srgb, var(--tone) 88%, #000);
}
.role-tag-plus {
  font-size: 13px;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.solutions-grid .role-tag[aria-expanded="true"] .role-tag-plus {
  transform: rotate(45deg);
}
.role-detail {
  display: none;
  height: 0;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}
.role-detail.open {
  display: block !important;
  height: auto;
  max-height: none;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
}
.role-detail-inner {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--tone) 22%, var(--border));
}
.solution-card .role-detail-inner p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 10px;
  color: var(--ink);
}
.solution-card .role-detail-inner .role-covers {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--tone) 80%, #000);
  font-weight: 600;
  margin: 12px 0 6px;
}
.role-detail-inner ul {
  margin: 0;
  padding: 0 0 2px 16px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.role-detail-inner li::marker {
  color: var(--tone);
}
.role-detail-inner li + li {
  margin-top: 3px;
}
.solutions-grid .feature-card.solution-card.has-open-role,
.solutions-grid .feature-card.solution-card.has-open-role:hover {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

.value-section {
  padding: 40px 0 12px;
}
.value-inner {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.value-inner h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.value-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.value-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.models-section { padding: 52px 0; }
.models-section .feature-grid {
  gap: 18px;
  align-items: start;
}
.models-section .section-head p strong {
  color: var(--ink);
  font-weight: 700;
}
.model-card-toggle {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 40px 0 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.model-card-toggle:focus-visible {
  outline: none;
}
.model-card-toggle:focus-visible .model-card-plus,
.model-card-toggle:hover .model-card-plus {
  background: color-mix(in srgb, var(--tone) 22%, #fff);
}
.model-card-toggle:focus-visible .model-card-plus {
  outline: 2px solid var(--tone);
  outline-offset: 2px;
}
.model-card-toggle .feature-icon {
  pointer-events: none;
}
.model-card-title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}
.model-card-lead {
  display: block;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.model-card-plus {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1;
  color: var(--tone);
  background: color-mix(in srgb, var(--tone) 12%, #fff);
  transition: transform 0.25s ease;
}
.model-card.open .model-card-plus {
  transform: rotate(45deg);
}
.model-card-detail {
  display: none;
  height: 0;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.model-card.open .model-card-detail {
  display: block !important;
  height: auto;
  max-height: none;
  visibility: visible;
  overflow: hidden;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.model-card-detail p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 720px;
}
.model-card-detail p:last-of-type {
  margin-bottom: 0;
}
.model-card-tagline {
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 15.5px !important;
  line-height: 1.4 !important;
  margin-bottom: 14px !important;
}
.model-gain-label,
.model-ideal-label {
  font-family: var(--mono);
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--tone) 80%, #000) !important;
  font-weight: 600;
  margin: 16px 0 8px !important;
}
.model-card-detail .role-tags {
  margin-bottom: 4px;
}
.model-ideal {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-left: 3px solid var(--tone);
  background: color-mix(in srgb, var(--tone) 8%, #fff);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.5;
  font-style: italic;
  max-width: 720px;
}
.model-card-detail .btn-primary {
  margin-top: 6px;
  padding: 12px 20px;
  font-size: 14px;
}
.models-section .feature-card.model-card.open,
.models-section .feature-card.model-card.open:hover {
  transform: translateY(0);
}
.model-card.open {
  grid-column: 1 / -1;
}
.models-unsure {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}
.models-unsure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #1f5c44;
  transform: scaleX(0.16);
  transform-origin: left;
  opacity: 0.7;
  z-index: 1;
}
.models-unsure-copy {
  padding: 32px 34px 38px;
}
.models-unsure .eyebrow {
  margin-bottom: 10px;
}
.models-unsure h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 14px;
  max-width: 720px;
}
.models-unsure p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 720px;
}
.models-unsure p strong {
  color: var(--ink);
}
.models-unsure-line {
  color: var(--ink) !important;
  font-weight: 700;
  margin-top: 16px !important;
}
.models-unsure .btn-primary {
  margin-top: 10px;
}
.models-unsure-photo {
  position: relative;
  min-height: 280px;
  background: #eef1f4;
}
.models-unsure-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
@media (max-width: 900px) {
  .models-unsure {
    grid-template-columns: 1fr;
  }
  .models-unsure-photo {
    min-height: 240px;
    order: -1;
  }
}

.compare-section { padding: 52px 0; }
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.compare-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px var(--bg);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0.2s;
}
.compare-grid.in-view .compare-vs {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.compare-old,
.compare-new {
  border-radius: 18px;
  padding: 26px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
}
.compare-old { transition-delay: 0s; }
.compare-new { transition-delay: 0.12s; }
.compare-grid.in-view .compare-old,
.compare-grid.in-view .compare-new {
  opacity: 1;
  transform: translateY(0);
}
.compare-old {
  background: #818391;
  border: 1px solid #727480;
}
.compare-grid.in-view .compare-old:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -14px rgba(20, 22, 26, 0.1);
}
.compare-new {
  position: relative;
  background: linear-gradient(165deg, #232c52, #131a33);
  color: #fff;
  box-shadow: 0 26px 46px -18px rgba(19, 26, 51, 0.4);
  overflow: hidden;
}
.compare-new::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #3f8f66;
  transform: scaleX(0.16);
  transform-origin: left;
  opacity: 0.7;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.compare-grid.in-view .compare-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 52px -16px rgba(19, 26, 51, 0.5);
}
.compare-grid.in-view .compare-new:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.compare-old-head,
.compare-new-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.compare-old-head { color: #fff; font-size: 12px; }
.compare-new-head { color: #9fb0e8; }
.compare-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-sub h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.compare-old .compare-sub h4 {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  padding: 7px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.compare-old .compare-item {
  color: #fff;
  font-size: 14.5px;
  border-top-color: rgba(255, 255, 255, 0.18);
}
.compare-sub h4 + .compare-item { border-top: none; }
.compare-old .compare-item:hover { color: rgba(255, 255, 255, 0.85); }
.compare-new .compare-item {
  align-items: center;
  font-size: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4e7f3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
  transition-delay: calc(0.28s + var(--i, 0) * 0.08s);
}
.compare-new-head + .compare-item { border-top: none; }
.compare-grid.in-view .compare-new .compare-item {
  opacity: 1;
  transform: none;
}
.compare-new .compare-item:hover { color: #fff; }
.compare-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.compare-new .compare-item svg {
  width: 16px;
  height: 16px;
  margin-top: 0;
  stroke-width: 2.4;
}
.compare-item:hover svg { opacity: 1; }
.compare-x { color: #fff; }
.compare-old .compare-item svg { opacity: 1; }
.compare-check { color: #7ee0a8; }
.compare-check path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}
.compare-grid.in-view .compare-check path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.45s ease;
  transition-delay: calc(0.32s + var(--i, 0) * 0.08s);
}
@media (max-width: 820px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .compare-sub { grid-template-columns: 1fr; }
}
.compare-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* SECTIONS below hero */
section:not(.hero):not(.signal-grid):not(.handle-section):not(.cta):not(.value-section):not(.models-section):not(.compare-section):not(.purpose-section) {
  padding: 52px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.process { background: transparent; }
.process-diagram { position: relative; }
.process-track {
  position: relative;
  height: 230px;
}
.process-track > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.process-path-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 2.5;
}
.process-path-fg {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.process-track.in-view .process-path-fg { stroke-dashoffset: 0; }
.process-pulse {
  fill: #fff;
  opacity: 0;
  offset-path: path("M 65 115 C 300 40, 440 190, 675 115 C 850 55, 950 175, 1095 115");
  offset-rotate: 0deg;
}
.process-track.in-view .process-pulse {
  opacity: 1;
  animation: processTravel 3.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.6s infinite;
}
@keyframes processTravel {
  0% { offset-distance: 0%; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.process-nodes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-node-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.process-node {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Outfit", var(--sans);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--tone) 70%, transparent),
              0 0 0 6px var(--bg);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay);
}
.process-track.in-view .process-node {
  opacity: 1;
  transform: scale(1);
}
.process-node svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
  transition-delay: var(--delay);
}
.process-track.in-view ~ .process-cards .process-card,
.process-cards.in-view .process-card {
  opacity: 1;
  transform: translateY(0);
}
.process-card:hover {
  border-color: color-mix(in srgb, var(--tone) 40%, var(--border));
  box-shadow: 0 16px 30px -16px color-mix(in srgb, var(--tone) 50%, transparent);
  transform: translateY(-3px);
}
.process-card-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--tone);
  font-weight: 500;
  margin-bottom: 10px;
}
.process-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.process-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.process-node-mobile { display: none; }
@media (max-width: 900px) {
  .process-track { display: none; }
  .process-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }
  .process-cards .process-card {
    opacity: 1;
    transform: none;
    position: relative;
    padding-left: 56px;
  }
  .process-cards .process-card::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: -14px;
    width: 2px;
    background: var(--border);
  }
  .process-cards .process-card:last-child::before { display: none; }
  .process-node-mobile {
    display: flex;
    position: absolute;
    left: 8px;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--tone);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", var(--sans);
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 0 0 5px var(--bg);
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-list { margin-top: 20px; display: grid; gap: 16px; }
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item .mk {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #14161a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.why-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.why-card h3 {
  font-size: 1.5rem;
  margin: 8px 0 14px;
}
.why-card p {
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 4px 22px;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
}
.faq-q .plus {
  font-family: var(--mono);
  color: var(--accent-blue);
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a p {
  padding: 0 0 18px;
  margin: 0;
  color: var(--ink-soft);
  max-width: 680px;
  font-size: 0.96rem;
}

/* ABOUT — purpose, mission, vision */
.purpose-section {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}
.purpose-globe {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}
.purpose-globe svg {
  width: 100%;
  height: 100%;
  display: block;
}
.purpose-arc {
  stroke-dasharray: 920;
  stroke-dashoffset: 920;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.purpose-section.in-view .purpose-arc {
  stroke-dashoffset: 0;
}
.purpose-inner {
  position: relative;
  z-index: 1;
}
.purpose-intro {
  max-width: 820px;
  margin-bottom: 40px;
}
.purpose-intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.purpose-intro h2 span {
  display: block;
}
.purpose-stage {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.purpose-photo {
  margin: 0;
  position: relative;
  min-height: 420px;
  background: #e8eaef;
  overflow: hidden;
}
.purpose-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.purpose-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 22, 26, 0.62);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
}
.purpose-manifesto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px 52px;
}
.purpose-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 18px;
}
.purpose-kicker span {
  color: var(--ink);
  margin-right: 8px;
}
.purpose-lead {
  margin: 0;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  line-height: 1.38;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
  max-width: 34ch;
}
.purpose-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.purpose-pillars article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 34px 34px;
  box-shadow: var(--shadow-sm);
}
.purpose-pillars .purpose-kicker {
  margin-bottom: 8px;
}
.purpose-pillars h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.purpose-pillars article p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42ch;
}
@media (max-width: 900px) {
  .purpose-section { padding: 56px 0 48px; }
  .purpose-globe { opacity: 0.22; }
  .purpose-stage {
    grid-template-columns: 1fr;
  }
  .purpose-photo { min-height: 280px; }
  .purpose-manifesto { padding: 28px 24px 32px; }
  .purpose-pillars { grid-template-columns: 1fr; }
  .purpose-pillars article { padding: 24px; }
}

/* CTA FORM */
.cta {
  background: transparent;
  color: var(--ink);
  padding: 48px 0 40px;
  position: relative;
  overflow: visible;
  border-radius: 0;
  margin: 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  position: relative;
  align-items: center;
}
.cta h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 480px;
}
.cta-copy p {
  color: var(--ink-soft);
  margin: 16px 0 28px;
  max-width: 420px;
}
.cta-side-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background: var(--pill-dark);
  color: #fff;
}
.cta .btn-primary:hover { box-shadow: 0 14px 30px rgba(20, 22, 26, 0.28); }
.request-form .btn-primary:hover {
  transform: none;
  box-shadow: 0 10px 22px rgba(20, 22, 26, 0.22);
}
.request-form .btn-primary:active {
  transform: scale(0.98);
}
.cta .btn-ghost-dark {
  border: 1px solid var(--border);
  color: var(--ink);
  background: #fff;
}
.cta .btn-ghost-dark:hover {
  border-color: #c7cad1;
  box-shadow: 0 10px 22px rgba(20, 22, 26, 0.08);
  transform: translateY(-2px);
}
.request-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f7f8fb;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.92rem;
}
.form-field textarea { min-height: 110px; max-height: 220px; resize: none; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c7cad1;
  background: #fff;
}
.form-field select option { color: var(--ink); }
.consent-field .consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  line-height: 1.45;
  cursor: pointer;
}
.consent-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--ink);
}
.consent-field a {
  color: var(--ink);
  text-decoration: underline;
}
.form-banner-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #d4a5a5;
  background: #faf2f2;
  color: #7a2e2e;
  font-size: 0.92rem;
  line-height: 1.4;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #c45c5c;
}
.consent-field.has-error .consent-label {
  color: #7a2e2e;
}
.field-error {
  margin: 6px 0 0;
  color: #b42318;
  font-size: 0.82rem;
  line-height: 1.35;
}

.flash-wrap {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 32px;
}
.flash-wrap.flush {
  max-width: none;
  padding: 16px 0 0;
  margin: 0;
}
.flash {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.flash-success {
  background: #e8f0e4;
  color: #2a3d24;
  border: 1px solid rgba(42, 61, 36, 0.15);
}
.flash-error {
  background: #f8e4e4;
  color: #6b2a2a;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

.page-shell { padding: 72px 0 100px; }
.apply-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
}
.apply-card .form-field label { color: var(--ink-soft); }
.apply-card .form-field input,
.apply-card .form-field select,
.apply-card .form-field textarea {
  background: #f7f8fb;
  border: 1px solid var(--border);
  color: var(--ink);
}

footer {
  background: var(--bg);
  color: var(--ink-soft);
  padding: 56px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}
.footer-legal {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #000;
  font-weight: 400;
}
.footer-legal-name {
  display: block;
  font-weight: 400;
  color: #000;
  margin-bottom: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span:first-child {
  color: #000;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Admin */
.admin-body { background: #f3f4f8; min-height: 100vh; }
.admin-nav {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}
.admin-nav header { padding-top: 0; }
.admin-nav nav {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.admin-nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-left: 18px;
  font-size: 0.9rem;
}
.admin-nav a:hover { color: #fff; }
.admin-panel { padding: 40px 0 80px; }
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .admin-cards { grid-template-columns: 1fr 1fr; }
}
.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.admin-card b {
  font-size: 1.8rem;
  display: block;
}
.admin-card span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: auto;
}
table.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
table.admin-table th,
table.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
table.admin-table th {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #fafbfd;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-soft);
}
.badge-new {
  background: #e8f0e4;
  color: #2a3d24;
}
.admin-login {
  max-width: 420px;
  margin: 80px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.admin-login h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.admin-login p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.admin-login .form-field label { color: var(--ink-soft); }
.admin-login .form-field input {
  background: #f7f8fb;
  border: 1px solid var(--border);
  color: var(--ink);
}
.status-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.status-form select {
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 6px 8px;
  font: inherit;
  font-size: 0.82rem;
}
.status-form button {
  border: none;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 0.8rem;
}
.status-form input[type="password"],
.status-form input[type="text"],
.status-form input[type="number"],
.status-form input[type="time"] {
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 6px 8px;
  font: inherit;
  font-size: 0.82rem;
}
.field-hint {
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
  font-size: 0.72rem;
  color: #8b91a1;
  font-weight: 500;
}
.day-dropdown {
  position: relative;
  min-width: 168px;
}
.day-dropdown > summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 28px 7px 10px;
  background: #fff;
  font-size: 0.82rem;
  color: var(--ink);
  position: relative;
}
.day-dropdown > summary::-webkit-details-marker { display: none; }
.day-dropdown > summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #8b91a1;
  border-bottom: 1.5px solid #8b91a1;
  transform: translateY(-70%) rotate(45deg);
}
.form-field .day-dropdown > summary {
  border-radius: 12px;
  padding: 10px 28px 10px 12px;
  background: #f7f8fb;
}
.day-dropdown-panel {
  margin-top: 6px;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.day-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--ink);
  cursor: pointer;
}
.day-option:hover { background: #f4f6fb; }
.day-option input { width: auto; margin: 0; accent-color: var(--ink); }
.shift-pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shift-pair input[type="time"] { width: 118px; }
.shift-sep { color: #8b91a1; }

.perf-bar {
  width: 100%;
  min-width: 90px;
  height: 8px;
  background: var(--bg-soft, #eef0f4);
  border-radius: 999px;
  overflow: hidden;
}
.perf-fill {
  height: 100%;
  background: linear-gradient(90deg, #7a9c6b, #2a3d24);
  border-radius: 999px;
}
.perf-why {
  margin-top: 6px;
  max-width: 320px;
}
.perf-why > summary {
  list-style: none;
  cursor: pointer;
  color: #5b6478;
  font-size: 0.78rem;
  font-weight: 600;
}
.perf-why > summary::-webkit-details-marker { display: none; }
.perf-why > summary::after {
  content: " ▾";
  font-size: 0.7rem;
}
.perf-why[open] > summary::after { content: " ▴"; }
.perf-why-panel {
  margin-top: 8px;
  padding: 10px 12px;
  background: #f7f8fb;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.perf-why-row + .perf-why-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e6e8ef;
}
.perf-why-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
}
.perf-why-head strong { font-size: 0.82rem; }
.perf-why-head span { font-size: 0.72rem; color: #8b91a1; }
.perf-why-row p {
  margin: 0;
  font-size: 0.78rem;
  color: #5b6478;
  line-height: 1.35;
}
.portal-choice {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.metrics-note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.download-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}
.download-card__text { flex: 1 1 320px; }
.download-card__text h3 { margin: 0 0 6px; }
.download-card__text p { color: var(--ink-soft); margin: 0 0 10px; }
.download-steps { margin: 0; padding-left: 20px; color: var(--ink-soft); font-size: 0.9rem; }
.download-steps li { margin-bottom: 4px; }
.download-card__action { flex: 0 0 auto; }
.download-card__action .btn[disabled] { opacity: 0.55; cursor: not-allowed; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .call-card { animation: none; transform: rotate(1.2deg); }
  .wave-line { animation: none; }
  .handle-header,
  .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .signal-card { transition: none; }
  .signal-bar-fill { transition: none; }
  .solution-card::before { transition: none; }
  .compare-old,
  .compare-new,
  .compare-new .compare-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .compare-vs {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: none;
  }
  .compare-check path { stroke-dashoffset: 0; transition: none; }
  .compare-new::before { transition: none; }
  .process-path-fg { transition: none; stroke-dashoffset: 0; }
  .process-pulse { animation: none; opacity: 0; }
  .process-node,
  .process-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .model-card-detail,
  .model-card-plus,
  .role-detail,
  .role-tag-plus {
    transition: none;
  }
  html { scroll-behavior: auto; }
}
