:root {
  --bg: #050507;
  --bg-soft: #0a0910;
  --card: rgba(18, 14, 27, .72);
  --card-strong: #100d18;
  --purple: #8b5cf6;
  --purple-2: #a855f7;
  --neon: #c86bff;
  --pink: #e879f9;
  --white: #f7f4ff;
  --muted: #a9a2b7;
  --line: rgba(255, 255, 255, .1);
  --max: 1680px;
  --gutter: clamp(24px, 4vw, 76px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6
}

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

button {
  font: inherit
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E")
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(150, 70, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(150, 70, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%)
}

.site-header {
  height: 100px;
  width: min(100%, var(--max));
  padding: 0 var(--gutter);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.04em
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(206, 114, 255, .5);
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  box-shadow: 0 0 30px rgba(151, 71, 255, .22);
  position: relative
}

.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  background: var(--neon)
}

.brand-mark:before {
  width: 13px;
  height: 2px
}

.brand-mark:after {
  height: 13px;
  width: 2px
}

.brand-mark span {
  width: 8px;
  height: 8px;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon)
}

.brand-text {
  font-size: 15px
}

.brand-text>span {
  color: var(--neon);
  margin-left: 4px
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  color: #c7c1d2
}

.nav a {
  transition: .25s
}

.nav a:hover {
  color: white
}

.nav-cta {
  border: 1px solid rgba(180, 93, 255, .45);
  padding: 10px 16px;
  color: white !important;
  background: rgba(139, 92, 246, .08)
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 6px 0
}

.hero {
  width: min(100%, var(--max));
  min-height: 790px;
  padding: 85px var(--gutter) 100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  position: relative
}

.hero:after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 98, 255, .35), transparent)
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none
}

.glow-one {
  width: 390px;
  height: 390px;
  background: rgba(129, 49, 255, .16);
  left: -140px;
  top: 60px
}

.glow-two {
  width: 300px;
  height: 300px;
  background: rgba(226, 88, 255, .09);
  right: 60px;
  bottom: 110px
}

.eyebrow,
.section-kicker {
  font-size: 11px;
  letter-spacing: .2em;
  color: #d6a9ff;
  font-weight: 700;
  text-transform: uppercase
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon)
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif
}

h1 {
  font-size: clamp(50px, 6vw, 79px);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 900px
}

.gradient-text {
  display: block;
  background: linear-gradient(92deg, #fff 0%, #d099ff 40%, #9c55ff 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 45px rgba(157, 81, 255, .18)
}

.hero-copy {
  font-size: 18px;
  color: var(--muted);
  max-width: 780px;
  margin: 28px 0 34px;
  line-height: 1.75
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: .3s
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #b147ff);
  box-shadow: 0 0 30px rgba(151, 71, 255, .23)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(151, 71, 255, .38)
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  color: #d2ccd9
}

.btn-secondary:hover {
  border-color: rgba(191, 102, 255, .5);
  color: white
}

.hero-trust {
  display: flex;
  gap: 34px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--line)
}

.hero-trust div {
  display: flex;
  flex-direction: column
}

.hero-trust strong {
  font-family: "Space Grotesk";
  font-size: 19px;
  color: white
}

.hero-trust span {
  font-size: 11px;
  color: #888191;
  margin-top: 2px
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center
}

.dashboard-card {
  width: min(100%, 480px);
  padding: 26px;
  background: linear-gradient(145deg, rgba(24, 17, 38, .97), rgba(8, 7, 12, .96));
  border: 1px solid rgba(196, 114, 255, .24);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .55), 0 0 45px rgba(138, 67, 255, .1);
  position: relative;
  z-index: 2
}

.dashboard-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 30%);
  pointer-events: none
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}

.card-label {
  font-size: 9px;
  letter-spacing: .16em;
  color: #9990a8
}

.card-topline h2 {
  font-size: 42px;
  margin-top: 8px
}

.card-topline h2 span {
  font-size: 15px;
  color: #766f82
}

