:root {
  --ink: #1c1917;
  --muted: #57534e;
  --line: #e7e5e4;
  --paper: #f7f4ef;
  --white: #ffffff;
  --forest: #0f5f4b;
  --forest-deep: #0a4537;
  --clay: #c2410c;
  --focus: #0f766e;
  --danger: #b91c1c;
  --navy: #0f5f4b;
  --navy-deep: #0a4537;
  --teal: #c2410c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 28px -22px rgba(28, 25, 23, 0.55);
}

.header-bar,
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-bar {
  justify-content: space-between;
  min-height: 72px;
  min-width: 0;
}
.header-tools { flex-shrink: 0; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-toggle,
.nav-panel { display: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: visible;
  background: transparent;
  flex-shrink: 0;
}
.mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}
.brand-name {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 18px;
  line-height: 1.15;
}
.brand-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink);
  white-space: nowrap;
}
nav a:hover { color: var(--forest); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: var(--forest);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover,
.btn:focus-visible {
  background: var(--forest-deep);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--paper);
  color: var(--forest-deep);
  border-color: var(--forest);
}
.btn-header { min-height: 38px; padding: 0 14px; }

.ed-hero {
  padding: 56px 0 28px;
}
.ed-hero .kicker {
  color: var(--clay);
}
.ed-hero h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 720;
  max-width: 16ch;
  margin: 10px 0 18px;
}
.ed-hero .lede {
  font-size: 19px;
  max-width: 46ch;
  color: #44403c;
  margin-bottom: 22px;
}
.hero-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-links a.text { color: var(--forest); font-weight: 650; }
.hero-links a.text:hover,
.hero-links a.text:focus-visible { color: var(--forest-deep); }

.bleed {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto 8px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
}
.bleed img,
.ken img {
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s ease;
}
.bleed.ken img,
.figure.ken img {
  animation: ken 26s ease-in-out infinite alternate;
}
.figure.ken img { height: min(380px, 46vw); }
.figure.portrait-hero {
  max-width: 100%;
  overflow: hidden;
}
.figure.portrait-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 18%;
  animation: none;
  transform: none;
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.2; }
.ed-hero h1,
.page-hero h1,
.article h1 {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}
h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
h3 { font-size: 20px; }

