:root {
  --ink: #071832;
  --ink-soft: #183355;
  --muted: #5d6a7d;
  --orange: #ff5a14;
  --orange-dark: #e84905;
  --orange-soft: #fff0e8;
  --teal: #118a72;
  --blue: #1d4f7a;
  --sky: #c9d8e7;
  --line: #e6ebf2;
  --soft: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 24, 50, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

.icon-sprite {
  display: none;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section-band {
  border-bottom: 1px solid var(--line);
}

.section-pad {
  padding: 72px 0;
}

.section-muted {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.results-copy h2,
.cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 90, 20, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #adb8c7;
}

.button-secondary:hover {
  border-color: var(--ink-soft);
  box-shadow: 0 12px 28px rgba(7, 24, 50, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100% - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  background-image: url("TrueCoreLogoNoText.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
}

.site-nav a {
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange);
}

.nav-cta {
  padding: 14px 22px;
  color: var(--white) !important;
  background: var(--orange);
}

.nav-cta:hover {
  background: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero {
  padding: 84px 0 38px;
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.9), rgba(255, 255, 255, 0.82) 46%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 68px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: 3.75rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.dashboard-card {
  display: grid;
  min-height: 360px;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  padding: 26px 20px;
  background: #fbfcfe;
  border-right: 1px solid var(--line);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 900;
}

.mini-mark {
  width: 24px;
  height: 24px;
  background-image: url("TrueCoreLogoNoText.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sidebar-item {
  display: block;
  margin: 0 -8px 7px;
  padding: 9px 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 7px;
}

.sidebar-item.is-active {
  color: var(--orange);
  background: var(--orange-soft);
}

.dashboard-main {
  padding: 28px;
}

.dashboard-topline,
.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topline span,
.chart-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.metric-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

.metric-card span,
.metric-card em {
  display: block;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.metric-card span {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1.28rem;
  line-height: 1.1;
}

.metric-card em {
  color: var(--teal);
}

.traffic-panel {
  margin-top: 18px;
  padding: 18px 18px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.traffic-chart {
  width: 100%;
  height: 190px;
  margin-top: 10px;
}

.chart-area {
  fill: rgba(255, 90, 20, 0.12);
}

.chart-line {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-grid path {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}

.proof {
  padding: 20px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  display: flex;
  min-width: 0;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-icon,
.service-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.proof-item strong,
.proof-item span,
.proof-item p {
  display: block;
}

.proof-item strong {
  font-size: 1.85rem;
  line-height: 1.05;
}

.proof-item span {
  margin-top: 4px;
  font-weight: 900;
}

.proof-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.service-card {
  position: relative;
  min-height: 210px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(7, 24, 50, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 20, 0.38);
  box-shadow: 0 16px 34px rgba(7, 24, 50, 0.1);
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card a {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--orange);
  border-radius: 999px;
}

.service-card a:hover {
  background: var(--orange-soft);
}

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

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
}

.process-step + .process-step::before {
  position: absolute;
  top: 36px;
  left: -54px;
  width: 36px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0 4px,
    transparent 4px 10px
  );
  content: "";
}

.step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7, 24, 50, 0.08);
}

.step-icon .icon {
  width: 34px;
  height: 34px;
}

.step-number {
  display: inline-block;
  margin-right: 8px;
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  display: inline;
  margin: 0;
  font-size: 1.08rem;
}

.process-step p {
  max-width: 260px;
  margin: 8px 0 0;
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
}

.results-copy p {
  max-width: 410px;
  margin: 18px 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 760;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  content: "\2713";
}

.results-card {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.performance-chart svg {
  width: 100%;
  height: 240px;
  margin-top: 8px;
}

.line-orange,
.line-navy,
.line-soft {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.line-orange {
  stroke: var(--orange);
}

.line-navy {
  stroke: var(--ink);
}

.line-soft {
  stroke: var(--sky);
}

.source-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.donut {
  width: 150px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    var(--orange) 0 48%,
    var(--ink) 48% 72%,
    var(--blue) 72% 87%,
    var(--sky) 87% 96%,
    #eef3f8 96% 100%
  );
  box-shadow: inset 0 0 0 40px var(--white);
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.source-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.source-list dt,
.source-list dd {
  margin: 0;
  font-size: 0.86rem;
}

.source-list dt {
  color: var(--muted);
}

.source-list dd {
  color: var(--ink);
  font-weight: 900;
}

.cta {
  text-align: center;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.cta-inner {
  max-width: 760px;
}

.cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px auto 26px;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0;
  color: #d8e4f2;
  background: #061a31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0 0;
  color: #c7d5e5;
  font-size: 0.86rem;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  .hero-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: 3.25rem;
  }

  .dashboard-card {
    max-width: 760px;
  }

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

  .proof-item {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 74px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: grid;
  }

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

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

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

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .section-pad {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0 28px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-text {
    font-size: 1.06rem;
  }

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

  .dashboard-sidebar {
    display: none;
  }

  .metric-grid,
  .process-grid,
  .results-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step + .process-step::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .dashboard-main,
  .results-card {
    padding: 18px;
  }

  .dashboard-topline,
  .chart-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .proof-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-icon .icon {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