.status-pill {
  font-size: 9px;
  letter-spacing: .13em;
  color: #d7b4ff;
  border: 1px solid rgba(194, 105, 255, .3);
  padding: 7px 9px;
  background: rgba(160, 72, 255, .08)
}

.score-ring {
  width: 205px;
  height: 205px;
  margin: 28px auto;
  position: relative
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg)
}

.score-ring circle {
  fill: none;
  stroke-width: 6
}

.ring-base {
  stroke: rgba(255, 255, 255, .06)
}

.ring-progress {
  stroke: url(#none);
  stroke: #a65cff;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 81;
  filter: drop-shadow(0 0 8px #9e57ff)
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.ring-center strong {
  font-family: "Space Grotesk";
  font-size: 37px
}

.ring-center span {
  font-size: 10px;
  color: #8e879a;
  text-transform: uppercase;
  letter-spacing: .14em
}

.metric-list {
  display: grid;
  gap: 15px
}

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center
}

.metric span,
.metric b {
  font-size: 10px
}

.metric span {
  color: #aaa3b4
}

.metric b {
  color: #d7c2ed
}

.metric i {
  grid-column: 1/-1;
  height: 3px;
  background: rgba(255, 255, 255, .06);
  position: relative
}

.metric i:after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, #6d3fe0, #d56aff);
  box-shadow: 0 0 10px rgba(192, 93, 255, .35)
}

.card-footer {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #7e7789
}

.card-footer span {
  display: flex;
  align-items: center;
  gap: 7px
}

.card-footer i {
  width: 6px;
  height: 6px;
  background: #bb67ff;
  border-radius: 50%;
  box-shadow: 0 0 9px #bb67ff
}

.orbit {
  position: absolute;
  border: 1px solid rgba(160, 80, 255, .13);
  border-radius: 50%
}

.orbit-one {
  width: 500px;
  height: 500px
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: spin 28s linear infinite
}

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

.section-padding {
  width: min(100%, var(--max));
  margin: auto;
  padding: 120px var(--gutter)
}

.section-heading {
  max-width: 80%;
  margin-bottom: 56px
}

.section-heading h2,
.framework-header h2,
.maturity-copy h2,
.cta-content h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 14px 0 20px
}

.section-heading p,
.framework-header p,
.maturity-copy p,
.cta-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.glass-card {
  padding: 27px 24px 30px;
  min-height: 255px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), rgba(137, 67, 255, .025));
  transition: .3s;
  position: relative;
  overflow: hidden
}

.glass-card:before {
  content: "";
  position: absolute;
  inset: auto -40% -70% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(147, 64, 255, .12);
  filter: blur(35px)
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(190, 103, 255, .3)
}

.card-number {
  font-family: "Space Grotesk";
  font-size: 11px;
  color: var(--neon)
}

.glass-card h3 {
  font-size: 19px;
  margin: 50px 0 12px
}

.glass-card p {
  font-size: 13px;
  color: #948d9f;
  line-height: 1.7
}

.services {
  max-width: none;
  background: linear-gradient(180deg, rgba(85, 31, 132, .05), transparent 30%, rgba(85, 31, 132, .04));
}

.services>.section-heading,
.services-grid {
  width: min(100%, var(--max));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.service-card {
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
  position: relative;
  min-height: 360px;
  transition: .3s
}

.service-card:hover {
  background: rgba(139, 92, 246, .04);
  border-color: rgba(180, 92, 255, .28)
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(119, 45, 207, .14), rgba(255, 255, 255, .02));
  border-color: rgba(184, 101, 255, .28)
}

.service-card>span {
  position: absolute;
  right: 32px;
  top: 28px;
  font-size: 10px;
  color: #675f70
}

.service-icon {
  font-size: 28px;
  color: #c56bff;
  text-shadow: 0 0 20px rgba(197, 107, 255, .5);
  margin-bottom: 55px
}

