:root {
  --bg-dark: #010826;
  --bg-mid: #061235;
  --bg-light: #f4f7ff;
  --panel: #ffffff;
  --text-dark: #10182d;
  --text-light: #f5f8f5;
  --muted: #5b6480;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(11, 30, 82, 0.12);
  --accent: #17a2ff;
  --accent-2: #2f49ff;
  --radius: 16px;
  --container: 1140px;
  --header-height: 84px;
  --shadow: 0 18px 45px rgba(9, 17, 15, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

body.nav-open {
  overflow: hidden;
}

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 17, 16, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-light);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(32, 176, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(245, 248, 245, 0.8);
}

.site-nav a {
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-light);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #20b0ff, #2d5dff);
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 16px 36px rgba(32, 91, 255, 0.3);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(22, 88, 255, 0.35);
}

.button-small {
  min-height: 2.7rem;
  padding: 0 1rem;
  font-size: 0.9rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: min(46rem, calc(100svh - var(--header-height)));
  padding: 4.5rem 0 4rem;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.64), rgba(9, 13, 22, 0.92));
  color: var(--text-light);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(8, 11, 19, 0.96) 20%, rgba(9, 14, 24, 0.76) 58%, rgba(18, 24, 34, 0.46) 100%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 129, 220, 0.24), rgba(78, 129, 220, 0));
  filter: blur(16px);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.34;
  filter: saturate(0.62) brightness(0.78);
  transform: scale(1.06);
  transition: transform 900ms ease;
}

.page-ready .hero-image {
  transform: scale(1.02);
}

.hero-grid {
  min-height: 36rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
}

.hero-lead {
  max-width: 35rem;
  margin-top: 1.25rem;
  color: rgba(245, 248, 245, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.hero-note {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  color: rgba(245, 248, 245, 0.68);
  line-height: 1.7;
}

.hero-panel {
  max-width: 26rem;
  margin-left: auto;
  padding: 1.65rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(4, 7, 12, 0.22);
}

.panel-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.15;
}

.hero-panel p {
  margin-top: 0.85rem;
  line-height: 1.65;
  color: rgba(245, 248, 245, 0.8);
}

.section {
  padding: 5.3rem 0;
}

.section-light {
  background: linear-gradient(180deg, #f8faff, #eef3ff);
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-dark));
  color: var(--text-light);
}

.section-accent {
  position: relative;
  background: linear-gradient(135deg, rgba(23, 162, 255, 0.14), rgba(47, 73, 255, 0.12)), #eef3ff;
}

.section-intro {
  max-width: 46rem;
}

.section-intro p {
  margin: 0.75rem 0 0;
  line-height: 1.7;
}

.section-intro h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.section-light .eyebrow,
.section-accent .eyebrow {
  color: #1e48b7;
}

