/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --nav-bg: #020617;
  --primary: #0ea5e9;
  --primary-soft: rgba(56, 189, 248, 0.14);
  --bg: #020617;
  --bg-light: #f4f6fb;
  --white: #ffffff;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow-soft: 0 15px 35px rgba(15, 23, 42, 0.35);
  --radius-lg: 1.1rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
  background: var(--bg-light);
}

.section-alt {
  background: #f1f5f9;
}

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.section-title-left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-subtitle-left {
  text-align: left;
  margin-left: 0;
}

/* all section text darker on light backgrounds */
.section p {
  color: #4b5563;
}

/* ========== NAVBAR ========== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #020617, #020d1f);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.8);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

/* UPDATED LOGO STYLE */
.brand-logo {
  width: 110px;
  height: 110px;
  border-radius: 0%;
  object-fit: cover;
  background: #020617; /* same as navbar */
  padding: 6px;
  /* border: 2px solid rgba(56, 189, 248, 0.55);
  box-shadow:
    0 0 18px rgba(56, 189, 248, 0.45),
    0 0 6px rgba(56, 189, 248, 0.65); */
}

/* UPDATED BRAND TEXT STYLE */
.nav-brand span {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  text-transform: uppercase;
  background: linear-gradient(120deg, #e5f2ff, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.55);
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #e5f2ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ========== HOME HERO ========== */
.hero {
  position: relative;
  padding: 4.2rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(96, 165, 250, 0.16), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(15, 118, 110, 0.25), transparent 60%),
    #020617;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
  filter: blur(4px);
  opacity: 0.9;
  animation: heroGlow 18s linear infinite;
  pointer-events: none;
}

.hero::before {
  top: -220px;
  left: -220px;
}

.hero::after {
  bottom: -260px;
  right: -260px;
  animation-direction: reverse;
}

@keyframes heroGlow {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(15px, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.15rem;
  margin-bottom: 0.9rem;
  color: #f9fafb;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  color: #cbd5f5;
  max-width: 540px;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 0.78rem;
  color: #e5f2ff;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

/* hero actions & stats */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.stat {
  min-width: 90px;
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9fafb;
}

.stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ========== HERO VISUAL ========== */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-visual {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #38bdf8, #0f172a 65%, #020617 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

#networkCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========== SNAPSHOT BAR ========== */
.snapshot-bar {
  background: #020617;
  border-top: 1px solid #0f172a;
  border-bottom: 1px solid #0f172a;
}

.snapshot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0.85rem 0 0.95rem;
  align-items: flex-start;
  justify-content: space-between;
}

.snapshot-item {
  flex: 1 1 220px;
  min-width: 0;
}

.snapshot-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5f3fc;
  margin-bottom: 0.25rem;
}

.snapshot-text {
  font-size: 0.84rem;
  color: #cbd5f5;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #0b1120;
  box-shadow: 0 12px 22px rgba(56, 189, 248, 0.45);
}

.btn-primary:hover {
  background: #38bdf8;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #e5f2ff;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
}

/* ========== CARDS / GRIDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* lists inside cards */
.card-list {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  color: #4b5563;
  font-size: 0.86rem;
}

.card-list li + li {
  margin-top: 0.2rem;
}

/* What we deliver – hover effect (used for multiple sections) */
.what-we-do .card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  z-index: 0;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.what-we-do .card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, #0ea5e9, transparent 60%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.18s ease;
}

.what-we-do .card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  background: #ffffff;
}

.what-we-do .card:hover::before {
  opacity: 0.25;
}

/* ========== DELIVERY ENGINE SECTION ========== */
.engine-section {
  background: #f8fafc;
}

.engine-grid .card {
  text-align: left;
}

/* ========== GLOBAL REACH ========== */
.global-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.global-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.global-stat-card {
  flex: 1 1 180px;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.global-stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
}

.global-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.global-regions h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.region-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.78rem;
  color: #0f172a;
  background: #ffffff;
}

.small-note {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ========== CASE STUDIES SECTION ========== */
.case-studies {
  background: #ffffff;
}

.case-studies .card-grid {
  gap: 1.6rem;
}

/* ========== TECH STRIP ========== */
.tech-strip {
  background: #f1f5f9;
  text-align: left;
}

.tech-strip .section-title {
  text-align: left;
}

.tech-pills {
  margin-top: 1rem;
}

.tech-pills .region-pill {
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
}

/* ========== HOW WE DELIVER (STEPS) ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(148, 163, 184, 0.9);
}

.step-card h3 {
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== WHY A10 ========== */
.why-a10 {
  background: #ffffff;
}

/* ========== CTA BAND (HOME) ========== */
.cta-band {
  background: #f4f6fb;
  padding-top: 2.3rem;
  padding-bottom: 3rem;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 0.5rem;
  padding: 1.8rem 2rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(37, 99, 235, 0.3), transparent 60%),
    #020617;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-copy h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: #f9fafb;
}