.service-card h3 {
  font-size: 25px;
  margin-bottom: 15px
}

.service-card p {
  color: #9e97a8;
  font-size: 14px;
  max-width: 500px
}

.service-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  margin-top: 24px;
  list-style: none
}

.service-card li {
  font-size: 11px;
  color: #c5becd
}

.service-card li:before {
  content: "+";
  color: var(--neon);
  margin-right: 8px
}

.framework-header {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 55px
}

.framework-header p {
  max-width: 500px
}

.framework-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  border: 1px solid var(--line);
  min-height: 650px;
  background: rgba(255, 255, 255, .015)
}

.pillar-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line)
}

.pillar {
  height: 65px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #8f8899;
  text-align: left;
  cursor: pointer;
  transition: .25s
}

.pillar b {
  font-size: 9px;
  color: #5e5866
}

.pillar span {
  font-size: 13px
}

.pillar i {
  font-style: normal;
  opacity: 0
}

.pillar:hover,
.pillar.active {
  color: white;
  background: linear-gradient(90deg, rgba(139, 92, 246, .14), transparent)
}

.pillar.active {
  box-shadow: inset 2px 0 #bc65ff
}

.pillar.active b {
  color: var(--neon)
}

.pillar.active i {
  opacity: 1;
  color: var(--neon)
}

.pillar-detail {
  padding: 62px 58px;
  position: relative;
  overflow: hidden
}

.detail-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(145, 58, 255, .12);
  filter: blur(80px);
  right: -130px;
  top: -120px
}

.pillar-detail>span {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--neon)
}

.pillar-detail h3 {
  font-size: 40px;
  letter-spacing: -.04em;
  margin: 18px 0
}

.pillar-detail>p {
  color: #aaa3b3;
  max-width: 650px
}

.detail-items {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0 50px
}

.detail-items span {
  padding: 8px 11px;
  font-size: 10px;
  border: 1px solid rgba(190, 104, 255, .2);
  color: #c8bed1;
  background: rgba(139, 92, 246, .045)
}

.mini-chart {
  border-top: 1px solid var(--line);
  padding-top: 25px
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #8f8997
}

.chart-header strong {
  font-size: 18px;
  color: #d8c4ef
}

.chart-bars {
  height: 135px;
  display: flex;
  align-items: end;
  gap: 15px;
  margin-top: 20px;
  padding: 0 12px;
  background: repeating-linear-gradient(to top, rgba(255, 255, 255, .04) 0, rgba(255, 255, 255, .04) 1px, transparent 1px, transparent 34px)
}

.chart-bars i {
  flex: 1;
  max-width: 44px;
  background: linear-gradient(to top, #6032ca, #c766ff);
  box-shadow: 0 0 18px rgba(174, 83, 255, .14)
}

.indexes {
  max-width: none;
  background: #08070b
}

.indexes>.section-heading,
.index-grid {
  width: min(100%, var(--max));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.index-card {
  padding: 27px;
  border: 1px solid var(--line);
  min-height: 290px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent)
}

.index-card>span {
  font-family: "Space Grotesk";
  font-size: 12px;
  color: var(--neon);
  border: 1px solid rgba(190, 100, 255, .25);
  padding: 7px 9px;
  display: inline-block
}

.index-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 36px 0 13px
}

.index-card p {
  font-size: 12px;
  color: #928b9c;
  min-height: 75px
}

.index-line {
  height: 4px;
  background: rgba(255, 255, 255, .06);
  margin-top: 25px;
  position: relative
}

.index-line i {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, #6b3bd7, #d066ff)
}

.index-line b {
  position: absolute;
  right: 0;
  top: -30px;
  font-family: "Space Grotesk";
  font-size: 19px
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative
}

.timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, #6e32df, #cc6aff)
}

.timeline-step {
  position: relative;
  padding-right: 35px
}

.timeline-step>span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(195, 103, 255, .4);
  background: #08070b;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk";
  font-size: 12px;
  color: var(--neon);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 25px rgba(149, 67, 255, .12)
}

