:root {
  --bg: #09111f;
  --bg-soft: #0f1b2d;
  --panel: rgba(14, 20, 32, 0.8);
  --card: #f4f7fb;
  --card-strong: #eef4ff;
  --text: #e7edf9;
  --muted: #a9b7d1;
  --primary: #6ea8fe;
  --primary-dark: #4d7df6;
  --accent: #7ef0d4;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 20px 45px rgba(7, 14, 24, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #08111f 0%, #0d1728 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 50;
  background: rgba(8, 17, 31, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #06111f;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.mini-pricing {
  padding-top: 20px;
}

.mini-pricing-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  border-radius: 24px;
  background: rgba(9, 17, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(8, 12, 20, 0.25);
}

.mini-pricing-box h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.05em;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 700;
  color: rgba(231, 237, 249, 0.96);
  text-wrap: balance;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 22px 0 0;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.window-card {
  width: min(100%, 500px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(12, 19, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.window-content {
  background: linear-gradient(180deg, rgba(110,168,254,0.12), rgba(126,240,212,0.08));
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.mini-stat strong {
  font-size: 2.1rem;
  letter-spacing: -0.06em;
}

.mini-stat span {
  color: var(--muted);
}

.chart-bars {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px 10px 10px;
  background: rgba(6, 13, 22, 0.28);
  border-radius: 18px;
}

.chart-bars span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: inset 0 -8px 16px rgba(255,255,255,0.08);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.metric-row div {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px 14px;
}

.metric-row small {
  display: block;
  color: var(--muted);
}

.metric-row strong {
  font-size: 1.2rem;
}

.stats {
  padding: 12px 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(8, 17, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(8, 12, 20, 0.28);
}

.stats-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  padding: 10px 12px;
}

.stats-grid strong {
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.stats-grid span {
  margin-top: 12px;
  color: rgba(231, 237, 249, 0.82);
  font-size: clamp(1.1rem, 1.7vw, 2rem);
  line-height: 1.2;
}

.section {
  padding: 100px 0;
}

.alt-bg {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 22px;
  background: rgba(9, 17, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(8, 15, 26, 0.14);
}

.pricing-card.featured {
  background: rgba(9, 17, 31, 0.9);
  border-color: rgba(110, 168, 254, 0.35);
  transform: translateY(-6px);
}

.plan-name {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.price {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 2;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  background: linear-gradient(135deg, #7fc0ff 0%, #8fe7d7 100%);
  color: #071421;
  border: none;
  box-shadow: none;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 35px rgba(8, 15, 26, 0.18);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110,168,254,0.2), rgba(126,240,212,0.24));
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-layout h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.split-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-visual {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.visual-one {
  background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=900&q=80');
}

.visual-two {
  background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?auto=format&fit=crop&w=900&q=80');
}

.visual-three {
  background-image: url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?auto=format&fit=crop&w=900&q=80');
}

.project-body {
  padding: 24px 20px 22px;
}

.project-body h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.project-body p {
  margin: 0;
  color: var(--muted);
}

.testimonial-section {
  padding-top: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.review-panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.review-form {
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-size: 0.9rem;
  color: var(--muted);
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(8, 17, 31, 0.75);
  color: var(--text);
  font: inherit;
}

.field-group textarea {
  resize: vertical;
  min-height: 110px;
}

.review-form .btn {
  width: 100%;
  border: none;
}

.testimonial-table-wrap {
  overflow-x: auto;
}

.testimonial-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-table th,
.testimonial-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}

.testimonial-table th {
  background: rgba(255,255,255,0.03);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-table td {
  font-size: 1rem;
}

.testimonial-table tbody tr:last-child td {
  border-bottom: none;
}

.buy-section {
  padding-top: 20px;
}

.buy-box {
  display: grid;
  gap: 28px;
  padding: 38px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(110,168,254,0.12), rgba(126,240,212,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.buy-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.buy-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.buy-copy p:last-child {
  margin: 18px auto 0;
  max-width: 650px;
  color: var(--muted);
}

.buy-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-item {
  padding: 22px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  text-align: center;
}

.step-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #08111f;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-item p {
  margin: 0;
  font-weight: 600;
}

.buy-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 42px 0 24px;
  border-top: 1px solid var(--border);
  background: rgba(6, 12, 20, 0.4);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-wrap p {
  margin: 18px 0 0;
  max-width: 430px;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-layout,
  .three-up,
  .project-grid,
  .testimonial-grid,
  .stats-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 60px;
  }

  .cta-row,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

.ambient-background {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

body {
  position: relative;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.glow {
  position: absolute;
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.24;
}

.glow-one {
  top: 12%;
  left: -14rem;
  background: var(--primary);
}

.glow-two {
  right: -12rem;
  bottom: 16%;
  background: var(--accent);
}

.snowfall {
  position: absolute;
  inset: 0;
}

.snowflake {
  position: absolute;
  top: -12px;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.85;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.95), 0 0 22px rgba(105, 196, 255, 0.55);
  animation: snowfall var(--duration) linear var(--delay) infinite;
}

@keyframes snowfall {
  0% {
    transform: translate3d(0, -5vh, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(var(--drift), 50vh, 0) rotate(180deg);
  }
  100% {
    transform: translate3d(0, 110vh, 0) rotate(360deg);
  }
}

.info-card,
.project-card,
.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-card:hover,
.project-card:hover,
.pricing-card:hover {
  transform: translateX(6px) translateY(-7px);
  border-color: rgba(45, 127, 190, 0.45);
  box-shadow: 0 26px 50px rgba(38, 48, 47, 0.18);
}

.pricing-card.featured:hover {
  transform: translateX(-6px) translateY(-12px);
}

@media (prefers-reduced-motion: reduce) {
  .snowflake,
  .info-card,
  .project-card,
  .pricing-card {
    animation: none;
    transition: none;
  }
}

.hero-showcase {
  width: min(100%, 520px);
  padding: 24px;
  border: 1px solid rgba(25, 37, 43, 0.14);
  border-radius: 26px;
  background: #1c2b2f;
  color: #f7f5ef;
  box-shadow: 0 28px 70px rgba(25, 37, 43, 0.2);
  transform: rotate(2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-showcase:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 34px 78px rgba(25, 37, 43, 0.26);
}

.showcase-topline,
.showcase-bottomline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #9caaa5;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-status {
  color: #d5e88a;
}

.showcase-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(105, 196, 255, 0.9);
}

.showcase-copy {
  max-width: 410px;
  padding: 54px 0 28px;
}

.showcase-kicker {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.showcase-copy p:last-child {
  max-width: 330px;
  margin: 16px 0 0;
  color: #b9c5bf;
}

.showcase-projects {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 12px;
}

.showcase-project {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #304448;
  color: #f7f5ef;
  transition: transform 0.3s ease;
}

.showcase-project:hover {
  transform: translateY(-6px);
}

.showcase-project-side {
  margin-bottom: 20px;
}

.showcase-image {
  display: block;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.showcase-project-side .showcase-image {
  height: 112px;
}

.showcase-project-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px 13px;
  font-size: 0.92rem;
  font-weight: 700;
}

.showcase-project-label small {
  color: #aab8b2;
  font-size: 0.7rem;
  font-weight: 500;
}

.showcase-bottomline {
  justify-content: flex-start;
  gap: 18px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 560px) {
  .hero-showcase {
    padding: 18px;
    transform: none;
  }

  .showcase-copy {
    padding-top: 38px;
  }

  .showcase-bottomline {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* Refined light theme */
:root {
  --bg: #f7f5ef;
  --bg-soft: #eeece4;
  --panel: #ffffff;
  --card: #ffffff;
  --card-strong: #f1efe7;
  --text: #19252b;
  --muted: #687277;
  --primary: #69c4ff;
  --primary-dark: #d9523d;
  --accent: #b8d94c;
  --border: rgba(25, 37, 43, 0.13);
  --shadow: 0 22px 55px rgba(38, 48, 47, 0.12);
}

body {
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 85% 8%, rgba(184, 217, 76, 0.2), transparent 22rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 100%);
  color: var(--text);
}

h1,
h2,
h3,
.brand,
.price,
.stats-grid strong {
  font-family: "Space Grotesk", sans-serif;
}

.site-header {
  background: rgba(251, 250, 246, 0.86);
  border-bottom-color: var(--border);
}

.brand-mark {
  border-radius: 9px;
  background: var(--text);
  color: var(--accent);
}

.main-nav {
  color: #7b8586;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.btn-primary,
.pricing-card .btn,
.step-item span {
  background: var(--primary);
  color: #fffaf3;
  box-shadow: 0 12px 24px rgba(105, 196, 255, 0.2);
}

.btn-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.mini-pricing-box,
.stats-grid,
.window-card,
.pricing-card,
.review-form,
.testimonial-table,
.info-card,
.project-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.mini-pricing-box {
  border-radius: 16px;
}

.eyebrow {
  color: var(--primary-dark);
}

.hero-copy h1 {
  color: var(--text);
}

.lead,
.hero-points,
.info-card p,
.project-body p,
.split-layout p,
.footer-wrap p,
.pricing-card ul {
  color: var(--muted);
}

.hero-points li::before {
  color: var(--primary);
}

.hero-visual .window-card {
  background: var(--text);
}

.window-card {
  padding: 14px;
}

.window-content {
  background: linear-gradient(145deg, #25373a, #3d5953);
}

.chart-bars {
  background: rgba(0, 0, 0, 0.18);
}

.chart-bars span {
  background: linear-gradient(180deg, var(--accent), #d7ee83);
}

.metric-row div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.stats-grid {
  border-radius: 24px;
}

.stats-grid span {
  color: var(--muted);
}

.alt-bg {
  background: rgba(238, 236, 228, 0.6);
  border-color: var(--border);
}

.icon {
  background: var(--accent);
  color: var(--text);
}

.pricing-card.featured {
  background: var(--text);
  color: #f8f5ec;
  border-color: var(--text);
}

.pricing-card.featured .plan-name,
.pricing-card.featured ul {
  color: #bac3bf;
}

.pricing-card.featured .btn {
  background: var(--accent);
  color: var(--text);
  box-shadow: none;
}

.field-group input,
.field-group textarea {
  background: #fbfaf6;
  border-color: var(--border);
  color: var(--text);
}

.testimonial-table th {
  background: var(--bg-soft);
  color: var(--muted);
}

.testimonial-table th,
.testimonial-table td {
  border-bottom-color: var(--border);
  color: var(--text);
}

.buy-box {
  background: var(--text);
  border-color: var(--text);
}

.buy-box .eyebrow {
  color: var(--accent);
}

.buy-box .buy-copy p:last-child {
  color: #b8c5c0;
}

.step-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer {
  background: #202d31;
  border-top-color: rgba(255, 255, 255, 0.12);
}

.site-footer,
.site-footer .brand,
.site-footer .copyright {
  color: #f7f5ef;
}

.site-footer .footer-wrap p,
.site-footer .copyright {
  color: #aeb9b5;
}

:root {
  --bg: #f4f8fc;
  --bg-soft: #e6eff8;
  --panel: #ffffff;
  --card: #ffffff;
  --text: #07152f;
  --muted: #52627d;
  --primary: #69c4ff;
  --primary-dark: #2d7fbe;
  --accent: #b8e4ff;
  --hot: #7dcbff;
  --electric: #164aab;
  --border: rgba(7, 21, 47, 0.15);
  --shadow: 0 18px 45px rgba(7, 21, 47, 0.1);
}

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(7, 21, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 47, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 85% 8%, rgba(105, 196, 255, 0.3), transparent 20rem),
    radial-gradient(circle at 5% 42%, rgba(45, 127, 190, 0.14), transparent 18rem);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.site-header {
  background: rgba(244, 248, 252, 0.86);
  border-bottom-color: var(--border);
}

.nav-wrap {
  min-height: 74px;
}

.brand {
  letter-spacing: -0.04em;
}

.brand-mark {
  border-radius: 5px;
  background: transparent;
  color: transparent;
  padding: 0;
  border: 0;
  display: block;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.main-nav {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn {
  border-radius: 5px;
  padding: 0.82rem 1.2rem;
  letter-spacing: -0.02em;
}

.btn-primary,
.pricing-card .btn,
.step-item span {
  background: var(--primary);
  color: var(--text);
  box-shadow: 5px 5px 0 var(--text);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 2px 2px 0 var(--text);
}

.btn-secondary {
  border-color: var(--text);
  background: transparent;
  color: var(--text);
}

.mini-pricing {
  padding-top: 26px;
}

.mini-pricing-box,
.stats-grid,
.window-card,
.pricing-card,
.review-form,
.testimonial-table,
.info-card,
.project-card {
  background: rgba(255, 253, 247, 0.86);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.mini-pricing-box {
  border-radius: 7px;
  border-left: 8px solid var(--primary);
}

.hero {
  padding-top: 92px;
}

.eyebrow {
  color: var(--primary-dark);
  letter-spacing: 0.2em;
}

.hero-copy h1 {
  color: var(--text);
  max-width: 700px;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.lead,
.hero-points,
.info-card p,
.project-body p,
.split-layout p,
.footer-wrap p,
.pricing-card ul {
  color: var(--muted);
}

.hero-points li::before {
  color: var(--primary);
}

.hero-showcase {
  border: 2px solid var(--text);
  border-radius: 8px;
  background: #02050a;
  box-shadow: 12px 14px 0 var(--primary);
  transform: rotate(3deg);
}

.hero-showcase:hover {
  box-shadow: 7px 9px 0 var(--primary);
}

.showcase-status {
  color: var(--accent);
}

.showcase-status i {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.95);
}

.showcase-kicker {
  color: var(--accent);
}

.showcase-project {
  border-radius: 5px;
  background: #26332e;
}

.showcase-bottomline {
  color: #aab8b2;
}

.stats {
  padding-top: 34px;
}

.stats-grid {
  border-radius: 7px;
  border: 2px solid var(--text);
}

.stats-grid strong {
  color: var(--primary);
}

.stats-grid span {
  color: var(--muted);
}

.section {
  padding: 112px 0;
}

.alt-bg {
  background: var(--text);
  color: #f7f4eb;
  border-color: var(--text);
}

.alt-bg .eyebrow {
  color: var(--accent);
}

.alt-bg .split-layout p {
  color: #b6c0b9;
}

.info-card,
.project-card,
.pricing-card,
.review-form,
.testimonial-table,
.step-item {
  border-radius: 7px;
}

.info-card {
  border-top: 5px solid var(--accent);
}

.icon {
  border-radius: 5px;
  background: var(--accent);
}

.project-card {
  overflow: hidden;
}

.project-visual {
  filter: saturate(1.15) contrast(1.05);
}

.pricing-card.featured {
  background: #02050a;
  border-color: var(--text);
  transform: translateY(-10px);
}

.pricing-card.featured .btn {
  background: var(--accent);
  color: var(--text);
  box-shadow: 5px 5px 0 var(--primary);
}

.field-group input,
.field-group textarea {
  border-radius: 5px;
  background: #fffdf7;
}

.buy-box {
  border-radius: 8px;
  background: var(--text);
  border: 2px solid var(--text);
  box-shadow: 10px 10px 0 var(--primary);
}

.step-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.step-item span {
  border-radius: 5px;
  background: var(--accent);
  color: var(--text);
  box-shadow: none;
}

.site-footer {
  background: #02050a;
}

body {
  animation: page-fade 0.8s ease both;
}

.hero-copy,
.hero-visual,
.mini-pricing-box,
.stats-grid {
  animation: content-rise 0.8s ease both;
}

.hero-visual {
  animation-delay: 0.12s;
}

.btn-primary,
.hero-showcase,
.buy-box {
  box-shadow: 0 0 0 1px rgba(105, 196, 255, 0.2), 0 0 28px rgba(105, 196, 255, 0.24), 8px 9px 0 var(--text);
}

.hero-showcase {
  box-shadow: 0 0 0 1px rgba(105, 196, 255, 0.24), 0 0 42px rgba(105, 196, 255, 0.28), 12px 14px 0 var(--primary);
}

.buy-box {
  box-shadow: 0 0 0 1px rgba(105, 196, 255, 0.2), 0 0 34px rgba(105, 196, 255, 0.22), 10px 10px 0 var(--primary);
}

@keyframes page-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .hero-copy,
  .hero-visual,
  .mini-pricing-box,
  .stats-grid {
    animation: none;
  }
}

:root {
  --bg: #02050a;
  --bg-soft: #07152f;
  --panel: rgba(7, 21, 47, 0.78);
  --card: #07152f;
  --text: #f2f7ff;
  --muted: #a8b8d0;
  --primary: #69c4ff;
  --primary-dark: #8bd4ff;
  --accent: #b8e4ff;
  --border: rgba(139, 212, 255, 0.2);
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

body {
  background-color: #000000;
  background-image: none;
  color: var(--text);
}

.glow {
  opacity: 0.14;
}

.ambient-background::before,
.ambient-background::after {
  content: "";
  position: absolute;
  width: 120vw;
  height: 42vw;
  min-height: 320px;
  border: 2px solid rgba(105, 196, 255, 0.16);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.1;
}

.ambient-background::before {
  top: 10%;
  left: -35%;
  transform: rotate(-12deg);
  box-shadow: 0 0 80px rgba(22, 74, 171, 0.28), inset 0 0 55px rgba(105, 196, 255, 0.08);
  animation: wave-drift 14s ease-in-out infinite;
}

.ambient-background::after {
  right: -42%;
  bottom: 8%;
  transform: rotate(18deg);
  border-color: rgba(139, 212, 255, 0.12);
  box-shadow: 0 0 90px rgba(105, 196, 255, 0.2), inset 0 0 65px rgba(22, 74, 171, 0.12);
  animation: wave-drift-reverse 18s ease-in-out infinite;
}

.site-header {
  background: rgba(2, 5, 10, 0.78);
  border-bottom-color: var(--border);
  isolation: isolate;
  pointer-events: auto;
}

.site-header .container,
.site-header .main-nav,
.site-header a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.main-nav,
.lead,
.hero-points,
.info-card p,
.project-body p,
.split-layout p,
.footer-wrap p,
.pricing-card ul {
  color: var(--muted);
}

.mini-pricing-box,
.stats-grid,
.window-card,
.pricing-card,
.review-form,
.testimonial-table,
.info-card,
.project-card {
  background: rgba(7, 21, 47, 0.78);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow);
}

.mini-pricing-box h2,
.stats-grid strong,
.info-card h3,
.project-body h3,
.pricing-card .price,
.pricing-card .plan-name {
  color: var(--text);
}

.alt-bg {
  background: rgba(7, 21, 47, 0.58);
  border-color: var(--border);
}

.alt-bg .split-layout p {
  color: var(--muted);
}

.field-group input,
.field-group textarea {
  background: rgba(2, 5, 10, 0.72);
  border-color: var(--border);
  color: var(--text);
}

.testimonial-table th {
  background: rgba(105, 196, 255, 0.1);
  color: var(--accent);
}

.testimonial-table th,
.testimonial-table td {
  border-bottom-color: var(--border);
  color: var(--text);
}

.pricing-card.featured,
.buy-box,
.hero-showcase {
  background: #000000;
}

.site-footer {
  background: #000000;
}

@keyframes wave-drift {
  0%, 100% {
    opacity: 0.08;
    transform: translate3d(-3%, 0, 0) rotate(-12deg) scale(0.98);
  }
  50% {
    opacity: 0.72;
    transform: translate3d(4%, 5%, 0) rotate(-8deg) scale(1.05);
  }
}

@keyframes wave-drift-reverse {
  0%, 100% {
    opacity: 0.06;
    transform: translate3d(3%, 2%, 0) rotate(18deg) scale(1.04);
  }
  50% {
    opacity: 0.62;
    transform: translate3d(-5%, -4%, 0) rotate(12deg) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-background::before,
  .ambient-background::after {
    animation: none;
  }
}

.showcase-topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin: -24px -24px 0;
  padding: 12px 14px;
  background: #07152f;
  border-bottom: 1px solid rgba(139, 212, 255, 0.24);
  border-radius: 6px 6px 0 0;
}

.window-controls,
.window-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.window-actions {
  justify-self: start;
  gap: 12px;
}

.showcase-year {
  justify-self: end;
}

.hero-grid {
  transition: grid-template-columns 0.5s ease;
}

.hero-grid.showcase-hidden {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.hero-grid.showcase-hidden .hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-grid.showcase-hidden .hero-copy h1 {
  max-width: 900px;
  margin-inline: auto;
}

.hero-grid.showcase-hidden .lead {
  margin-inline: auto;
}

.hero-grid.showcase-hidden .cta-row {
  justify-content: center;
}

.hero-grid.showcase-hidden .hero-points {
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}

.window-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.window-dot-red {
  background: #ff5f57;
}

.window-dot-yellow {
  background: #ffbd2e;
}

.window-dot-green {
  background: #28c840;
}

.window-minimize,
.window-maximize,
.window-close {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  opacity: 0.9;
}

.window-minimize,
.window-close {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.window-minimize:hover,
.window-close:hover {
  opacity: 1;
}

.window-minimize::before,
.window-maximize::before,
.window-close::before,
.window-close::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
}

.window-minimize::before {
  left: 1px;
  right: 1px;
  bottom: 2px;
  height: 1px;
}

.window-maximize {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1px;
}

.window-close::before,
.window-close::after {
  left: 5px;
  top: 0;
  width: 1px;
  height: 13px;
}

.window-close::before {
  transform: rotate(45deg);
}

.window-close::after {
  transform: rotate(-45deg);
}

body {
  padding-top: 0;
}

.site-header {
  position: relative;
  top: auto;
  width: auto;
}

main,
section,
footer {
  scroll-margin-top: 0;
}

.glow-one {
  background: var(--primary);
}

.glow-two {
  background: var(--accent);
}

@media (max-width: 560px) {
  .showcase-topline {
    margin: -18px -18px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-showcase {
    box-shadow: 7px 8px 0 var(--primary);
  }

  .stats-grid {
    border-radius: 7px;
  }

  .buy-box {
    box-shadow: 6px 7px 0 var(--primary);
  }
}
