@font-face {
  font-family: "Vazir";
  src: url("../../VAZIR-THIN.TTF") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazir";
  src: url("../../VAZIR-LIGHT.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazir";
  src: url("../../VAZIR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazir";
  src: url("../../VAZIR-MEDIUM.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazir";
  src: url("../../VAZIR-BOLD.TTF") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0c0c0d;
  --bg-2: #111112;
  --panel: rgba(28, 28, 29, 0.78);
  --panel-solid: #1a1a1b;
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(242, 200, 17, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f8f4e7;
  --muted: #c7c0aa;
  --muted-2: #8f8a7d;
  --yellow: #f2c811;
  --yellow-2: #ffd84a;
  --gold: #b8860b;
  --cream: #fff8dc;
  --ink: #090909;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(242, 200, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 200, 17, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #080808 0%, var(--bg) 38%, #12110d 100%);
  background-size: 58px 58px, 58px 58px, auto;
  font-family: "Vazir", Tahoma, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

body::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

img,
svg {
  display: block;
}

.data-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid rgba(242, 200, 17, 0.18);
  border-radius: 8px;
  background: rgba(15, 15, 16, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.header-call,
.btn,
.phone-list a {
  -webkit-tap-highlight-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 200, 17, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff5cc, #f2c811);
  box-shadow: 0 0 28px rgba(242, 200, 17, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow);
  background: rgba(242, 200, 17, 0.08);
  outline: 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 16px 34px rgba(242, 200, 17, 0.24);
}

.header-call svg,
.btn svg,
.phone-list svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-ghost svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  padding: 108px 6vw 76px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 200, 17, 0.55), transparent);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 13, 0.18) 0%, rgba(12, 12, 13, 0.42) 46%, rgba(12, 12, 13, 0.94) 100%),
    linear-gradient(180deg, rgba(12, 12, 13, 0.22), var(--bg) 98%),
    url("../images/hero-powerbi-gold.png") left center / cover no-repeat;
  filter: contrast(1.08) saturate(1.05);
  transform: scale(1.015);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, transparent 44%, var(--bg) 100%),
    radial-gradient(circle at 35% 55%, transparent 0 28%, rgba(12, 12, 13, 0.72) 76%);
}

.hero-content {
  position: relative;
  width: min(665px, 100%);
  margin-left: auto;
  padding-top: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}

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

h1 {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 20px;
  font-size: 3.45rem;
  line-height: 1.16;
  font-weight: 800;
  text-wrap: balance;
}

.hero-brand {
  justify-self: stretch;
  direction: ltr;
  color: var(--yellow);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.86em;
  line-height: 1;
  text-align: right;
  text-transform: lowercase;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.34rem;
  line-height: 1.38;
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.58;
  font-weight: 800;
}

.hero-lead,
.story-copy p,
.impact p,
.contact-panel p,
.service-card p,
.timeline-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 2.02;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: #ddd5bf;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.phone-list a:hover,
.phone-list a:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 18px 36px rgba(242, 200, 17, 0.22);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(242, 200, 17, 0.28);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(610px, 100%);
}

.hero-metrics div {
  position: relative;
  min-width: 0;
  padding: 14px 14px 13px;
  border: 1px solid rgba(242, 200, 17, 0.18);
  border-radius: 8px;
  background: rgba(18, 18, 19, 0.72);
  backdrop-filter: blur(14px);
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 12px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.hero-metrics dt {
  margin-bottom: 3px;
  color: var(--yellow);
  font-size: 1.04rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 26px;
  height: 40px;
  border: 1px solid rgba(255, 248, 220, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateX(-50%);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  25%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

.story {
  position: relative;
  height: 282vh;
  background:
    linear-gradient(180deg, var(--bg) 0%, #101010 44%, #15130c 100%);
}

.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  gap: 46px;
  padding: 108px 6vw 66px;
  overflow: hidden;
}

.story-copy {
  max-width: 550px;
}

.exploder {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  isolation: isolate;
}

.exploder::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(242, 200, 17, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(rgba(242, 200, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 200, 17, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, #000 0 45%, transparent 72%);
  opacity: 0.82;
  transform: rotate(var(--grid-rotate, 0deg)) scale(var(--grid-scale, 0.86));
}

.core-shell {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 260px;
  height: 190px;
  border: 1px solid rgba(242, 200, 17, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 216, 74, 0.18), rgba(255, 255, 255, 0.04) 40%, rgba(10, 10, 10, 0.62)),
    rgba(18, 18, 19, 0.86);
  box-shadow:
    inset 0 0 38px rgba(242, 200, 17, 0.12),
    0 0 72px rgba(242, 200, 17, 0.2),
    var(--shadow);
  transform: translate(-50%, -50%) scale(var(--core-scale, 1));
  backdrop-filter: blur(16px);
}

.core-grid {
  position: absolute;
  inset: -48px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 248, 220, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 220, 0.12) 1px, transparent 1px);
  background-size: 21px 21px;
  mask-image: radial-gradient(circle, #000 0 60%, transparent 74%);
  transform: rotate(12deg);
}

.core-halo {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 200, 17, 0.22), transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(242, 200, 17, 0.45), transparent 38%, rgba(242, 200, 17, 0.18), transparent 72%);
  filter: blur(0.2px);
  opacity: 0.85;
  animation: haloSpin 11s linear infinite;
}

@keyframes haloSpin {
  to {
    transform: rotate(360deg);
  }
}

.core-dashboard {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 18px 1fr 48px;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 220, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.26);
}