.timeline-step div {
  margin-top: 27px
}

.timeline-step small {
  font-size: 9px;
  letter-spacing: .18em;
  color: #7f7789
}

.timeline-step h3 {
  font-size: 20px;
  margin: 10px 0
}

.timeline-step p {
  font-size: 12px;
  color: #918a9a;
  line-height: 1.7
}

.maturity {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
  align-items: center
}

.maturity-copy p {
  max-width: 500px
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  color: #d7b4ff;
  font-size: 13px;
  border-bottom: 1px solid rgba(202, 116, 255, .3);
  padding-bottom: 5px
}

.maturity-levels {
  border: 1px solid var(--line)
}

.level {
  min-height: 86px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: #8a8392;
  transition: .25s
}

.level:last-child {
  border-bottom: 0
}

.level>span {
  font-family: "Space Grotesk";
  font-size: 10px
}

.level div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.level b {
  font-family: "Space Grotesk";
  font-size: 20px
}

.level small {
  font-size: 10px;
  max-width: 230px
}

.level.active {
  background: linear-gradient(90deg, rgba(139, 92, 246, .18), rgba(139, 92, 246, .03));
  color: white;
  box-shadow: inset 3px 0 #c667ff
}

.level.active>span {
  color: var(--neon)
}

.deliverables {
  border-top: 1px solid rgba(255, 255, 255, .05)
}

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

.deliverable {
  padding: 30px 25px;
  border-left: 1px solid rgba(185, 100, 255, .25);
  background: linear-gradient(90deg, rgba(125, 55, 194, .05), transparent)
}

.deliverable>span {
  font-size: 10px;
  color: var(--neon)
}

.deliverable h3 {
  font-size: 19px;
  margin: 42px 0 12px
}

.deliverable p {
  font-size: 12px;
  color: #928b9d
}

.cta-section {
  width: calc(100% - clamp(24px, 3vw, 52px));
  max-width: 1760px;
  padding: 90px var(--gutter);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(194, 106, 255, .28);
  background: linear-gradient(135deg, #120d1d, #08070b)
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(183, 90, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(183, 90, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black, transparent)
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.cta-content p {
  max-width: 700px
}

.cta-email {
  font-size: 12px;
  color: #b8afc2
}

.cta-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  right: -150px;
  top: -100px;
  background: rgba(159, 70, 255, .2);
  filter: blur(100px)
}

footer {
  width: min(100%, var(--max));
  margin: 60px auto 0;
  padding: 35px var(--gutter) 50px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #716a79
}

footer p {
  letter-spacing: .08em
}

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

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

.delay-1 {
  transition-delay: .09s
}

.delay-2 {
  transition-delay: .18s
}

.delay-3 {
  transition-delay: .27s
}

@media(max-width:980px) {
  .nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 24px;
    right: 24px;
    background: #0c0912;
    border: 1px solid var(--line);
    padding: 25px;
    flex-direction: column;
    align-items: flex-start
  }

  .nav.open {
    display: flex
  }

  .menu-toggle {
    display: block
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px
  }

  .hero-visual {
    min-height: 500px
  }

  .problem-grid,
  .index-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .framework-header,
  .maturity {
    grid-template-columns: 1fr
  }

  .framework-layout {
    grid-template-columns: 1fr
  }

  .pillar-list {
    border-right: 0
  }

  .pillar-detail {
    min-height: 540px
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 25px
  }

  .timeline:before {
    display: none
  }
}

@media(max-width:650px) {
  .site-header {
    height: 72px
  }

  .brand-text {
    font-size: 13px
  }

  .hero {
    padding-top: 45px;
    min-height: auto;
    gap: 20px
  }

  .hero-copy {
    font-size: 15px
  }

  .hero-trust {
    gap: 18px;
    flex-wrap: wrap
  }

  .hero-trust div {
    width: calc(50% - 10px)
  }

  .hero-visual {
    min-height: 430px
  }

  .dashboard-card {
    padding: 20px
  }

  .orbit-one {
    width: 390px;
    height: 390px
  }

  .orbit-two {
    width: 310px;
    height: 310px
  }

  .section-padding {
    padding: 80px 20px
  }

  .problem-grid,
  .services-grid,
  .index-grid,
  .deliverable-grid,
  .timeline {
    grid-template-columns: 1fr
  }

  .framework-header {
    gap: 10px
  }

  .framework-layout {
    border-left: 0;
    border-right: 0
  }

  .pillar-detail {
    padding: 45px 25px
  }

  .pillar-detail h3 {
    font-size: 31px
  }

  .service-card {
    padding: 28px
  }

  .maturity {
    gap: 35px
  }

  .level {
    padding: 0 16px
  }

  .level div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px
  }

  .cta-section {
    padding: 58px 24px;
    max-width: calc(100% - 30px)
  }

  footer {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column
  }

  .timeline-step {
    padding-right: 0
  }

  .timeline-step>span {
    width: 52px;
    height: 52px
  }

  .section-heading h2,
  .framework-header h2,
  .maturity-copy h2,
  .cta-content h2 {
    font-size: 36px
  }
}

