:root {
  --tk-navy-950: #020b16;
  --tk-navy-900: #061323;
  --tk-navy-800: #0a1d32;
  --tk-navy-700: #122b45;
  --tk-ink-900: #142233;
  --tk-ink-700: #405369;
  --tk-ink-500: #68798b;
  --tk-blue-700: #0f5d91;
  --tk-blue-600: #176fa8;
  --tk-blue-100: #eaf4fb;
  --tk-violet-600: #7e187c;
  --tk-orange-500: #e68e06;
  --tk-gold-300: #dcc17c;
  --tk-paper: #fff;
  --tk-mist: #f3f7fa;
  --tk-mist-strong: #e9f0f5;
  --tk-line: #d9e3ea;
  --tk-dark-line: rgba(255, 255, 255, 0.15);
  --tk-shadow-sm: 0 12px 34px rgba(17, 39, 62, 0.08);
  --tk-shadow-lg: 0 28px 70px rgba(5, 20, 37, 0.2);
  --tk-radius-sm: 10px;
  --tk-radius-md: 18px;
  --tk-radius-lg: 28px;
  --tk-container: 1180px;
  --tk-reading: 760px;
  --tk-gutter: 48px;
  --tk-header-height: 84px;
  --tk-section-space: clamp(76px, 8vw, 116px);
  --tk-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tk-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tk-header-height) + 24px);
}

body {
  min-width: 0;
  margin: 0;
  color: var(--tk-ink-700);
  background: var(--tk-paper);
  font-family: var(--tk-sans);
  font-size: 17px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

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

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  color: var(--tk-ink-900);
  font-family: var(--tk-serif);
  font-weight: 500;
  line-height: 1.45;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--tk-gold-300);
  outline-offset: 4px;
}

.tk-container {
  width: min(calc(100% - var(--tk-gutter)), var(--tk-container));
  max-width: var(--tk-container);
  margin-inline: auto;
}

/*
 * WordPress constrained layouts cap direct children at theme.json contentSize.
 * The named site container is intentionally wide, including in already-saved
 * page content that predates the alignwide block attribute.
 */
.is-layout-constrained > .tk-container {
  max-width: var(--tk-container);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--tk-navy-900);
  background: var(--tk-paper);
  font-weight: 700;
  white-space: normal;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--tk-header-height);
  color: var(--tk-paper);
  background: var(--tk-navy-900);
  border-bottom: 1px solid var(--tk-dark-line);
  backdrop-filter: blur(18px);
}

body.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  min-height: var(--tk-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  color: var(--tk-paper);
}

.site-brand__image {
  width: clamp(138px, 13.5vw, 168px);
  height: auto;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 36px);
}

