:root {
  --ink: #071526;
  --muted: #5a6677;
  --line: #d9e1ea;
  --paper: #f6f9fc;
  --white: #ffffff;
  --navy: #071b33;
  --blue: #1656d9;
  --cyan: #00b7d8;
  --lime: #a8e03c;
  --shadow: 0 24px 70px rgba(7, 21, 38, 0.16);
  --footer-bg: #1b1427;
  --accent-red: #ef2d2d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 4px clamp(18px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 234, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-full-logo {
  display: block;
  width: 230px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}

.brand-logo {
  width: 170px;
  height: 126px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-wordmark {
  width: 380px;
  height: 112px;
  margin-left: -58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1d2c3d;
  font-size: 16px;
  font-weight: 650;
}

.nav-cta {
  padding: 10px 20px;
  color: var(--white);
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 9px 12px;
  font: inherit;
}

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(0, 183, 216, 0.24), transparent 32%),
    linear-gradient(135deg, #05111f 0%, #082346 54%, #0d3f68 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: 680px;
  padding: 88px clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-logo {
  display: block;
  width: min(320px, 72vw);
  height: auto;
  margin: 0 0 26px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-photo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(4, 16, 29, 0.82));
}

.hero-photo-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 18px;
  border-radius: 8px;
  background: rgba(4, 16, 29, 0.62);
  backdrop-filter: blur(12px);
}

.hero-photo-caption span,
.hero-photo-caption strong {
  display: block;
}

.hero-photo-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  margin-top: 4px;
  font-size: 26px;
}

.hero-tabs {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-tabs button {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-tabs button.active {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.dashboard-panel,
.dashboard-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.dashboard-panel {
  position: absolute;
  inset: 64px 0 0 38px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.panel-top {
  height: 130px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(168, 224, 60, 0.9), rgba(0, 183, 216, 0.15)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.11) 35px 36px);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 160px;
  margin: 30px 0;
  padding: 0 10px;
}

.chart-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(255, 255, 255, 0.16));
}

.code-lines span {
  display: block;
  height: 10px;
  margin: 14px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.code-lines span:nth-child(2) {
  width: 76%;
}

.code-lines span:nth-child(3) {
  width: 58%;
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  width: 210px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.dashboard-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.dashboard-card strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 24px;
}

.dashboard-card i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
}

.card-one {
  top: 0;
  left: 0;
}

.card-two {
  right: 0;
  bottom: 42px;
}

.section-pad {
  padding: 92px clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 50px;
  background: var(--paper);
}

.intro > p,
.section-heading > p,
.split-section p,
.careers-cta p,
.apply-panel p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 860px;
}

.section-heading.wide {
  max-width: 980px;
  margin-bottom: 34px;
}

.services {
  background: var(--white);
}

.service-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dynamic-services {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
}

.service-menu {
  display: grid;
  gap: 10px;
}

.service-menu button {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 17px;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.service-menu button span {
  color: var(--blue);
  font-weight: 900;
}

.service-menu button.active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.service-menu button.active span {
  color: var(--lime);
}

.service-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
}

.service-feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.service-feature div {
  padding: 30px;
}

.service-feature p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.service-grid article,
.job-grid article,
.proof-card,
.contact-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid article,
.job-grid article {
  padding: 28px;
}

.service-grid span {
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.job-grid p,
.proof-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 52px;
  color: var(--white);
  background: var(--navy);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  color: var(--lime);
  font-size: 26px;
}

.industry-band {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.insight-section {
  background:
    linear-gradient(135deg, rgba(238, 247, 255, 0.92), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 90% 20%, rgba(102, 196, 34, 0.16), transparent 26%);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 21, 38, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background: rgba(102, 196, 34, 0.14);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(7, 21, 38, 0.14);
}

.insight-card strong {
  color: var(--lime);
  font-size: 42px;
}

.insight-card h3 {
  margin-top: 16px;
  font-size: 26px;
}

.insight-card p {
  color: var(--muted);
}

.partner-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 34, 64, 0.97), rgba(27, 20, 39, 0.97)),
    radial-gradient(circle at 80% 15%, rgba(102, 196, 34, 0.22), transparent 28%);
}

.partner-section h2,
.partner-section .eyebrow {
  color: var(--white);
}

.partner-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background 0.22s ease;
}

.partner-grid article:hover {
  transform: translateY(-6px);
  background: rgba(102, 196, 34, 0.16);
}

.partner-grid h3 {
  color: var(--white);
}

.partner-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.detail-band {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.info-card-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(7, 21, 38, 0.13);
}

