
  :root {
    --primary: #972E11;
    --dark: #060404;
    --gold: #D08A52;
    --gray: #A89F97;
  }
  body {
    font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
    background-color: var(--dark);
    color: #fff;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: "Sora", sans-serif;
  }

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #060404; }
::-webkit-scrollbar-thumb { background: rgba(151,46,17,.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(151,46,17,.8); }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.bg-tech-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(151,46,17,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(151,46,17,.07) 1px, transparent 1px);
}
.bg-tech-dots {
  background-size: 24px 24px;
  background-image: radial-gradient(rgba(168,159,151,.15) 1px, transparent 1px);
}

.font-sora { font-family: "Poppins", sans-serif; }

.progress-gradient {
  width: 0;
  background: linear-gradient(to right, #972E11, #C96A38, #D08A52);
  box-shadow: 0 0 10px rgba(151,46,17,.8);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: transform;
}
.cursor-glow.visible { opacity: 1; }
.cursor-glow-orb {
  width: 380px;
  height: 380px;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(151,46,17,.18) 0%, rgba(151,46,17,.05) 40%, transparent 70%);
  filter: blur(24px);
}

#main-header.scrolled {
  background: rgba(6,4,4,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(151,46,17,.2);
  padding-top: .875rem;
  padding-bottom: .875rem;
  box-shadow: 0 10px 25px rgba(6,4,4,.8);
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s ease;
  cursor: pointer;
}
.nav-link:hover { color: var(--gold); }

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px rgba(151,46,17,.3);
  transition: all .3s ease;
  overflow: hidden;
}
.btn-primary:hover { background: transparent; color: #fff; }
.btn-primary:active { transform: scale(.95); }

.shadow-btn-blue { box-shadow: 0 10px 25px rgba(151,46,17,.4); }
.shadow-btn-blue-soft { box-shadow: 0 10px 25px rgba(151,46,17,.3); }
.shadow-wa { box-shadow: 0 8px 25px rgba(37,211,102,.4); }
.shadow-wa:hover { box-shadow: 0 12px 35px rgba(37,211,102,.6); }

.btn-shine-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
  pointer-events: none;
}
.group:hover > .btn-shine-sweep { transform: translateX(100%); }

.btn-shine-gold {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(208,138,82,.15), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
  pointer-events: none;
}
.group:hover > .btn-shine-gold { transform: translateX(100%); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s ease;
  cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }
.btn-outline:active { transform: scale(.95); }

#mobile-menu-toggle-btn .menu-icon-close { display: none; }
#mobile-menu-toggle-btn.menu-open .menu-icon-open { display: none; }
#mobile-menu-toggle-btn.menu-open .menu-icon-close { display: block; }

#mobile-menu-drawer.open { display: flex; animation: fadeIn .2s ease both; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: .75rem 1rem;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: background .2s ease, color .2s ease;
}
.mobile-nav-link:hover { background: rgba(151,46,17,.2); color: #fff; }

body.menu-locked { overflow: hidden; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .75rem;
  border-radius: 2px;
  background: #060404;
  border: 1px solid var(--primary);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ping-dot {
  position: relative;
  display: inline-flex;
  width: 6px;
  height: 6px;
}
.ping-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--gold);
  animation: pingDot 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.ping-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--gold);
}

.impact-word {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  text-shadow: 0 0 25px rgba(151,46,17,.5);
}
.impact-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  opacity: .8;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .875rem;
  border-radius: .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}