.nav-list,
.footer-nav {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding-inline: 2px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--tk-violet-600), var(--tk-orange-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list a[aria-current="page"] {
  color: var(--tk-paper);
}

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.tk-standalone-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: var(--tk-paper);
  background: linear-gradient(135deg, var(--tk-blue-600), #1d8bd3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tk-radius-sm);
  box-shadow: 0 12px 28px rgba(23, 111, 168, 0.25);
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.tk-standalone-button:hover {
  background: linear-gradient(135deg, #1980c6, #2499e4);
  box-shadow: 0 16px 34px rgba(23, 111, 168, 0.34);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--tk-dark-line);
  border-radius: 10px;
  color: var(--tk-paper);
  background: transparent;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.menu-toggle__lines::after {
  position: absolute;
  top: 7px;
  left: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
  padding: 78px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--tk-navy-900);
  border-top: 1px solid var(--tk-dark-line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(180px, 0.75fr));
  gap: clamp(36px, 6vw, 84px);
}

.footer-brand > p {
  max-width: 470px;
  margin-top: 24px;
}

.site-brand--footer {
  margin-bottom: 4px;
}

.site-brand--footer .site-brand__image {
  width: clamp(158px, 17vw, 190px);
  max-height: 84px;
}

.footer-column h2 {
  margin-bottom: 20px;
  color: var(--tk-paper);
  font-family: var(--tk-sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-column a,
.back-to-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(220, 193, 124, 0.35);
  text-underline-offset: 5px;
}

.footer-nav a:hover,
.footer-column a:hover,
.back-to-top:hover {
  color: var(--tk-paper);
  text-decoration-color: var(--tk-gold-300);
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  margin-top: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--tk-dark-line);
  font-size: 13px;
}

.tk-block-page--front,
.tk-block-page--front > .wp-block-group:first-child {
  margin-top: 0;
}

.tk-block-page--front > * {
  margin-block: 0;
}

.tk-hero {
  position: relative;
  min-height: calc(100svh - var(--tk-header-height));
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 82% 38%, rgba(23, 111, 168, 0.34), transparent 25%),
    radial-gradient(circle at 68% 86%, rgba(126, 24, 124, 0.18), transparent 31%),
    linear-gradient(118deg, var(--tk-navy-950) 0%, var(--tk-navy-900) 54%, #09233d 100%);
}

.tk-hero::before,
.tk-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.tk-hero::before {
  top: -10%;
  right: -6%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  opacity: 0.34;
  background:
    repeating-radial-gradient(circle at center, transparent 0 48px, rgba(255, 255, 255, 0.11) 49px 50px),
    repeating-conic-gradient(from 8deg, rgba(255, 255, 255, 0.12) 0 1deg, transparent 1deg 14deg);
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 0 56%, transparent 72%);
}

.tk-hero::after {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
}

.tk-hero > * {
  position: relative;
  z-index: 1;
}

.tk-hero__grid {
  display: grid;
  min-height: 680px;
  padding-top: clamp(68px, 9vw, 124px);
  padding-bottom: clamp(54px, 7vw, 88px);
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 7vw, 100px);
}

.tk-hero__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.tk-hero__grid--single .tk-hero__copy {
  max-width: 780px;
}

.tk-hero__copy {
  max-width: 680px;
  margin: 0;
}

