:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-soft: #edf2f1;
  --ink: #0d171c;
  --ink-soft: #46535b;
  --muted: #6c7a82;
  --line: #dce4e6;
  --dark: #0d171c;
  --dark-2: #142229;
  --teal: #087f78;
  --teal-bright: #1ec9bd;
  --gold: #e1b954;
  --danger: #c4493f;
  --shadow: 0 28px 70px rgba(13, 23, 28, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(30, 201, 189, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(5, 16, 19, 0.86), rgba(5, 16, 19, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: none;
}

.header-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f4d985);
  border-radius: var(--radius);
  font-size: 1.45rem;
  font-weight: 900;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: #ffffff;
  line-height: 1;
  font-size: 1.05rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a {
  transition: color 180ms ease, background-color 180ms ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.nav-cta {
  color: #ffffff !important;
  background: rgba(8, 127, 120, 0.72);
  border: 1px solid rgba(30, 201, 189, 0.24);
  padding: 12px 16px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: #076962;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

section {
  padding: 92px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 20, 24, 0.98) 0%, rgba(7, 20, 24, 0.92) 32%, rgba(7, 20, 24, 0.42) 58%, rgba(7, 20, 24, 0.06) 100%),
    var(--dark);
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72) 46%, transparent 86%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: static;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 112px 0 42px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 540px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 2.65vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-title-accent {
  color: #ffdb6c;
}

.hero-subtitle {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  line-height: 1.68;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust-list li {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(30, 201, 189, 0.16);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 800;
}

.trust-list li::before,
.engineer-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--teal-bright);
  border-radius: 50%;
}

.hero-actions,
.engineer-copy .btn {
  margin-top: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.hero .btn {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.75rem;
}

.hero .btn svg {
  width: 15px;
  height: 15px;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f5dc8b);
  box-shadow: 0 18px 42px rgba(225, 185, 84, 0.24);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-microcopy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-dashboard {
  min-width: 0;
  padding: 28px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -28px;
  bottom: 84px;
  width: min(60vw, 900px);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--dark);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--dark) 0%, rgba(13, 23, 28, 0.86) 16%, rgba(13, 23, 28, 0.22) 48%, rgba(13, 23, 28, 0) 100%),
    linear-gradient(180deg, rgba(13, 23, 28, 0.12), transparent 48%, rgba(13, 23, 28, 0.56));
  pointer-events: none;
}

.hero-media img {
  width: calc(100% + 180px);
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.96) contrast(1.05);
  transform: translateX(-160px);
}

.hero-stat-bar {
  position: relative;
  z-index: 4;
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hero-stat svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.hero-stat strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 1.75vw, 1.78rem);
  line-height: 0.96;
  font-weight: 900;
}

.hero-stat span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
}

.dash-visual {
  height: 145px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 201, 189, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.dash-visual span {
  position: absolute;
  border: 2px solid var(--teal-bright);
  border-radius: 50%;
}

.dash-visual span:nth-child(1) {
  width: 60px;
  height: 60px;
  left: 28px;
  top: 44px;
}

.dash-visual span:nth-child(2) {
  width: 88px;
  height: 88px;
  right: 28px;
  top: 26px;
  border-color: var(--gold);
}

.dash-visual span:nth-child(3) {
  width: 3px;
  height: 100%;
  top: 0;
  left: 45%;
  border: 0;
  border-radius: 0;
  background: var(--gold);
}

.dash-metric {
  padding: 28px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dash-metric strong {
  display: block;
  color: #ffffff;
  font-size: clamp(4rem, 9vw, 6.2rem);
  line-height: 0.85;
  font-weight: 900;
}

.dash-metric span,
.dash-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-grid div {
  padding: 15px;
  background: var(--dark-2);
}

.dash-grid strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

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

.section-heading.narrow {
  max-width: 720px;
}

.section-heading span,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.engineer-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.engineer-copy p,
.final-cta p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.priority-services,
.audience,
.faq {
  background: var(--surface);
}

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

.priority-card,
.category-card,
.differential-list article,
.proof-grid article,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.priority-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.priority-card:hover,
.category-card:hover,
.differential-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 127, 120, 0.34);
  box-shadow: var(--shadow);
}