.info-card-grid h3 {
  color: var(--navy);
  font-size: 25px;
}

.info-card-grid p {
  color: var(--muted);
}

.industry-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.contact-help {
  padding-top: 74px;
  padding-bottom: 74px;
}

.proof-band {
  padding: 56px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(27, 20, 39, 0.98), rgba(27, 20, 39, 0.98)),
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 24%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metrics-grid div {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.metrics-grid strong,
.metrics-grid span {
  display: block;
}

.metrics-grid strong {
  color: var(--accent-red);
  font-size: 50px;
  line-height: 1;
  text-align: center;
}

.metrics-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-align: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pill-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 750;
}

.company-section {
  background: var(--white);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.company-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
}

.company-card-image {
  width: 100%;
  height: 260px;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: 8px;
}

.company-card h3 {
  font-size: 28px;
}

.company-card p {
  color: var(--muted);
}

.company-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.primary-company-card {
  grid-row: span 2;
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.company-tags span {
  padding: 10px 13px;
  color: #063b67;
  font-weight: 800;
  border-radius: 999px;
  background: #eef7ff;
}

.dark-card {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #103f66);
}

.dark-card p,
.dark-card a {
  color: rgba(255, 255, 255, 0.8);
}

.leadership-section {
  background: var(--white);
}

.leader-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
}

.founder-card,
.cofounder-card,
.website-card,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
}

.founder-card {
  padding: 34px;
}

.leader-avatar {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, #063b67, #6fbd1b);
}

.leader-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.leader-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.founder-card h3,
.cofounder-card h3,
.website-card h3 {
  font-size: 32px;
}

.founder-card p,
.cofounder-card p,
.website-card p,
.testimonial-grid p {
  color: var(--muted);
}

.founder-card blockquote {
  margin: 26px 0;
  padding: 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
  border-left: 5px solid var(--lime);
  background: var(--paper);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.skill-list span {
  padding: 10px 13px;
  color: #063b67;
  font-weight: 800;
  border-radius: 999px;
  background: #eef7ff;
}

.leadership-side {
  display: grid;
  gap: 18px;
}

.cofounder-card,
.website-card {
  padding: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stats-grid div {
  padding: 20px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #0b6174);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: 34px;
  line-height: 1;
}

.stats-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 750;
}

.website-card {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #103f66);
}

.website-card p,
.website-card a {
  color: rgba(255, 255, 255, 0.78);
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid article {
  padding: 28px;
}

.stars {
  margin-bottom: 16px;
  color: #f5a400;
  letter-spacing: 0.08em;
}

.client-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.client-row span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  border-radius: 50%;
  background: #063b67;
}

.client-row strong,
.client-row small {
  display: block;
}

.client-row small {
  color: var(--muted);
  font-weight: 600;
}

.careers-cta,
.apply-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #082346, #0a6377);
}

.careers-cta > div,
.apply-panel > div {
  max-width: 820px;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 183, 216, 0.14), transparent 32%),
    linear-gradient(135deg, #06213d, #083761);
}

.contact-form-wrap {
  max-width: 760px;
}

.contact-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 15px;
  margin-top: 36px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 13px 14px;
  color: var(--white);
  font: inherit;
  border: 1px solid rgba(92, 173, 255, 0.48);
  border-radius: 7px;
  background: rgba(40, 118, 188, 0.46);
  outline: none;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(213, 235, 255, 0.82);
}

.contact-form select {
  color: var(--white);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(168, 224, 60, 0.16);
}

.form-submit {
  justify-self: start;
  min-width: 168px;
  color: var(--white);
  border: 0;
  background: #3f94e8;
  cursor: pointer;
}

.form-status {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.contact-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact-note a {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 54px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(27, 20, 39, 0.98), rgba(27, 20, 39, 0.98)),
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.1), transparent 20%);
}

.rich-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer .footer-column {
  display: grid;
  justify-items: start;
}

.site-footer .footer-column a {
  display: block;
}

.footer-column h3 {
  color: var(--lime);
  font-size: 24px;
}

.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-column a {
  color: #d8ecff;
  font-weight: 750;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-about .brand-full-logo,
.site-footer .footer-brand .brand-full-logo {
  width: 250px;
  max-height: none;
  padding: 10px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
}

.site-footer a {
  color: #d8ecff;
}

.compact-page-hero {
  padding-top: 86px;
  padding-bottom: 86px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: var(--paper);
}

.services-hero {
  background:
    linear-gradient(135deg, rgba(27, 20, 39, 0.94), rgba(27, 20, 39, 0.96)),
    radial-gradient(circle at 85% 20%, rgba(239, 45, 45, 0.18), transparent 28%);
}

.services-intro {
  background: var(--paper);
}

.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 21, 38, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(7, 21, 38, 0.16);
}

