

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: 8s ease-in-out infinite orbFloat;
  pointer-events: none
}

.hero-inner,
.hero-stat,
section {
  position: relative
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 168, 76, .08);
  top: -100px;
  right: 10%;
  animation-delay: 0s
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(46, 204, 113, .05);
  bottom: 20%;
  left: 5%;
  animation-delay: 3s
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(231, 76, 60, .05);
  top: 30%;
  right: 25%;
  animation-delay: 6s
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-30px) scale(1.05)
  }
}

.hero-inner {
  z-index: 1;
  text-align: center;
  max-width: 900px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  animation: .8s both fadeUp
}

.eyebrow-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: 2s infinite pulse
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, .6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0)
  }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
  animation: .8s .1s both fadeUp
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  max-width: 620px;
  margin: 24px auto 48px;
  animation: .8s .2s both fadeUp
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: .8s .3s both fadeUp
}

.btn-ghost-hero,
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  font-family: Outfit, sans-serif;
  cursor: pointer;
  transition: .2s;
  text-decoration: none
}

.btn-primary-hero {
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 8px 32px rgba(201, 168, 76, .3)
}

.btn-primary-hero:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .4)
}

.btn-ghost-hero {
  gap: 8px;
  background: 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .15)
}

.btn-ghost-hero:hover {
  border-color: rgba(255, 255, 255, .35);
  color: var(--white)
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  animation: .8s .5s both fadeUp
}

.hero-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 0 24px
}

.hero-stat+.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, .07)
}

.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block
}

.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: 1px;
  margin-top: 6px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

section {
  z-index: 1
}

.section-pad {
  padding: 100px 0
}

.section-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px
}

.section-label-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold)
}

.section-title-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px
}

.section-title-large span {
  color: var(--gold);
  font-style: italic
}

.section-body-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  max-width: 580px
}

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .3), transparent);
  margin: 0 auto
}

.signal-count-strip,
.ud-col-body,
.what-feature,
.what-is {
  background: rgba(255, 255, 255, .02)
}

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

.engine-grid,
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.what-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px
}

.what-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: .2s
}

.what-feature:hover {
  border-color: rgba(201, 168, 76, .2);
  background: rgba(201, 168, 76, .03)
}

.wf-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px
}

.ev-title,
.sm-header,
.sm-live,
.ud-signal-icon {
  align-items: center;
  display: flex
}

.wf-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px
}

.wf-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6
}

.signal-mockup {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4)
}

.sm-header {
  background: rgba(201, 168, 76, .08);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  padding: 14px 18px;
  justify-content: space-between
}

.sm-header-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px
}

.scs-val,
.sm-score-num,
.sm-signal-score,
.ud-signal-score {
  font-family: 'Cormorant Garamond', serif
}

.dim-cadence,
.dim-num,
.engine-step-day,
.engine-step-num,
.ev-bar-val,
.ev-title {
  font-family: 'DM Mono', monospace
}

.sm-live {
  gap: 6px;
  font-size: 10px;
  color: var(--up)
}

.sm-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--up);
  animation: 2s infinite pulse
}

.sm-score-row {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.sm-score-num {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--up)
}

.sm-score-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--up);
  letter-spacing: .5px
}

.sm-score-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px
}

.sm-score-delta,
.sm-signal-score.up,
.ud-signal-score.up,
.ud-title.up {
  color: var(--up)
}

.sm-score-delta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  background: rgba(46, 204, 113, .1);
  border: 1px solid rgba(46, 204, 113, .2);
  padding: 6px 12px;
  border-radius: 20px
}

.sm-signals {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.sm-signal {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .05);
  background: rgba(255, 255, 255, .02)
}

.sm-signal-score {
  font-size: 22px;
  font-weight: 700;
  min-width: 36px;
  text-align: center
}

.sm-signal-score.warn {
  color: var(--warn)
}

.sm-signal-score.down,
.ud-signal-score.down,
.ud-title.down {
  color: var(--down)
}

.sm-signal-name,
.ud-signal-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white)
}

.sm-signal-cat,
.ud-signal-cat {
  font-size: 10px;
  color: rgba(255, 255, 255, .3)
}

.sm-signal-pill {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  letter-spacing: .5px
}

