:root {
  --cc-navy: #0A1628;
  --cc-navy-2: #0F1F3D;
  --cc-navy-deep: #06101F;
  --cc-gold: #B8974A;
  --cc-gold-2: #D6B96A;
  --cc-off-white: #F5F0E8;
  --cc-stone: #C8BFA8;
  --cc-ink: #10213A;
  --cc-muted: #5D6676;
  --cc-line: rgba(184, 151, 74, 0.22);
  --cc-line-soft: rgba(184, 151, 74, 0.12);
  --cc-white-line: rgba(245, 240, 232, 0.12);
  --cc-max: 1180px;
  --cc-pad: clamp(20px, 4.2vw, 46px);
  --cc-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --cc-body: "Barlow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cc-navy);
}

[id] {
  scroll-margin-top: 86px;
}

body.caixa-page {
  margin: 0;
  color: var(--cc-off-white);
  background: var(--cc-navy);
  font-family: var(--cc-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  color: var(--cc-navy);
  background: var(--cc-gold);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 500;
  transform: translateY(-150%);
  background: var(--cc-off-white);
  color: var(--cc-navy);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.cc-container {
  width: min(100% - (var(--cc-pad) * 2), var(--cc-max));
  margin: 0 auto;
}

.cc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(6, 16, 31, 0.72);
  border-bottom: 1px solid rgba(184, 151, 74, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease;
}

.cc-header.is-scrolled {
  background: rgba(6, 16, 31, 0.96);
  border-color: rgba(184, 151, 74, 0.28);
}

.reading-progress {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  background: var(--cc-gold);
}

.cc-nav {
  width: min(100% - 44px, 1320px);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cc-brand {
  width: clamp(154px, 15vw, 198px);
  display: inline-flex;
  align-items: center;
}

.cc-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(245, 240, 232, 0.78);
  font-family: var(--cc-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cc-nav-links a {
  position: relative;
  padding: 10px 0;
}

.cc-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: var(--cc-gold);
  transition: width 180ms ease;
}

.cc-nav-links a:hover,
.cc-nav-links a:focus {
  color: var(--cc-off-white);
}

.cc-nav-links a:hover::after,
.cc-nav-links a:focus::after {
  width: 100%;
}

.cc-nav-links .nav-action {
  color: var(--cc-navy);
  background: var(--cc-gold);
  padding: 11px 18px;
}

.cc-nav-links .nav-action::after {
  display: none;
}

.cc-nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(245, 240, 232, 0.22);
  background: transparent;
  color: var(--cc-off-white);
  cursor: pointer;
}

.cc-nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.cc-section {
  position: relative;
  padding: clamp(54px, 6.2vw, 86px) 0;
}

.cc-section.light {
  color: var(--cc-ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.66), rgba(245, 240, 232, 0.82) 44%, rgba(245, 240, 232, 0.96)),
    var(--cc-off-white);
}

.cc-section.navy,
.cc-hero {
  color: var(--cc-off-white);
  background:
    radial-gradient(circle at 12% 22%, rgba(184, 151, 74, 0.12), transparent 25rem),
    linear-gradient(120deg, var(--cc-navy-deep), var(--cc-navy) 42%, var(--cc-navy-2));
}

.blueprint-section {
  position: relative;
  overflow: hidden;
}

.blueprint-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 151, 74, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 151, 74, 0.038) 1px, transparent 1px),
    linear-gradient(rgba(245, 240, 232, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.028) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 18px 18px, 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.96), transparent 92%);
  animation: blueprintPan 30s linear infinite;
}

.blueprint-section::after {
  content: "";
  position: absolute;
  inset: auto 5vw 8% auto;
  width: min(46vw, 620px);
  height: min(40vw, 520px);
  pointer-events: none;
  opacity: 0.24;
  border: 1px solid rgba(184, 151, 74, 0.34);
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(184, 151, 74, 0.45) 44.2% 44.5%, transparent 44.7%),
    linear-gradient(90deg, transparent 0 24%, rgba(245, 240, 232, 0.16) 24.2% 24.5%, transparent 24.7% 65%, rgba(245, 240, 232, 0.1) 65.2% 65.5%, transparent 65.7%),
    linear-gradient(0deg, transparent 0 28%, rgba(245, 240, 232, 0.13) 28.2% 28.5%, transparent 28.7% 73%, rgba(245, 240, 232, 0.12) 73.2% 73.5%, transparent 73.7%);
}