.service-tile img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-tile h3,
.service-tile p {
  padding-right: 22px;
  padding-left: 22px;
}

.service-tile h3 {
  margin-top: 24px;
}

.service-tile p {
  color: var(--muted);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 18px 22px 24px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 850;
  border-radius: 6px;
  background: var(--blue);
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 86px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 34, 64, 0.96), rgba(27, 20, 39, 0.96)),
    radial-gradient(circle at 82% 16%, rgba(102, 196, 34, 0.26), transparent 26%);
}

.service-detail-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 92px);
}

.service-detail-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.service-detail-hero img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 21, 38, 0.07);
}

.deliverable-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.deliverable-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #103f66);
}

.outcome-section h2,
.outcome-section .eyebrow {
  color: var(--white);
}

.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.outcome-list span {
  padding: 13px 16px;
  color: var(--white);
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.service-tile details {
  padding: 0 22px 24px;
}

.service-tile summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 850;
  border-radius: 6px;
  background: var(--navy);
  cursor: pointer;
  list-style: none;
}

.service-tile summary::-webkit-details-marker {
  display: none;
}

.service-tile details[open] summary {
  background: var(--accent-red);
}

.service-tile details p {
  padding: 14px 0 0;
  margin: 0;
}

.service-icon {
  position: absolute;
  top: 142px;
  left: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 14px 30px rgba(239, 45, 45, 0.26);
}

.service-process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-red);
  font-size: 34px;
  line-height: 1;
}

.process-grid p {
  color: var(--muted);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, #071b33, #0b6174);
}

.service-cta > div {
  max-width: 840px;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.service-cta a:not(.button) {
  color: var(--lime);
  font-weight: 850;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
}

.service-detail-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 7px;
}

.service-detail-card p {
  color: var(--muted);
}

.contact-info-page {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  background: var(--paper);
}

.contact-info-card,
.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
}

.contact-info-card {
  padding: 30px;
}

.contact-info-card p {
  color: var(--muted);
}

.contact-info-card a {
  color: var(--blue);
  font-weight: 800;
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.resume-form {
  display: grid;
  gap: 12px;
  min-width: min(420px, 100%);
}

.resume-form input {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
}

.resume-form small {
  color: rgba(255, 255, 255, 0.78);
}

.resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gmail-button {
  color: var(--white);
  background: #3f94e8;
}

.send-resume-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.page-hero {
  padding: 110px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(168, 224, 60, 0.2), transparent 28%),
    linear-gradient(135deg, #061423, #103f66);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.openings {
  background: var(--paper);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero-grid,
  .intro,
  .split-section,
  .dynamic-services,
  .company-grid,
  .leader-grid,
  .contact-info-page {
    grid-template-columns: 1fr;
  }

  .primary-company-card {
    grid-row: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 420px;
  }

  .service-grid,
  .job-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-page-grid,
  .service-tile-grid,
  .process-grid,
  .insight-grid,
  .partner-grid,
  .info-card-grid,
  .industry-strip,
  .service-detail-hero,
  .deliverable-grid,
  .outcome-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
    padding: 4px 14px;
  }

  .brand-logo {
    width: 112px;
    height: 84px;
  }

  .brand-full-logo {
    width: 182px;
    max-height: 48px;
  }

  .brand-wordmark {
    width: 230px;
    height: 68px;
    margin-left: -38px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-grid,
  .section-pad,
  .page-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 340px;
  }

  .dashboard-panel {
    inset: 52px 0 0 0;
  }

  .dashboard-card {
    width: 178px;
  }

  .card-two {
    right: 0;
    bottom: 0;
  }

  .service-grid,
  .job-grid,
  .testimonial-grid,
  .stats-grid,
  .metrics-grid,
  .rich-footer {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .careers-cta,
  .apply-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer .footer-brand .brand-logo {
    width: 118px;
    height: 88px;
  }

  .site-footer .footer-brand .brand-full-logo,
  .footer-about .brand-full-logo {
    width: 230px;
  }

  .site-footer .footer-brand .brand-wordmark {
    width: 250px;
    height: 74px;
    margin-left: -42px;
  }

  .footer-left {
    width: auto;
  }

  .footer-copy {
    margin-left: 0;
    text-align: left;
  }
}
