@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Courier+Prime:wght@400;700&display=swap');

:root {
  --blue: #0052CC;
  --blue-mid: #1A6BEA;
  --blue-light: #4A8FFF;
  --blue-pale: #EBF2FF;
  --blue-deep: #003A99;
  --blue-wash: #F5F8FF;
  --white: #FFFFFF;
  --ink: #06101E;
  --ink2: #0F1D33;
  --text: #2A3A52;
  --muted: #6B7FA0;
  --border: rgba(0, 82, 204, 0.13);
  --border2: rgba(0, 82, 204, 0.22);
  --shadow-soft: 0 8px 40px rgba(0, 82, 204, 0.10);
  --shadow-card: 0 4px 20px rgba(6, 16, 30, 0.08);
  --shadow-float: 0 20px 60px rgba(6, 16, 30, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── HEADER ──────────────────────────────────────── */
header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: 1320px;
  margin: auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  min-height: 68px;
  gap: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 10px;
}

.logo-full {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.logo-full img {
  height: 36px;
  
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 0 18px;
  height: 68px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 0 24px !important;
  border-radius: 6px !important;
  margin-left: 16px !important;
  height: 38px !important;
  font-size: 13px !important;
}

.nav-cta:hover {
  background: var(--blue-mid) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at 70% 30%, #c9deff 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 22vw, 340px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 82, 204, 0.06);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  padding: 24px 28px;
  transition: transform 0.4s ease, box-shadow 0.3s;
  cursor: default;
  z-index: 3;
}

.float-card:hover {
  box-shadow: 0 30px 80px rgba(0, 82, 204, 0.22);
}

.fc-1 {
  right: 12%;
  top: 20%;
  transform: rotate(-3deg);
  animation: floatA 6s ease-in-out infinite;
}

.fc-2 {
  right: 28%;
  top: 55%;
  transform: rotate(2deg);
  animation: floatB 7s ease-in-out infinite;
}

.fc-3 {
  right: 8%;
  top: 62%;
  transform: rotate(-1.5deg);
  animation: floatA 5.5s ease-in-out infinite reverse;
}

.fc-4 {
  right: 38%;
  top: 18%;
  transform: rotate(3deg);
  animation: floatB 8s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.fc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.fc-num span {
  font-size: 0.5em;
  opacity: 0.7;
}

.fc-label {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.fc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.pulse {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: blink 2s ease-in-out infinite;
}

.fc-num-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

/* ─── TICKER ──────────────────────────────────────── */
.ticker-wrap {
  background: var(--blue);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 40s linear infinite;
  padding: 14px 0;
  gap: 0;
}

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

.ticker-track span {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker-track .sep {
  color: var(--blue-light);
  padding: 0 4px;
  font-size: 8px;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about-section {
  padding: 120px 48px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 64px;
}

.section-num {
  color: var(--blue);
  font-weight: 700;
}

.about-scatter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  align-items: start;
  position: relative;
}

.scatter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scatter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.sc-main {
  grid-column: 1 / 3;
}

.sc-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.sc-main h2 em {
  font-style: italic;
  color: var(--blue);
}

.sc-main p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 560px;
}

.sc-blue {
  background: var(--blue);
  border-color: var(--blue);
  grid-column: 3;
}

.sc-blue .sc-tag {
  color: rgba(255, 255, 255, 0.55);
}

.sc-blue .sc-big {
  color: var(--white);
}

.sc-blue .sc-sub {
  color: rgba(255, 255, 255, 0.55);
}

.sc-outline {
  border: 2px solid var(--border2);
  background: var(--blue-wash);
}

.sc-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.sc-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.sc-big sup {
  font-size: 0.45em;
  opacity: 0.7;
}

.sc-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.sc-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}

.sc-bar-fill {
  height: 100%;
  width: 98.4%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.sc-rot-pos {
  transform: rotate(1.2deg);
}

.sc-rot-neg {
  transform: rotate(-1.5deg);
}

.sc-rot-pos:hover,
.sc-rot-neg:hover {
  transform: translateY(-6px) rotate(0deg);
}

.sf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 82, 204, 0.12);
  line-height: 1;
  margin-bottom: -8px;
}

.sc-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.sc-feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.sc-quote {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.sc-blue-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.sc-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 16px;
}

.sc-quote cite {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── CAPABILITIES ─────────────────────────────────── */
.cap-section {
  padding: 120px 0;
  background: var(--blue-wash);
}

.cap-section .cap-header,
.cap-section .cap-mosaic {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.cap-header {
  max-width: 1320px;
  margin: 0 auto 72px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.cap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 8px;
}

.cap-title em {
  font-style: italic;
  color: var(--blue);
}

.cap-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.85;
  padding-top: 16px;
}

.cap-mosaic {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.cm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.cm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.cm-hero-card { grid-column: span 5; grid-row: span 2; }
.cm-tall-card { grid-column: span 3; grid-row: span 2; }
.cm-stat-card { grid-column: span 4; }
.cm-small-card { grid-column: span 3; }
.cm-wide-card { grid-column: span 7; }

.cm-blue {
  background: var(--blue);
  border-color: var(--blue);
}
.cm-visual {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin: 20px 0;
}

.cv-bar {
  background: var(--blue-pale);
  border-radius: 3px;
  width: 100%;
  transition: background 0.3s, transform 0.3s;
  flex: 1;
  border: 1px solid var(--border);
}

.cm-card:hover .cv-bar {
  background: var(--blue-light);
  transform: scaleY(1.05); /* Efeito sutil ao passar o mouse */
}

.cm-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 82, 204, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.cm-blue .cm-num {
  color: rgba(255, 255, 255, 0.12);
}

.cm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}

.cm-blue h3 {
  color: var(--white);
}

.cm-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.cm-blue p {
  color: rgba(255, 255, 255, 0.65);
}

.cm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.cm-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: 4px;
}

.cm-link-inv {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cm-link-inv:hover {
  color: var(--white) !important;
}

.cv-visual {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin: 20px 0;
}

.cv-bar {
  background: var(--blue-pale);
  border-radius: 3px;
  width: 100%;
  transition: background 0.3s;
  flex: 1;
  border: 1px solid var(--border);
}

.cm-card:hover .cv-bar {
  background: var(--blue-light);
}

.cm-inline-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
}

.cis-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.cis-l {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cm-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.csr-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.csr-l {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── PROCESS ─────────────────────────────────────── */
.process-section {
  padding: 120px 48px;
  background: var(--white);
  max-width: 1320px;
  margin: 0 auto;
}

.process-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.process-title-wrap {
  margin-bottom: 80px;
}

.process-title-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.process-title-wrap h2 em {
  font-style: italic;
  color: var(--blue);
}

.process-title-wrap p {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.85;
}

.process-flow {
  position: relative;
  max-width: 900px;
}

.pf-line {
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(0, 82, 204, 0.1));
  transform: translateX(-50%);
}

.pf-step {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  margin-bottom: 60px;
  gap: 0;
}

.pf-dot {
  grid-column: 2;
  justify-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  margin-top: 28px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.pf-left .pf-card {
  grid-column: 1;
  grid-row: 1;
  padding-right: 48px;
  text-align: right;
}

.pf-left .pf-dot {
  grid-column: 2;
  grid-row: 1;
}

.pf-right .pf-card {
  grid-column: 3;
  grid-row: 1;
  padding-left: 48px;
}

.pf-right .pf-dot {
  grid-column: 2;
  grid-row: 1;
}

.pf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pf-act {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(0, 82, 204, 0.15);
  line-height: 1;
  margin-bottom: 4px;
  font-style: italic;
}

.pf-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.pf-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── CAREERS ─────────────────────────────────────── */
.careers-section {
  padding: 120px 48px;
  background: var(--blue-wash);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.careers-left .section-num {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: block;
}

.careers-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.careers-left h2 em {
  font-style: italic;
  color: var(--blue);
}

.careers-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 380px;
}

.careers-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.job-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 0.25s, background 0.2s;
  border-radius: 0;
}

.job-tile:hover {
  padding-left: 20px;
  background: var(--white);
  border-radius: 12px;
  margin: 0 -20px;
  padding: 22px 20px;
}

.jt-blue {
  background: var(--blue);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 4px;
  transition: padding-left 0.25s, background 0.2s;
  border-bottom: none;
}

.jt-blue:hover {
  background: var(--blue-mid);
  padding-left: 24px;
}

.jt-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.jt-blue .jt-info h4 {
  color: var(--white);
}

.jt-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jt-chips span {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}

.jt-chips-inv span {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

.jt-arrow {
  font-size: 20px;
  color: var(--blue);
  transition: transform 0.2s;
}

.jt-blue .jt-arrow {
  color: rgba(255, 255, 255, 0.8);
}

.job-tile:hover .jt-arrow {
  transform: translateX(4px) translateY(-4px);
}

/* ─── CTA ─────────────────────────────────────────── */
.cta-section {
  padding: 140px 48px;
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.cta-ring-1 { width: 400px; height: 400px; }
.cta-ring-2 { width: 700px; height: 700px; }
.cta-ring-3 { width: 1000px; height: 1000px; }

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: auto;
}

.cta-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-inner h2 em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  line-height: 1.85;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-solid {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-solid:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 82, 204, 0.3);
}

.btn-solid.btn-lg {
  padding: 17px 40px;
  font-size: 15px;
}

.btn-line {
  background: transparent;
  color: var(--blue);
  padding: 13px 30px;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-line:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 16px 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
}

.link-arrow {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 10px;
}

.link-arrow-sm {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  transition: gap 0.2s;
}

.link-arrow-sm:hover {
  gap: 8px;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 72px 48px 40px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-logo {
  height: 26px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fl-col h6 {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.fl-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.fl-col a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
}

.footer-domain {
  color: rgba(255, 255, 255, 0.15);
}

/* ─── CONTACT PAGE ────────────────────────────────── */
.contact-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 100px;
}

.contact-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.contact-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-left h1 em {
  font-style: italic;
  color: var(--blue);
}

.contact-left > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.cd-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cd-row h5 {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cd-row p {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* ─── FORM BOX ────────────────────────────────────── */
.form-box {
  background: var(--blue-wash);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.btn-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

/* ─── CONTACT RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 120px 24px 80px;
  }

  .contact-left {
    position: static;
  }

  .form-box {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { padding: 120px 32px 60px; }
  .float-card { display: none; }
  .about-scatter { grid-template-columns: 1fr 1fr; }
  .sc-main { grid-column: 1 / 3; }
  .cap-header { flex-direction: column; gap: 24px; }
  .cap-mosaic { grid-template-columns: repeat(6, 1fr); }
  .cm-hero-card { grid-column: span 6; }
  .cm-tall-card { grid-column: span 3; }
  .cm-stat-card { grid-column: span 3; }
  .cm-small-card { grid-column: span 3; }
  .cm-wide-card { grid-column: span 6; }
  .careers-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 20px; }
  .cap-section .cap-header, .cap-section .cap-mosaic { padding: 0 20px; }
}

@media (max-width: 768px) {
  .nav-wrap { padding: 0 20px; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    box-shadow: var(--shadow-card);
  }
  
  .nav-links.open { display: flex; }
  
  .nav-links a {
    height: auto;
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links a:last-child { border-bottom: none; }
  
  .nav-toggle { display: flex; }
  
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .about-section { padding: 80px 20px; }
  .about-scatter { grid-template-columns: 1fr; }
  .sc-main, .sc-blue, .sc-outline { grid-column: 1; }
  .sc-rot-pos, .sc-rot-neg { transform: none; }
  
  .cap-section { padding: 80px 20px; }
  .cap-mosaic { grid-template-columns: 1fr; }
  .cm-hero-card, .cm-tall-card, .cm-stat-card, .cm-small-card, .cm-wide-card { grid-column: span 1; }
  
  .process-section { padding: 80px 20px; }
  .pf-line { display: none; }
  .pf-step { grid-template-columns: 1fr; }
  .pf-dot { display: none; }
  .pf-left .pf-card { grid-column: 1; text-align: left; padding-right: 0; }
  .pf-right .pf-card { grid-column: 1; padding-left: 0; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .hero-bg-text { display: none; }
  .cta-section { padding: 100px 20px; }
}