.dash-top {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
}

.dash-top span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.24);
}

.dash-top span:nth-child(1) {
  width: 34px;
  background: var(--yellow);
}

.dash-top span:nth-child(2) {
  width: 24px;
}

.dash-top span:nth-child(3) {
  width: 52px;
}

.dash-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 5px;
  padding: 10px 8px 7px;
  border: 1px solid rgba(242, 200, 17, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.dash-bars i,
.piece-bars i {
  display: block;
  height: var(--h);
  min-height: 13px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, var(--yellow-2), var(--yellow) 58%, var(--gold));
  box-shadow: 0 0 15px rgba(242, 200, 17, 0.28);
}

.dash-line {
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 200, 17, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(rgba(242, 200, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 200, 17, 0.08) 1px, transparent 1px),
    rgba(0, 0, 0, 0.18);
  background-size: 18px 18px;
}

.dash-line svg,
.piece-line svg {
  width: 88%;
  height: 78%;
  overflow: visible;
}

.dash-line polyline,
.piece-line polyline {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(242, 200, 17, 0.65));
}

.dash-line circle,
.piece-line circle {
  fill: var(--cream);
  stroke: var(--yellow);
  stroke-width: 2;
}

.dash-donut {
  position: relative;
  grid-column: 1 / -1;
  justify-self: end;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(var(--yellow) 0 76%, rgba(255, 248, 220, 0.12) 76% 100%);
  box-shadow: 0 0 20px rgba(242, 200, 17, 0.22);
}

.dash-donut span,
.piece-donut i {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #121212;
}

.core-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(242, 200, 17, 0.85);
}

.spark-a {
  top: 22px;
  left: 42px;
}

.spark-b {
  right: 36px;
  bottom: 30px;
}

.core-label {
  position: absolute;
  bottom: -28px;
  direction: ltr;
  color: rgba(255, 248, 220, 0.8);
  font-size: 0.72rem;
  font-weight: 800;
}