.section { padding: 56px 0; }
.section.alt { background: var(--paper); }
.section p.intro { max-width: 62ch; color: #44403c; margin-bottom: 28px; }

.agent {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.meta {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  border-radius: 16px;
  padding: 22px 24px;
}
.meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 12px;
}
.meta dt:first-child { margin-top: 0; }
.meta dd { font-weight: 600; }
.register {
  display: inline-block;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 650;
}
.register:hover,
.register:focus-visible {
  color: var(--forest-deep);
}
.disclaimer { margin-top: 16px; font-size: 14px; color: var(--muted); }

.story-grid,
.visa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.story-card,
.visa-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
}
.story-card,
.visa-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.story-card:hover,
.visa-card:hover {
  border-color: #d6d3d1;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(28, 25, 23, 0.45);
}
.card-media {
  overflow: hidden;
  height: 190px;
}
.story-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.story-card:hover img { transform: scale(1.04); }
.card-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 6px;
}
.city-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
.section-more { margin-top: 28px; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.story-card .pad,
.visa-card { padding: 18px 20px 22px; }
.story-card h3,
.visa-card h3 { margin-bottom: 8px; }
.story-card p,
.visa-card p { color: var(--muted); font-size: 15px; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.cta-band {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px dashed #d6d3d1;
  border-radius: 16px;
  background: #fff;
}
.cta-band p { max-width: 58ch; }

.page-hero { padding: 48px 0 12px; }
.page-hero h1 { font-size: clamp(34px, 4.5vw, 50px); max-width: 18ch; margin: 8px 0 16px; }
.lede-ink { font-size: 18px; max-width: 58ch; color: #44403c; }

.legal-page,
.article { padding: 36px 0 80px; }
.prose { max-width: 68ch; }
.prose h2 { font-size: 26px; margin: 32px 0 10px; }
.prose p, .prose li { margin-bottom: 14px; }
.prose ul { padding-left: 20px; }
.figure {
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
}
.figure img { width: 100%; height: min(380px, 46vw); object-fit: cover; }
.figure figcaption { font-size: 13px; color: var(--muted); padding-top: 8px; }

.site-footer {
  background: #1c1917;
  color: #e7e5e4;
  padding: 48px 0 32px;
  font-size: 14px;
}
.site-footer a { color: #fdba74; }
.site-footer .legal { color: #a8a29e; margin-top: 16px; max-width: 74ch; }
.foot-brand-col .legal {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 12.5px;
  line-height: 1.65;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.foot-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
}
.foot-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.foot-brand-text strong {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.foot-brand-text span {
  font-size: 11px;
  color: #a8a29e;
  font-weight: 500;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.foot-cols a { display: block; margin-top: 8px; text-decoration: none; }
.foot-cols h3 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #a8a29e; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  max-width: 560px;
}
.card h2 { font-size: 24px; }
.card p.hint { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
label { display: block; font-size: 13px; font-weight: 650; margin: 12px 0 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { color: var(--danger); font-size: 14px; min-height: 1.2em; margin: 8px 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.success-box {
  max-width: 640px;
  margin: 64px auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.nav-drop { position: relative; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 40px -24px rgba(28, 25, 23, 0.4);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: 8px 10px; border-radius: 8px; }
.nav-drop-menu a:hover { background: var(--paper); }

.lang-switcher { position: relative; }
.lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 4px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
}
.lang-switcher-toggle:hover,
.lang-switcher-toggle:focus-visible {
  color: var(--forest);
  background: transparent;
}
.lang-switcher-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.lang-switcher-current {
  font-size: 13px;
  font-weight: 550;
  color: inherit;
}
.lang-switcher-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  list-style: none;
  padding: 6px;
  z-index: 30;
  box-shadow: 0 16px 40px -24px rgba(28, 25, 23, 0.4);
}
.lang-switcher-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink);
}
.lang-switcher-menu a:hover,
.lang-switcher-menu a:focus-visible {
  background: var(--paper);
  color: var(--forest-deep);
}
.lang-switcher-menu a.is-active { background: var(--paper); color: var(--forest); }
.lang-switcher-code { color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }
.lang-switcher-menu a:hover .lang-switcher-code,
.lang-switcher-menu a.is-active .lang-switcher-code { color: inherit; }

.nav-toggle {
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }

@media (max-width: 1120px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-panel {
    display: block;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .nav-panel[hidden] { display: none; }
  .nav-panel-inner { padding: 16px 0 22px; display: grid; gap: 10px; }
  .nav-panel-visas { display: grid; gap: 6px; padding-left: 8px; }
  .nav-panel-visas a { font-size: 13px; color: var(--muted); }
  .agent, .split, .story-grid, .visa-grid, .city-grid, .steps, .foot-cols, .form-row, .mast-grid, .vf-home, .stat-row {
    grid-template-columns: 1fr;
  }
  .btn-header { display: none; }
  .lang-switcher-toggle { padding: 2px; }
  .lang-switcher-name { display: none; }
}

.about-block { margin-top: 56px; }
.about-goals { grid-template-columns: repeat(3, 1fr); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
}
.team-card .pad { padding: 16px 18px 20px; }
.team-card h3 { margin-bottom: 6px; font-size: 18px; }
.table-wrap { overflow-x: auto; margin: 20px 0 32px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.data-table thead th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.data-table tbody th { font-weight: 650; }
.filter-label { display: block; font-weight: 650; font-size: 13px; margin: 8px 0 6px; }
#country-filter {
  width: min(420px, 100%);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  margin-bottom: 8px;
}

@media (max-width: 880px) {
  .about-goals, .team-grid { grid-template-columns: 1fr; }
}

.tdac-land { background: #fff; padding-bottom: 64px; }
.tdac-hero {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 20px;
  min-height: 0;
}
.tdac-copy {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
}
.tdac-flag svg { width: 42px; height: 28px; border-radius: 3px; display: block; }
.tdac-copy h1 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #1a1f36;
  max-width: 16ch;
  margin: 16px 0 22px;
}
.tdac-title-main { display: block; }
.tdac-title-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.82em;
  font-weight: 650;
  color: #3d4460;
}
.tdac-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.tdac-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5068;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.tdac-feature svg {
  width: 18px;
  height: 18px;
  padding: 6px;
  box-sizing: content-box;
  border-radius: 8px;
  background: #f3f5fb;
  color: #2454C5;
  flex-shrink: 0;
}
.tdac-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tdac-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #2454C5;
  color: #fff;
  font-weight: 650;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.tdac-cta:hover,
.tdac-cta:focus-visible {
  background: #1C45A8;
  color: #fff;
  transform: translateY(-2px);
}
.tdac-feature,
.tdac-info article,
.tdac-step,
.tdac-guide-block figure {
  transition: transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .tdac-feature:hover,
  .tdac-info article:hover,
  .tdac-step:hover,
  .tdac-guide-block figure:hover,
  .visa-card:hover,
  .story-card:hover,
  .city-card:hover,
  .news-card:hover {
    transform: translateY(-3px);
  }
  .brand:hover,
  .nav-desktop a:hover,
  .nav-toggle:hover {
    transform: translateY(-2px);
  }
  .brand,
  .nav-desktop a,
  .nav-toggle,
  .visa-card,
  .story-card,
  .city-card,
  .news-card {
    transition: transform 0.2s ease, color 0.2s ease;
  }
}
.tdac-photo { position: relative; overflow: hidden; border-radius: 20px; min-height: 420px; }
.tdac-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; min-height: 420px; }
.tdac-photo::before { display: none; }
.tdac-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 36px 0 16px;
}
.tdac-info article {
  background: #f7f8fc;
  border: 1px solid #e8ebf2;
  border-radius: 16px;
  padding: 22px 20px 24px;
}
.tdac-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e0e5f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #2454C5;
}
.tdac-info-icon svg {
  width: 20px;
  height: 20px;
}
.tdac-info h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #1a1f36;
}
.tdac-info p {
  margin: 0;
  color: #4a5068;
  font-size: 15px;
  line-height: 1.6;
}
.tdac-quiet {
  padding: 8px 0 8px;
  color: #8a90a6;
  font-size: 13px;
  line-height: 1.55;
}
.tdac-quiet a { color: #5b6b8c; }
.tdac-guide {
  max-width: 760px;
  padding-bottom: 16px;
}
.tdac-guide-block {
  padding: 64px 0 8px;
  border-top: 1px solid var(--line);
}
.tdac-guide-block:first-child { border-top: 0; padding-top: 48px; }
.tdac-guide-block h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #1a1f36;
}
.tdac-guide-block p {
  margin: 0 0 16px;
  color: #4a5068;
  font-size: 16px;
  line-height: 1.7;
}
.tdac-guide-block p:last-child { margin-bottom: 0; }
.tdac-guide-block a { color: #2454C5; }
.tdac-guide-block figure {
  margin: 28px 0 8px;
}
.tdac-guide-block img {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: #f4f6f8;
}
.tdac-guide-block figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #8a90a6;
  line-height: 1.45;
}
.tdac-steps { display: grid; gap: 26px; margin: 28px 0 8px; list-style: none; padding: 0; }
.tdac-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px 16px;
  align-items: start;
}
.tdac-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2454C5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.tdac-step h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1f36;
}
.tdac-step p { margin: 0; }