.cta-copy p {
  font-size: 0.86rem;
  color: #cbd5f5;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-actions .btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: transparent;
}

/* ========== SERVICES PAGE ========== */
.sub-hero {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.2), transparent 55%),
    #020617;
  padding: 3.2rem 0 2.8rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.sub-hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5f3fc;
  margin-bottom: 0.7rem;
}

.sub-hero h1 {
  font-size: 2.1rem;
  color: #f9fafb;
  margin-bottom: 0.7rem;
}

.sub-hero h1 span {
  color: var(--primary);
}

.sub-hero p {
  color: #cbd5f5;
  max-width: 560px;
  font-size: 0.96rem;
}

.sub-hero-highlight {
  background: rgba(15, 23, 42, 0.86);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.sub-hero-highlight h3 {
  font-size: 1rem;
  color: #e5f2ff;
  margin-bottom: 0.6rem;
}

.sub-hero-highlight ul {
  list-style: none;
  font-size: 0.86rem;
  color: #9ca3af;
}

.sub-hero-highlight li + li {
  margin-top: 0.3rem;
}

/* middle layout on services page */
.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.project-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-point h3 {
  font-size: 0.98rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.project-point p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.project-metrics {
  display: grid;
  gap: 0.9rem;
}

.project-metric-card {
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.project-metric-label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.project-metric-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

/* Remote & Managed Support */
.remote-managed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.remote-header {
  max-width: 640px;
}

.remote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.remote-block {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.remote-block h3 {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.remote-block p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.remote-cta {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.remote-cta-text h3 {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.remote-cta-text p {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ========== PARTNERS / DELIVERY ECOSYSTEM PAGE ========== */
.page-hero {
  padding: 3.2rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.22), transparent 55%),
    #020617;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.page-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.45rem;
}

.page-hero-text h1 {
  font-size: 2.1rem;
  color: #f9fafb;
  margin-bottom: 0.7rem;
}

.page-hero-text h1 span {
  color: var(--primary);
}

.page-hero-subtitle {
  max-width: 520px;
  color: #cbd5f5;
  font-size: 0.98rem;
}

.page-hero-meta {
  display: flex;
  justify-content: flex-end;
}

.page-hero-card {
  max-width: 320px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  border-radius: 1.3rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.page-hero-card .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.5rem;
}

.page-hero-card ul {
  list-style: none;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.page-hero-card li + li {
  margin-top: 0.25rem;
}

/* Partner network section */
.partner-eco-layout {
  display: block;
}

.partner-eco-copy {
  max-width: 640px;
  margin: 0 auto 2rem auto;
}

.partner-eco-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.partner-eco-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.partner-eco-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.6);
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.15),
    0 0 20px rgba(56, 189, 248, 0.35);
}

/* Workflow large card (How A10 works…) */
.workflow-card-wrapper {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  border: 1px solid #e5e7eb;
}

.workflow-card-wrapper:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.6);
  background: #ffffff;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.20),
    0 0 24px rgba(56, 189, 248, 0.40);
}

/* ========== CAREER PAGE STYLES ========== */
.hero-career {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(37, 99, 235, 0.36), transparent 60%),
    linear-gradient(135deg, #020617, #02081f);
  color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.hero-career::before,
.hero-career::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.5), transparent 65%);
  filter: blur(6px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-career::before {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -160px;
}

.hero-career::after {
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: -220px;
}

.hero-career .hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.8rem;
}

.hero-career .hero-text {
  flex: 1 1 340px;
}

.hero-career h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-career p {
  max-width: 640px;
  margin-bottom: 1.5rem;
  color: #cbd5f5;
}

.hero-career .hero-side {
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat {
  border-radius: 1.2rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.9);
}

.hero-stat span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e5f2ff;
}

.hero-stat p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.hero-pill {
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.85rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
}

/* career sections reuse .section */

.section-lead {
  max-width: 760px;
  margin-bottom: 2.2rem;
  font-size: 0.98rem;
  color: #4b5563;
}

