:root {
  --ink: #0e1116;
  --paper: #f6f3ef;
  --accent: #ff8b3d;
  --accent-deep: #f14a1c;
  --sage: #1f3d3a;
  --stone: #c7bfb6;
  --shadow: 0 24px 60px rgba(15, 16, 18, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top left, #f9efe2 0%, #f6f3ef 55%, #ece6dc 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 243, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 17, 22, 0.08);
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

main {
  padding-top: 96px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-badge {
  transform: translateY(6px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.06'/></svg>");
  z-index: 0;
}

.brand-img {
  width: 240px;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}

.logo-name {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 4px 12px rgba(15, 16, 18, 0.45);
  animation: glowPulse 4s ease-in-out infinite;
}

.logo-sub {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
  animation: glowPulse 4s ease-in-out infinite;
}

.logo-sub--light {
  letter-spacing: 4px;
  opacity: 0.75;
}

@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.85), 0 0 35px rgba(255, 255, 255, 0.6), 0 8px 30px rgba(11, 13, 17, 0.7);
  }
  50% {
    text-shadow: 0 0 32px rgba(255, 255, 255, 1), 0 0 48px rgba(255, 255, 255, 0.8), 0 12px 40px rgba(11, 13, 17, 0.9);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #141414;
  box-shadow: 0 12px 24px rgba(241, 74, 28, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(14, 17, 22, 0.2);
}

.btn-ghost {
  background: rgba(14, 17, 22, 0.08);
  color: var(--ink);
}

.hero {
  padding: 90px 0 40px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 139, 61, 0.4), rgba(255, 139, 61, 0));
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 14px;
}

.lead {
  font-size: 18px;
  color: rgba(14, 17, 22, 0.8);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
}

.hero-metrics h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.hero-card {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 17, 22, 0.08);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-deep);
  font-weight: 700;
}

.card-title {
  font-weight: 700;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(14, 17, 22, 0.6);
}

.progress-bar {
  height: 8px;
  background: rgba(14, 17, 22, 0.1);
  border-radius: 999px;
  margin: 8px 0 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 82%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.mini-tile {
  background: var(--paper);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(14, 17, 22, 0.06);
}

.mini-tile h4 {
  font-size: 20px;
}

.signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(14, 17, 22, 0.7);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent-deep);
  border-radius: 50%;
}

.brands {
  padding: 30px 0 70px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(14, 17, 22, 0.5);
}

.section {
  padding: 80px 0;
}

.section-head.centered {
  text-align: center;
  justify-content: center;
}

.section-head.centered h2 {
  margin: 0 auto;
}

.sectors {
  background: #ffffff;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px 24px;
  padding-top: 12px;
}

.sector-card {
  text-align: center;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(14, 17, 22, 0.08);
  box-shadow: 0 10px 24px rgba(14, 17, 22, 0.05);
}

.sector-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.sector-card h3 {
  color: #0074d9;
  font-size: 20px;
  margin-bottom: 10px;
}

.sector-card p {
  color: rgba(14, 17, 22, 0.7);
  line-height: 1.5;
}

.section-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}

.disclaimer {
  font-size: 13px;
  color: rgba(14, 17, 22, 0.55);
  margin-top: -14px;
  margin-bottom: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(14, 17, 22, 0.08);
  box-shadow: 0 14px 28px rgba(14, 17, 22, 0.08);
}

.why-card h3 {
  margin-bottom: 8px;
}

.service-card {
  padding: 26px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(14, 17, 22, 0.08);
  box-shadow: 0 16px 36px rgba(14, 17, 22, 0.08);
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--accent-deep);
}

.dark {
  background: var(--ink);
  color: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.about-panel {
  background: rgba(246, 243, 239, 0.1);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(246, 243, 239, 0.2);
}

.panel-top {
  margin-bottom: 24px;
}

.score {
  font-size: 32px;
  font-weight: 700;
}

.panel-list {
  display: grid;
  gap: 16px;
}

.panel-list h4 {
  font-size: 18px;
  color: var(--accent);
}

.muted {
  color: rgba(14, 17, 22, 0.6);
}

.dark .muted {
  color: rgba(246, 243, 239, 0.6);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.insight-grid article {
  padding: 24px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid rgba(14, 17, 22, 0.08);
}

.careers {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 243, 239, 0.6));
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.career-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(14, 17, 22, 0.08);
  box-shadow: 0 16px 36px rgba(14, 17, 22, 0.08);
}

.career-meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(14, 17, 22, 0.5);
  margin: 6px 0 12px;
}

.career-cta {
  margin-top: 24px;
  font-weight: 600;
}

.career-cta a {
  color: var(--accent-deep);
}

.cta {
  padding: 90px 0;
  background: linear-gradient(120deg, #1f3d3a 0%, #0e1116 100%);
  color: var(--paper);
}

.cta .lead {
  color: rgba(246, 243, 239, 0.92);
}

.contact-block {
  margin-top: 18px;
  font-weight: 600;
  color: rgba(246, 243, 239, 0.78);
  display: grid;
  gap: 6px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.cta-form {
  display: grid;
  gap: 14px;
  background: rgba(246, 243, 239, 0.08);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(246, 243, 239, 0.2);
  position: relative;
}

.cta-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: rgba(246, 243, 239, 0.9);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-status {
  font-size: 13px;
  min-height: 18px;
  color: rgba(246, 243, 239, 0.85);
}

.legal-body {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.legal-body h3 {
  margin-top: 12px;
}

.site-footer {
  padding: 50px 0 30px;
  background: #0b0d11;
  color: var(--paper);
}

.footer-strong {
  text-align: center;
  display: grid;
  gap: 10px;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-location {
  color: rgba(246, 243, 239, 0.75);
}

.footer-email a {
  color: #4da3ff !important;
  font-weight: 600;
}

.footer-meta {
  color: rgba(246, 243, 239, 0.7);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: rgba(246, 243, 239, 0.72);
  font-size: 14px;
}

.footer-links a {
  color: #4da3ff !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  margin-bottom: 24px;
}

.footer-grid h4 {
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 243, 239, 0.72);
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
}

.footer-note {
  text-align: center;
  font-size: 13px;
  color: rgba(246, 243, 239, 0.5);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 70px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }
}