.tk-kicker {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 14px;
  color: var(--tk-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.tk-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.tk-kicker--light {
  color: var(--tk-gold-300);
}

.tk-hero__title {
  margin-bottom: 30px;
  color: var(--tk-paper);
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.tk-break-mobile {
  display: inline;
}

.tk-hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 2;
  text-wrap: pretty;
}

.tk-button-row {
  display: flex;
  margin-top: 0;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}

.tk-button .wp-block-button__link {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border-radius: var(--tk-radius-sm);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tk-button--primary .wp-block-button__link {
  color: var(--tk-paper);
  background: linear-gradient(135deg, var(--tk-blue-600), #1d8bd3);
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: 0 16px 36px rgba(23, 111, 168, 0.3);
}

.tk-button--outline .wp-block-button__link {
  color: var(--tk-paper);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tk-button--light .wp-block-button__link {
  color: var(--tk-navy-900);
  background: var(--tk-paper);
  border: 1px solid var(--tk-paper);
}

.tk-button.tk-privacy-policy-link .wp-block-button__link {
  color: var(--tk-blue-700);
  background: transparent;
  border: 1px solid var(--tk-blue-600);
  box-shadow: none;
}

.tk-button.tk-privacy-policy-link .wp-block-button__link:hover {
  background: var(--tk-blue-100);
  box-shadow: none;
}

.tk-button .wp-block-button__link:hover {
  box-shadow: 0 18px 40px rgba(6, 19, 35, 0.28);
  transform: translateY(-2px);
}

.tk-hero__tags {
  display: flex;
  padding: 0;
  margin: 34px 0 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.tk-hero__tags li {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.tk-signal-card {
  position: relative;
  max-width: 500px;
  padding: clamp(30px, 4vw, 52px);
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(8, 30, 52, 0.9), rgba(3, 13, 25, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--tk-radius-lg);
  box-shadow: var(--tk-shadow-lg);
  backdrop-filter: blur(18px);
}

.tk-signal-card::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 250px;
  height: 250px;
  content: "";
  background: radial-gradient(circle, rgba(230, 142, 6, 0.28), transparent 68%);
  border-radius: 50%;
}

.tk-signal-card__eyebrow {
  position: relative;
  margin-bottom: 22px;
  color: var(--tk-orange-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.tk-signal-card__title {
  position: relative;
  margin-bottom: 18px;
  color: var(--tk-paper);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.5;
}

.tk-signal-card > p:not(.tk-signal-card__eyebrow) {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
}

.tk-signal-card__flow {
  position: relative;
  display: grid;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tk-signal-card__flow p {
  display: grid;
  margin: 0;
  gap: 4px;
}

.tk-signal-card__flow strong {
  color: var(--tk-gold-300);
  font-family: var(--tk-serif);
  font-size: 22px;
  font-weight: 500;
}

.tk-signal-card__flow span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.tk-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 0;
  margin-top: 0;
  margin-bottom: clamp(52px, 6vw, 82px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(1, 9, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--tk-radius-md);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  backdrop-filter: blur(12px);
}

.tk-metrics > .wp-block-column {
  padding: 24px 28px;
  margin: 0;
}

.tk-metrics > .wp-block-column + .wp-block-column {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.tk-metrics h2 {
  margin-bottom: 3px;
  color: var(--tk-paper);
  font-family: var(--tk-sans);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
}

.tk-metrics p {
  margin: 0;
  font-size: 12px;
}

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

.tk-section--paper {
  background: var(--tk-paper);
}

.tk-section--mist {
  background: var(--tk-mist);
}

.tk-section--navy {
  color: rgba(255, 255, 255, 0.72);
  background: var(--tk-navy-900);
}

.tk-section-head {
  max-width: 820px;
  margin: 0 0 clamp(42px, 5vw, 68px);
}

.tk-heading {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 1.42;
}

.tk-lead {
  max-width: 720px;
  margin: 0;
  color: var(--tk-ink-500);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 2;
}

.wp-block-columns.tk-grid {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: clamp(18px, 2.4vw, 28px);
}

.tk-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tk-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tk-grid > .wp-block-column {
  min-width: 0;
  margin: 0;
}

.tk-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: clamp(22px, 2.6vw, 32px);
  flex-direction: column;
  overflow: hidden;
  background: var(--tk-paper);
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-md);
  box-shadow: var(--tk-shadow-sm);
}

.tk-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--tk-violet-600), var(--tk-orange-500));
}

.tk-card__number {
  margin-bottom: 18px;
  color: var(--tk-blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.tk-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  text-wrap: balance;
}

.tk-card p:last-child {
  color: var(--tk-ink-500);
  font-size: 15px;
  line-height: 1.75;
}

.tk-card--challenge {
  box-shadow: none;
}

.tk-card--support {
  border-top: 3px solid var(--tk-blue-600);
}

.tk-card--support .tk-card__number {
  color: var(--tk-violet-600);
}

.tk-partner-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(126, 24, 124, 0.24), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(230, 142, 6, 0.14), transparent 25%),
    var(--tk-navy-900);
}

.tk-partner-band__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 110px);
}

.tk-partner-logo {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--tk-radius-lg);
}

.tk-partner-logo img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.tk-partner-band__copy {
  margin: 0;
}

.tk-partner-band__copy h2,
.tk-contact-band h2 {
  margin-bottom: 20px;
  color: var(--tk-paper);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.tk-contact-band h2 {
  text-wrap: balance;
}

.tk-partner-band__copy > p:not(.tk-kicker) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
}

.tk-partner-band__copy .tk-button-row {
  margin-top: 30px;
}

.tk-contact-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(126, 24, 124, 0.87), rgba(15, 93, 145, 0.9)),
    var(--tk-navy-800);
}

