@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes orbDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.04);
  }
  66% {
    transform: translate(-20px, 14px) scale(0.97);
  }
}
@keyframes tickerSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sr-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sr-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sr.on,
.sr-left.on,
.sr-right.on {
  opacity: 1;
  transform: none;
}

.page-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

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

.orb-1 {
  width: 600px;
  height: 600px;
  top: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 65%);
}

.orb-2 {
  width: 380px;
  height: 380px;
  bottom: 60px;
  left: -60px;
  background: radial-gradient(circle, rgba(157, 102, 245, 0.16) 0%, transparent 65%);
  animation-delay: -8s;
}

.orb-3 {
  width: 260px;
  height: 260px;
  top: 35%;
  left: 38%;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.1) 0%, transparent 65%);
  animation-delay: -14s;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.1s ease forwards;
}
.hero-label::before {
  content: "//";
  color: var(--p2);
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-h {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.97;
  text-transform: uppercase;
}
.hero-h span {
  display: block;
  background: linear-gradient(145deg, var(--txt) 30%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h span.indent {
  padding-left: clamp(40px, 8vw, 120px);
}
.hero-h span.violet {
  background: linear-gradient(145deg, var(--p2) 0%, var(--p3) 80%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-side {
  max-width: 320px;
  padding-bottom: 8px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.5s ease forwards;
}
.hero-side p {
  font-size: 15px;
  color: rgba(238, 235, 255, 0.55);
  line-height: 1.75;
}

.hero-side-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.65s ease forwards;
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--rim);
  background: var(--surface);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
}
.jump-link .jl-num {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--p2);
}
.jump-link:hover {
  border-color: rgba(157, 102, 245, 0.4);
  color: var(--txt);
  background: var(--pdim);
}

.hero-bar {
  border-top: 1px solid var(--rim);
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

.hero-bar-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid var(--rim);
  padding: 22px 12px;
}
.hero-bar-stat:last-child {
  border-right: none;
}

.hbs-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--txt) 40%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbs-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-align: center;
}

.ticker {
  background: var(--bg1);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: tickerSlide 26s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.ticker-item .tdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--p2);
  flex-shrink: 0;
}

.services-list {
  background: var(--bg1);
}
.services-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--rim) 50%, transparent 90%);
}

.svc-intro {
  max-width: 640px;
  margin-bottom: 80px;
}
.svc-intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rim);
  padding: 72px 0;
  position: relative;
}
.svc-block:last-child {
  border-bottom: 1px solid var(--rim);
}
.svc-block:nth-child(even) .svc-content {
  order: 2;
  padding-right: 0;
  padding-left: 56px;
}
.svc-block:nth-child(even) .svc-visual {
  order: 1;
  padding-right: 56px;
  padding-left: 0;
}
.svc-block:hover .svc-img-wrap img {
  filter: brightness(0.88) saturate(85%);
  transform: scale(1.03);
}
.svc-block:hover .del-check {
  animation: checkPop 0.35s ease forwards;
}

.svc-content {
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.svc-index {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: italic;
  color: var(--p2);
  letter-spacing: 0.08em;
}

.svc-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.svc-title em {
  font-style: italic;
  color: var(--p3);
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

.svc-deliverables {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.svc-del {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(238, 235, 255, 0.7);
  line-height: 1.5;
}

.del-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pdim);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 1px;
  color: var(--p3);
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.svc-cta {
  margin-top: 8px;
}

.svc-visual {
  position: relative;
  padding-left: 56px;
}

.svc-img-wrap {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--rim2);
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.svc-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.75) saturate(65%);
  transition: filter 0.4s, transform 0.4s;
}
.svc-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.svc-badge {
  position: absolute;
  bottom: -14px;
  left: 24px;
  background: var(--bg1);
  border: 1px solid rgba(157, 102, 245, 0.4);
  border-radius: var(--r2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.sb-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--pdim);
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sb-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--txt);
}

.sb-sub {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--muted);
  margin-top: 1px;
}

.process {
  background: var(--bg);
}
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--rim) 50%, transparent 90%);
}

.process-header {
  margin-bottom: 72px;
}
.process-header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 420px;
  margin-top: 14px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--p) 0%, var(--p3) 50%, var(--p) 100%);
  opacity: 0.3;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  text-align: center;
}
.step:hover .step-circle {
  border-color: var(--p2);
  box-shadow: 0 0 20px var(--pglow);
}
.step:hover .step-circle .sc-inner {
  background: var(--pdim2);
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(157, 102, 245, 0.35);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}
.step-circle .sc-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pdim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background 0.25s;
}

.step-num {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--p2);
  letter-spacing: 0.07em;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing {
  background: var(--bg1);
}
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--rim) 50%, transparent 90%);
}

.pricing-header {
  margin-bottom: 60px;
}
.pricing-header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 420px;
  margin-top: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}

.price-card {
  border: 1px solid var(--rim);
  border-radius: var(--r3);
  background: var(--surface);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
}
.price-card:hover {
  border-color: rgba(157, 102, 245, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
}
.price-card.featured {
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.14) 0%, var(--surface) 100%);
  border-color: rgba(157, 102, 245, 0.4);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p) 0%, var(--p3) 50%, var(--p) 100%);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--pdim);
  border: 1px solid rgba(157, 102, 245, 0.35);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-style: italic;
  color: var(--p3);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  align-self: flex-start;
}

.price-tier {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: italic;
  color: var(--p2);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.price-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--txt) 40%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-amount span {
  font-size: 18px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}

.price-note {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-divider {
  height: 1px;
  background: var(--rim);
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(238, 235, 255, 0.7);
}
.pf .pf-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pdim);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--p3);
}
.pf.muted-feat {
  color: var(--muted);
}
.pf.muted-feat .pf-check {
  opacity: 0.4;
}

.faq {
  background: var(--bg);
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--rim) 50%, transparent 90%);
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 96px;
}
.faq-sticky p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--rim);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--rim);
}
.faq-item.open .faq-icon {
  background: var(--pdim);
  border-color: var(--p2);
  color: var(--p3);
  transform: rotate(45deg);
}
.faq-item.open .faq-q-text {
  color: var(--p3);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--rim);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.25s;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
  padding-bottom: 0;
}

.cta-banner {
  background: var(--bg1);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rim);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--p) 30%, var(--p3) 50%, var(--p) 70%, transparent 95%);
  opacity: 0.5;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .eyebrow {
  justify-content: center;
}

.cta-h {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin-bottom: 20px;
}
.cta-h em {
  font-style: italic;
  color: var(--p3);
}

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-inner,
  .hero-bar {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-layout {
    grid-template-columns: 200px 1fr;
    gap: 52px;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .hero-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-side {
    max-width: 100%;
  }
  .svc-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 0;
  }
  .svc-block:nth-child(even) .svc-content, .svc-block:nth-child(even) .svc-visual {
    order: unset;
    padding: 0;
  }
  .svc-content {
    padding: 0;
  }
  .svc-visual {
    padding: 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq-sticky {
    position: static;
  }
  .cta-inner {
    padding: 80px 24px;
  }
}
@media (max-width: 640px) {
  .hero-h {
    font-size: 38px;
  }
  .hero-h span.indent {
    padding-left: 28px;
  }
  .hero-bar {
    flex-wrap: wrap;
  }
  .hero-bar-stat {
    min-width: 45%;
    border-right: none;
    border-bottom: 1px solid var(--rim);
    padding: 14px 0;
  }
  .hero-bar-stat:last-child {
    border-bottom: none;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    max-width: 100%;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=services.css.map */