.cc-hero.blueprint-section::after {
  display: none;
}

.cc-hero {
  min-height: 100svh;
  padding: clamp(98px, 12svh, 116px) 0 clamp(30px, 5svh, 46px);
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.9fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
  border-left: 3px solid var(--cc-gold);
  padding-left: clamp(20px, 3vw, 34px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cc-gold);
  font-family: var(--cc-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
.list-title,
.faq-item button,
.card-kicker {
  margin: 0;
  font-family: var(--cc-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.65rem, 3.55vw, 3.95rem);
}

h2 {
  font-size: clamp(1.9rem, 3.55vw, 3.45rem);
}

h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.12rem);
}

.hero-lead {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(245, 240, 232, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  font-weight: 400;
  line-height: 1.48;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cc-button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--cc-gold);
  padding: 12px 20px;
  color: var(--cc-off-white);
  background: transparent;
  font-family: var(--cc-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.cc-button::after {
  content: "→";
  font-family: var(--cc-body);
  font-weight: 700;
  transition: transform 170ms ease;
}

.cc-button:hover,
.cc-button:focus {
  transform: translateY(-2px);
}

.cc-button:hover::after,
.cc-button:focus::after {
  transform: translateX(4px);
}

.cc-button.primary {
  color: var(--cc-navy);
  background: var(--cc-gold);
  background-image: linear-gradient(115deg, var(--cc-gold) 0%, var(--cc-gold) 42%, rgba(245, 240, 232, 0.5) 50%, var(--cc-gold) 58%, var(--cc-gold) 100%);
  background-size: 230% 100%;
  animation: buttonSheen 6.5s ease-in-out infinite;
}

.cc-button.secondary {
  color: var(--cc-off-white);
  background: rgba(10, 22, 40, 0.1);
}

.cc-button.dark-text {
  color: var(--cc-navy);
}

.cc-button.compact {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.86rem;
}

.cc-button.full {
  width: 100%;
}

.hero-note,
.legal-copy,
.form-note {
  margin: 12px 0 0;
  color: var(--cc-stone);
  font-size: 0.92rem;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: clamp(-78px, -6vw, -36px);
  right: calc(var(--cc-pad) * -1.42);
  bottom: clamp(-88px, -6.5vw, -42px);
  left: min(55vw, 760px);
  min-height: 0;
  overflow: visible;
  isolation: isolate;
  pointer-events: none;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8% -4% -5% -18%;
  background:
    radial-gradient(ellipse at 64% 38%, rgba(17, 47, 88, 0.72), transparent 54%),
    linear-gradient(90deg, rgba(10, 22, 40, 0), rgba(10, 22, 40, 0.74) 24%, rgba(15, 31, 61, 0.8) 100%);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 20%, #000 88%, transparent 100%),
    linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 20%, #000 88%, transparent 100%),
    linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.hero-visual img {
  position: absolute;
  right: clamp(-78px, -4.8vw, -34px);
  bottom: clamp(-24px, -1.4vw, -10px);
  z-index: 4;
  width: min(40vw, 548px);
  height: auto;
  max-height: calc(100% + 6px);
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.9) contrast(1.04) drop-shadow(-22px 26px 34px rgba(0, 0, 0, 0.28));
  opacity: 1;
  transform: scale(1.02);
  transform-origin: right bottom;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.blueprint-card {
  position: absolute;
  z-index: 1;
  inset: 2% 0 6% -3%;
  opacity: 0.5;
  background:
    linear-gradient(rgba(245, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(184, 151, 74, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 151, 74, 0.026) 1px, transparent 1px);
  background-size: 92px 92px, 92px 92px, 23px 23px, 23px 23px;
  -webkit-mask-image:
    radial-gradient(ellipse 72% 72% at 65% 42%, #000 0%, #000 62%, rgba(0, 0, 0, 0.5) 78%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 72% 72% at 65% 42%, #000 0%, #000 62%, rgba(0, 0, 0, 0.5) 78%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 90%, transparent 100%);
  mask-composite: intersect;
  animation: blueprintFloat 14s ease-in-out infinite alternate;
}

.blueprint-card span {
  position: absolute;
  border: 1px solid rgba(245, 240, 232, 0.075);
  box-shadow: inset 0 0 0 1px rgba(184, 151, 74, 0.018);
}

.blueprint-card span:nth-child(1) {
  inset: 14% 12% 50% 14%;
}

.blueprint-card span:nth-child(2) {
  inset: 8% 3% 18% 55%;
}

.blueprint-card span:nth-child(3) {
  inset: 56% 52% 8% 18%;
}

.blueprint-card span:nth-child(4) {
  inset: 31% 24% 33% 36%;
}

.blueprint-current {
  position: absolute;
  inset: 1% -2% 5% -2%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.86;
  mix-blend-mode: screen;
  -webkit-mask-image:
    radial-gradient(ellipse 72% 76% at 66% 40%, #000 0%, #000 64%, rgba(0, 0, 0, 0.46) 79%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.62) 17%, #000 28%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 7%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 72% 76% at 66% 40%, #000 0%, #000 64%, rgba(0, 0, 0, 0.46) 79%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.62) 17%, #000 28%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 7%, #000 88%, transparent 100%);
  mask-composite: intersect;
  animation: blueprintCurrentBreath 12s ease-in-out infinite alternate;
}

.blueprint-current svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.blueprint-current path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.blueprint-base path {
  stroke: rgba(245, 240, 232, 0.12);
  stroke-width: 1.1;
}

.blueprint-base path:nth-child(3),
.blueprint-base path:nth-child(5),
.blueprint-base path:nth-child(8) {
  stroke: rgba(184, 151, 74, 0.2);
}

.blueprint-pulses path {
  stroke: rgba(245, 240, 232, 0.92);
  stroke-width: 2.35;
  stroke-linecap: square;
  stroke-dasharray: var(--pulse-size, 86) 1000;
  stroke-dashoffset: 1000;
  filter:
    drop-shadow(0 0 5px rgba(245, 240, 232, 0.36))
    drop-shadow(0 0 10px rgba(214, 185, 106, 0.5));
  animation: blueprintTracePath var(--trace-speed, 7.2s) cubic-bezier(0.44, 0.02, 0.2, 1) infinite;
  animation-delay: var(--trace-delay, 0s);
}

.blueprint-pulses path:nth-child(1) {
  --trace-speed: 7.2s;
  --trace-delay: -1s;
  --pulse-size: 96;
}

.blueprint-pulses path:nth-child(2) {
  --trace-speed: 8s;
  --trace-delay: -3.3s;
  --pulse-size: 82;
}

.blueprint-pulses path:nth-child(3) {
  --trace-speed: 8.8s;
  --trace-delay: -4.7s;
  --pulse-size: 112;
  stroke: rgba(214, 185, 106, 0.78);
}

.blueprint-pulses path:nth-child(4) {
  --trace-speed: 7.5s;
  --trace-delay: -2.1s;
  --pulse-size: 92;
}

.blueprint-pulses path:nth-child(5) {
  --trace-speed: 9.2s;
  --trace-delay: -5.8s;
  --pulse-size: 94;
  stroke: rgba(214, 185, 106, 0.72);
}

.blueprint-pulses path:nth-child(6) {
  --trace-speed: 7.8s;
  --trace-delay: -6.5s;
  --pulse-size: 88;
}

.blueprint-pulses path:nth-child(7) {
  --trace-speed: 8.4s;
  --trace-delay: -3.9s;
  --pulse-size: 86;
}

.blueprint-pulses path:nth-child(8) {
  --trace-speed: 6.8s;
  --trace-delay: -2.7s;
  --pulse-size: 70;
  stroke: rgba(214, 185, 106, 0.7);
}

.section-title {
  max-width: 840px;
  margin-bottom: clamp(22px, 3.4vw, 34px);
}

.section-title.ruled {
  position: relative;
  padding-left: 22px;
}

.section-title.ruled::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 2px;
  height: 52px;
  background: var(--cc-gold);
}

.light .section-title h2 {
  color: var(--cc-ink);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 22, 40, 0.12);
  border-left: 1px solid rgba(10, 22, 40, 0.12);
}

.line-card {
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 28px);
  border-right: 1px solid rgba(10, 22, 40, 0.12);
  border-bottom: 1px solid rgba(10, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.2);
}

.line-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(184, 151, 74, 0.48);
  color: var(--cc-gold);
  font-family: var(--cc-display);
  font-size: 1.4rem;
}

.line-card h3,
.path-card h3 {
  color: var(--cc-ink);
  margin-bottom: 14px;
}

.line-card p,
.path-card p,
.path-card li,
.pre-faq-copy p,
.faq-content p {
  color: var(--cc-muted);
}

.thesis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px, 0.48fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.thesis-grid h2 {
  max-width: 560px;
}

.thesis-grid p:not(.eyebrow):not(.list-title) {
  margin: 16px 0 0;
  color: rgba(245, 240, 232, 0.82);
}

.work-list {
  border-left: 1px solid var(--cc-line);
  padding-left: clamp(24px, 4vw, 40px);
}

.list-title {
  color: var(--cc-gold);
  font-size: 1.18rem;
}

.work-list ul,
.path-card ul,
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.work-list li,
.path-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}

.work-list li::before,
.path-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 1px;
  background: var(--cc-gold);
}