.tk-contact-band::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image: repeating-linear-gradient(120deg, transparent 0 32px, rgba(255, 255, 255, 0.12) 33px 34px);
}

.tk-contact-band__inner {
  position: relative;
  max-width: 820px;
}

.tk-contact-band .tk-kicker {
  justify-content: center;
}

.tk-contact-band > p,
.tk-contact-band__inner > p:not(.tk-kicker) {
  max-width: 680px;
  margin-inline: auto;
}

.tk-contact-band .wp-block-buttons {
  margin-top: 32px;
}

/* Interior pages and editable Gutenberg content. */
.tk-page-hero {
  position: relative;
  min-height: 340px;
  padding-block: clamp(72px, 9vw, 118px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 82% 25%, rgba(126, 24, 124, 0.26), transparent 28%),
    radial-gradient(circle at 68% 90%, rgba(230, 142, 6, 0.15), transparent 24%),
    linear-gradient(118deg, var(--tk-navy-950), #0a2742);
}

.tk-page-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.tk-page-hero__inner {
  position: relative;
  z-index: 1;
}

.tk-page-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--tk-gold-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.tk-page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--tk-paper);
  font-size: clamp(2.5rem, 5.4vw, 4.7rem);
  line-height: 1.35;
}

.tk-page-hero__lead {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.95;
}

.tk-breadcrumb {
  display: flex;
  padding-block: 20px;
  align-items: center;
  gap: 10px;
  color: var(--tk-ink-500);
  font-size: 13px;
}

.tk-breadcrumb a {
  color: var(--tk-blue-700);
  text-decoration: underline;
  text-decoration-color: rgba(15, 93, 145, 0.3);
  text-underline-offset: 4px;
}

.tk-page-content {
  padding-top: clamp(44px, 6vw, 80px);
  padding-bottom: var(--tk-section-space);
}

.tk-page-content > *:not(.alignwide):not(.alignfull),
.tk-post-content > *:not(.alignwide):not(.alignfull) {
  width: min(calc(100% - var(--tk-gutter)), var(--tk-reading));
  margin-inline: auto;
}

.tk-page-content > .alignwide,
.tk-post-content > .alignwide {
  width: min(calc(100% - var(--tk-gutter)), var(--tk-container));
  margin-inline: auto;
}

.tk-page-content > .alignfull,
.tk-post-content > .alignfull {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.tk-page-content > * + *,
.tk-post-content > * + * {
  margin-top: 1.5em;
}

.tk-page-content h2,
.tk-post-content h2 {
  padding-top: 0.7em;
  margin-bottom: 0.8em;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
}

.tk-page-content h2::after,
.tk-post-content h2::after {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, var(--tk-violet-600), var(--tk-orange-500));
}

.tk-page-content h3,
.tk-post-content h3 {
  margin-top: 2em;
  margin-bottom: 0.7em;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.tk-page-content :where(p, li),
.tk-post-content :where(p, li) {
  line-height: 2;
}

.tk-page-content a:not(.wp-block-button__link),
.tk-post-content a:not(.wp-block-button__link) {
  color: var(--tk-blue-700);
  text-decoration: underline;
  text-decoration-color: rgba(15, 93, 145, 0.35);
  text-underline-offset: 4px;
}

.tk-page-content ul,
.tk-page-content ol,
.tk-post-content ul,
.tk-post-content ol {
  padding-left: 1.4em;
}

.tk-page-content blockquote,
.tk-post-content blockquote {
  padding: 26px 30px;
  margin-block: 34px;
  color: var(--tk-ink-700);
  background: var(--tk-mist);
  border-left: 4px solid var(--tk-violet-600);
}

.tk-privacy-policy {
  overflow-wrap: anywhere;
}

.tk-privacy-policy > :where(p, h2, ul) {
  width: min(calc(100% - var(--tk-gutter)), 820px);
  margin-inline: auto;
}

.tk-privacy-policy > h2 {
  margin-top: clamp(44px, 6vw, 70px);
}

.tk-privacy-policy > h2:first-of-type {
  margin-top: clamp(34px, 4vw, 48px);
}

.tk-privacy-policy__date {
  padding-top: 24px;
  margin-top: clamp(44px, 6vw, 70px);
  border-top: 1px solid var(--tk-line);
  color: var(--tk-ink-500);
}

.tk-content-section {
  padding-block: clamp(64px, 8vw, 104px);
}

.tk-content-section--mist {
  background: var(--tk-mist);
}

.tk-content-section--navy {
  color: rgba(255, 255, 255, 0.74);
  background: var(--tk-navy-900);
}

.tk-content-section--navy :where(h2, h3) {
  color: var(--tk-paper);
}

.tk-split {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 92px);
}