.priority-card.featured {
  border-color: rgba(8, 127, 120, 0.38);
  background: linear-gradient(180deg, #ffffff, #eef6f5);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(8, 127, 120, 0.1);
  border-radius: var(--radius);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority-card h3,
.category-card h3,
.differential-list h3 {
  margin: 0;
  font-size: 1.08rem;
}

.priority-card p,
.category-card li,
.differential-list p,
.proof-grid span {
  color: var(--muted);
  font-size: 0.93rem;
}

.priority-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
  font-size: 0.9rem;
}

.priority-card a::after {
  content: " →";
}

.problem-categories,
.process,
.social-proof {
  background: var(--bg);
}

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

.category-card {
  padding: 26px;
}

.category-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-label.danger {
  color: var(--danger);
}

.category-label.performance {
  color: #7a5b04;
}

.category-card ul,
.engineer-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.category-card li {
  position: relative;
  padding-left: 20px;
}

.category-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inline-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.inline-cta a,
.text-cta {
  color: var(--teal);
  font-weight: 900;
}

.inline-cta.contrast {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.inline-cta.contrast p {
  color: rgba(255, 255, 255, 0.75);
}

.inline-cta.contrast a {
  color: #ffffff;
}

.authority {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 127, 120, 0.34), rgba(225, 185, 84, 0.08)),
    var(--dark);
}

.authority .section-heading span {
  color: var(--teal-bright);
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.metric-item {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-item strong {
  color: #ffdb6c;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.9;
  font-weight: 900;
}

.metric-item span {
  color: rgb(255 255 255);
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list strong {
  color: var(--teal);
  font-size: 0.86rem;
}

.process-list span {
  display: block;
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.audience {
  padding: 96px 0 112px;
}

.audience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.audience .section-heading {
  margin-bottom: 0;
}

.audience .section-heading h2,
.differentials .section-heading h2 {
  max-width: 560px;
  font-size: clamp(2rem, 2.7vw, 3.35rem);
  line-height: 1.06;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  max-width: 560px;
  margin-left: auto;
}

.audience-list span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 13px;
  color: var(--ink);
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13, 23, 28, 0.04);
}

.differentials {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 127, 120, 0.22), rgba(225, 185, 84, 0.08)),
    var(--dark);
  padding: 112px 0 126px;
}

.differentials::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  background: rgba(255, 255, 255, 0.06);
}

.differentials .section-heading span {
  color: var(--teal-bright);
}

.differentials .section-heading h2 {
  color: #ffffff;
}

.differentials-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 88px;
  align-items: center;
}

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

.differential-list article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.differential-list h3 {
  color: #ffffff;
}

.differential-list p {
  color: rgba(255, 255, 255, 0.68);
}

.engineer {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(225, 185, 84, 0.12), transparent 38%),
    var(--dark);
}

.engineer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.portrait-card {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.portrait-placeholder {
  min-height: 500px;
  display: grid;
  place-items: end start;
  padding: 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, rgba(30, 201, 189, 0.22), rgba(225, 185, 84, 0.12));
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: var(--radius);
}

.portrait-placeholder span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engineer-copy .section-kicker {
  color: var(--teal-bright);
}

.engineer-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.engineer-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 0;
}

.engineer-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.proof-grid article {
  min-height: 150px;
  padding: 22px;
}

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

.proof-grid strong {
  margin-bottom: 12px;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
}

.text-cta {
  display: inline-block;
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: var(--bg);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
  background: rgba(8, 127, 120, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

.final-cta {
  padding: 76px 0;
  background: var(--surface);
}

.final-cta-shell {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 6vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 127, 120, 0.28), rgba(225, 185, 84, 0.14)),
    var(--dark);
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
}