.section-dark .eyebrow {
  color: var(--accent);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.case-card,
.pricing-card,
.addons {
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.card,
.case-card,
.pricing-card {
  padding: 1.2rem;
}

.services-grid {
  margin-top: 2rem;
  gap: 1.25rem;
}

.services-intro-copy {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.services-heading + h2 {
  display: none;
}

.service-card {
  min-height: 100%;
  padding: 1.7rem 1.55rem 1.8rem;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  border-color: rgba(11, 30, 82, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card h3 {
  line-height: 1.2;
}

.service-card p,
.service-card-copy {
  margin: 0;
  color: #5c667d;
  line-height: 1.72;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(127, 149, 183, 0.22);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(17, 25, 40, 0.1);
}

.services-grid .service-card:nth-child(3) > p:not(.service-card-copy) {
  display: none;
}

.why-grid {
  margin-top: 2.1rem;
  gap: 1.25rem;
}

.why-card {
  min-height: 100%;
  padding: 1.65rem 1.45rem 1.75rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  border-color: rgba(11, 30, 82, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.why-card h3 {
  line-height: 1.2;
}

.why-card p {
  margin: 0;
  color: #5c667d;
  line-height: 1.72;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(127, 149, 183, 0.22);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(17, 25, 40, 0.1);
}

.card h3,
.case-card h3,
.pricing-card h3 {
  font-size: 1.35rem;
}

.card p,
.case-card p,
.pricing-card p {
  line-height: 1.65;
}

.section-dark .card,
.section-dark .case-card,
.section-dark .pricing-card,
.section-dark .addons,
.stack-card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.section-dark .case-card p,
.section-dark .pricing-card p,
.section-dark .stack-card p {
  color: rgba(245, 248, 245, 0.78);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.card-stack {
  display: grid;
  gap: 0.85rem;
}

.stack-card {
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid var(--line-dark);
}

.tag {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-2);
}

.muted {
  color: var(--muted);
}

.about-card {
  margin-top: 1.75rem;
  max-width: 52rem;
  padding: 1.55rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.about-heading + .about-lead + h2,
.about-heading + .about-lead + h2 + p {
  display: none;
}

.about-lead {
  max-width: 42rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-copy-stack {
  display: grid;
  gap: 0.95rem;
  max-width: 46rem;
}

.about-card .about-copy-stack p {
  margin: 0;
  line-height: 1.78;
}

.about-card > p {
  display: none;
}

.about-card p {
  margin: 0.4rem 0 0;
  line-height: 1.7;
}

.about-card p:first-child {
  margin-top: 0;
}

.faq-list {
  max-width: 52rem;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(11, 30, 82, 0.12);
}

.faq-question {
  width: 100%;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  text-align: left;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: #1e48b7;
}

.faq-icon {
  position: relative;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 0.9rem;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.78;
}

.work-grid {
  margin-top: 2.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.work-item {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.work-item:hover,
.work-item:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 42px rgba(8, 14, 28, 0.22);
}

.work-thumb {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  align-items: stretch;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.work-split {
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(245, 248, 245, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.work-before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.work-after {
  background: linear-gradient(145deg, rgba(74, 124, 215, 0.22), rgba(74, 124, 215, 0.06));
}

.work-slider-note {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 13, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 248, 245, 0.74);
  font-size: 0.75rem;
  white-space: nowrap;
}

.work-meta {
  display: grid;
  gap: 0.38rem;
}

.work-tag {
  color: #8bb4ff;
}

.work-title {
  color: rgba(245, 248, 245, 0.96);
  font-weight: 700;
  font-size: 1.12rem;
}

.work-summary {
  color: rgba(245, 248, 245, 0.72);
  line-height: 1.7;
}

.step-card {
  position: relative;
}

.step-no {
  margin: 0 0 0.7rem;
  color: #2e6b52;
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-copy + h2 {
  display: none;
}

.pricing-copy + h2 + p {
  display: none;
}

.pricing-grid {
  margin-top: 2.15rem;
  align-items: stretch;
}

.pricing-grid .pricing-card,
#pay .pricing-card {
  min-height: 100%;
  padding: 1.7rem 1.55rem 1.8rem;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.pricing-grid .pricing-card:hover,
.pricing-grid .pricing-card:focus-within,
#pay .pricing-card:hover,
#pay .pricing-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(127, 149, 183, 0.28);
  box-shadow: 0 22px 44px rgba(10, 18, 34, 0.16);
}

.pricing-grid .pricing-card ul {
  margin: 0.1rem 0 0.15rem;
  padding-left: 1rem;
  line-height: 1.75;
}

.pricing-grid .pricing-card .button,
#pay .pricing-card .button {
  width: 100%;
  margin-top: 0.3rem;
}

.price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-amount {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-light);
}

.section-light .price-amount,
.section-accent .price-amount {
  color: var(--text-dark);
}

.price-term {
  color: rgba(245, 248, 245, 0.66);
  font-weight: 600;
}

.section-light .price-term,
.section-accent .price-term {
  color: var(--muted);
}

.pricing-summary,
.pricing-note,
.pricing-copy,
.pricing-footnote {
  margin: 0;
  line-height: 1.72;
}

.pricing-summary,
.pricing-note,
.pricing-copy {
  color: rgba(245, 248, 245, 0.8);
}

.pricing-footnote {
  margin-top: 1.3rem;
  max-width: 44rem;
  color: rgba(245, 248, 245, 0.72);
}

#pricing .pricing-card-featured > .tag:first-of-type {
  display: none;
}

.pricing-select-button + .button {
  display: none;
}

#pay .pricing-card-featured .pay-plan-copy + .pay-plan-copy + p {
  display: none;
}

.pricing-card-featured {
  transform: translateY(-0.25rem);
  border: 1px solid rgba(108, 154, 231, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 22px 52px rgba(18, 40, 92, 0.22);
}

.addons {
  margin-top: 1.4rem;
  padding: 1.35rem;
}

.addons h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.addons-lead {
  display: none;
}

.addons-optional {
  margin: 0.7rem 0 0;
  max-width: 42rem;
  color: rgba(245, 248, 245, 0.7);
  line-height: 1.72;
}

.addons-grid {
  margin-top: 1.25rem;
  gap: 0.9rem;
}

.addon-card {
  padding: 1.15rem 1.05rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  align-content: start;
  gap: 0.55rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.addon-card h4 {
  margin: 0;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
  color: rgba(245, 248, 245, 0.96);
}

.addon-card p {
  margin: 0;
  color: rgba(245, 248, 245, 0.7);
  line-height: 1.68;
}

.addon-price {
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(245, 248, 245, 0.96);
}

.addon-button {
  justify-self: start;
  margin-top: 0.35rem;
}

.addon-card:hover,
.addon-card:focus-within {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(7, 12, 25, 0.16);
}

.addons-list {
  display: none;
}

.pay-invoice-note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: rgba(245, 248, 245, 0.78);
  line-height: 1.65;
}

.pay-invoice-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.35rem;
  align-items: start;
}

.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.contact-lead {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-lead + p {
  display: none;
}

.contact-email {
  margin: 1rem 0 0;
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-list {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cta-list span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 23, 22, 0.14);
  font-size: 0.82rem;
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: 1.45rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #18231e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 20, 19, 0.12);
  border-radius: 0.95rem;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--text-dark);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(76, 121, 198, 0.45);
  box-shadow: 0 0 0 4px rgba(107, 146, 214, 0.14);
}

.site-footer {
  background: #010826;
  color: rgba(245, 248, 245, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.1rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
  max-width: 34rem;
  line-height: 1.6;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

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

:root {
  --bg-dark: #0b0d10;
  --bg-mid: #111419;
  --bg-light: #15191f;
  --panel: #14181e;
  --text-light: #f5f7fa;
  --muted: #9ca3af;
  --line-dark: rgba(245, 247, 250, 0.08);
  --line-light: rgba(245, 247, 250, 0.08);
  --accent: #4f7cff;
  --accent-2: #6b8cff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

html {
  background: var(--bg-dark);
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 10%, rgba(79, 124, 255, 0.1), transparent 24%);
  opacity: 0.75;
  z-index: 0;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.site-header {
  background: rgba(11, 13, 16, 0.82);
  border-bottom: 1px solid rgba(245, 247, 250, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand-logo {
  border-color: rgba(79, 124, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.08);
}

.site-nav {
  color: rgba(245, 247, 250, 0.68);
}

.menu-toggle {
  border-color: rgba(245, 247, 250, 0.08);
  background: rgba(245, 247, 250, 0.03);
}

.button {
  border: 1px solid rgba(107, 140, 255, 0.35);
  border-radius: 14px;
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(79, 124, 255, 0.16);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(79, 124, 255, 0.2);
}

.button-secondary {
  background: rgba(245, 247, 250, 0.03);
  color: var(--text-light);
  border-color: rgba(245, 247, 250, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(245, 247, 250, 0.06);
  border-color: rgba(245, 247, 250, 0.14);
}

.hero {
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.88), rgba(11, 13, 16, 0.98));
}

.hero::before {
  background: linear-gradient(118deg, rgba(11, 13, 16, 0.98) 18%, rgba(11, 13, 16, 0.9) 56%, rgba(18, 22, 29, 0.55) 100%);
}

.hero::after {
  background: radial-gradient(circle, rgba(79, 124, 255, 0.12), rgba(79, 124, 255, 0));
  filter: blur(22px);
}

.hero-image {
  opacity: 0.24;
  filter: saturate(0.36) brightness(0.58) sepia(0.1) hue-rotate(-6deg);
}

.hero .eyebrow,
.section-light .eyebrow,
.section-dark .eyebrow,
.section-accent .eyebrow,
.panel-kicker,
.tag,
.work-tag {
  color: var(--accent);
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

.hero-lead,
.hero-note,
.hero-panel p,
.section-intro p,
.services-intro-copy,
.pricing-copy,
.pricing-footnote,
.addons-optional,
.contact-lead,
.about-lead,
.faq-answer p,
.work-summary {
  color: rgba(245, 247, 250, 0.68);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.84), rgba(16, 20, 27, 0.76));
  border-color: rgba(245, 247, 250, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.section {
  position: relative;
}

.section-light,
.section-dark,
.section-accent {
  color: var(--text-light);
}

.section-light {
  background: linear-gradient(180deg, #0c1015, #0b0d10);
}

.section-dark {
  background: linear-gradient(180deg, #101419, #0b0d10);
}

.section-accent {
  background: linear-gradient(180deg, #11161d, #0b0d10);
}

.card,
.case-card,
.pricing-card,
.addons,
.about-card,
.contact-form {
  background: linear-gradient(180deg, rgba(22, 26, 33, 0.96), rgba(17, 21, 28, 0.94));
  border-color: rgba(245, 247, 250, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.card h3,
.case-card h3,
.pricing-card h3,
.about-card h3,
.contact-form h3 {
  color: var(--text-light);
}

.card p,
.case-card p,
.pricing-card p,
.about-card p {
  color: rgba(245, 247, 250, 0.7);
}

.section-dark .card,
.section-dark .case-card,
.section-dark .pricing-card,
.section-dark .addons,
.stack-card {
  background: linear-gradient(180deg, rgba(22, 26, 33, 0.96), rgba(17, 21, 28, 0.94));
  border-color: rgba(245, 247, 250, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.service-card,
.why-card,
.pricing-grid .pricing-card,
#pay .pricing-card,
.about-card {
  background: linear-gradient(180deg, rgba(22, 26, 33, 0.96), rgba(17, 21, 28, 0.94));
  border-color: rgba(245, 247, 250, 0.08);
}

.service-card p,
.service-card-copy,
.why-card p {
  color: rgba(245, 247, 250, 0.68);
}

.service-card:hover,
.service-card:focus-within,
.why-card:hover,
.why-card:focus-within,
.pricing-grid .pricing-card:hover,
.pricing-grid .pricing-card:focus-within,
#pay .pricing-card:hover,
#pay .pricing-card:focus-within {
  background: linear-gradient(180deg, rgba(24, 29, 37, 0.96), rgba(17, 21, 28, 0.92));
  border-color: rgba(107, 140, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.work-item {
  border-color: rgba(245, 247, 250, 0.08);
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.96), rgba(16, 20, 27, 0.94));
}

.work-item:hover,
.work-item:focus-visible {
  background: linear-gradient(180deg, rgba(24, 29, 37, 0.94), rgba(17, 21, 28, 0.9));
  border-color: rgba(107, 140, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.work-thumb,
.work-before {
  background: rgba(245, 247, 250, 0.03);
  border-color: rgba(245, 247, 250, 0.08);
}

.work-after {
  background: linear-gradient(145deg, rgba(79, 124, 255, 0.16), rgba(79, 124, 255, 0.04));
}

.work-slider-note {
  background: rgba(11, 13, 16, 0.84);
}

.price-amount {
  color: var(--text-light);
}

.price-term {
  color: rgba(245, 247, 250, 0.56);
}

.pricing-summary,
.pricing-note {
  color: rgba(245, 247, 250, 0.72);
}

.pricing-card-featured {
  border-color: rgba(79, 124, 255, 0.42);
  background: linear-gradient(180deg, rgba(24, 29, 40, 0.98), rgba(18, 22, 30, 0.96));
  box-shadow: 0 20px 42px rgba(32, 50, 98, 0.18);
}

.pricing-card-featured:hover,
.pricing-card-featured:focus-within {
  background: linear-gradient(180deg, rgba(28, 34, 46, 0.98), rgba(19, 24, 34, 0.94));
  border-color: rgba(107, 140, 255, 0.3);
}

.addons {
  background: linear-gradient(180deg, rgba(17, 20, 27, 0.94), rgba(14, 17, 23, 0.92));
}

.addon-card {
  background: rgba(245, 247, 250, 0.025);
  border-color: rgba(245, 247, 250, 0.08);
  box-shadow: none;
}

.addon-card:hover,
.addon-card:focus-within {
  border-color: rgba(107, 140, 255, 0.16);
  background: rgba(245, 247, 250, 0.04);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.faq-item {
  border-bottom-color: rgba(245, 247, 250, 0.08);
}

.faq-question {
  color: var(--text-light);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--accent-2);
}

.about-card {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-form {
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.98), rgba(16, 20, 27, 0.96));
  border-color: rgba(245, 247, 250, 0.08);
}

.contact-form label {
  color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
  background: rgba(245, 247, 250, 0.03);
  border-color: rgba(245, 247, 250, 0.08);
  color: var(--text-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(156, 163, 175, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(79, 124, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

.contact-email a,
.pay-invoice-note a,
.site-footer a {
  color: var(--text-light);
}

.site-footer {
  background: #090b0e;
  border-top: 1px solid rgba(245, 247, 250, 0.06);
}

[data-reveal] {
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

:root {
  --surface-glass: linear-gradient(180deg, rgba(22, 26, 33, 0.74), rgba(16, 20, 27, 0.58));
  --surface-glass-strong: linear-gradient(180deg, rgba(22, 26, 33, 0.82), rgba(15, 18, 24, 0.68));
}

html {
  scroll-padding-top: 6rem;
}

.site-shell::before {
  background:
    radial-gradient(circle at 82% 10%, rgba(79, 124, 255, 0.1), transparent 24%),
    radial-gradient(circle at 18% 14%, rgba(245, 247, 250, 0.03), transparent 28%);
  opacity: 0.88;
}

.site-header {
  padding: 0.8rem 0 0;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.82), rgba(11, 13, 16, 0));
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: calc(var(--header-height) - 18px);
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  background: rgba(16, 20, 27, 0.54);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.brand {
  gap: 0.62rem;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 2.2rem;
  height: 2.2rem;
}

.site-nav {
  gap: 0.95rem;
  color: rgba(245, 247, 250, 0.66);
}

.site-nav a {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:not(.button) {
  padding: 0.25rem 0.1rem;
}

.menu-toggle {
  width: 2.85rem;
  height: 2.85rem;
  border-color: rgba(245, 247, 250, 0.07);
  background: rgba(245, 247, 250, 0.04);
  backdrop-filter: blur(18px);
}

.button {
  border-color: rgba(107, 140, 255, 0.2);
  background: linear-gradient(180deg, rgba(91, 123, 223, 0.94), rgba(77, 110, 208, 0.9));
  box-shadow:
    0 12px 28px rgba(79, 124, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(126, 156, 255, 0.28);
  background: linear-gradient(180deg, rgba(98, 129, 229, 0.96), rgba(82, 115, 219, 0.92));
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(79, 124, 255, 0.18),
    0 0 0 1px rgba(107, 140, 255, 0.08);
}

.button-secondary {
  background: rgba(245, 247, 250, 0.045);
  border-color: rgba(245, 247, 250, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(245, 247, 250, 0.065);
  border-color: rgba(245, 247, 250, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.button-small {
  min-height: 2.55rem;
  padding: 0 0.95rem;
}

.hero {
  padding: 4.25rem 0 4rem;
}

.hero::after {
  right: -5rem;
  top: 4.6rem;
  width: 25rem;
  height: 25rem;
  opacity: 0.92;
  filter: blur(34px);
  animation: hero-orb-float 18s ease-in-out infinite;
}

.hero-grid {
  gap: 1.25rem;
}

.hero-copy {
  max-width: 36rem;
}

.hero-lead {
  max-width: 33rem;
  margin-top: 1.15rem;
  line-height: 1.64;
  letter-spacing: -0.01em;
}

.hero-actions {
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.94rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-copy > .eyebrow {
  display: none;
}

.hero-kicker {
  margin: 0 0 0.95rem;
  color: rgba(245, 247, 250, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(18, 22, 29, 0.52), rgba(13, 16, 22, 0.24));
  border-color: rgba(245, 247, 250, 0.09);
  backdrop-filter: blur(30px) saturate(138%);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.22);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -2.75rem -3.5rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.2), rgba(79, 124, 255, 0));
  filter: blur(18px);
  opacity: 0.88;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: 1.45rem;
  right: 1.45rem;
  bottom: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.18), rgba(79, 124, 255, 0.34), rgba(245, 247, 250, 0));
  opacity: 0.55;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  margin-top: 0.55rem;
  max-width: 10ch;
}

.hero-panel p {
  margin-top: 0.78rem;
  line-height: 1.58;
}

.hero-panel > p:not(.panel-kicker):not(.hero-panel-copy) {
  display: none;
}

.hero-panel-copy {
  max-width: 18rem;
}

.hero-lightfield {
  position: relative;
  min-height: 10.5rem;
  margin-top: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 247, 250, 0.06);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), rgba(245, 247, 250, 0)),
    radial-gradient(circle at 62% 32%, rgba(79, 124, 255, 0.08), transparent 48%);
  overflow: hidden;
}

.hero-lightfield::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), transparent 58%),
    linear-gradient(90deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0));
  opacity: 0.75;
}

.hero-light {
  position: absolute;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.hero-light-primary {
  right: -1.75rem;
  bottom: -2.4rem;
  width: 14rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.36), rgba(79, 124, 255, 0));
  filter: blur(12px);
  opacity: 0.95;
  animation: hero-breathe 14s ease-in-out infinite;
}

.hero-light-secondary {
  left: 8%;
  top: 20%;
  width: 8rem;
  height: 5rem;
  background: radial-gradient(circle, rgba(245, 247, 250, 0.18), rgba(245, 247, 250, 0));
  filter: blur(12px);
  opacity: 0.78;
  animation: hero-breathe-alt 16s ease-in-out infinite;
}

.hero-light-beam {
  left: 12%;
  right: 12%;
  bottom: 1.7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.16), rgba(79, 124, 255, 0.52), rgba(245, 247, 250, 0));
  opacity: 0.74;
  animation: hero-beam-shift 10s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section + .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4.4rem;
  height: 8.5rem;
  pointer-events: none;
  background:
    radial-gradient(60% 90% at 50% 100%, rgba(79, 124, 255, 0.055), transparent 70%),
    linear-gradient(180deg, rgba(11, 13, 16, 0), rgba(11, 13, 16, 0.55) 50%, rgba(11, 13, 16, 0));
  opacity: 0.92;
}

.section-light {
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 124, 255, 0.04), transparent 26%),
    linear-gradient(180deg, #0d1116, #0b0d10 58%, #0a0c10);
}

.section-dark {
  background:
    radial-gradient(circle at 82% 0%, rgba(79, 124, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #10151c, #0b0d10 62%, #0a0c10);
}

.section-accent {
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 124, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #121820, #0b0d10 68%, #0a0c10);
}

.section-intro p,
.services-intro-copy,
.pricing-copy,
.pricing-footnote,
.addons-optional,
.contact-lead,
.about-lead,
.faq-answer p,
.work-summary {
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.section-intro p {
  margin-top: 0.6rem;
}

#services {
  padding-top: 4.45rem;
}

.card,
.case-card,
.pricing-card,
.addons,
.about-card,
.contact-form {
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(130%);
}

.service-card,
.why-card,
.pricing-grid .pricing-card,
#pay .pricing-card,
.about-card {
  background: var(--surface-glass-strong);
  backdrop-filter: blur(20px) saturate(130%);
}

.work-item {
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.82), rgba(16, 20, 27, 0.64));
  backdrop-filter: blur(20px) saturate(125%);
}

.addons {
  background: linear-gradient(180deg, rgba(17, 20, 27, 0.8), rgba(14, 17, 23, 0.68));
  backdrop-filter: blur(22px) saturate(130%);
}

.addon-card {
  background: rgba(245, 247, 250, 0.03);
  backdrop-filter: blur(16px) saturate(130%);
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 12px, 0);
  }
}

@keyframes hero-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }

  50% {
    transform: translate3d(-10px, -8px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes hero-breathe-alt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.58;
  }

  50% {
    transform: translate3d(10px, 6px, 0) scale(1.08);
    opacity: 0.82;
  }
}

@keyframes hero-beam-shift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.54;
  }

  50% {
    transform: translateX(8px);
    opacity: 0.82;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .contact-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: none;
    margin-left: 0;
  }

  .hero-lightfield {
    min-height: 9rem;
  }

  .four-col,
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 80px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 50;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) - 0.35rem) 1rem auto 1rem;
    z-index: 45;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(16, 20, 27, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.8rem;
    backdrop-filter: blur(28px) saturate(140%);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  body.nav-open .site-nav {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.55rem 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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

  .hero {
    padding: 3.75rem 0 3.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  #services {
    padding-top: 4rem;
  }

  .header-inner {
    padding: 0.7rem 0.85rem;
  }

  .hero-panel {
    padding: 1.35rem;
  }

  .hero-lightfield {
    min-height: 8.5rem;
  }

  .four-col,
  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

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

  .hero-image {
    transform: scale(1.02);
  }
}



/* Launch reliability overrides */
.site-header {
  z-index: 60;
}

.hero {
  background: linear-gradient(180deg, #0b0d10 0%, #0d1117 52%, #0a0c10 100%);
}

.hero-bg {
  background:
    radial-gradient(circle at 78% 24%, rgba(79, 124, 255, 0.2), transparent 24%),
    radial-gradient(circle at 22% 18%, rgba(245, 247, 250, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(12, 15, 20, 0.98), rgba(17, 22, 30, 0.94) 48%, rgba(10, 12, 16, 0.98));
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.02), transparent 58%);
  opacity: 0.82;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 12% 18% 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.14), rgba(79, 124, 255, 0.46), rgba(245, 247, 250, 0));
  opacity: 0.7;
}

.hero-image {
  display: none;
}