/* Diagnostic contact form */
.cta-section {
  width: calc(100% - clamp(24px, 3vw, 52px));
  max-width: 1760px;
  padding: 90px var(--gutter)
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(55px, 6vw, 120px);
  align-items: start
}

.contact-benefits {
  display: grid;
  gap: 14px;
  margin: 34px 0
}

.contact-benefits div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.contact-benefits span {
  font-family: "Space Grotesk";
  font-size: 10px;
  color: var(--neon);
  letter-spacing: .15em
}

.contact-benefits p {
  font-size: 12px;
  margin: 0;
  color: #aaa2b2
}

.diagnostic-form {
  padding: 34px;
  border: 1px solid rgba(202, 116, 255, .28);
  background: rgba(8, 7, 11, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35), inset 0 1px rgba(255, 255, 255, .04)
}

.form-header {
  padding-bottom: 24px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line)
}

.form-header>span {
  font-family: "Space Grotesk";
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--neon)
}

.form-header h3 {
  font-size: 27px;
  margin: 10px 0 7px
}

.form-header p {
  font-size: 12px;
  color: #91899a;
  margin: 0
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0
}

.form-field-full {
  grid-column: 1/-1
}

.form-field label,
.form-consent label {
  font-size: 10px;
  letter-spacing: .06em;
  color: #c8c1ce
}

.form-field label b,
.form-consent label b {
  color: var(--neon);
  font-weight: 500
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background: rgba(255, 255, 255, .025);
  color: #f7f2fa;
  font: inherit;
  font-size: 12px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #a99fb1 50%), linear-gradient(135deg, #a99fb1 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px
}

.form-field option {
  background: #110d18;
  color: #fff
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #665f6d
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(205, 108, 255, .65);
  box-shadow: 0 0 0 3px rgba(170, 77, 255, .09), 0 0 22px rgba(166, 70, 255, .07);
  background: rgba(181, 87, 255, .035)
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #ff6d9d
}

.field-error {
  min-height: 12px;
  font-size: 9px;
  color: #ff8cb3;
  letter-spacing: .02em
}

.textarea-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.textarea-meta>span {
  font-size: 9px;
  color: #706878
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px
}

.form-consent input {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  accent-color: #b965ff
}

.form-consent label {
  line-height: 1.55;
  color: #91899a
}

.consent-error {
  display: block;
  margin-top: 5px
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  cursor: pointer
}

.form-submit:disabled {
  opacity: .55;
  cursor: not-allowed
}

.form-status {
  min-height: 18px;
  margin: 13px 0 0;
  text-align: center;
  font-size: 10px;
  color: #bcaec6
}

.form-status.success {
  color: #76f5c4
}

