:root {
  --ink: #1b262c;
  --navy: #0f4c75;
  --blue: #0090d9;
  --electric: #3a6fe6;
  --paper: #eeeeee;
  --soft: #d9d9d9;
  --white: #ffffff;
  --muted: #90a7b3;
  --line: rgba(238, 238, 238, 0.17);
  --display: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --mono: 'Courier New', Courier, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell { overflow: hidden; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 5.7vw;
  border-bottom: 1px solid rgba(238, 238, 238, 0.14);
  background: rgba(27, 38, 44, 0.91);
  backdrop-filter: blur(16px);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-logo { display: block; width: 28px; height: 28px; object-fit: contain; }

.brand-dot { color: var(--blue); }

.main-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); }

.main-nav a {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  transition: color 180ms ease;
}

.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }

.main-nav .nav-cta {
  padding: 12px 15px;
  border: 1px solid rgba(0, 144, 217, 0.7);
  color: var(--white);
}

.nav-cta span { margin-left: 11px; color: var(--blue); font-size: 15px; }
.menu-toggle { display: none; }

.section-pad { max-width: 1440px; margin: 0 auto; padding-right: 5.7vw; padding-left: 5.7vw; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: start;
  min-height: min(820px, calc(100vh - 78px));
  padding-top: clamp(76px, 10vw, 140px);
  padding-bottom: clamp(82px, 11vw, 150px);
  background:
    linear-gradient(90deg, rgba(15, 76, 117, 0.19) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(15, 76, 117, 0.16) 1px, transparent 1px) 0 0 / 72px 72px;
}

.hero::before {
  position: absolute;
  top: 15%;
  right: -20%;
  width: 64%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 144, 217, 0.18), transparent 66%);
  content: '';
  pointer-events: none;
}

.hero-copy, .hero-video-wrap { position: relative; z-index: 1; }

.kicker, .card-index, .video-label, .video-bottom {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker { display: flex; align-items: center; gap: 9px; }
.status-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(0, 144, 217, 0.13); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; }