.chart-piece {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 120px;
  height: 76px;
  border: 1px solid rgba(242, 200, 17, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(242, 200, 17, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(18, 18, 19, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  backdrop-filter: blur(12px);
}

.piece-bars {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 7px;
  padding: 14px;
}

.piece-line {
  padding: 10px;
}

.piece-donut {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background:
    conic-gradient(var(--yellow) 0 68%, rgba(255, 248, 220, 0.16) 68% 100%),
    rgba(18, 18, 19, 0.72);
}

.piece-kpi {
  align-content: center;
  gap: 7px;
  width: 105px;
  height: 82px;
  padding: 14px;
}

.piece-kpi b {
  color: var(--yellow);
  direction: ltr;
  font-size: 1.45rem;
}

.piece-kpi i {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.14);
}

.piece-kpi i:last-child {
  width: 68%;
  background: rgba(242, 200, 17, 0.32);
}

.data-shard {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(242, 200, 17, 0.28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(21, 21, 22, 0.84);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.32), inset 0 0 26px rgba(242, 200, 17, 0.06);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.data-shard::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(242, 200, 17, 0.85);
}

.data-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 260px;
  height: 1px;
  opacity: var(--line-opacity, 0);
  background: linear-gradient(90deg, transparent, rgba(242, 200, 17, 0.8), transparent);
  transform-origin: right center;
}

.line-1 {
  transform: translate(-10%, -50%) rotate(18deg) scaleX(var(--line-scale, 0.1));
}

.line-2 {
  transform: translate(-12%, -50%) rotate(-42deg) scaleX(var(--line-scale, 0.1));
}

.line-3 {
  transform: translate(-12%, -50%) rotate(82deg) scaleX(var(--line-scale, 0.1));
}

.section-wrap {
  position: relative;
  z-index: 2;
  padding: 104px 6vw;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

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

.service-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(242, 200, 17, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 200, 17, 0.34);
  background:
    linear-gradient(180deg, rgba(242, 200, 17, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 200, 17, 0.42);
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(242, 200, 17, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 200, 17, 0.22);
}

.timeline-item {
  position: relative;
  min-height: 214px;
  padding: 30px 22px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item:last-child {
  border-left: 0;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 25px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 800;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 22px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(242, 200, 17, 0.75);
}

.impact {
  position: relative;
  z-index: 2;
  padding: 110px 6vw;
  border-block: 1px solid rgba(242, 200, 17, 0.12);
  background:
    linear-gradient(90deg, rgba(242, 200, 17, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(242, 200, 17, 0.06)),
    #141414;
}

.impact-inner {
  width: min(900px, 100%);
}

.impact h2 {
  font-size: 2.75rem;
}

.contact {
  padding-bottom: 68px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(242, 200, 17, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 200, 17, 0.12), transparent 46%),
    rgba(18, 18, 19, 0.9);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 700px;
}

.phone-list {
  display: grid;
  gap: 12px;
}

.phone-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid rgba(242, 200, 17, 0.22);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  direction: ltr;
  font-size: 1.04rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.phone-list a:first-child {
  color: var(--ink);
  border: 0;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.phone-list a:hover,
.phone-list a:focus-visible {
  border-color: rgba(242, 200, 17, 0.42);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw 32px;
  border-top: 1px solid rgba(242, 200, 17, 0.12);
  color: var(--muted-2);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1060px) {
  h1 {
    font-size: 3.08rem;
  }

  h2,
  .impact h2 {
    font-size: 2.05rem;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-image {
    background:
      linear-gradient(90deg, rgba(12, 12, 13, 0.35), rgba(12, 12, 13, 0.68), rgba(12, 12, 13, 0.95)),
      linear-gradient(180deg, rgba(12, 12, 13, 0.18), var(--bg) 98%),
      url("../images/hero-powerbi-gold.png") 28% center / cover no-repeat;
  }

  .story-sticky {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 102px;
  }

  .story-copy {
    max-width: 720px;
  }

  .exploder {
    width: min(540px, 100%);
  }

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

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

  .timeline-item:nth-child(2) {
    border-left: 0;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 50px;
    padding: 7px 8px;
  }

  .brand {
    gap: 8px;
    font-size: 0.88rem;
  }

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

  .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 92svh;
    padding: 88px 20px 58px;
    align-items: start;
  }

  .hero-image {
    background:
      radial-gradient(circle at 22% 34%, rgba(242, 200, 17, 0.24), transparent 34%),
      linear-gradient(180deg, rgba(12, 12, 13, 0.44) 0%, rgba(12, 12, 13, 0.34) 34%, rgba(12, 12, 13, 0.74) 70%, var(--bg) 100%),
      linear-gradient(90deg, rgba(12, 12, 13, 0.22), rgba(12, 12, 13, 0.9) 78%),
      url("../images/hero-powerbi-gold.png") 27% 82px / auto 68svh no-repeat,
      #080808;
  }

  .hero-content {
    padding-top: 24px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 1.92rem;
    line-height: 1.32;
  }

  h2,
  .impact h2 {
    font-size: 1.55rem;
    line-height: 1.62;
  }

  h3 {
    font-size: 1.04rem;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .hero-lead,
  .story-copy p,
  .impact p,
  .contact-panel p,
  .service-card p,
  .timeline-item p {
    font-size: 0.91rem;
    line-height: 1.92;
  }

  .hero-lead {
    margin-bottom: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 18px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-metrics div {
    padding: 10px 9px;
  }

  .hero-metrics dt {
    font-size: 0.94rem;
  }

  .hero-metrics dd {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .scroll-cue {
    bottom: 13px;
    width: 24px;
    height: 36px;
  }

  .story {
    height: 248vh;
  }

  .story-sticky {
    min-height: 100svh;
    padding: 78px 20px 42px;
  }

  .story-copy {
    max-width: 100%;
  }

  .exploder {
    width: min(360px, 94vw);
  }

  .core-shell {
    width: 178px;
    height: 132px;
    border-radius: 14px;
  }

  .core-dashboard {
    inset: 11px;
    grid-template-rows: 12px 1fr 32px;
    gap: 5px;
    padding: 8px;
  }

  .dash-top span {
    height: 4px;
  }

  .dash-bars {
    gap: 3px;
    padding: 7px 5px 5px;
  }

  .dash-donut {
    width: 32px;
    height: 32px;
  }

  .dash-donut span,
  .piece-donut i {
    inset: 8px;
  }

  .core-halo {
    inset: -24px;
  }

  .core-label {
    bottom: -22px;
    font-size: 0.58rem;
  }

  .chart-piece {
    width: 78px;
    height: 52px;
    border-radius: 9px;
  }

  .piece-bars {
    gap: 4px;
    padding: 9px;
  }

  .piece-donut {
    width: 58px;
    height: 58px;
  }

  .piece-kpi {
    width: 70px;
    height: 56px;
    gap: 4px;
    padding: 9px;
  }

  .piece-kpi b {
    font-size: 1rem;
  }

  .data-shard {
    min-width: 90px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .data-shard::before {
    width: 6px;
    height: 6px;
    margin-left: 7px;
  }

  .section-wrap,
  .impact {
    padding: 72px 20px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

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

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-icon {
    margin-bottom: 18px;
  }

  .timeline-item,
  .timeline-item:nth-child(2) {
    min-height: auto;
    padding: 26px 18px 26px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .timeline-item::before {
    right: 0;
  }

  .contact-panel {
    padding: 22px;
  }

  .phone-list a {
    min-height: 52px;
    font-size: 0.98rem;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    padding: 22px 20px 28px;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 1.88rem;
  }

  .brand span:last-child {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-metrics dd {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
