@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --ink: #07111f;
  --ink-2: #18263a;
  --muted: #6b7a90;
  --line: rgba(26, 44, 70, .14);
  --soft: #f5f8fb;
  --white: #ffffff;
  --blue: #075ee6;
  --blue-2: #003d9e;
  --cyan: #19c8e7;
  --mint: #8be9e0;
  --amber: #ffb547;
  --coral: #ff6b5f;
  --green: #16a66a;
  --dark: #06121e;
  --shadow: 0 24px 70px rgba(6, 18, 30, .18);
  --radius: 8px;
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.language-toggle {
  min-width: 66px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(7, 94, 230, .24);
  border-radius: var(--radius);
  background: #edf4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--blue);
  background: #e1edff;
  outline: none;
}
.standalone-language-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
}

html[lang="ar"] {
  --font-body: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  --font-display: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
}
html[lang="ar"] body { line-height: 1.8; }
html[lang="ar"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select { text-align: right; }
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="url"] {
  direction: ltr;
  text-align: left;
}
html[dir="rtl"] .nav a::after { transform-origin: right; }
html[dir="rtl"] .standalone-language-toggle { right: auto; left: 16px; }
html[dir="rtl"] .hero-shade { transform: scaleX(-1); }
html[dir="rtl"] .hero-v2 { direction: ltr; }
html[dir="rtl"] .hero-content {
  direction: rtl;
  justify-self: end;
  text-align: right;
}
html[dir="rtl"] .hero-console {
  direction: rtl;
  right: auto;
  left: 6vw;
}
html[dir="rtl"] .admin-table,
html[dir="rtl"] table { text-align: right; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.glass-nav {
  background: rgba(250, 252, 255, .78);
  box-shadow: 0 10px 40px rgba(7, 17, 31, .06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  font-weight: 900;
  color: var(--ink);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 7px;
}
.brand span { font-size: 21px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle {
  flex-direction: column;
  gap: 4px;
}
.menu-toggle.is-open span {
  opacity: 0;
}
.menu-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 850;
}
.nav a {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover,
.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 17, 31, .14);
}
.header-action {
  color: var(--blue);
  border-color: rgba(7, 94, 230, .22);
}
.btn.primary {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #0aa7ff);
}
.btn.ghost,
.btn.ghost-light {
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
}
.btn.ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-v2 {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
}
.hero-bg,
.signal-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  z-index: -3;
  object-fit: cover;
}
.signal-canvas { z-index: -1; opacity: .58; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, .88) 0%, rgba(3, 9, 18, .56) 38%, rgba(3, 9, 18, .08) 72%, rgba(3, 9, 18, .24) 100%),
    linear-gradient(180deg, rgba(3, 9, 18, .02), rgba(3, 9, 18, .7));
}
.hero-content {
  width: min(820px, 88vw);
  padding: 0 6vw 9vh;
}
.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(244, 249, 255, .86);
  font-size: clamp(16px, 1.25vw, 19px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-console {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  width: min(360px, 86vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(5, 17, 31, .62);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}
.console-head,
.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.console-head {
  justify-content: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(139, 233, 224, .7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(139, 233, 224, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 233, 224, 0); }
}
.console-row {
  padding: 15px 0 0;
  color: rgba(255, 255, 255, .78);
}
.console-row strong {
  margin-left: auto;
  font-size: 30px;
  color: var(--white);
  line-height: 1;
}
.console-row em {
  min-width: 44px;
  color: var(--mint);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-belt {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 6vw;
  background: var(--line);
}
.proof-item {
  min-height: 118px;
  padding: 24px;
  background: var(--white);
}
.proof-item strong {
  display: block;
  font-size: 22px;
}
.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.vision-split,
.operations,
.experience-lab,
.coverage,
.careers-cta,
.premium-contact,
.jobs-layout,
.admin-shell {
  padding: 92px 6vw;
}

.vision-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  background:
    linear-gradient(115deg, rgba(245, 248, 251, 1), rgba(255, 255, 255, 1)),
    var(--soft);
}
.section-kicker h2,
.section-head h2,
.lab-copy h2,
.coverage-copy h2,
.careers-cta h2,
.contact-copy h2,
.page-hero h1,
.careers-hero h1,
.apply-panel h2,
.login-panel h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}
.section-head p,
.lab-copy p,
.coverage-copy p,
.contact-copy p,
.careers-cta p,
.page-hero p,
.careers-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
}
.vision-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.glass-card,
.ops-card,
.ticket-column,
.contact-form,
.apply-panel,
.admin-card,
.login-panel,
.job-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 54px rgba(7, 17, 31, .08);
}
.glass-card {
  min-height: 280px;
  padding: 26px;
}
.glass-card span,
.ops-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}
.glass-card h3,
.ops-card h3,
.ticket-column strong,
.job-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
}
.glass-card p,
.ops-card p,
.ticket-column p,
.job-card p {
  color: var(--muted);
}