.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: .5rem;
}
.metric-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  white-space: nowrap;
}
.tag-green { background: rgba(16,185,129,.2); color: #34d399; }
.tag-gold { background: rgba(208,138,82,.2); color: #D08A52; }
.tag-blue { background: rgba(192,106,56,.2); color: #C96A38; }

.live-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.scroll-cue {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .6;
  transition: opacity .2s ease;
  cursor: pointer;
  z-index: 10;
}
.scroll-cue:hover { opacity: 1; }

.rocket-img {
  animation: rocketFloat 5s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes rocketFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 18px rgba(151,46,17,.15));
  }
  50% {
    transform: translateY(-7px) scale(1.008);
    filter: drop-shadow(0 0 28px rgba(151,46,17,.28));
  }
}

.marquee-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary);
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  padding: .875rem 0;
  user-select: none;
  z-index: 20;
  box-shadow: 0 5px 20px rgba(151,46,17,.35);
}
.marquee-fade-left, .marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 10;
  pointer-events: none;
  opacity: .8;
}
.marquee-fade-left { left: 0; background: linear-gradient(to right, #972E11, transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, #972E11, transparent); }
@media (min-width: 640px) {
  .marquee-strip { padding: 1rem 0; }
  .marquee-fade-left, .marquee-fade-right { width: 6rem; }
}

.animate-marquee {
  animation: marquee 70s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.animate-marquee:hover { animation-play-state: paused; }

.marquee-set {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee-word {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: .95;
  white-space: nowrap;
}
.marquee-star { color: var(--gold); font-size: 12px; font-weight: 900; }
@media (min-width: 768px) {
  .marquee-word { font-size: 16px; }
  .marquee-star { font-size: 14px; }
  .marquee-set { gap: 3rem; padding-right: 3rem; }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  background: rgba(6,4,4,.85);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(151,46,17,.25);
}

.card-hover { transition: all .3s cubic-bezier(.16,1,.3,1); }
.card-hover:hover {
  border-color: rgba(151,46,17,.6);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(151,46,17,.15);
}

.icon-box-sm {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: rgba(151,46,17,.15);
  border: 1px solid rgba(151,46,17,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .3s ease;
}
.group:hover .icon-box-sm { transform: scale(1.1); background: rgba(151,46,17,.25); }
.icon-box-lg {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(151,46,17,.15);
  border: 1px solid rgba(151,46,17,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.group:hover .icon-box-lg { transform: scale(1.1); background: rgba(151,46,17,.3); }

.reveal-text .char-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-text .char-item {
  display: inline-block;
  will-change: transform;
  transform: translateY(110%) scaleY(.68);
  opacity: 0;
  transition: transform .8s cubic-bezier(.22,1,.36,1), opacity .5s ease;
  white-space: pre;
}
.reveal-text.in-view .char-item { transform: translateY(0) scaleY(1); opacity: 1; }

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

.carousel-btn {
  padding: .75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  transition: all .2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--primary); border-color: var(--primary); }

.portfolio-card {
  position: relative;
  flex-shrink: 0;
  width: 84vw;
  margin-right: 1.5rem;
  border-radius: 1rem;
  background: rgba(6,4,4,.9);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: all .3s ease;
  cursor: pointer;
}
.portfolio-card:hover {
  transform: scale(1.03);
  border-color: rgba(151,46,17,.8);
  box-shadow: 0 15px 40px rgba(151,46,17,.35);
}
#portfolio-carousel { touch-action: pan-y; }

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.metric-value {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  line-height: 1.1;
}
.ba-chip {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}
.ba-chip-before { background: rgba(244,63,94,.12); color: #fb7185; border: 1px solid rgba(244,63,94,.35); }
.ba-chip-after { background: rgba(151,46,17,.22); color: #D08A52; border: 1px solid rgba(151,46,17,.5); }

.pill {
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .95rem 1.25rem;
  border-radius: .75rem;
  font-family: "Sora", sans-serif;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.12); box-shadow: 0 10px 25px rgba(0,0,0,.35); }
#portfolio-carousel.cursor-grabbing { cursor: grabbing !important; }
.btn-primary { overflow: hidden; }
.metric-icon { color: var(--gold); background: rgba(208,138,82,.1); border: 1px solid rgba(208,138,82,.25); }

.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(6,4,4,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .45s cubic-bezier(.16,1,.3,1), visibility 0s linear .45s;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s, 0s;
}
@media (min-width: 1024px) {
  .mobile-menu-drawer { display: none !important; }
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 2.75rem;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(151,46,17,.8) 6%, rgba(151,46,17,.8) 94%, transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1) .15s;
}
.process-timeline.line-in::before { transform: scaleY(1); }
.pt-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.pt-node {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060404;
  border: 2px solid var(--primary);
  box-shadow: 0 0 22px rgba(151,46,17,.45), inset 0 0 14px rgba(151,46,17,.22);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pt-step:hover .pt-node {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 34px rgba(151,46,17,.7), inset 0 0 18px rgba(151,46,17,.32);
}
.pt-body { padding-top: .4rem; }
.pt-tag {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}
.pt-title {
  margin-top: .35rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.pt-desc {
  margin-top: .5rem;
  font-size: .875rem;
  line-height: 1.65;
  color: #A89F97;
}
@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
  }
  .process-timeline::before {
    left: 0;
    right: 0;
    top: 28px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(151,46,17,.8) 7%, rgba(151,46,17,.8) 93%, transparent);
    transform: scaleX(0);
    transform-origin: left;
  }
  .process-timeline.line-in::before { transform: scaleX(1); }
  .pt-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pt-body { padding-top: 1.1rem; }
}

.benefit-swiper { padding: 1.5rem 0 1rem; overflow: hidden; }
.benefit-slide {
  width: min(400px, 80vw);
  height: auto;
  display: flex;
}
.benefit-slide .benefit-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  background: rgba(6,4,4,.92);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: opacity .55s ease, border-color .3s ease, box-shadow .3s ease;
}
.benefit-slide .benefit-card:hover { border-color: rgba(151,46,17,.6); }
.benefit-slide:not(.swiper-slide-active) .benefit-card { opacity: .38; }
.benefit-slide.swiper-slide-active .benefit-card {
  border-color: rgba(151,46,17,.55);
  box-shadow: 0 22px 55px rgba(151,46,17,.2);
}
.benefit-pagination { margin-top: 1.75rem; text-align: center; }
.benefit-pagination .swiper-pagination-bullet {
  background: #A89F97;
  opacity: .35;
  margin: 0 5px !important;
  transition: all .25s ease;
}
.benefit-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 22px;
  border-radius: 999px;
}
@media (min-width: 640px) { .portfolio-card { width: 380px; margin-right: 2rem; } }
@media (min-width: 768px) { .portfolio-card { width: 460px; margin-right: 2rem; } }
@media (min-width: 1024px) { .portfolio-card { width: 500px; margin-right: 2rem; } }

#portfolio-modal.open { display: flex; }
.modal-pop { animation: modalPop .25s cubic-bezier(.16,1,.3,1) both; }
.modal-close-btn {
  padding: .5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.05);
  color: var(--gray);
  transition: all .2s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.modal-close-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

.control-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray);
}

.theme-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  border-radius: .75rem;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  color: var(--gray);
  transition: all .2s ease;
  cursor: pointer;
}
.theme-btn:hover { border-color: rgba(255,255,255,.2); }
.theme-btn.active {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.tone-btn {
  padding: .5rem 0;
  font-size: 12px;
  font-weight: 500;
  border-radius: .5rem;
  color: var(--gray);
  transition: all .2s ease;
  cursor: pointer;
}
.tone-btn:hover { color: #fff; }
.tone-btn.active { background: var(--primary); color: #fff; }

.block-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .625rem;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.05);
  font-size: 12px;
  color: rgba(168,159,151,.6);
  transition: all .2s ease;
  cursor: pointer;
  background: transparent;
}
.block-toggle.active {
  border-color: rgba(151,46,17,.6);
  background: rgba(151,46,17,.15);
  color: #fff;
}
.block-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: rgba(255,255,255,.1);
  color: transparent;
  transition: all .2s ease;
}
.block-toggle.active .block-check { background: var(--primary); color: #fff; }

.device-btn {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem;
  border-radius: .5rem;
  font-size: 12px;
  color: var(--gray);
  transition: all .2s ease;
  cursor: pointer;
}
.device-btn:hover { color: #fff; }
.device-btn.active { background: var(--primary); color: #fff; }

.preview-canvas { position: relative; }
.theme-border-dark-tech { border-color: rgba(151,46,17,.4); }
.theme-border-premium-gold { border-color: rgba(208,138,82,.4); }
.theme-border-clean-blue { border-color: rgba(192,106,56,.4); }
.theme-border-emerald-growth { border-color: rgba(16,185,129,.4); }

.theme-bg-dark-tech { background-image: linear-gradient(to bottom, #060404, #140804); }
.theme-bg-premium-gold { background-image: linear-gradient(to bottom, #0c0c10, #1a1811); }
.theme-bg-clean-blue { background-image: linear-gradient(to bottom, #120904, #241007); }
.theme-bg-emerald-growth { background-image: linear-gradient(to bottom, #041812, #072a20); }

.pill-dark-tech { background: rgba(151,46,17,.2); color: #D08A52; }
.pill-premium-gold { background: rgba(208,138,82,.2); color: #D08A52; }
.pill-clean-blue { background: rgba(192,106,56,.2); color: #D08A52; }
.pill-emerald-growth { background: rgba(16,185,129,.2); color: #6ee7b7; }

.btn-dark-tech { background: #972E11; color: #fff; }
.btn-premium-gold { background: #D08A52; color: #060404; }
.btn-clean-blue { background: #972E11; color: #fff; }
.btn-emerald-growth { background: #059669; color: #fff; }

.preview-mobile { max-width: 340px; border-width: 4px; border-color: #334155 !important; border-radius: 1.5rem; }

.block-fade-in { animation: fadeIn .35s ease both; }

.pillar-card {
  padding: 1.5rem;
  border-radius: .75rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .2s ease;
}
.pillar-card:hover { border-color: rgba(151,46,17,.4); }
.pillar-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
.pillar-card h4 { font-size: 1rem; font-weight: 700; color: #fff; }
.pillar-card p { font-size: 13px; color: var(--gray); line-height: 1.625; }
.gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--gold);
  flex-shrink: 0;
}

.process-step {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(6,4,4,.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.process-step:hover { border-color: rgba(255,255,255,.2); }
.process-step.step-active {
  background: #060404;
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(151,46,17,.25);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,.05);
  color: var(--gray);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s ease;
}
.step-active .step-num {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(151,46,17,.6);
}
.step-tag { font-size: 11px; font-family: ui-monospace, monospace; color: var(--gold); }
.step-check { width: 14px; height: 14px; color: rgba(168,159,151,.3); transition: color .3s ease; }
.step-active .step-check { color: #34d399; }

.benefit-card {
  position: relative;
  border-radius: 1rem;
  background: rgba(6,4,4,.8);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.benefit-card:hover {
  border-color: rgba(151,46,17,.8);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(151,46,17,.2);
}

.principle-card {
  position: relative;
  border-radius: 1rem;
  background: rgba(6,4,4,.8);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.principle-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(151,46,17,.2);
}
.principle-card:hover .icon-box-lg { transform: scale(1.1); background: rgba(151,46,17,.3); }

.quote-box {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(151,46,17,.15);
  border: 1px solid rgba(151,46,17,.4);
  backdrop-filter: blur(4px);
  margin: 1.5rem 0;
}

.ba-panel { min-height: 460px; }
.ba-before { background: rgba(21,10,10,.9); }
.ba-after { background: rgba(36,16,7,.9); }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  z-index: 30;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #D08A52, #972E11, #D08A52);
}
.ba-handle {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #060404;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(151,46,17,.6);
  pointer-events: none;
}

.ba-li-before { display: flex; align-items: flex-start; gap: .625rem; font-size: 13px; color: rgba(254,202,202,.8); }
.ba-li-after { display: flex; align-items: flex-start; gap: .625rem; font-size: 13px; color: rgba(255,255,255,.9); }

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(6,4,4,.6);
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item:hover { border-color: rgba(255,255,255,.2); }
.faq-item.open {
  background: #060404;
  border-color: rgba(151,46,17,.7);
  box-shadow: 0 10px 25px rgba(151,46,17,.15);
}
.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.faq-q span.q-text { font-size: 16px; font-weight: 700; color: #fff; padding-right: 1rem; }
@media (min-width: 640px) { .faq-q span.q-text { font-size: 18px; } }
.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  color: var(--gray);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 1rem 1.5rem 1.5rem;
  margin: 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}
@media (min-width: 640px) { .faq-a-inner { padding: 1rem 1.5rem 1.5rem; } }

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}
.footer-social {
  padding: .625rem;
  border-radius: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  transition: all .2s ease;
  display: inline-flex;
}
.footer-social:hover {
  color: var(--gold);
  background: rgba(151,46,17,.2);
  border-color: rgba(151,46,17,.4);
}

.tooltip-pop { animation: tooltipPop .3s cubic-bezier(.16,1,.3,1) both; }

.lucide-sm { width: 14px; height: 14px; }
.lucide-md { width: 20px; height: 20px; }
.lucide-lg { width: 24px; height: 24px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes tooltipPop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pingDot {
  0% { transform: scale(1); opacity: .75; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-text .char-item { transform: none; opacity: 1; }
  .reveal-up { opacity: 1; transform: none; }
  .rocket-img {
    animation-name: rocketFloat !important;
    animation-duration: 5s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 18px rgba(151,46,17,.15));
  }
}