.form-status.error {
  color: #ff8cb3
}

@media(max-width:980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .cta-section {
    padding: 70px 45px
  }
}

@media(max-width:650px) {
  .cta-section {
    padding: 55px 20px
  }

  .diagnostic-form {
    padding: 25px 18px
  }

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

  .form-field-full {
    grid-column: auto
  }

  .form-header h3 {
    font-size: 24px
  }
}

.logo-header{
    height:210px;
    width:auto;
    display:block;
    transition:.3s;
}

.logo-footer{
    height:180px;
    width:auto;
    display:block;
    opacity:.9;
    transition:.3s;
}

.logo-header:hover,
.logo-footer:hover{
    transform:scale(1.03);
}

@media (max-width:650px){

    /* Esconde a logo do header */
    .site-header .logo-header{
        display:none;
    }

    /* Logo menor no footer */
    .logo-footer{
        height:56px;
    }

}


.mini-chart {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.chart-header > div {
  display: flex;
  flex-direction: column;
}

.chart-header span {
  font-size: 10px;
  color: #b6aebf;
  letter-spacing: .05em;
}

.chart-header small {
  margin-top: 3px;
  font-size: 8px;
  color: #696171;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chart-header strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: #f4ebff;
  text-shadow: 0 0 18px rgba(0, 229, 255, .25);
}

.tech-line-chart {
  height: 200px;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 229, 255, .08),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(139, 92, 246, .06),
      rgba(0, 229, 255, .015)
    );
}

.chart-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, .045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .035) 1px,
      transparent 1px
    );
  background-size: 100% 42px, 75px 100%;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .9),
    transparent
  );
}

.maturity-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 15px;
  width: calc(100% - 36px);
  height: 165px;
  overflow: visible;
}

.chart-area {
  fill: url(#areaGradient);
}

.chart-line,
.chart-line-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line {
  stroke: url(#lineGradient);
  stroke-width: 3;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-tech-line 1.8s ease forwards;
}

.chart-line-glow {
  stroke: url(#lineGradient);
  stroke-width: 8;
  opacity: .2;
  filter: url(#lineGlow);
}

.chart-points circle {
  fill: #08070b;
  stroke: #9f67ff;
  stroke-width: 3;
  filter: drop-shadow(0 0 7px rgba(159, 103, 255, .8));
  opacity: 0;
  animation: show-chart-point .35s ease forwards;
}

.chart-points circle:nth-child(1) {
  animation-delay: .25s;
}

.chart-points circle:nth-child(2) {
  animation-delay: .5s;
}

.chart-points circle:nth-child(3) {
  animation-delay: .75s;
}

.chart-points circle:nth-child(4) {
  animation-delay: 1s;
}

.chart-points circle:nth-child(5) {
  animation-delay: 1.25s;
}

.chart-points circle:nth-child(6) {
  animation-delay: 1.5s;
}

.chart-points .current-point {
  fill: #00e5ff;
  stroke: #dffcff;
  stroke-width: 3;
  filter:
    drop-shadow(0 0 7px #00e5ff)
    drop-shadow(0 0 14px rgba(0, 229, 255, .55));
}

.chart-tooltip {
  position: absolute;
  top: 5px;
  right: 20px;
  display: flex;
  flex-direction: column;
  padding: 3px 4px;
  border: 1px solid rgba(0, 229, 255, .25);
  background: rgba(5, 8, 13, .85);
  backdrop-filter: blur(8px);
}

.chart-tooltip span {
  font-size: 7px;
  color: #8f8799;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.chart-tooltip strong {
  font-size: 13px;
  color: #00e5ff;
}

.chart-axis-labels {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 11px;
  display: flex;
  justify-content: space-between;
}

.chart-axis-labels span {
  font-size: 7px;
  color: #716a79;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@keyframes draw-tech-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes show-chart-point {
  from {
    opacity: 0;
    transform: scale(.2);
    transform-origin: center;
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}