.operations {
  background: var(--white);
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.ops-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  height: 100%;
  min-height: 230px;
  padding: 26px 26px 30px;
  overflow: hidden;
}
.ops-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}
.ops-card .ops-number {
  width: fit-content;
}
.ops-card h3 {
  max-width: 15ch;
}
.ops-card p {
  margin: 0;
  max-width: 32ch;
  align-self: end;
}

.experience-lab {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 36px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 18, 30, .98), rgba(8, 36, 54, .98)),
    var(--dark);
}
.experience-lab h2 { color: var(--white); }
.experience-lab p { color: rgba(235, 244, 255, .72); }
.ticket-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-self: center;
}
.ticket-column {
  min-height: 310px;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}
.ticket-column.accent {
  background: linear-gradient(145deg, rgba(7, 94, 230, .82), rgba(25, 200, 231, .42));
}
.ticket-column span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--mint);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
}
.ticket-column strong { color: var(--white); }
.ticket-column p { color: rgba(255, 255, 255, .78); }

.coverage {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: center;
  background: #f7fbff;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.coverage-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.coverage-stats strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
}
.coverage-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.coverage-board {
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #071827;
  color: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.coverage-board-head,
.launch-board-head,
.launch-response {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.coverage-board-head > div,
.launch-board-head {
  min-width: 0;
}
.coverage-board-head span,
.launch-board-head span {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.coverage-board-head strong,
.launch-board-head strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}
.coverage-board-head .coverage-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(139, 233, 224, .24);
  border-radius: 7px;
  background: rgba(139, 233, 224, .08);
  color: var(--mint);
  text-transform: none;
}
.coverage-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(139, 233, 224, .1);
}
.coverage-board-rows {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.coverage-board-rows article {
  min-height: 106px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.coverage-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}
.coverage-board-rows strong { display: block; font-size: 15px; }
.coverage-board-rows p {
  max-width: 520px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}
.coverage-tag {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-weight: 850;
}
.coverage-channels {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.coverage-channels > strong { font-size: 12px; }
.coverage-channels div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.coverage-channels span {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 800;
}

.launch-board {
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.launch-board-head {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.launch-board-head span { color: var(--green); }
.launch-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.launch-steps li {
  min-height: 105px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.launch-steps li > span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7, 94, 230, .22);
  border-radius: 7px;
  background: #edf4ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}
.launch-steps strong { font-size: 15px; }
.launch-steps p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.launch-response { padding-top: 18px; }
.launch-response span { color: var(--muted); font-size: 12px; font-weight: 800; }
.launch-response strong { color: var(--blue); font-size: 13px; }

.careers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 18, 30, .94), rgba(6, 18, 30, .74)),
    url("/assets/tcore-operations-hero.png") center/cover;
}
.careers-cta h2,
.careers-cta p { color: var(--white); }
.careers-cta p { opacity: .78; }

.premium-contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .65fr);
  gap: 44px;
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 1), rgba(255, 255, 255, 1));
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}
.contact-form,
.apply-panel form,
.login-panel form,
.admin-form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(25, 200, 231, .2);
  border-color: rgba(7, 94, 230, .45);
}
textarea { resize: vertical; }
.contact-form {
  padding: 26px;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}
.form-status.error { color: #bd293c; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 6vw;
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}
.site-footer div {
  display: flex;
  gap: 18px;
}
.site-footer a { color: var(--white); font-weight: 900; }