body.tdac-shell .brand-sub { display: none; }
body.tdac-shell .nav-desktop { display: none; }
body.tdac-shell .nav-toggle { display: inline-flex; align-items: center; }
body.tdac-shell .nav-panel {
  display: block;
  border-top: 1px solid var(--line);
  background: #fff;
}
body.tdac-shell .nav-panel[hidden] { display: none; }
body.tdac-shell .nav-panel-inner { padding: 16px 0 22px; display: grid; gap: 10px; }
body.tdac-shell .nav-panel-visas { display: grid; gap: 6px; padding-left: 8px; }
body.tdac-shell .nav-panel-visas a { font-size: 13px; color: var(--muted); }

.tdac-success { padding: 40px 0 72px; }
.tdac-success-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(26, 31, 54, 0.08);
  padding: 36px 32px;
}
.tdac-success .lead { color: var(--muted); margin: 0 0 22px; }
.tdac-success .order-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f4f7ff;
  border: 1px solid #d9e3fb;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.tdac-success .order-box span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b6b8c;
}
.tdac-success .order-box strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
  color: #1E4B9C;
}
.tdac-success .status-card {
  border-radius: 14px;
  border: 1px solid #e6e9f0;
  padding: 16px 18px;
}
.tdac-success .status-card.new { background: #f8fafc; }
.tdac-success .status-card.in_progress,
.tdac-success .status-card.later { border-color: #bfdbfe; background: #eff6ff; }
.tdac-success .status-card.completed { border-color: #a7f3d0; background: #ecfdf5; }
.tdac-success .status-card.problem { border-color: #fecaca; background: #fef2f2; }
.tdac-success .meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; font-size: 12px; color: #8a90a6; }
.tdac-success .pulse { display: inline-flex; align-items: center; gap: 6px; }
.tdac-success .pulse i {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
}
.tdac-success .email, .tdac-success .note { margin-top: 16px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.tdac-success .error { display: none; margin-top: 12px; color: #b91c1c; }
.tdac-success .error.is-visible { display: block; }
.tdac-success .lookup { display: none; margin-top: 8px; }
.tdac-success .lookup.is-visible { display: block; }
.tdac-success .lookup form { display: flex; gap: 8px; margin-top: 12px; }
.tdac-success .lookup input {
  flex: 1; height: 44px; border: 1px solid #d8dce6; border-radius: 10px; padding: 0 12px;
}
.tdac-success .lookup button {
  height: 44px; border: 0; border-radius: 10px; padding: 0 16px;
  background: #2454C5; color: #fff; font-weight: 600; cursor: pointer;
}
.tdac-success .tdac-cta { margin-top: 24px; }

.tdac-who {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px 22px;
  margin: 28px auto 8px;
}
.tdac-who h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  margin: 0 0 12px;
}
.tdac-who > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.tdac-who-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 8px;
}
.tdac-who input[type="search"] {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
}
.tdac-who input[type="search"]:focus {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.tdac-who-empty {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.tdac-who-clip {
  position: relative;
  max-height: 15.75rem;
  overflow: hidden;
  margin-top: 12px;
}
.tdac-who-clip.is-open,
.tdac-who-clip.is-searching {
  max-height: none;
  overflow: visible;
}
.tdac-who-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0) 0%, var(--paper) 78%);
  pointer-events: none;
}
.tdac-who-clip.is-open .tdac-who-fade,
.tdac-who-clip.is-searching .tdac-who-fade {
  display: none;
}
.tdac-who-more {
  display: flex;
  width: max-content;
  position: relative;
  z-index: 2;
  margin: -2.6rem auto 0;
  padding: 8px 16px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--forest-deep);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.06);
}
.tdac-who-clip.is-open ~ .tdac-who-more,
.tdac-who-clip.is-searching ~ .tdac-who-more {
  margin-top: 12px;
}
.tdac-who-more[hidden] {
  display: none;
}
.tdac-who-more:hover,
.tdac-who-more:focus-visible {
  border-color: var(--forest);
  outline: none;
}
.tdac-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}
.tdac-country {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  min-height: 52px;
  color: inherit;
}
.tdac-country:hover,
.tdac-country:focus-visible {
  border-color: var(--forest);
  outline: none;
}
.tdac-country.is-selected {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(15, 95, 75, 0.16);
}
.tdac-country img {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15, 95, 75, 0.08);
}
.tdac-country strong {
  display: block;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ink);
}
.tdac-country-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--forest);
  margin-top: 2px;
}
.tdac-country.is-exempt {
  background: #f3f7f5;
}
.tdac-who-pick {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--forest);
  border-radius: 14px;
}
.tdac-who-pick.is-exempt {
  border-color: var(--line);
}
.tdac-who-pick p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
}
.tdac-who-pick .tdac-cta {
  margin-top: 12px;
  min-height: 44px;
  padding: 0 22px;
}
.tdac-who-pick-note {
  margin-top: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
}