.premium-footer {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #0f0f11;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(125% 125% at 50% 10%, rgba(15, 15, 17, 0.4) 46%, rgba(60, 162, 250, 0.2) 100%),
    linear-gradient(135deg, rgba(8, 127, 120, 0.24), rgba(225, 185, 84, 0.08) 42%, rgba(60, 162, 250, 0.12));
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 42px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(170px, 0.7fr));
  gap: 44px;
  padding-bottom: 42px;
}

.footer-brand-lockup .brand-copy strong {
  color: #ffffff;
}

.footer-brand-lockup .brand-copy small {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand p,
.footer-contact p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

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

.footer-column h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--teal-bright);
  transform: translateX(3px);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--teal-bright);
  background: rgba(30, 201, 189, 0.1);
  border-radius: 50%;
  font-size: 0.8rem;
}

.footer-column .footer-cta {
  width: fit-content;
  margin-top: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f4d985);
  border-radius: var(--radius);
  font-weight: 900;
}

.footer-column .footer-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-hover-word {
  position: relative;
  z-index: 1;
  height: 330px;
  margin: -120px auto -86px;
  opacity: 0.84;
}

.footer-hover-word svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: pointer;
  user-select: none;
}

.footer-hover-word text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  fill: transparent;
  stroke-width: 0.35;
}

.footer-word-base {
  stroke: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 180ms ease;
}

.footer-word-draw {
  stroke: rgba(60, 162, 250, 0.72);
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: footer-draw 4s ease-in-out both;
}

.footer-word-glow {
  stroke: url(#footerTextGradient);
  opacity: 0;
  transition: opacity 180ms ease;
}

.premium-footer.is-hovered .footer-word-base {
  opacity: 0.55;
}

.premium-footer.is-hovered .footer-word-glow {
  opacity: 1;
}

@keyframes footer-draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #ffffff;
  background: #0aa867;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(10, 168, 103, 0.34);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp span {
  max-width: 185px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .engineer-grid {
    gap: 38px;
  }

  .hero-media {
    width: min(58vw, 760px);
  }

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

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

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    background: rgba(245, 247, 248, 0.92);
    border-bottom: 1px solid rgba(220, 228, 230, 0.82);
    backdrop-filter: blur(16px);
  }

  .brand-copy strong {
    color: var(--ink);
  }

  .brand-copy small {
    color: var(--muted);
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
    color: #39454c;
  }

  .nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .nav-cta {
    text-align: center;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-grid,
  .audience-shell,
  .differentials-grid,
  .engineer-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    font-size: clamp(2rem, 6.8vw, 3.15rem);
  }

  .hero-grid {
    min-height: 0;
    padding: 72px 0 32px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-media {
    position: relative;
    z-index: 2;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
  }

  .hero-media img {
    width: 100%;
    min-height: 100%;
    transform: none;
  }

  .hero-stat-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding-bottom: 28px;
  }

  .differentials::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 58%;
  }

  .audience-shell,
  .differentials-grid {
    gap: 42px;
  }

  .audience-list {
    margin-left: 0;
  }

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

  .portrait-placeholder {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-shell {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.65rem);
    line-height: 1.06;
  }

  .hero-actions,
  .inline-cta {
    display: grid;
  }

  .btn,
  .inline-cta a {
    width: 100%;
  }

  .trust-list li {
    width: 100%;
  }

  .hero-dashboard {
    padding: 20px;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .dash-grid,
  .priority-grid,
  .category-grid,
  .metric-board,
  .process-list,
  .differential-list,
  .engineer-points,
  .proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .priority-card,
  .category-card,
  .process-list li,
  .differential-list article {
    min-height: auto;
  }

  .metric-item {
    min-height: 150px;
  }

  .portrait-placeholder {
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .audience {
    padding: 76px 0 84px;
  }

  .audience .section-heading h2,
  .differentials .section-heading h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.7rem);
  }

  .differentials {
    padding: 76px 0 84px;
  }

  .differentials::before {
    height: 62%;
  }

  .footer-content {
    padding: 56px 0 34px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-hover-word {
    display: none;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