.dim-card,
.scs-item {
  padding: 20px 16px;
  text-align: center;
  position: relative
}

.sm-signal-pill.up,
.ud-count.up {
  background: rgba(46, 204, 113, .12);
  color: var(--up)
}

.sm-signal-pill.warn {
  background: rgba(243, 156, 18, .12);
  color: var(--warn)
}

.sm-signal-pill.down,
.ud-count.down {
  background: rgba(231, 76, 60, .12);
  color: var(--down)
}

.dimensions {
  background: linear-gradient(180deg, transparent 0, rgba(201, 168, 76, .02) 100%)
}

.dim-header {
  text-align: center;
  margin-bottom: 64px
}

.dim-header .section-label-tag {
  justify-content: center
}

.dim-header .section-label-tag::before {
  display: none
}

.dim-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 48px
}

.gi-row,
.ud-grid {
  grid-template-columns: 1fr 1fr
}

.dim-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  transition: .2s;
  cursor: default
}

.dim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color, var(--gold)), transparent);
  opacity: 0;
  transition: opacity .2s
}

.dim-card:hover {
  border-color: rgba(255, 255, 255, .12);
  transform: translateY(-2px)
}

.dim-card:hover::before {
  opacity: 1
}

.dim-num {
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: 1px;
  margin-bottom: 8px
}

.dim-icon {
  font-size: 20px;
  margin-bottom: 10px;
  display: block
}

.dim-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3
}

.dim-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.5
}

.dim-cadence {
  margin-top: 10px;
  font-size: 9px;
  letter-spacing: 1.5px
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .2)
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, .15);
  max-width: 600px;
  line-height: 1.5
}

.signal-count-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  overflow: hidden
}

.scs-item {
  flex: 1
}

.scs-item+.scs-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, .06)
}

.scs-val {
  font-size: 36px;
  font-weight: 600;
  display: block;
  line-height: 1
}

.scs-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .8px;
  margin-top: 4px
}

.ud-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px
}

.ud-col {
  border-radius: 14px
}

.ud-col-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cta-assurance,
.cta-assurances,
.ud-signal-row,
.ud-title {
  display: flex;
  align-items: center
}

.ud-col-header.up {
  background: rgba(46, 204, 113, .08);
  border-bottom: 1px solid rgba(46, 204, 113, .15)
}

.ud-col-header.down {
  background: rgba(231, 76, 60, .08);
  border-bottom: 1px solid rgba(231, 76, 60, .15)
}

.ud-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  gap: 8px
}

.ud-count {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px
}

.ud-col-body {
  border: 1px solid rgba(255, 255, 255, .06);
  border-top: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 0 14px 14px
}

.engine-section,
.engine-step {
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.ud-signal-row {
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .04);
  background: rgba(255, 255, 255, .01)
}

.ud-signal-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px
}

.ud-signal-icon.up {
  background: rgba(46, 204, 113, .1);
  color: var(--up)
}

.ud-signal-icon.down {
  background: rgba(231, 76, 60, .1);
  color: var(--down)
}

.ud-signal-score {
  margin-left: auto;
  font-size: 20px;
  font-weight: 700
}

.engine-section {
  background: linear-gradient(135deg, rgba(201, 168, 76, .04) 0, transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, .04)
}

.engine-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px
}

.engine-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative
}

.engine-step:last-child {
  border-bottom: none
}

.engine-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold)
}

.engine-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px
}

.engine-step-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

.engine-step-day,
.ev-title {
  font-size: 10px;
  color: var(--gold)
}

.engine-step-day {
  margin-left: auto;
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 4px
}

.ev-bar-row,
.ev-score-display {
  display: flex;
  align-items: center
}

.engine-visual {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 28px;
  position: relative
}

.ev-bar-track,
.ev-divider {
  background: rgba(255, 255, 255, .06)
}

.ev-title {
  letter-spacing: 2px;
  margin-bottom: 20px;
  gap: 8px
}

.ev-bar-label,
.ev-score-label {
  color: rgba(255, 255, 255, .4);
  font-size: 11px
}

.ev-bar-row {
  gap: 12px;
  margin-bottom: 12px
}

.ev-bar-label {
  width: 100px;
  flex-shrink: 0
}

.ev-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 3px
}