.work-list li {
  color: rgba(245, 240, 232, 0.82);
}

.thesis-grid blockquote {
  margin: 0;
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 2px solid rgba(184, 151, 74, 0.58);
  color: var(--cc-off-white);
}

.thesis-grid blockquote p {
  margin: 0;
  color: var(--cc-off-white);
  font-family: var(--cc-display);
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.path-card {
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(10, 22, 40, 0.16);
  background: rgba(255, 255, 255, 0.3);
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--cc-ink);
  font-size: 1.08rem;
}

.path-card .cc-button {
  margin-top: 12px;
}

.applications-section {
  padding-top: 0;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 22, 40, 0.12);
  border-left: 1px solid rgba(10, 22, 40, 0.12);
}

.application-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid rgba(10, 22, 40, 0.12);
  border-bottom: 1px solid rgba(10, 22, 40, 0.12);
  color: var(--cc-ink);
  font-family: var(--cc-display);
  font-size: clamp(1.14rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.method-section {
  padding-bottom: clamp(58px, 6vw, 88px);
}

.method-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--cc-line);
  border-left: 1px solid var(--cc-line);
}

.method-track article {
  min-height: 230px;
  padding: clamp(20px, 2.5vw, 26px);
  border-right: 1px solid var(--cc-line);
  border-bottom: 1px solid var(--cc-line);
  background: rgba(15, 31, 61, 0.44);
}