.tk-split > * {
  min-width: 0;
  margin: 0;
}

.wp-block-columns.tk-consulting-overview {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: center;
  grid-template-columns: minmax(0, 64fr) minmax(280px, 36fr);
  gap: clamp(32px, 5vw, 64px);
}

.tk-consulting-overview > .wp-block-column {
  min-width: 0;
  margin: 0;
}

.tk-consulting-overview__copy {
  margin: 0;
}

.tk-consulting-overview .tk-consulting-overview__title {
  padding-top: 0;
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.65;
}

.tk-consulting-overview__copy > p {
  margin-block: 0 18px;
}

.tk-consulting-points {
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.tk-consulting-points > li {
  padding-left: 1.8em;
  margin-bottom: 14px;
  text-indent: -1.8em;
}

.tk-consulting-points > li::first-letter {
  color: var(--tk-blue-600);
  font-weight: 800;
}

.tk-consulting-visual {
  display: grid;
  padding: clamp(20px, 3vw, 34px);
  place-items: center;
  overflow: hidden;
  background: var(--tk-mist);
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-lg);
  box-shadow: var(--tk-shadow-sm);
}

.tk-consulting-visual img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
}

.wp-block-columns.tk-career-timeline {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 88px);
}

.tk-career-timeline > .wp-block-column {
  min-width: 0;
  margin: 0;
}

.tk-career-timeline__track {
  position: relative;
  padding-left: 0;
  border-left: 2px solid var(--tk-line);
}

.tk-timeline-item {
  position: relative;
  padding: 0 0 clamp(30px, 4vw, 44px) 30px;
  margin: 0;
}

.tk-timeline-item:last-child {
  padding-bottom: 0;
}

.tk-timeline-item::before {
  position: absolute;
  top: 6px;
  left: -7px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--tk-paper);
  border: 3px solid var(--tk-blue-600);
  border-radius: 50%;
}