/* Why A10 on careers */
.career-why-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.career-why-card {
  padding: 1.4rem 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.career-why-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.career-why-card p {
  font-size: 0.92rem;
  color: #4b5563;
}

.career-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(56, 189, 248, 0.65);
}

/* Career paths */
.career-paths {
  background: #f8fafc;
}

.career-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.career-card {
  padding: 1.7rem 1.7rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.14), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.career-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.career-card-header h3 {
  font-size: 1.12rem;
  margin: 0;
  color: #0f172a;
}

.role-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #0f172a;
  color: #f9fafb;
}

.role-tag-secondary {
  background: #1d4ed8;
}

.role-tag-outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid #0f172a;
}

.career-card-intro {
  font-size: 0.94rem;
  color: #4b5563;
  position: relative;
  z-index: 1;
}

.career-list {
  position: relative;
  z-index: 1;
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.career-list li + li {
  margin-top: 0.25rem;
}

.career-card-foot {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: #6b7280;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  border-color: rgba(56, 189, 248, 0.65);
}

.career-card:hover::before {
  opacity: 1;
}

/* Growth section */
.career-growth {
  background: #020617;
  color: #e5e7eb;
}

.career-growth .section-title,
.career-growth .section-lead {
  color: #f9fafb;
}

.growth-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}