@media (max-width: 640px) {
  .wrap { width: min(1160px, calc(100% - 24px)); }
  .tdac-who { padding: 16px 12px 14px; }
  .tdac-who h2 { font-size: 22px; }
  .tdac-who-clip { max-height: 11.5rem; }
  .tdac-country-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tdac-country { min-height: 44px; padding: 8px 10px; gap: 8px; }
  .tdac-country strong { font-size: 12px; }
  .tdac-ctas { flex-direction: column; align-items: stretch; }
  .tdac-cta,
  .tdac-who-pick .tdac-cta { width: 100%; justify-content: center; }
  .tdac-copy h1 { font-size: clamp(28px, 8vw, 40px); max-width: none; }
  .tdac-success { padding: 24px 0 56px; }
  .tdac-success-card { padding: 24px 16px; }
  .tdac-success .order-box { flex-direction: column; align-items: flex-start; }
  .lang-switcher-menu { max-width: min(280px, calc(100vw - 24px)); }
}

@media (max-width: 400px) {
  .tdac-country-grid { grid-template-columns: 1fr; }
  .header-bar { min-height: 60px; gap: 8px; }
  .brand { gap: 8px; }
}

@media (max-width: 880px) {
  .tdac-hero { grid-template-columns: 1fr; width: min(1080px, calc(100% - 40px)); padding: 20px 0 8px; gap: 20px; }
  .tdac-copy { padding: 0; max-width: none; }
  .tdac-photo, .tdac-photo img { min-height: 220px; }
  .tdac-info { grid-template-columns: 1fr; padding-top: 24px; }
  .tdac-features { gap: 14px; }
  .tdac-guide-block { padding: 48px 0 4px; }
  .tdac-guide-block:first-child { padding-top: 36px; }
}