.tk-timeline-date {
  margin: 0;
  color: var(--tk-ink-500);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.tk-career-timeline .tk-timeline-item > h3 {
  padding-top: 0;
  margin: 8px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.6;
}

.tk-timeline-item > p:not(.tk-timeline-date) {
  margin: 0;
  color: var(--tk-ink-500);
  font-size: 15px;
}

.tk-timeline-accent {
  color: var(--tk-blue-600);
}

.tk-timeline-accent--warm {
  color: var(--tk-orange-500);
}

.tk-statement {
  padding: clamp(32px, 5vw, 58px);
  background: linear-gradient(145deg, var(--tk-navy-900), #0b2b48);
  border-radius: var(--tk-radius-lg);
  box-shadow: var(--tk-shadow-lg);
}

.tk-statement :where(h2, h3) {
  color: var(--tk-paper);
}

.tk-statement p {
  color: rgba(255, 255, 255, 0.72);
}

.tk-process {
  display: grid;
  padding: 0;
  counter-reset: step;
  list-style: none;
  gap: 16px;
}

.tk-process > li {
  position: relative;
  min-height: 112px;
  padding: 24px 28px 24px 82px;
  counter-increment: step;
  background: var(--tk-paper);
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-md);
  box-shadow: var(--tk-shadow-sm);
}

.tk-process > li::before {
  position: absolute;
  top: 24px;
  left: 26px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  content: counter(step, decimal-leading-zero);
  color: var(--tk-paper);
  background: var(--tk-violet-600);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.tk-process strong {
  display: block;
  margin-bottom: 4px;
  color: var(--tk-ink-900);
}

.tk-fact-table,
.tk-page-content .wp-block-table {
  margin-block: 30px;
  overflow-x: auto;
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-md);
}

.tk-fact-table table,
.tk-page-content .wp-block-table table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.tk-fact-table :where(th, td),
.tk-page-content .wp-block-table :where(th, td) {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid var(--tk-line);
}

.tk-fact-table tr:last-child :where(th, td),
.tk-page-content .wp-block-table tr:last-child :where(th, td) {
  border-bottom: 0;
}

.tk-fact-table th,
.tk-page-content .wp-block-table th {
  width: 190px;
  color: var(--tk-ink-900);
  background: var(--tk-mist);
  font-weight: 750;
}

.tk-note {
  padding: 22px 24px;
  color: var(--tk-ink-700);
  background: var(--tk-blue-100);
  border-left: 4px solid var(--tk-blue-600);
  border-radius: 0 var(--tk-radius-sm) var(--tk-radius-sm) 0;
}

.tk-contact-card {
  padding: clamp(30px, 5vw, 54px);
  background: var(--tk-paper);
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-lg);
  box-shadow: var(--tk-shadow-sm);
}

.tk-contact-card h2 {
  padding-top: 0;
}

.tk-contact-card .wp-block-buttons {
  margin-top: 28px;
}

.tk-form-grid {
  display: grid;
  gap: 24px;
}

.tk-form-row,
.wpcf7-form > p {
  margin: 0 0 24px;
}

.tk-form-row label,
.wpcf7-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--tk-ink-900);
  font-weight: 750;
}

.tk-required {
  display: inline-block;
  padding: 2px 7px;
  margin-left: 8px;
  color: var(--tk-paper);
  background: var(--tk-violet-600);
  border-radius: 999px;
  font-size: 11px;
  vertical-align: 2px;
}

.tk-form-row :where(input, select, textarea),
.wpcf7-form :where(input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), select, textarea) {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--tk-ink-900);
  background: var(--tk-paper);
  border: 1px solid #aebdca;
  border-radius: var(--tk-radius-sm);
}

.tk-form-row textarea,
.wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
}

.tk-form-row :where(input, select, textarea):focus,
.wpcf7-form :where(input, select, textarea):focus {
  border-color: var(--tk-blue-600);
  outline: 3px solid rgba(23, 111, 168, 0.2);
}

.wpcf7-submit,
.tk-submit {
  min-height: 54px;
  padding: 0 28px;
  color: var(--tk-paper);
  background: var(--tk-blue-600);
  border: 0;
  border-radius: var(--tk-radius-sm);
  font-weight: 750;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #9d1833;
  font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
  padding: 14px 18px;
  margin: 24px 0 0;
  border-width: 2px;
  border-radius: var(--tk-radius-sm);
}

.tk-site-cta {
  padding-block: clamp(68px, 8vw, 100px);
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 20% 25%, rgba(126, 24, 124, 0.35), transparent 24%),
    linear-gradient(135deg, var(--tk-navy-900), #0c3556);
}

.tk-site-cta__inner {
  max-width: 820px;
}

.tk-site-cta h2 {
	padding-top: 0;
	margin-bottom: 18px;
	color: var(--tk-paper);
	font-size: clamp(2rem, 4vw, 3.3rem);
	text-wrap: balance;
}

.tk-page-content .tk-site-cta h2::after {
	display: none;
}

