:root {
  --ink: #08111f;
  --navy: #061a33;
  --blue: #1057d2;
  --blue-2: #1b7cff;
  --cyan: #14c8ff;
  --mint: #24d6a4;
  --muted: #5c6b80;
  --line: #dbe5f1;
  --paper: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 24, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.6rem, 5.6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  max-width: 860px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { margin-bottom: 0.55rem; font-size: 1.12rem; }
p { color: var(--muted); }
ul { margin: 0; padding-left: 1.15rem; color: var(--muted); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  color: #fff;
  background: rgba(5, 20, 42, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}
.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(20, 200, 255, 0.25);
}
.menu-button { display: none; }
nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav a {
  display: inline-flex;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 750;
}
nav li.active a,
nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 8px;
  color: #061a33;
  background: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1.2rem, 5vw, 5rem) 5rem;
  color: #fff;
  background: var(--navy);
}
.home-page .hero { min-height: 94vh; }
.hero img,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img {
  object-fit: cover;
  object-position: center center;
  opacity: 0.68;
  filter: saturate(1.08) contrast(1.04);
}
.shade {
  background:
    radial-gradient(circle at 72% 30%, rgba(20,200,255,0.16), rgba(20,200,255,0) 30%),
    linear-gradient(90deg, rgba(4,16,35,0.96), rgba(4,16,35,0.84) 42%, rgba(4,16,35,0.45) 68%, rgba(4,16,35,0.16)),
    linear-gradient(0deg, rgba(4,16,35,0.72), rgba(4,16,35,0) 58%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy > p:last-of-type {
  max-width: 760px;
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 1.1rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 18px 34px rgba(16, 87, 210, 0.28);
}
.secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

.announcement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem clamp(1.2rem, 5vw, 5rem);
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #102b5d);
}
.announcement span { color: rgba(255,255,255,0.78); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip p {
  margin: 0;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
  text-align: center;
}
.section,
.lead-form,
.not-found {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 5rem);
}
.light { background: #fff; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background: var(--paper);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-head h2 { margin-bottom: 0; }
.outcome-panel {
  display: grid;
  gap: 0.75rem;
}
.outcome-panel div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 850;
}
.outcome-panel span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(36,214,164,0.12);
}

.card-grid,
.pricing-grid,
.quote-grid,
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.compact { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.mini-card,
.price-card,
.case-card,
.detail-card,
blockquote,
.contact-options a,
.values article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.mini-card {
  min-height: 166px;
  padding: 1.1rem;
}
.mini-card h3 { color: var(--navy); }
.mini-card p,
.price-card p,
.case-card p { margin-bottom: 0; }
.pricing-grid { align-items: stretch; }
.price-card,
.case-card {
  min-height: 260px;
  padding: 1.35rem;
}
.price-card span,
.case-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--blue);
  font-weight: 950;
}
.price-card ul { margin: 1rem 0 1.2rem; }
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 900;
}
.section-note {
  margin: 0;
  max-width: 320px;
  color: var(--muted);
  font-weight: 800;
}
.section-note a,
.resume-format a { color: var(--blue); font-weight: 900; }
.logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.logo-grid a {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  color: #fff;
  background: var(--navy);
}
.testimonials p { color: rgba(255,255,255,0.72); }
blockquote {
  margin: 0;
  padding: 1.35rem;
  color: var(--ink);
}
blockquote span {
  display: block;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 900;
}