.careers-page {
  background: #f7fbff;
}
.careers-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}
.careers-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}
.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 18, .92), rgba(3, 9, 18, .45), rgba(3, 9, 18, .72));
}
.careers-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 6vw 70px;
}
.careers-hero h1,
.careers-hero p { color: var(--white); }
.jobs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: start;
}
.section-head.small h2 { font-size: clamp(30px, 4vw, 48px); }
.jobs-list {
  display: grid;
  gap: 14px;
}
.job-card {
  padding: 24px;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}
.job-card ul {
  margin: 10px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}
.apply-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
}
.premium-apply {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.skeleton,
.empty-state {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
}

.admin-body { background: var(--soft); }
.admin-shell { min-height: calc(100vh - 72px); }
.login-panel {
  max-width: 460px;
  margin: 0 auto;
  padding: 28px;
}
.login-panel h1 {
  font-size: clamp(28px, 3.2vw, 38px);
}
.admin-dashboard { display: grid; gap: 20px; }
.admin-grid {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 20px;
}
.admin-card { padding: 20px; }
.admin-card.wide { overflow: hidden; }
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.card-head h2 {
  margin: 0;
  font-size: 22px;
}
.card-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.admin-list { display: grid; gap: 10px; }
.admin-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.admin-row strong { display: block; }
.admin-row span {
  color: var(--muted);
  font-size: 13px;
}
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.mini-btn,
.link-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 950;
  cursor: pointer;
}
.mini-btn.danger { color: #bd293c; }
.admin-table { overflow: auto; }
.admin-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.page-body {
  background: #f8fbff;
}
.subhero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}
.subhero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, .92), rgba(3, 9, 18, .54), rgba(3, 9, 18, .18)),
    linear-gradient(180deg, rgba(3, 9, 18, .08), rgba(3, 9, 18, .62));
}
.subhero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 0 6vw 70px;
}
.subhero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}
.subhero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(244, 249, 255, .82);
  font-size: clamp(16px, 1.25vw, 19px);
}
.breadcrumb {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-section {
  padding: 82px 6vw;
}
.page-section.light {
  background: var(--white);
}
.page-section.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, #06121e, #0a1c2e);
}
.page-section.dark h2,
.page-section.dark h3 {
  color: var(--white);
}
.page-section.dark p {
  color: rgba(235, 244, 255, .75);
}
.page-section.alt {
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 1), rgba(255, 255, 255, 1));
}
.section-intro {
  max-width: 850px;
  margin-bottom: 34px;
}
.section-intro h2,
.split-copy h2,
.contact-page-copy h2,
.admin-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}
.section-intro p,
.split-copy p,
.contact-page-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
}
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}
.statement-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}
.statement-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.statement-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-family: var(--font-display);
}
.feature-grid,
.capability-grid,
.industry-grid,
.insights-grid,
.trust-grid,
.metric-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card,
.capability-card,
.industry-card,
.insight-card,
.trust-card,
.metric-card,
.process-card,
.service-row,
.contact-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 54px rgba(7, 17, 31, .07);
}
.feature-card,
.capability-card,
.industry-card,
.insight-card,
.trust-card,
.metric-card,
.process-card,
.contact-tile {
  padding: 24px;
}
.feature-card span,
.capability-card span,
.industry-card span,
.trust-card span,
.process-card span,
.service-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 94, 230, .08);
  font-size: 12px;
  font-weight: 950;
}
.feature-card h3,
.capability-card h3,
.industry-card h3,
.insight-card h3,
.trust-card h3,
.metric-card h3,
.process-card h3,
.service-row h3,
.contact-tile h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}
.feature-card p,
.capability-card p,
.industry-card p,
.insight-card p,
.trust-card p,
.metric-card p,
.process-card p,
.service-row p,
.contact-tile p {
  margin: 0;
  color: var(--muted);
}
.capability-card {
  min-height: 250px;
}
.industry-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .96));
}
.service-table {
  display: grid;
  gap: 12px;
}
.service-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: center;
  padding: 20px;
}
.service-row strong {
  color: var(--ink);
}
.process-grid {
  counter-reset: process;
}
.process-card {
  position: relative;
  min-height: 210px;
}
.process-card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(7, 94, 230, .16);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}
.quote-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 94, 230, .92), rgba(6, 18, 30, .94)),
    url("/assets/tcore-operations-hero.png") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}