.method-track span {
  display: block;
  margin-bottom: 22px;
  color: var(--cc-gold);
  font-family: var(--cc-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0;
}

.method-track h3 {
  margin-bottom: 14px;
  font-size: clamp(1.26rem, 2vw, 1.7rem);
}

.method-track p,
.lead-grid p {
  color: rgba(245, 240, 232, 0.78);
}

.institutional-cta {
  padding: 48px 0;
  border-top: 1px solid var(--cc-line-soft);
  border-bottom: 1px solid var(--cc-line-soft);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.cta-grid h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.cta-grid p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.08rem;
}

.pre-faq-continuity {
  position: relative;
  overflow: hidden;
  background: var(--cc-off-white);
}

.faq-blueprint-column {
  position: absolute;
  top: 34px;
  right: max(0px, calc((100vw - var(--cc-max)) / 2));
  width: min(43vw, 560px);
  height: 720px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(184, 151, 74, 0.28) 19.2% 19.4%, transparent 19.6% 62%, rgba(10, 22, 40, 0.12) 62.2% 62.4%, transparent 62.6%),
    linear-gradient(0deg, transparent 0 16%, rgba(10, 22, 40, 0.12) 16.2% 16.4%, transparent 16.6% 48%, rgba(184, 151, 74, 0.18) 48.2% 48.4%, transparent 48.6%),
    linear-gradient(135deg, transparent 0 36%, rgba(184, 151, 74, 0.44) 36.2% 36.45%, transparent 36.7%),
    linear-gradient(rgba(10, 22, 40, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.055) 1px, transparent 1px);
  background-size: auto, auto, auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.42) 72%, transparent 100%);
}

.pre-faq-section,
.faq-section {
  position: relative;
  z-index: 2;
}