.tk-page-content > .tk-site-cta:last-child {
	margin-top: 0;
}

.tk-page-content:has(> .tk-site-cta:last-child) {
	padding-bottom: 0;
}

.tk-site-cta .wp-block-buttons,
.tk-site-cta__actions {
  display: flex;
  margin-top: 28px;
  justify-content: center;
}

.tk-post-card,
.tk-empty-state {
  padding: 30px;
  background: var(--tk-paper);
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-md);
  box-shadow: var(--tk-shadow-sm);
}

.tk-post-list {
  display: grid;
  gap: 24px;
}

.tk-post-grid {
  display: grid;
  padding-block: var(--tk-section-space);
  gap: 24px;
}

.tk-post-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.tk-post-card__date {
  margin-bottom: 8px;
  color: var(--tk-ink-500);
  font-size: 13px;
}

.site-main {
  overflow-x: clip;
}

.site-main > .tk-empty-state {
  margin-block: var(--tk-section-space);
}

.tk-pagination {
  margin-top: 42px;
}

/*
 * Scroll reveal is progressive enhancement. Elements remain visible until
 * site.js marks an enabled item as pending, so content stays available when
 * JavaScript or IntersectionObserver is unavailable.
 */
.tk-reveal {
  --tk-reveal-x: 0px;
  --tk-reveal-y: 32px;
  --tk-reveal-duration: 650ms;
  --tk-reveal-delay: 0ms;
}

.tk-reveal--from-left {
  --tk-reveal-x: -48px;
  --tk-reveal-y: 0px;
}

.tk-reveal--from-right {
  --tk-reveal-x: 48px;
  --tk-reveal-y: 0px;
}

.tk-reveal--fade {
  --tk-reveal-x: 0px;
  --tk-reveal-y: 0px;
}

.tk-reveal--up {
  --tk-reveal-x: 0px;
  --tk-reveal-y: 32px;
}

.tk-reveal--fast {
  --tk-reveal-duration: 450ms;
}

.tk-reveal--slow {
  --tk-reveal-duration: 850ms;
}

.tk-reveal--delay-1 {
  --tk-reveal-delay: 120ms;
}

.tk-reveal--delay-2 {
  --tk-reveal-delay: 240ms;
}

.tk-reveal.is-reveal-pending {
  opacity: 0;
  transform: translate3d(var(--tk-reveal-x), var(--tk-reveal-y), 0);
  transition: none;
  will-change: opacity, transform;
}

.tk-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--tk-reveal-duration) ease-out var(--tk-reveal-delay),
    transform var(--tk-reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--tk-reveal-delay);
  will-change: auto;
}

.tk-reveal--off,
.tk-reveal--off.is-reveal-pending,
.tk-reveal--off.is-revealed {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

@media (max-width: 781px) {
  .tk-reveal {
    --tk-reveal-y: 20px;
  }

  .tk-reveal--from-left {
    --tk-reveal-x: -24px;
    --tk-reveal-y: 0px;
  }

  .tk-reveal--from-right {
    --tk-reveal-x: 24px;
    --tk-reveal-y: 0px;
  }

  .tk-reveal--fade {
    --tk-reveal-x: 0px;
    --tk-reveal-y: 0px;
  }

  .tk-reveal--up {
    --tk-reveal-x: 0px;
    --tk-reveal-y: 20px;
  }

  .tk-reveal--mobile-off,
  .tk-reveal--mobile-off.is-reveal-pending,
  .tk-reveal--mobile-off.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 1100px) {
  .tk-grid--4,
  .tk-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --tk-header-height: 74px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 48px;
  }

  .site-navigation {
    position: fixed;
    z-index: 999;
    top: var(--tk-header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - var(--tk-header-height));
    padding: 20px 24px 28px;
    overflow-y: auto;
    color: var(--tk-paper);
    background: rgba(2, 11, 22, 0.99);
    border-bottom: 1px solid var(--tk-dark-line);
  }

  body.admin-bar .site-navigation {
    top: calc(var(--tk-header-height) + 32px);
  }

  .site-navigation.is-open {
    display: block;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    display: flex;
    min-height: 52px;
    padding: 12px 4px;
    align-items: center;
    border-bottom: 1px solid var(--tk-dark-line);
  }

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: flex;
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
  }

}