.ev-bar-fill {
  height: 100%;
  border-radius: 3px;
  animation: 1.5s both barGrow
}

@keyframes barGrow {
  from {
    width: 0 !important
  }
}

.ev-bar-val {
  font-size: 11px;
  width: 32px;
  text-align: right;
  flex-shrink: 0
}

.cta-section,
.gi-note,
.gi-success {
  text-align: center
}

.ev-divider {
  height: 1px;
  margin: 20px 0
}

.ev-score-display {
  justify-content: space-between;
  background: rgba(201, 168, 76, .05);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 10px;
  padding: 16px 20px
}

.ev-score-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1
}

.ev-score-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--up)
}

.cta-section {
  padding: 120px 0;
  background: radial-gradient(ellipse 800px 400px at center, rgba(201, 168, 76, .06) 0, transparent 70%)
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px
}

.cta-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  display: block
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px
}

.cta-title em,
.gi-title em {
  font-style: italic;
  color: var(--gold)
}

.cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 48px
}

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: .25s;
  box-shadow: 0 8px 40px rgba(201, 168, 76, .35), 0 0 0 0 rgba(201, 168, 76, .4);
  animation: 3s ease-in-out infinite ctaPulse
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 8px 40px rgba(201, 168, 76, .35), 0 0 0 0 rgba(201, 168, 76, .2)
  }

  50% {
    box-shadow: 0 8px 40px rgba(201, 168, 76, .5), 0 0 0 16px rgba(201, 168, 76, 0)
  }
}

.cta-main-btn:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(201, 168, 76, .5);
  animation: none
}

.cta-arrow {
  transition: transform .2s
}

.cta-main-btn:hover .cta-arrow {
  transform: translateX(4px)
}

.cta-assurances {
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap
}

.cta-assurance {
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .3)
}

.cta-assurance i {
  color: var(--gold);
  font-size: 11px
}

.gi-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px
}

.gi-close,
.gi-header,
.gi-overlay.open {
  display: flex
}

.gi-box,
.gi-select option {
  background: var(--navy2)
}

.gi-box {
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
  animation: .3s both fadeUp
}

.gi-header {
  padding: 28px 32px 0;
  align-items: flex-start;
  justify-content: space-between
}

.gi-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px
}

.gi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1
}

.gi-close,
.gi-sub {
  color: rgba(255, 255, 255, .4)
}

.gi-close {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: 0 0;
  cursor: pointer;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  transition: .15s;
  flex-shrink: 0
}

.gi-input,
.gi-select,
.gi-submit {
  width: 100%;
  font-family: Outfit, sans-serif
}

.gi-close:hover {
  background: rgba(255, 255, 255, .07);
  color: var(--white)
}

.gi-body {
  padding: 24px 32px 32px
}

.gi-sub {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px
}

.gi-field {
  margin-bottom: 14px
}

.gi-label-field {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
  margin-bottom: 6px;
  display: block
}

.gi-input,
.gi-select {
  padding: 11px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  outline: 0;
  transition: border-color .15s
}

.gi-input:focus,
.gi-select:focus {
  border-color: rgba(201, 168, 76, .4)
}

.gi-input::placeholder {
  color: rgba(255, 255, 255, .2)
}

.gi-row {
  display: grid;
  gap: 12px
}

.gi-submit {
  margin-top: 20px;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.gi-submit:hover {
  background: var(--gold2);
  transform: translateY(-1px)
}

.gi-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  margin-top: 12px
}

.gi-success {
  display: none;
  padding: 20px 0 10px
}

.gi-success.show {
  display: block
}

.gi-success-icon {
  font-size: 48px;
  color: var(--up);
  margin-bottom: 16px
}

.gi-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px
}

.gi-success-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s
}

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

@media (max-width:900px) {
  nav {
    padding: 14px 24px
  }

  .hero {
    padding: 100px 24px 60px
  }

  .hero-stats {
    flex-wrap: wrap
  }

  .engine-grid,
  .ud-grid,
  .what-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .dim-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .gi-row {
    grid-template-columns: 1fr
  }
}

@media (max-width:560px) {
  .dim-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-stat {
    padding: 0 12px
  }

  .hero-stat-val {
    font-size: 28px
  }
}

.divmain {
  background: var(--navy)
}