.growth-item {
  padding: 1.5rem 1.6rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.growth-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.growth-item p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Talent network form */
.talent-section {
  background: #f9fafb;
}

.talent-form {
  margin-top: 1.5rem;
  max-width: 880px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-field-full {
  flex-basis: 100%;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5f5;
  font-size: 0.94rem;
  outline: none;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--nav-bg);
  color: #cbd5f5;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2.1rem;
  padding: 2.1rem 0 1rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: #e5f2ff;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: none;
}

.footer-col li + li {
  margin-top: 0.25rem;
}

.footer-col a:hover {
  color: #e5f2ff;
}

.footer-bottom {
  border-top: 1px solid #0f172a;
  padding: 0.9rem 0 1.1rem;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
  background: #020617;
}

.footer-legal {
  display: block;
  margin-top: 0.25rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .page-hero-grid,
  .sub-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-meta {
    justify-content: flex-start;
  }

  .hero-career .hero-inner {
    flex-direction: column;
  }

  .hero-career h1 {
    font-size: 1.9rem;
  }

  .snapshot-inner {
    flex-direction: column;
  }

  .cta-inner {
    padding: 1.5rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2.6rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .global-layout {
    grid-template-columns: 1fr;
  }

  .career-card,
  .career-why-card,
  .growth-item {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  }

  .form-row {
    flex-direction: column;
  }
}

/* =====================================================
   CAREER PATHS – SLANTED FULL-WIDTH CLEAN ROWS
===================================================== */

.career-paths {
  background: #f8fafc;
}

.career-listing {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

/* Each large row */
.career-row {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.6rem 1.7rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}

/* Slanted blue accent strip */
.career-row::before {
  content: "";
  position: absolute;
  top: -12%;
  left: -70px;
  width: 160px;
  height: 140%;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  opacity: 0.12;
  transform: skewX(-15deg);
  pointer-events: none;
}

/* Text styles */
.career-row h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.career-row-intro {
  font-size: 0.93rem;
  color: #4b5563;
  margin-bottom: 0.45rem;
}

.career-row-list {
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.career-row-list li + li {
  margin-top: 0.25rem;
}

.career-row-foot {
  margin-top: 0.6rem;
  font-size: 0.83rem;
  color: #6b7280;
  font-style: italic;
}

/* Hover effect */
.career-row:hover {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  transform: translateY(-4px);
}

/* === Remove role badges from career cards === */
.role-tag,
.role-tag-secondary,
.role-tag-outline,
.role-tag-ops,
.role-tag-hero {
  display: none !important;
}

/* ======================================
   CONTACT PAGE
====================================== */

.contact-hero {
  padding: 3.4rem 0 3.2rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(37, 99, 235, 0.32), transparent 60%),
    #020617;
  color: #f9fafb;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.46), transparent 65%);
  filter: blur(6px);
  opacity: 0.45;
  pointer-events: none;
}

.contact-hero::before {
  width: 420px;
  height: 420px;
  top: -170px;
  left: -170px;
}

.contact-hero::after {
  width: 520px;
  height: 520px;
  bottom: -230px;
  right: -230px;
}

/* old contact-grid (not used now but kept if needed) */
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* ========== CONTACT PAGE (alt hero layout) ========== */

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-hero-text h1 {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  color: #f9fafb;
}

.contact-hero-text p {
  color: #cbd5f5;
  font-size: 0.96rem;
  max-width: 560px;
  margin-bottom: 0.9rem;
}

.contact-hero-points {
  list-style: none;
  font-size: 0.86rem;
  color: #9ca3af;
}

.contact-hero-points li + li {
  margin-top: 0.25rem;
}

.contact-hero-side {
  display: flex;
  justify-content: flex-end;
}

/* main contact layout */

.contact-section {
  background: #f8fafc;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.9rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  border: 1px solid #e5e7eb;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 640px;
  margin-bottom: 1.3rem;
}

/* info card in hero */

.contact-info-card {
  max-width: 340px;
  padding: 1.5rem 1.6rem;
  border-radius: 1.3rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.contact-info-block + .contact-info-block {
  margin-top: 0.8rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.88rem;
  color: #e5e7eb;
}

.contact-info-card a {
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* contact form reusing generic form styles */

.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form .form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.contact-form .form-field-full {
  flex-basis: 100%;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5f5;
  font-size: 0.94rem;
  outline: none;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
}

/* phone country code + number */
.phone-group {
  display: flex;
  gap: 0.5rem;
}

.phone-group select {
  max-width: 140px;
  flex: 0 0 auto;
}

.phone-group input {
  flex: 1 1 auto;
}

/* checkbox inline */
.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #4b5563;
}

.checkbox-inline input {
  margin-top: 0.2rem;
}

/* side note cards */

.contact-side-note {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-note-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-note-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.contact-note-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-note-card ul li + li {
  margin-top: 0.25rem;
}

/* ============================
   CONTACT – RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.3rem 1.2rem;
  }

  .phone-group {
    flex-direction: row;
  }
}

.field-hint {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  opacity: 0.7;
}

/* ====== TALENT FORM CARD (CAREERS) ====== */

.talent-form-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.9rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  border: 1px solid #e5e7eb;
}

/* ====== PARTNER CTA BAND ====== */

.partner-cta {
  background: #020617;
  padding: 2.4rem 0 2.8rem;
  border-top: 1px solid #0f172a;
  border-bottom: 1px solid #0f172a;
}

.partner-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.9rem 2.1rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(37, 99, 235, 0.3), transparent 60%),
    #020617;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.partner-cta-copy h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: #f9fafb;
}

.partner-cta-copy p {
  font-size: 0.88rem;
  color: #cbd5f5;
  max-width: 500px;
}

.partner-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .partner-cta-inner {
    padding: 1.6rem 1.4rem;
    align-items: flex-start;
  }

  .partner-cta-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ====== JOIN A10 POPUP (CAREERS) ====== */

.join-a10-popup {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  transform: translateY(-140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 60;
  pointer-events: none;
}

.join-a10-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.join-a10-content {
  position: relative;
  min-width: 260px;
  max-width: 320px;
  padding: 1.3rem 1.4rem 1.2rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
  color: #e5f2ff;
}

.join-a10-close {
  position: absolute;
  top: 0.35rem;
  right: 0.55rem;
  border: none;
  background: transparent;
  color: #e5f2ff;
  font-size: 1.2rem;
  cursor: pointer;
}

.join-a10-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5f3fc;
  margin-bottom: 0.35rem;
}

.join-a10-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.join-a10-text {
  font-size: 0.86rem;
  color: #cbd5f5;
  margin-bottom: 0.8rem;
}

.join-a10-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (max-width: 600px) {
  .join-a10-popup {
    right: 0.75rem;
    left: 0.75rem;
  }

  .join-a10-content {
    max-width: 100%;
  }
}

/* ====== HOME WELCOME POPUP ====== */
.welcome-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 70;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), #020617);
  border-radius: 1.4rem;
  padding: 1.6rem 1.8rem 1.4rem;
  max-width: 360px;
  width: 90%;
  border: 1px solid rgba(56,189,248,0.55);
  box-shadow: 0 26px 60px rgba(15,23,42,0.9);
  color: #e5f2ff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.welcome-popup.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.welcome-popup h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.welcome-popup p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 0.9rem;
}

.welcome-popup .welcome-close {
  position: absolute;
  top: 0.45rem;
  right: 0.65rem;
  background: transparent;
  border: none;
  color: #e5f2ff;
  font-size: 1.1rem;
  cursor: pointer;
}

.welcome-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