.detailed-list {
  display: grid;
  gap: 1rem;
}
.detail-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.detail-card h2 { font-size: clamp(1.7rem, 2.5vw, 3rem); }
.detail-card h3 { margin-top: 1rem; }
.case-placeholder {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 8px;
  color: var(--navy);
  background: #eef6ff;
  font-weight: 850;
}
.roi {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #10346d);
}
.roi p { color: rgba(255,255,255,0.72); }
.calculator,
.lead-form form {
  display: grid;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-weight: 850;
}
.roi label { color: #fff; }
input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
output {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 8px;
  color: #061a33;
  background: var(--cyan);
  font-size: 1.25rem;
  font-weight: 950;
}
.lead-form {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(20,200,255,0.22), rgba(20,200,255,0) 32%),
    var(--navy);
}
.lead-form p { color: rgba(255,255,255,0.72); }
.lead-form form {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}
.lead-form label { color: #fff; }
.contact-line a { color: #fff; font-weight: 900; }
.contact-line span { color: rgba(255,255,255,0.42); margin: 0 0.45rem; }
.contact-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.contact-options a {
  min-height: 150px;
  padding: 1.2rem;
}
.contact-options strong,
.contact-options span { display: block; }
.contact-options strong { margin-bottom: 0.8rem; color: var(--navy); }
.contact-options span { color: var(--muted); }
.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.values article { padding: 1.5rem; }

.careers-intro .section-head {
  align-items: center;
}
.career-pill-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}
.career-pill-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #f6faff;
  font-weight: 900;
  text-align: center;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.job-card,
.format-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.job-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 1.25rem;
}
.job-card h3 {
  color: var(--navy);
  font-size: 1.24rem;
}
.job-card p { margin-bottom: 0.85rem; }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 0.78rem;
  font-weight: 900;
}
.job-location {
  color: var(--navy);
  font-weight: 900;
}
.job-card details {
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
}
.job-card summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: var(--blue);
  font-weight: 950;
  cursor: pointer;
}
.job-details {
  padding: 0.25rem 0 0.75rem;
}
.job-details h4 {
  margin: 0.75rem 0 0.35rem;
  color: var(--navy);
}
.resume-format {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.format-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.format-card h3 {
  color: var(--navy);
}
.format-card ol {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
  color: var(--muted);
}
.format-card li + li { margin-top: 0.7rem; }
.career-process {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #123766);
}
.career-process p { color: rgba(255,255,255,0.72); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-grid article {
  min-height: 230px;
  padding: 1.2rem;
  color: var(--ink);
}
.process-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 950;
}
.process-grid h3 { color: var(--navy); }

.internship-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.internship-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.internship-proof span {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #f6faff;
  font-weight: 900;
}
.internship-side {
  display: grid;
  gap: 1rem;
}
.internship-side ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
}
.internship-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.internship-card {
  position: relative;
  min-height: 330px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.internship-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}
.internship-card h3 {
  color: var(--navy);
  font-size: 1.18rem;
}
.internship-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}
.internship-card strong {
  display: block;
  margin-top: auto;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: #f7fbff;
  text-transform: uppercase;
}
.internship-work .career-pill-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 5rem);
  color: #fff;
  background: #041124;
}
footer p { color: rgba(255,255,255,0.68); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
footer section { display: grid; align-content: start; gap: 0.45rem; }
footer h4 { margin: 0 0 0.4rem; }
footer a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.legal { margin-top: 2rem; }
.not-found { background: #fff; }

@media (max-width: 1180px) {
  .header-cta { display: none; }
  .compact,
  .logo-grid,
  .career-pill-grid,
  .internship-stage-grid,
  .internship-work .career-pill-grid,
  .jobs-grid,
  .process-grid,
  .contact-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .menu-button {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    padding: 0.65rem 0.8rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    font: inherit;
    font-weight: 850;
  }
  .site-header { align-items: center; }
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 0.8rem;
    background: #061a33;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav-open nav { display: block; }
  nav ul { display: grid; }
  nav a { width: 100%; }
  .trust-strip,
  .split,
  .testimonials,
  .detail-card,
  .roi,
  .lead-form,
  .resume-format,
  .internship-overview,
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid,
  .pricing-grid,
  .quote-grid,
  .compact,
  .logo-grid,
  .career-pill-grid,
  .internship-stage-grid,
  .internship-work .career-pill-grid,
  .jobs-grid,
  .process-grid,
  .contact-options,
  .values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  h1 { font-size: 2.75rem; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .hero { min-height: 820px; align-items: start; padding-top: 8rem; }
  .section-head { display: block; }
  .card-grid,
  .pricing-grid,
  .quote-grid,
  .compact,
  .logo-grid,
  .career-pill-grid,
  .internship-proof,
  .internship-stage-grid,
  .internship-work .career-pill-grid,
  .jobs-grid,
  .process-grid,
  .contact-options,
  .values { grid-template-columns: 1fr; }
  .trust-strip p { min-height: 74px; }
}