@media (max-width: 900px) {
  .tk-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .tk-signal-card {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .tk-partner-band__grid,
  .tk-split {
    grid-template-columns: 1fr;
  }

  .wp-block-columns.tk-consulting-overview,
  .wp-block-columns.tk-career-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .site-navigation {
    top: calc(var(--tk-header-height) + 46px);
  }
}

@media (max-width: 781px) {
  :root {
    --tk-gutter: 36px;
  }

  .tk-hero__title {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
  }

  .tk-metrics {
    grid-template-columns: 1fr;
  }

  .tk-metrics > .wp-block-column + .wp-block-column {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .tk-partner-logo {
    min-height: 220px;
  }

  .tk-fact-table :where(th, td),
  .tk-page-content .wp-block-table :where(th, td) {
    padding: 16px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

@media (max-width: 600px) {
  :root {
    --tk-gutter: 28px;
  }

  .site-brand__image {
    width: 120px;
    max-height: 54px;
  }

  .site-brand--footer .site-brand__image {
    width: 148px;
    max-height: 66px;
  }

  .tk-hero__grid {
    padding-top: 58px;
    gap: 38px;
  }

  .tk-hero__title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .tk-hero__title br {
    display: block;
  }

  .tk-break-mobile {
    display: block;
  }

  .tk-button-row,
  .tk-button-row .wp-block-button,
  .tk-button-row .wp-block-button__link {
    width: 100%;
  }

  .tk-signal-card__flow {
    grid-template-columns: 1fr;
  }

  .tk-signal-card__flow p {
    grid-template-columns: 40px 1fr;
    align-items: center;
  }

  .tk-page-hero {
    min-height: 290px;
  }

  .tk-process > li {
    padding: 70px 22px 24px;
  }

  .tk-process > li::before {
    top: 22px;
    left: 22px;
  }

  .tk-contact-card {
    padding: 26px 20px;
  }

  .tk-consulting-visual {
    padding: 18px;
  }

  .tk-fact-table table,
  .tk-page-content .wp-block-table table {
    min-width: 0;
    table-layout: fixed;
  }

  .tk-fact-table tbody,
  .tk-page-content .wp-block-table tbody {
    display: block;
  }

  .tk-fact-table tr,
  .tk-page-content .wp-block-table tr {
    display: grid;
    border-bottom: 1px solid var(--tk-line);
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .tk-fact-table tr:last-child,
  .tk-page-content .wp-block-table tr:last-child {
    border-bottom: 0;
  }

  .tk-fact-table :where(th, td),
  .tk-page-content .wp-block-table :where(th, td) {
    display: block;
    min-width: 0;
    width: auto;
    padding: 16px 12px;
    overflow-wrap: anywhere;
    white-space: normal;
    border-bottom: 0;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-column h2 {
    margin-bottom: 10px;
  }

  .footer-nav {
    gap: 0;
  }

  .footer-bottom {
    padding-top: 20px;
    margin-top: 28px;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .tk-grid--4,
  .tk-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .tk-consulting-overview .tk-consulting-overview__title {
    font-size: 1.35rem;
  }

  .tk-consulting-points > li {
    padding-left: 1.65em;
    text-indent: -1.65em;
  }

  .tk-timeline-item {
    padding-left: 24px;
  }
}

@media (max-width: 360px) {
  .tk-contact-band h2,
  .tk-site-cta h2 {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
  }
}

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

  .tk-reveal,
  .tk-reveal.is-reveal-pending,
  .tk-reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto;
  }

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