.pre-faq-section {
  overflow: hidden;
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.pre-faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(330px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: clamp(330px, 34vw, 470px);
  padding-right: min(27vw, 330px);
}

.pre-faq-grid > .section-title,
.faq-grid > .section-title {
  margin-bottom: 0;
}

.pre-faq-section h2 {
  max-width: 560px;
  font-size: clamp(2.05rem, 3.35vw, 3.35rem);
}

.pre-faq-copy p {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.pre-faq-building {
  position: absolute;
  z-index: 0;
  inset: clamp(8px, 1.6vw, 18px) max(-110px, calc((100vw - var(--cc-max)) / -3)) clamp(6px, 1.6vw, 18px) auto;
  width: min(52vw, 760px);
  min-height: auto;
  display: block;
  pointer-events: none;
  transform: translate3d(0, var(--pre-faq-shift, 0px), 0);
}

.pre-faq-building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: none;
  opacity: 0.56;
  mix-blend-mode: multiply;
  transform: scale(1.12);
  transform-origin: center right;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.45) 18%, #000 38%, #000 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.45) 18%, #000 38%, #000 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 78%, transparent 100%);
  mask-composite: intersect;
  animation: ambientBuildingDrift 20s ease-in-out infinite alternate;
}

.pre-faq-building::after {
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 44%, rgba(184, 151, 74, 0.14), transparent 30%),
    linear-gradient(to right, var(--cc-off-white) 0%, rgba(245, 240, 232, 0.78) 20%, rgba(245, 240, 232, 0) 50%),
    linear-gradient(to bottom, var(--cc-off-white) 0%, rgba(245, 240, 232, 0) 22%, rgba(245, 240, 232, 0) 72%, var(--cc-off-white) 100%);
}

.pre-faq-grid > .section-title,
.pre-faq-copy {
  position: relative;
  z-index: 2;
}

.faq-section {
  padding-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.faq-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(10, 22, 40, 0.16);
  background: rgba(245, 240, 232, 0.52);
}

.faq-item {
  border-bottom: 1px solid rgba(10, 22, 40, 0.16);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border: 0;
  color: var(--cc-ink);
  background: transparent;
  text-align: left;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--cc-gold);
  font-family: var(--cc-body);
  font-size: 1.2rem;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-content p {
  max-width: 760px;
  margin: 0 0 16px;
}

.lead-section {
  padding-top: clamp(64px, 6vw, 88px);
}

.lead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: start;
}

.lead-grid h2 {
  max-width: 620px;
}

.lead-grid p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 1.02rem;
}

.lead-form {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--cc-line);
  background: rgba(6, 16, 31, 0.78);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--cc-stone);
  font-family: var(--cc-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(200, 191, 168, 0.24);
  color: var(--cc-off-white);
  background: rgba(245, 240, 232, 0.045);
  padding: 13px 14px;
  border-radius: 0;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field select option {
  color: var(--cc-navy);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cc-gold);
}

.lead-form .cc-button {
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--cc-stone);
}

.form-status.success {
  color: #BBD7C4;
}

.form-status.error {
  color: #F2B8AD;
}

.cc-footer {
  color: rgba(245, 240, 232, 0.76);
  background: var(--cc-navy-deep);
  border-top: 1px solid var(--cc-line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.8fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 46px 0 34px;
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--cc-gold);
  font-family: var(--cc-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--cc-off-white);
  font-size: 1.08rem;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: var(--cc-gold-2);
}

.footer-bottom {
  width: min(100% - (var(--cc-pad) * 2), var(--cc-max));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--cc-white-line);
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.88rem;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-grid.is-visible .line-card,
.path-card.is-visible,
.application-grid.is-visible span,
.method-track.is-visible article,
.faq-list.is-visible .faq-item {
  animation: cardRise 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.problem-grid.is-visible .line-card:nth-child(2),
.path-card.is-visible:nth-child(2),
.application-grid.is-visible span:nth-child(2),
.method-track.is-visible article:nth-child(2),
.faq-list.is-visible .faq-item:nth-child(2) {
  animation-delay: 80ms;
}

.problem-grid.is-visible .line-card:nth-child(3),
.application-grid.is-visible span:nth-child(3),
.method-track.is-visible article:nth-child(3),
.faq-list.is-visible .faq-item:nth-child(3) {
  animation-delay: 150ms;
}

.problem-grid.is-visible .line-card:nth-child(4),
.application-grid.is-visible span:nth-child(4),
.method-track.is-visible article:nth-child(4),
.faq-list.is-visible .faq-item:nth-child(4) {
  animation-delay: 220ms;
}

.application-grid.is-visible span:nth-child(n + 5),
.method-track.is-visible article:nth-child(5),
.faq-list.is-visible .faq-item:nth-child(5) {
  animation-delay: 290ms;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(-6px, -4px, 0);
  }

  to {
    transform: scale(1.055) translate3d(8px, 6px, 0);
  }
}