.quote-band h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}
.quote-band p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}
.insight-card {
  min-height: 260px;
}
.insight-card time {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .7fr);
  gap: 40px;
  align-items: start;
}
.contact-tiles {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-tiles a {
  color: var(--blue);
  font-weight: 950;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.compact-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 82px 6vw;
}
.compact-page h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}
.compact-page h2 {
  margin-top: 34px;
  font-size: 24px;
}
.compact-page p,
.compact-page li {
  color: var(--muted);
}
.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.admin-hero p {
  max-width: 680px;
  color: var(--muted);
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.admin-metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 17, 31, .06);
}
.admin-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.admin-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.admin-tabs a {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
}
.admin-tabs a.active {
  color: var(--white);
  border-color: transparent;
  background: var(--blue);
}
.admin-panel {
  display: none;
}
.admin-panel.active {
  display: block;
}
.admin-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.admin-tools label {
  min-width: 180px;
  flex: 1;
}
.admin-tools .btn {
  min-height: 43px;
}
.admin-hero-actions,
.form-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.admin-grid.equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}
.admin-grid.editor-grid {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
}
.admin-list.compact {
  gap: 8px;
}
.admin-row.slim {
  padding: 12px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 94, 230, .08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.mini-muted {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.two-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.checkbox-line,
.checkbox-grid label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
}
.checkbox-line input,
.checkbox-grid input {
  width: auto;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.compact-help {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}
.analytics-tile {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.analytics-tile span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.analytics-tile strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  word-break: break-word;
}
.analytics-layout {
  margin-top: 8px;
}
.admin-subpanel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}
.bar-list {
  display: grid;
  gap: 12px;
}
.bar-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 0 0;
}
.bar-row span,
.bar-row strong {
  position: relative;
  z-index: 1;
}
.bar-row span {
  overflow: hidden;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bar-row strong {
  color: var(--blue);
}
.bar-row em {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.admin-table.compact table {
  min-width: 560px;
}
.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.rich-toolbar button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2);
  background: var(--white);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}