h1 {
  max-width: 690px;
  margin: 30px 0 27px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 em, h2 em { display: block; color: var(--blue); font-style: italic; }
.hero-title-wide, .hero-title-narrow { white-space: nowrap; }
.hero-title-narrow { display: none; }

.hero-subtitle {
  max-width: 510px;
  margin-bottom: 35px;
  color: var(--soft);
  font-family: var(--display);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 26px; }
.hero-actions .button, .button.video-cta, .button.hero-copy-cta { font-family: var(--mono); font-size: 13px; font-weight: 700; }
.hero-copy-link-mobile { display: none; }
.hero-copy-link-desktop { display: inline; }
.hero-copy-cta { display: inline-flex; margin-top: 26px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: var(--paper); }
.letter-cta.button-primary:hover, .letter-cta.button-primary:focus-visible { background: var(--soft); }
.button-primary span { font-size: 18px; }

.text-link { color: var(--paper); font-family: var(--mono); font-size: 11px; }
.text-link > a > span { margin-left: 9px; color: var(--blue); font-size: 17px; }
.text-link a { color: var(--paper); }
.text-link a:hover, .text-link a:focus-visible { color: var(--blue); }

.hero-video-wrap { justify-self: end; width: min(100%, 620px); }
.video-window { padding: 8px; border: 1px solid rgba(238, 238, 238, 0.25); background: #07151f; box-shadow: 18px 18px 0 rgba(15, 76, 117, 0.45); }
.window-bar, .video-caption { display: flex; align-items: center; justify-content: space-between; min-height: 33px; padding: 0 9px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.03em; }
.window-lights { display: flex; gap: 5px; }
.window-lights span { display: block; width: 8px; height: 8px; border: 1px solid var(--muted); border-radius: 50%; }
.window-lights span:first-child { background: var(--blue); border-color: var(--blue); }
.window-title { position: absolute; left: 50%; transform: translateX(-50%); opacity: 0.68; }
.window-menu { letter-spacing: 3px; }

.video-surface {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 25px;
  border: 1px solid rgba(238, 238, 238, 0.13);
  background: linear-gradient(135deg, var(--navy), #061923 70%);
}

.video-surface::before, .video-surface::after { position: absolute; content: ''; pointer-events: none; }
.video-surface::before { top: -20%; right: -7%; width: 68%; height: 115%; background: linear-gradient(130deg, transparent 48%, rgba(0, 144, 217, 0.22) 49%, transparent 50%), linear-gradient(130deg, transparent 58%, rgba(58, 111, 230, 0.22) 59%, transparent 60%); transform: rotate(7deg); }
.video-surface::after { right: 24%; bottom: 0; width: 1px; height: 76%; background: linear-gradient(transparent, rgba(0, 144, 217, 0.6), transparent); }
.video-grid { position: absolute; inset: 0; opacity: 0.23; background: linear-gradient(rgba(238, 238, 238, 0.08) 1px, transparent 1px) 0 0 / 100% 42px, linear-gradient(90deg, rgba(238, 238, 238, 0.08) 1px, transparent 1px) 0 0 / 42px 100%; }
.video-label, .video-bottom, .video-center-copy, .video-profile, .play-button { position: relative; z-index: 1; }
.video-label { color: var(--soft); }
.video-center-copy { display: flex; width: 56%; flex-direction: column; align-items: flex-start; gap: 12px; margin: auto 0 auto 7%; padding: 20px 0; }
.video-index { color: var(--blue); font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; }
.video-center-copy strong { color: var(--paper); font-family: var(--display); font-size: clamp(30px, 3.1vw, 52px); font-weight: 400; letter-spacing: -0.05em; line-height: 0.92; }
.video-meta { color: var(--soft); font-family: var(--mono); font-size: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.video-profile { position: absolute; right: 20px; bottom: 28px; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.video-avatar { width: 86px; height: 86px; overflow: hidden; border: 2px solid var(--blue); border-radius: 50%; background: var(--ink); box-shadow: 6px 6px 0 rgba(0, 76, 117, 0.42); }
.video-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1.45); transform-origin: 50% 30%; }
.video-profile-copy { display: flex; align-items: baseline; gap: 5px; color: var(--soft); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.video-profile-copy span { color: var(--blue); letter-spacing: 0.1em; }
.video-profile-copy strong { color: var(--paper); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; }
.play-button { position: absolute; top: 50%; left: 50%; display: grid; width: 66px; height: 66px; place-items: center; border: 1px solid var(--paper); border-radius: 50%; color: var(--paper); background: rgba(15, 76, 117, 0.42); cursor: pointer; transform: translate(-50%, -50%); transition: background 180ms ease, transform 180ms ease; }
.play-button span { margin-left: 4px; font-size: 16px; }
.play-button:hover, .play-button:focus-visible { background: var(--blue); color: var(--ink); transform: translate(-50%, -50%) scale(1.07); }
.video-bottom { color: var(--muted); }
.video-bottom span:last-child { color: var(--paper); }
.video-caption { padding: 10px 0 2px; }
.caption-light { display: inline-flex; align-items: center; gap: 8px; }
.video-cta-row { display: none; justify-content: flex-end; margin-top: 22px; }
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy); }
.ticker-track { display: flex; align-items: center; justify-content: space-around; min-width: max-content; padding: 15px 0 13px; color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.ticker-track b { padding: 0 30px; color: var(--blue); font-size: 14px; font-weight: 400; }

.letter { scroll-margin-top: 78px; padding-top: clamp(100px, 13vw, 180px); padding-bottom: clamp(90px, 12vw, 170px); background: var(--paper); color: var(--ink); }
.section-intro { max-width: 900px; }
.section-intro h2, .method-heading h2, .application-intro h2 { margin: 23px 0 0; font-family: var(--display); font-size: clamp(39px, 4.6vw, 70px); letter-spacing: -0.055em; line-height: 0.98; }
.section-intro h2 em, .method-heading h2 em, .application-intro h2 em { color: var(--navy); }
.transcript-layout { display: block; margin-top: clamp(74px, 9vw, 126px); }
.transcript { max-width: 750px; font-family: var(--display); font-size: clamp(18px, 1.7vw, 23px); line-height: 1.52; }
.letter-cta { display: flex; width: fit-content; max-width: 100%; margin: clamp(50px, 7vw, 90px) auto 0; font-family: var(--mono); font-size: 13px; font-weight: 700; text-align: center; }
.transcript p { margin-bottom: 28px; }
.transcript strong { font-family: inherit; font-size: inherit; font-weight: 700; letter-spacing: inherit; }
.transcript mark { padding: 0 3px; color: var(--navy); background: linear-gradient(transparent 57%, rgba(0, 144, 217, 0.32) 57%); }
.transcript mark.negative { color: #a52626; background: linear-gradient(transparent 57%, rgba(180, 36, 24, 0.28) 57%); }
.evidence-figure { break-inside: avoid; margin: 34px 0 42px; }
.evidence-figure-finance { max-width: 420px; }
.evidence-figure img { display: block; width: 100%; height: auto; border: 1px solid rgba(27, 38, 44, 0.18); background: var(--white); }
.evidence-figure figcaption { margin-top: 14px; color: rgba(27, 38, 44, 0.74); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.03em; line-height: 1.45; }
.opening-quote { margin: 0 0 28px; padding: 22px 24px 20px; border-left: 2px solid var(--blue); background: rgba(15, 76, 117, 0.06); color: var(--navy); }
.opening-quote p { margin: 0; font-size: clamp(25px, 2.3vw, 34px); font-style: italic; line-height: 1.18; }
.opening-quote footer { margin-top: 14px; color: rgba(27, 38, 44, 0.74); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.03em; line-height: 1.45; }
.opening-quote cite { font-style: normal; }
.reasons-list { display: grid; gap: 25px; margin: 42px 0 30px; padding: 0; list-style: none; }
.reasons-list li { break-inside: avoid; padding: 20px 22px 21px; border: 1px solid rgba(27, 38, 44, 0.12); background: rgba(217, 217, 217, 0.38); box-shadow: 5px 5px 0 rgba(27, 38, 44, 0.05); }
.reasons-list li::after { display: block; clear: both; content: ''; }
.reason-number { float: left; margin: -0.08em 0.18em 0 0; color: var(--blue); font-family: var(--display); font-size: 2.65em; font-weight: 400; line-height: 0.75; }
.reasons-list p { margin: 0; color: var(--navy); font-size: 0.9em; line-height: 1.45; }
.fit-block { margin: 30px 0 40px; padding: 26px 0 0; color: var(--ink); }
.fit-block p { margin-bottom: 22px; }
.fit-block > p, .check-list { color: var(--ink); }
.check-list { display: grid; gap: 14px; margin: 0; padding: 4px 0 0; list-style: none; font-family: var(--display); font-size: 0.9em; line-height: 1.45; }
.check-list li { position: relative; padding-left: 22px; }
.check-list li::before { position: absolute; top: 0.35em; left: 0; display: flex; align-items: center; justify-content: center; width: 13px; height: 13px; border: 1px solid var(--navy); border-radius: 0; background: var(--navy); color: var(--white); content: '✓'; font-family: var(--sans); font-size: 10px; font-weight: 700; line-height: 1; }
.closing-line { color: var(--navy); font-size: clamp(28px, 3vw, 42px); font-style: italic; line-height: 1.08; }
.method { padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(100px, 13vw, 180px); background: var(--soft); }
.method-heading { max-width: 760px; }
.method-heading .kicker { margin-bottom: 20px; color: var(--ink); font-weight: 700; }
.method-heading h2 { margin: 0; color: var(--ink); }
.method-heading h2 em { color: var(--ink); }
.method-heading p:last-child { max-width: 560px; margin: 14px 0 0; color: var(--ink); font-size: 15px; line-height: 1.55; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 75px; background: transparent; }
.method-cta { display: flex; width: fit-content; max-width: 100%; margin: clamp(48px, 6vw, 78px) auto 0; font-family: var(--mono); font-size: 13px; font-weight: 700; text-align: center; }
.method-card { min-height: 325px; padding: 28px 27px; background: #10415f; color: var(--paper); }
.method-card:nth-child(2) { background: #10354c; color: var(--paper); }
.method-card:nth-child(3) { background: #0e2535; color: var(--paper); }
.method-card:nth-child(2) .card-index, .method-card:nth-child(3) .card-index { color: #aeb5b8; }
.method-card:nth-child(2) p, .method-card:nth-child(3) p { color: var(--soft); }
.card-index { color: #aeb5b8; font-weight: 700; }
.card-icon { margin: 48px 0 19px; color: var(--blue); font-family: var(--display); font-size: 41px; }
.card-icon-svg { display: block; width: 41px; height: 41px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.method-card h3 { margin: 0 0 15px; font-family: var(--display); font-size: 32px; letter-spacing: -0.04em; }
.method-card p { max-width: 260px; margin: 0; color: var(--soft); font-size: 14px; line-height: 1.55; }

.application { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(400px, 1fr); gap: clamp(50px, 10vw, 150px); padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(100px, 13vw, 180px); background: var(--ink); }
.application-intro h2 { color: var(--paper); }
.application-intro h2 em { color: var(--blue); }
.application-intro > p:not(.kicker) { max-width: 400px; margin-top: 34px; color: var(--soft); font-size: 15px; line-height: 1.55; }
.application-note { max-width: 380px; margin-top: 60px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 10px; line-height: 1.5; }
.application-note span { margin-right: 9px; color: var(--blue); font-size: 16px; }
.application-form {
  padding: 31px;
  border: 1px solid var(--line);
  background: rgba(15, 76, 117, 0.23);
}
.form-row { margin-bottom: 27px; }
.form-row > label, .form-row > legend, .other-field > label {
  display: block;
  margin-bottom: 10px;
  color: rgba(238, 238, 238, 0.9);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.45;
}
.form-row > label > span, .form-row > legend > span, .other-field > label > span { color: var(--blue); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.42);
  outline: none;
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 180ms ease, color 180ms ease;
}
.form-row input:hover, .form-row select:hover, .form-row textarea:hover { border-color: rgba(238, 238, 238, 0.68); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--blue);
}
.form-row input:-webkit-autofill,
.form-row input:-webkit-autofill:hover,
.form-row input:-webkit-autofill:focus,
.form-row input:autofill {
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: var(--paper) !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: none !important;
  caret-color: var(--paper);
  transition: background-color 9999s ease-out 0s !important;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(217, 217, 217, 0.62); opacity: 1; }
.form-row textarea { min-height: 118px; resize: vertical; }
.phone-input { display: grid; grid-template-columns: 88px minmax(0, 1fr); align-items: end; gap: 18px; }
.phone-country-select summary { padding-right: 29px; font-size: 13px; }
.phone-country-select .dropdown-panel { width: max-content; min-width: 246px; max-width: min(300px, calc(100vw - 62px)); max-height: 320px; overflow-y: auto; }
.phone-country-select .dropdown-option { min-height: 42px; font-size: 12px; }
.select-arrow {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-58%);
  transition: transform 180ms ease;
}
.other-field { margin-top: 17px; }
.other-field[hidden] { display: none; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.multi-select, .single-select { position: relative; z-index: 1; }
.multi-select summary, .single-select summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 13px 36px 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.42);
  outline: none;
  color: rgba(217, 217, 217, 0.7);
  background: transparent;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: border-color 180ms ease, color 180ms ease;
}
.multi-select summary::-webkit-details-marker, .single-select summary::-webkit-details-marker { display: none; }
.multi-select summary:hover, .single-select summary:hover { border-color: rgba(238, 238, 238, 0.68); }
.multi-select summary:focus-visible, .single-select summary:focus-visible, .multi-select[open] summary, .single-select[open] summary {
  border-color: var(--blue);
}
.multi-select[open], .single-select[open] { z-index: 4; }
.multi-select[open] summary, .single-select[open] summary { color: var(--white); }
.multi-select.has-selection summary, .single-select.has-selection summary { color: var(--white); }
.multi-select[open] .select-arrow, .single-select[open] .select-arrow { transform: translateY(-42%) rotate(180deg); }
[data-multi-select-label], [data-single-select-label] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dropdown-panel {
  position: absolute;
  z-index: 5;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 7px;
  border: 1px solid rgba(0, 144, 217, 0.72);
  background: #07151f;
  box-shadow: 10px 10px 0 rgba(15, 76, 117, 0.38);
}
.dropdown-panel .other-field {
  margin: 8px 10px 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 238, 238, 0.12);
}
.dropdown-panel .other-field > label { margin-bottom: 8px; font-size: 11.5px; }
.dropdown-panel .other-field input { min-height: 42px; padding: 9px 0; font-size: 14px; }
.other-confirm {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  margin-top: 12px;
  padding: 0 11px;
  border: 1px solid rgba(0, 144, 217, 0.66);
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.other-confirm span { color: var(--blue); font-size: 14px; }
.other-confirm:hover, .other-confirm:focus-visible { border-color: var(--blue); color: var(--ink); background: var(--blue); transform: translateY(-1px); }
.other-confirm:hover span, .other-confirm:focus-visible span { color: var(--ink); }
.other-confirm:focus-visible { outline: 2px solid rgba(0, 144, 217, 0.35); outline-offset: 3px; }
.other-field.is-confirmed .other-confirm { border-color: rgba(98, 199, 251, 0.8); color: #62c7fb; }
.other-field.is-confirmed .other-confirm span { color: #62c7fb; }
.dropdown-option {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  margin: 0;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.1);
  color: rgba(238, 238, 238, 0.88);
  background: transparent;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}
.dropdown-option:last-child { border-bottom: 0; }
.dropdown-option:hover { color: var(--white); background: rgba(0, 144, 217, 0.12); }
.dropdown-option:has(input:checked) { color: var(--white); background: rgba(15, 76, 117, 0.42); }
.single-select .dropdown-option { border-left: 2px solid transparent; padding-left: 8px; }
.single-select .dropdown-option:has(input:checked) { border-left-color: var(--blue); }
.dropdown-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}
.checkbox-mark {
  display: grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(238, 238, 238, 0.58);
  background: transparent;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.checkbox-mark::after { color: var(--ink); font-family: var(--mono); font-size: 12px; font-weight: 700; line-height: 1; content: '✓'; opacity: 0; transform: scale(0.75); transition: opacity 160ms ease, transform 160ms ease; }
.dropdown-option input:checked + .checkbox-mark { border-color: var(--blue); background: var(--blue); }
.dropdown-option input:checked + .checkbox-mark::after { opacity: 1; transform: scale(1); }
.dropdown-option input:focus-visible + .checkbox-mark { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 144, 217, 0.22); }
.dropdown-option-text { color: inherit; }
.form-submit { width: 100%; min-height: 52px; margin-top: 7px; font-family: var(--mono); font-size: 13px; font-weight: 700; }
.form-feedback { min-height: 20px; margin: 18px 0 0; color: #62c7fb; font-family: var(--mono); font-size: 11.5px; line-height: 1.45; }
.form-feedback.is-error { color: #ffb1b1; }
.form-privacy { margin: 3px 0 0; color: rgba(217, 229, 235, 0.66); font-family: var(--mono); font-size: 10px; line-height: 1.45; }
.form-consent { margin: 3px 0 0; color: rgba(217, 229, 235, 0.66); font-family: var(--mono); font-size: 10px; line-height: 1.45; }
.form-consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.legal-page { min-height: calc(100vh - 78px); padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(90px, 12vw, 160px); background: var(--paper); color: var(--ink); }
.legal-container { max-width: 980px; margin: 0 auto; }
.legal-heading { max-width: 760px; }
.legal-heading .kicker { color: var(--navy); font-weight: 700; }
.legal-heading h1 { margin: 23px 0 0; font-family: var(--display); font-size: clamp(44px, 6vw, 80px); font-weight: 400; letter-spacing: -0.055em; line-height: 0.95; }
.legal-heading h1 em { color: var(--navy); font-style: normal; }
.legal-lead { max-width: 680px; margin: 25px 0 0; color: var(--navy); font-size: 17px; line-height: 1.55; }
.legal-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 40px; margin-top: 38px; padding: 19px 0; border-top: 1px solid rgba(27, 38, 44, 0.25); border-bottom: 1px solid rgba(27, 38, 44, 0.25); color: var(--ink); font-family: var(--mono); font-size: 11px; line-height: 1.5; }
.legal-meta strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.legal-meta a, .legal-section a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.legal-section { padding-top: 58px; }
.legal-section + .legal-section { margin-top: 58px; border-top: 1px solid rgba(27, 38, 44, 0.25); }
.legal-section h1, .legal-section h2 { margin: 0 0 24px; color: var(--ink); font-family: var(--display); font-size: clamp(32px, 4vw, 50px); font-weight: 400; letter-spacing: -0.045em; line-height: 1; }
.legal-section h3 { margin: 29px 0 9px; color: var(--navy); font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-section p, .legal-section li { max-width: 760px; color: rgba(27, 38, 44, 0.86); font-size: 15px; line-height: 1.7; }
.legal-section p { margin: 0 0 16px; }
.legal-section ul { max-width: 760px; margin: 0 0 18px; padding-left: 23px; }
.legal-section li { padding-left: 5px; }
.legal-back { display: inline-flex; margin-top: 42px; color: var(--navy); font-family: var(--mono); font-size: 11px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; max-width: 1440px; min-height: 145px; margin: 0 auto; padding: 30px 5.7vw; border-top: 1px solid var(--line); color: var(--soft); background: var(--ink); }
.site-footer p { margin: 0; color: var(--soft); font-family: var(--mono); font-size: 10px; line-height: 1.5; text-align: center; }
.site-footer p span { color: var(--muted); }
.site-footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; justify-self: end; }
.site-footer-links a { color: var(--blue); font-family: var(--mono); font-size: 10px; }
.cookie-footer-link, .cookie-settings-link, .cookie-secondary { border: 0; cursor: pointer; }
.cookie-footer-link { padding: 0; color: rgba(217, 217, 217, 0.62); background: transparent; font-family: var(--mono); font-size: 9px; letter-spacing: 0.02em; text-decoration: underline; text-underline-offset: 3px; }
.cookie-footer-link:hover, .cookie-footer-link:focus-visible, .cookie-settings-link:hover, .cookie-settings-link:focus-visible, .cookie-secondary:hover, .cookie-secondary:focus-visible { color: var(--blue); }

.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 30; right: 5.7vw; bottom: 18px; left: 5.7vw; display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1180px; margin: 0 auto; padding: 20px 22px; border: 1px solid rgba(238, 238, 238, 0.24); background: rgba(7, 21, 31, 0.97); box-shadow: 12px 12px 0 rgba(15, 76, 117, 0.38); color: var(--paper); }
.cookie-banner-copy { max-width: 760px; }
.cookie-kicker { margin: 0 0 9px; color: var(--blue); font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.cookie-banner-copy > p:last-child { margin: 0; color: rgba(238, 238, 238, 0.86); font-size: 13px; line-height: 1.5; }
.cookie-settings-link { padding: 0; color: rgba(238, 238, 238, 0.86); background: transparent; font-size: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cookie-accept { flex: 0 0 auto; min-width: 145px; min-height: 56px; font-size: 13px; font-weight: 700; }

.cookie-modal { position: fixed; z-index: 40; inset: 0; display: grid; place-items: center; padding: 20px; }
.cookie-modal-scrim { position: absolute; inset: 0; background: rgba(7, 21, 31, 0.72); backdrop-filter: blur(6px); }
.cookie-dialog { position: relative; z-index: 1; width: min(100%, 650px); max-height: calc(100vh - 40px); overflow: auto; padding: clamp(27px, 5vw, 46px); border: 1px solid rgba(27, 38, 44, 0.18); background: var(--paper); color: var(--ink); box-shadow: 16px 16px 0 rgba(15, 76, 117, 0.35); }
.cookie-dialog-close { position: absolute; top: 15px; right: 17px; width: 32px; height: 32px; padding: 0; border: 1px solid rgba(27, 38, 44, 0.22); color: var(--ink); background: transparent; cursor: pointer; font-family: var(--sans); font-size: 23px; line-height: 1; }
.cookie-dialog-close:hover, .cookie-dialog-close:focus-visible { border-color: var(--navy); color: var(--navy); }
.cookie-dialog .cookie-kicker { color: var(--navy); font-weight: 700; }
.cookie-dialog h2 { max-width: 520px; margin: 18px 0 13px; color: var(--ink); font-family: var(--display); font-size: clamp(31px, 4vw, 46px); font-weight: 400; letter-spacing: -0.045em; line-height: 1; }
.cookie-dialog-lead { max-width: 560px; margin: 0; color: rgba(27, 38, 44, 0.78); font-size: 15px; line-height: 1.55; }
.cookie-preferences { margin-top: 27px; border-top: 1px solid rgba(27, 38, 44, 0.2); }
.cookie-preference { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(27, 38, 44, 0.14); cursor: pointer; }
.cookie-preference > span { display: grid; gap: 4px; }
.cookie-preference strong { color: var(--ink); font-size: 14px; }
.cookie-preference small { color: rgba(27, 38, 44, 0.68); font-size: 12px; line-height: 1.4; }
.cookie-preference input { flex: 0 0 auto; width: 20px; height: 20px; min-height: 0; margin: 1px 0 0; accent-color: var(--navy); }
.cookie-dialog-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-top: 25px; }
.cookie-secondary { padding: 9px 0; color: var(--navy); background: transparent; font-family: var(--mono); font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }
.cookie-dialog-actions .button { min-height: 50px; font-size: 11px; font-weight: 700; }
.cookie-modal-open { overflow: hidden; }

.play-button.is-playing { border-color: var(--blue); background: var(--blue); color: var(--ink); }
.video-window.is-playing .video-center-copy strong::after { display: block; margin-top: 17px; color: var(--paper); font-family: var(--mono); font-size: 9px; font-style: normal; letter-spacing: 0.06em; content: 'O VÍDEO SERÁ INSERIDO AQUI'; }

@media (min-width: 901px) {
  .transcript-layout { max-width: 1160px; }
  .transcript { max-width: none; column-count: 2; column-gap: clamp(36px, 5vw, 78px); }
  .transcript > p { break-inside: avoid; }
  .transcript > .opening-quote, .transcript > .fit-block { break-inside: avoid; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-video-wrap { justify-self: start; width: min(100%, 650px); }
  .hero-copy-cta { display: none; }
  .video-cta-row { display: flex; justify-content: flex-start; }
  .hero-copy-link-desktop { display: none; }
  .hero-copy-link-mobile { display: inline; }
  .video-surface { aspect-ratio: 9 / 16; }
  .video-center-copy { gap: 22px; margin: auto 0 auto 7%; padding: 58px 0; }
  .video-center-copy strong { font-size: clamp(38px, 4.4vw, 64px); }
  .video-meta { font-size: 9px; }
  .video-profile { right: 28px; bottom: 42px; gap: 8px; }
  .video-avatar { width: 112px; height: 112px; box-shadow: 8px 8px 0 rgba(0, 76, 117, 0.42); }
  .video-profile-copy { gap: 7px; font-size: 9px; }
  .video-profile-copy strong { font-size: 10px; }
  .application { grid-template-columns: 1fr; }
  .application-note { margin-top: 35px; }
  .cookie-banner { right: 20px; left: 20px; flex-direction: column; align-items: stretch; gap: 18px; padding: 18px; }
  .cookie-accept { width: 100%; }
  .cookie-dialog { padding: 31px 22px 24px; }
  .cookie-dialog-actions { align-items: stretch; flex-direction: column; }
  .cookie-dialog-actions .button { width: 100%; }
  .cookie-secondary { order: 2; }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; padding: 0 20px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 10px; border: 0; color: var(--paper); background: transparent; cursor: pointer; font-family: var(--mono); font-size: 10px; }
  .menu-icon { display: grid; gap: 4px; }
  .menu-icon i { display: block; width: 17px; height: 1px; background: var(--blue); }
  .main-nav { position: absolute; top: 68px; right: 0; left: 0; display: grid; gap: 0; padding: 10px 20px 20px; border-bottom: 1px solid var(--line); background: rgba(27, 38, 44, 0.98); visibility: hidden; pointer-events: none; transform: translateY(-120%); transition: transform 220ms ease, visibility 220ms ease; }
  .main-nav.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 10px; padding: 13px; text-align: center; border: 1px solid var(--blue); }
  .section-pad { padding-right: 20px; padding-left: 20px; }
  .letter { scroll-margin-top: 68px; }
  .hero { gap: 60px; padding-top: 76px; padding-bottom: 82px; background-size: 46px 46px; }
  h1 { margin-top: 24px; font-size: clamp(45px, 14vw, 72px); }
  .hero-title { line-height: 1.06; }
  .hero-title-wide { display: none; }
  .hero-title-narrow { display: inline; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .video-window { box-shadow: 9px 9px 0 rgba(15, 76, 117, 0.45); }
  .video-surface { min-height: 0; padding: 18px; }
  .video-center-copy { position: absolute; top: 15%; left: 7%; width: 52%; margin: 0; padding: 0; }
  .video-center-copy strong { font-size: 40px; }
  .video-profile { right: 18px; bottom: 40px; gap: 6px; }
  .video-avatar { width: 86px; height: 86px; box-shadow: 5px 5px 0 rgba(0, 76, 117, 0.42); }
  .video-profile-copy { gap: 5px; font-size: 8px; }
  .video-profile-copy strong { font-size: 9px; }
  .play-button { left: 50%; width: 55px; height: 55px; }
  .video-cta-row { justify-content: flex-start; margin-top: 28px; }
  .window-title { display: none; }
  .ticker-track { justify-content: flex-start; animation: ticker-scroll 22s linear infinite; }
  .ticker-track b { padding: 0 18px; }
  .letter, .method, .application { padding-top: 88px; padding-bottom: 95px; }
  .section-intro h2, .method-heading h2, .application-intro h2 { font-size: 43px; }
  .transcript-layout { margin-top: 65px; }
  .transcript { font-size: 19px; line-height: 1.48; }
  .evidence-figure { margin: 28px 0 34px; }
  .evidence-figure-finance { max-width: none; }
  .opening-quote { margin-bottom: 26px; padding: 20px 15px 18px 18px; }
  .opening-quote p { font-size: 27px; }
  .fit-block { margin: 30px 0 40px; padding: 22px 0 0; }
  .method-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .method-card { min-height: 0; padding: 25px 22px 29px; }
  .card-icon { margin: 33px 0 13px; }
  .application-form { padding: 22px 17px; }
  .legal-page { min-height: calc(100vh - 68px); padding-top: 72px; padding-bottom: 84px; }
  .legal-meta { grid-template-columns: 1fr; gap: 13px; }
  .legal-section { padding-top: 43px; }
  .legal-section + .legal-section { margin-top: 43px; }
  .legal-section p, .legal-section li { font-size: 14px; line-height: 1.65; }
  .phone-input { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
  .phone-country-select summary { font-size: 12px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: 23px; padding: 38px 20px; }
  .site-footer p { text-align: left; }
  .site-footer-links { align-items: flex-start; justify-self: start; }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-28%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: center;
  min-height: min(760px, calc(100vh - 78px));
  padding-top: clamp(76px, 9vw, 132px);
  padding-bottom: clamp(82px, 10vw, 140px);
  background:
    linear-gradient(90deg, rgba(15, 76, 117, 0.19) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(15, 76, 117, 0.16) 1px, transparent 1px) 0 0 / 72px 72px;
}

.home-hero::before {
  position: absolute;
  top: 6%;
  right: -16%;
  width: 62%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 144, 217, 0.18), transparent 66%);
  content: '';
  pointer-events: none;
}

.home-hero-copy, .home-portrait { position: relative; z-index: 1; }
.home-hero-copy { max-width: 710px; }
.home-title { max-width: 700px; margin: 31px 0 0; font-family: var(--display); font-size: clamp(48px, 6.4vw, 92px); letter-spacing: -0.06em; line-height: 0.94; }
.home-title em { color: var(--blue); }
.home-lead { max-width: 520px; margin: 31px 0 0; color: var(--soft); font-family: var(--display); font-size: clamp(18px, 1.65vw, 23px); line-height: 1.45; }
.home-actions { display: flex; align-items: center; gap: 27px; margin-top: 42px; }
.home-actions .button, .home-invite .button { font-family: var(--mono); font-size: 13px; font-weight: 700; }
.home-secondary-link { color: var(--soft); font-family: var(--mono); font-size: 11px; text-decoration: underline; text-underline-offset: 5px; transition: color 180ms ease, transform 180ms ease; }
.home-secondary-link span { margin-left: 7px; color: var(--blue); font-size: 16px; text-decoration: none; }
.home-secondary-link:hover, .home-secondary-link:focus-visible { color: var(--blue); transform: translateY(-2px); }

.home-portrait { width: min(100%, 470px); justify-self: end; margin: 0; }
.home-portrait-frame { padding: 10px; border: 1px solid rgba(238, 238, 238, 0.27); background: rgba(7, 21, 31, 0.66); box-shadow: 18px 18px 0 rgba(15, 76, 117, 0.4); }
.home-portrait-label { padding: 8px 7px 14px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; }
.home-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 34%; filter: saturate(0.92); }
.home-portrait figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding: 15px 7px 6px; color: var(--soft); font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }
.home-portrait figcaption strong { color: var(--paper); font-size: 12px; letter-spacing: 0.04em; }

.home-pillars { display: grid; grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr); gap: clamp(50px, 9vw, 140px); padding-top: clamp(82px, 10vw, 135px); padding-bottom: clamp(88px, 11vw, 150px); background: var(--paper); color: var(--ink); }
.home-pillars-heading { max-width: 440px; }
.home-pillars-heading .kicker { color: var(--navy); font-weight: 700; }
.home-pillars-heading h2, .home-invite h2 { margin: 22px 0 0; font-family: var(--display); font-size: clamp(40px, 4.6vw, 68px); letter-spacing: -0.055em; line-height: 0.98; }
.home-pillars-heading h2 em { color: var(--navy); }
.home-pillar-list { align-self: end; border-top: 1px solid rgba(27, 38, 44, 0.22); }
.home-pillar-list > a { display: grid; grid-template-columns: 53px minmax(0, 1fr) 20px; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(27, 38, 44, 0.22); color: var(--ink); }
.home-pillar-list > a:hover, .home-pillar-list > a:focus-visible { color: var(--navy); }
.home-pillar-index, .home-pillar-arrow { color: var(--navy); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }
.home-pillar-list strong { display: block; font-family: var(--display); font-size: 25px; font-weight: 400; letter-spacing: -0.03em; }
.home-pillar-list small { display: block; margin-top: 3px; color: rgba(27, 38, 44, 0.66); font-size: 13px; line-height: 1.4; }
.home-pillar-arrow { justify-self: end; font-size: 17px; }

.home-invite { padding-top: clamp(88px, 11vw, 150px); padding-bottom: clamp(96px, 12vw, 165px); background: var(--navy); color: var(--paper); text-align: center; }
.home-invite .kicker { justify-content: center; color: var(--blue); }
.home-invite h2 { max-width: 830px; margin-right: auto; margin-left: auto; }
.home-invite h2 em { color: var(--paper); }
.home-invite > p:not(.kicker) { max-width: 540px; margin: 24px auto 0; color: var(--soft); font-family: var(--display); font-size: 18px; line-height: 1.5; }
.home-invite .button { margin-top: 35px; }

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: unset; gap: 62px; padding-top: 76px; padding-bottom: 92px; }
  .home-hero-copy { max-width: 700px; }
  .home-portrait { justify-self: start; width: min(100%, 560px); }
  .home-pillars { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 680px) {
  .home-hero { gap: 57px; background-size: 46px 46px; }
  .home-title { margin-top: 25px; font-size: clamp(46px, 14vw, 72px); line-height: 0.98; }
  .home-lead { margin-top: 26px; font-size: 18px; }
  .home-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 33px; }
  .home-actions .button { width: 100%; }
  .home-portrait-frame { box-shadow: 10px 10px 0 rgba(15, 76, 117, 0.4); }
  .home-portrait figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .home-pillars, .home-invite { padding-top: 88px; padding-bottom: 95px; }
  .home-pillars-heading h2, .home-invite h2 { font-size: 43px; }
  .home-pillar-list > a { grid-template-columns: 42px minmax(0, 1fr) 20px; gap: 10px; }
  .home-pillar-list strong { font-size: 23px; }
  .home-invite { text-align: left; }
  .home-invite .kicker { justify-content: flex-start; }
  .home-invite > p:not(.kicker) { font-size: 17px; }
  .home-invite .button { width: 100%; }
}