.portal-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: #fafaf9;
  overflow: hidden;
}
.portal-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portal-hero-ink {
  position: relative;
  z-index: 1;
  padding: 80px 0 48px;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.05) 0%, rgba(28, 25, 23, 0.72) 55%, rgba(28, 25, 23, 0.88) 100%);
}
.portal-hero .kicker { color: #fdba74; }
.portal-hero h1 {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 16ch;
  margin: 10px 0 18px;
}
.portal-hero .lede {
  font-size: 19px;
  max-width: 48ch;
  color: #e7e5e4;
  margin-bottom: 22px;
}
.btn-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.portal-hero .hero-links a.text { color: #fdba74; }

.portal-mast { background: var(--paper); padding: 28px 0; border-bottom: 1px solid var(--line); }
.mast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mast-item strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  margin-bottom: 6px;
}
.mast-item p { color: var(--muted); font-size: 15px; max-width: 36ch; }

.vf-home {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.vf-card,
.vf-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.vf-card { padding: 8px; }
.vf-widget { padding: 22px 22px 24px; min-height: 280px; }
.vf-progress,
.vf-meter {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.vf-progress span,
.vf-meter span {
  display: block;
  height: 100%;
  background: var(--forest);
}
.vf-step { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.vf-q { font-family: Fraunces, Georgia, serif; font-size: 22px; margin: 8px 0 16px; }
.vf-opts { display: grid; gap: 8px; }
.vf-opt {
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.vf-opt:hover,
.vf-opt:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(28, 25, 23, 0.45);
}
.vf-result .vf-product {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  margin: 6px 0 8px;
}
.vf-label { font-weight: 650; color: var(--forest); margin-bottom: 12px; }
.vf-band { font-size: 14px; color: var(--muted); margin: 10px 0 16px; }

.pull-quote {
  margin: 28px 0;
  padding: 8px 0 8px 22px;
  border-left: 3px solid var(--forest);
}
.pull-quote p {
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.stat-callout {
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
}
.stat-callout strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
}
.stat-callout span { font-size: 13px; color: var(--muted); }
.num-callouts { list-style: none; padding: 0; margin: 24px 0; counter-reset: desk; max-width: 68ch; }
.num-callouts li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px 16px;
  margin-bottom: 18px;
  align-items: start;
}
.num-callouts li::before {
  counter-increment: desk;
  content: counter(desk);
  grid-column: 1;
  grid-row: 1 / span 8;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.num-callouts li > * {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}
.num-callouts h3 { font-size: 17px; margin-bottom: 4px; }
.num-callouts p { margin: 0; }
.side-note {
  display: block;
  width: auto;
  max-width: 68ch;
  margin: 16px 0;
  padding: 14px 16px;
  background: #f5efe6;
  border-radius: 14px;
}
.side-note-k {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clay);
  margin-bottom: 6px;
}
.bar-chart { display: grid; gap: 10px; margin: 12px 0 8px; }
.bar-row { display: grid; grid-template-columns: 140px 1fr 88px; gap: 10px; align-items: center; font-size: 13px; }
.bar-track { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.bar-track i { display: block; height: 100%; background: var(--forest); }
.bar-row em { color: var(--muted); font-style: normal; }
.desk-timeline { list-style: none; padding: 0; margin: 20px 0 28px; border-left: 2px solid var(--line); }
.desk-timeline li { padding: 0 0 18px 18px; position: relative; }
.desk-timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--forest);
}
.desk-timeline strong { display: block; }
.desk-timeline span { color: var(--muted); font-size: 14px; }
.table-figure, .chart-figure { margin: 28px 0; }
.table-figure figcaption, .chart-figure figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.figure.in-article { margin: 28px 0; }
.consult-cta {
  margin: 36px 0 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  max-width: 68ch;
}
.consult-cta p { margin-bottom: 14px; max-width: 58ch; }
.consult-cta .hero-links { flex-wrap: wrap; }
.consult-cta .btn:hover,
.consult-cta .btn:focus-visible { color: #fff; }
.consult-cta .btn-ghost:hover,
.consult-cta .btn-ghost:focus-visible {
  color: var(--forest-deep);
  background: var(--paper);
}
.vf-intro { min-width: 0; }
.vf-aside { margin: 18px 0 0; }
.vf-aside img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}
.vf-aside figcaption { font-size: 13px; color: var(--muted); padding-top: 8px; max-width: 46ch; }
.visa-process .prose,
.visa-process .num-callouts { max-width: 68ch; }
.legal-prose { max-width: 72ch; }
.legal-updated { color: var(--muted); font-size: 14px; }
.legal-prose h2 { font-size: 22px; margin: 28px 0 10px; }

@media (max-width: 880px) {
  .portal-hero { min-height: 560px; }
  .mast-grid, .vf-home, .stat-row { grid-template-columns: 1fr; }
  .side-note { float: none; width: auto; margin: 16px 0; }
  .bar-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bleed.ken img,
  .figure.ken img,
  .story-card img { animation: none; transform: none; }
  .story-card, .visa-card,
  .tdac-feature, .tdac-cta, .tdac-info article, .tdac-step,
  .tdac-guide-block figure, .brand, .nav-desktop a, .nav-toggle {
    transition: none;
    transform: none;
  }
}