@keyframes ambientBuildingDrift {
  from {
    transform: scale(1.12) translate3d(12px, -8px, 0);
  }

  to {
    transform: scale(1.18) translate3d(-14px, 10px, 0);
  }
}

@keyframes blueprintFloat {
  from {
    transform: translate3d(-10px, -6px, 0);
    opacity: 0.46;
  }

  to {
    transform: translate3d(10px, 8px, 0);
    opacity: 0.76;
  }
}

@keyframes blueprintCurrentBreath {
  from {
    opacity: 0.62;
    transform: translate3d(-4px, -2px, 0);
  }

  to {
    opacity: 0.9;
    transform: translate3d(4px, 3px, 0);
  }
}

@keyframes blueprintPan {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px, 18px 18px, 18px 18px;
  }
}

@keyframes blueprintTracePath {
  0%,
  16% {
    opacity: 0;
    stroke-dashoffset: 1000;
  }

  22% {
    opacity: 0.9;
  }

  62% {
    opacity: 0.78;
  }

  74%,
  100% {
    opacity: 0;
    stroke-dashoffset: -120;
  }
}

@keyframes buttonSheen {
  0%,
  56% {
    background-position: 130% 0;
  }

  78%,
  100% {
    background-position: -30% 0;
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1120px) {
  .cc-nav-links {
    gap: 16px;
    font-size: 0.78rem;
  }

  .problem-grid,
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .thesis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .thesis-grid blockquote {
    grid-column: 1 / -1;
    min-height: 160px;
  }

  .method-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .cc-nav {
    min-height: 68px;
  }

  .cc-brand {
    width: 178px;
  }

  .cc-nav-toggle {
    display: block;
  }

  .cc-nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px var(--cc-pad) 28px;
    background: rgba(6, 16, 31, 0.98);
    border-bottom: 1px solid var(--cc-line);
    transform: translateY(-112%);
    transition: transform 210ms ease;
  }

  .cc-nav-links.is-open {
    transform: translateY(0);
  }

  .cc-nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--cc-white-line);
  }

  .cc-nav-links .nav-action {
    margin-top: 14px;
    padding: 14px 16px;
    border-bottom: 0;
    text-align: center;
  }

  .cc-hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero-grid,
  .path-grid,
  .cta-grid,
  .pre-faq-grid,
  .faq-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    top: 42%;
    right: -32%;
    bottom: -16%;
    left: 22%;
    opacity: 0.46;
  }

  .hero-visual img {
    right: 0;
    width: min(88vw, 560px);
    object-position: 52% 50%;
  }

  .hero-copy {
    max-width: none;
  }

  .pre-faq-building {
    inset: 4% -22% 2% 28%;
    width: auto;
    opacity: 0.7;
  }

  .pre-faq-building img {
    transform: scale(1.18);
  }

  .faq-blueprint-column {
    right: -12vw;
    width: 75vw;
    height: 820px;
  }

  .lead-form {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .cc-nav {
    width: min(100% - 32px, 1320px);
  }

  .cc-section {
    padding: 52px 0;
  }

  .cc-hero {
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero-actions,
  .cta-actions,
  .cc-button {
    width: 100%;
  }

  .problem-grid,
  .application-grid,
  .thesis-grid,
  .method-track,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .line-card,
  .method-track article {
    min-height: auto;
  }

  .application-grid span {
    min-height: 86px;
  }

  .hero-visual {
    top: 54%;
    right: -60%;
    bottom: -10%;
    left: 4%;
    opacity: 0.32;
  }

  .hero-visual img {
    right: -8%;
    width: min(130vw, 570px);
  }

  .blueprint-card {
    inset: 0;
  }

  .pre-faq-grid {
    min-height: auto;
    padding-right: 0;
    gap: 24px;
  }

  .pre-faq-building {
    inset: 28% -42% -4% 8%;
    opacity: 0.44;
  }

  .faq-item button {
    align-items: flex-start;
    line-height: 1.05;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 460px) {
  .cc-container {
    width: min(100% - 32px, var(--cc-max));
  }

  .hero-copy {
    padding-left: 18px;
  }

  .hero-visual {
    top: 58%;
    right: -86%;
    left: 12%;
    opacity: 0.28;
  }

  .hero-visual img {
    right: -14%;
    width: min(150vw, 540px);
    object-position: 46% 50%;
  }

  .line-card,
  .path-card,
  .lead-form {
    padding: 22px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