.preview-pane {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.preview-label {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.preview-pane h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
}
.preview-pane time {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.preview-body {
  margin-top: 14px;
  color: var(--ink-2);
}
.preview-body h3,
.preview-body h4 {
  margin: 18px 0 8px;
}
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.pipeline-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.pipeline-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.pipeline-item strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 28px;
}
.compact-note {
  min-width: 210px;
  min-height: 70px;
  padding: 9px;
  font-size: 13px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.news-card {
  display: grid;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(7, 17, 31, .07);
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.news-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}
.news-card time,
.news-detail time {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}
.news-card p {
  margin: 0;
  color: var(--muted);
}
.mini-link {
  color: var(--blue);
  font-weight: 950;
}
.news-detail {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
}
.news-detail > img {
  width: 100%;
  margin: 24px 0;
  border-radius: var(--radius);
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.news-detail h1 {
  margin: 12px 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}
.news-excerpt {
  color: var(--muted);
  font-size: 18px;
}
.news-body {
  margin-top: 32px;
  color: var(--ink-2);
  font-size: 17px;
}
.news-body h2,
.news-body h3 {
  margin: 32px 0 12px;
  color: var(--ink);
}
.news-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
}
.news-body a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -5vh 6vw 8vh;
  }
  html[dir="rtl"] .hero-console { left: auto; }
  .vision-split,
  .experience-lab,
  .coverage,
  .premium-contact,
  .jobs-layout,
  .admin-grid,
  .admin-grid.equal,
  .admin-grid.editor-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .capability-grid,
  .industry-grid,
  .insights-grid,
  .news-grid,
  .trust-grid,
  .metric-grid,
  .process-grid,
  .admin-metrics,
  .pipeline-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-layout,
  .quote-band,
  .contact-page,
  .service-row {
    grid-template-columns: 1fr;
  }
  .ops-grid,
  .ticket-stage {
    grid-template-columns: 1fr 1fr;
  }
  .apply-panel { position: static; }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    width: 100vw;
    max-width: 100vw;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 10px 14px;
    padding: 12px 20px;
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand span {
    font-size: 20px;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 2;
  }
  .site-header.is-enhanced .nav,
  .site-header.is-enhanced .header-action {
    display: none;
  }
  .site-header.nav-open .nav {
    display: grid;
  }
  .site-header.nav-open .header-action {
    display: inline-flex;
  }
  .nav {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    padding-top: 6px;
    font-size: 15px;
  }
  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a::after {
    display: none;
  }
  .nav .language-toggle {
    width: 100%;
    margin-top: 10px;
  }
  .header-action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }
  .hero-v2 {
    display: block;
    min-height: auto;
    padding: 44px 0 36px;
  }
  .hero-bg {
    object-position: 62% center;
  }
  .signal-canvas {
    display: none;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 9, 18, .92) 0%, rgba(3, 9, 18, .68) 62%, rgba(3, 9, 18, .4) 100%),
      linear-gradient(180deg, rgba(3, 9, 18, .18), rgba(3, 9, 18, .78));
  }
  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 20px;
    padding: 36px 0 0;
  }
  .hero-content .eyebrow {
    max-width: 320px;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.35;
  }
  .hero-content h1 {
    max-width: 11ch;
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1.06;
  }
  .hero-lead {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }
  .hero-actions .btn { width: 100%; }
  .hero-console {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 28px 20px 0;
    padding: 16px;
    overflow: hidden;
  }
  .console-head {
    padding-bottom: 12px;
  }
  .console-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-top: 13px;
  }
  .console-row span {
    min-width: 0;
  }
  .console-row strong {
    margin-left: 0;
    font-size: 26px;
  }
  .console-row em {
    min-width: 34px;
  }
  .proof-belt,
  .vision-panels,
  .ops-grid,
  .ticket-stage,
  .coverage-stats {
    grid-template-columns: 1fr;
  }
  .ops-grid {
    grid-auto-rows: auto;
  }
  .ops-card {
    min-height: 0;
  }
  .ops-card p {
    align-self: start;
  }
  .proof-belt {
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .proof-item {
    min-width: 0;
    min-height: 96px;
    padding: 18px 20px;
  }
  .proof-item:last-child {
    grid-column: 1 / -1;
  }
  .vision-split,
  .operations,
  .experience-lab,
  .coverage,
  .careers-cta,
  .premium-contact,
  .jobs-layout,
  .admin-shell {
    padding: 64px 20px;
  }
  .careers-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .coverage-board,
  .launch-board {
    min-height: 0;
    padding: 20px;
  }
  .coverage-board-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .coverage-board-rows article {
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .coverage-tag {
    grid-column: 2;
    justify-self: start;
  }
  .coverage-channels {
    align-items: flex-start;
    flex-direction: column;
  }
  .coverage-channels div { justify-content: flex-start; }
  .launch-response {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .careers-hero { min-height: 520px; }
  .careers-hero-copy { padding: 0 20px 58px; }
  .careers-hero h1 { font-size: 44px; }
  .subhero { min-height: 420px; }
  .subhero-content,
  .page-section,
  .compact-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .subhero h1 { font-size: clamp(34px, 10vw, 46px); }
  .feature-grid,
  .capability-grid,
  .industry-grid,
  .insights-grid,
  .news-grid,
  .trust-grid,
  .metric-grid,
  .process-grid,
  .admin-metrics,
  .pipeline-grid {
    grid-template-columns: 1fr;
  }
  .admin-hero {
    flex-direction: column;
  }
  .two-field-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .admin-tools label {
    min-width: 0;
    flex-basis: 100%;
  }
  .admin-subpanel {
    padding: 14px;
  }
  .section-head.small h2,
  .careers-hero h1 {
    font-size: 36px;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 20px;
  }
  html[dir="rtl"] .menu-toggle {
    right: auto;
    left: 20px;
  }
}
