/* XTech — xtech.software */
:root {
  --bg: #070a12;
  --bg-elevated: #0c101c;
  --bg-card: rgba(18, 24, 40, 0.65);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #e8ecf4;
  --muted: rgba(232, 236, 244, 0.68);
  --dim: rgba(232, 236, 244, 0.45);
  --accent: #5eead4;
  --accent-dim: rgba(94, 234, 212, 0.15);
  --accent-hot: #22d3ee;
  --gold: #c9a227;
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

body.is-loading {
  overflow: hidden;
}

/* Loader — “hyperfield” warp into the page. */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9998; /* sit under .noise (9999) so grain stays consistent */
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse 110% 80% at 50% 45%, rgba(34, 211, 238, 0.08), transparent 62%),
    radial-gradient(ellipse 85% 60% at 50% 100%, rgba(94, 234, 212, 0.06), transparent 55%),
    var(--bg);
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: all;
}

.page-loader.is-done {
  opacity: 0;
  pointer-events: none;
}

.page-loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-loader-center {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.65);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.page-loader-logo {
  display: block;
  height: 3.1rem;
  width: auto;
  opacity: 0.95;
}

.page-loader-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-loader-wheel {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 10, 18, 0.85) 0 56%, transparent 57%),
    conic-gradient(from 0deg, rgba(34, 211, 238, 0.98), rgba(94, 234, 212, 0.18), rgba(34, 211, 238, 0.98));
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.14),
    0 0 22px rgba(34, 211, 238, 0.18),
    0 0 44px rgba(94, 234, 212, 0.12);
  animation: loaderSpin 0.85s linear infinite;
  position: relative;
}

.page-loader-wheel::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 35% 35%, rgba(165, 244, 252, 0.1), transparent 60%);
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.page-loader.is-boost .page-loader-wheel {
  animation-duration: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-canvas {
    display: none;
  }

  .page-loader-wheel {
    animation-duration: 1.2s;
  }
}

/* Static gradients only — full-viewport wash so scroll feels like one continuous page. */
.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 55% at 12% 8%, rgba(34, 211, 238, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 50% at 92% 88%, rgba(94, 234, 212, 0.07), transparent 50%),
    radial-gradient(ellipse 120% 55% at 50% 40%, rgba(34, 211, 238, 0.04), transparent 58%),
    radial-gradient(ellipse 80% 45% at 75% 55%, rgba(94, 234, 212, 0.035), transparent 52%);
}

/* Cyan “ember” sparkles — transform + opacity only (no filters). */
.embers {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.ember {
  position: absolute;
  left: var(--ember-left, 50%);
  bottom: -12px;
  width: var(--ember-size, 3px);
  height: var(--ember-size, 3px);
  margin-left: calc(var(--ember-size, 3px) / -2);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #ecfeff 0%,
    #67e8f9 35%,
    #22d3ee 65%,
    rgba(34, 211, 238, 0.2) 100%
  );
  box-shadow:
    0 0 6px rgba(103, 232, 249, 0.85),
    0 0 12px rgba(34, 211, 238, 0.35);
  opacity: 0;
  animation: ember-rise var(--ember-rise-dur, 12s) linear infinite;
  animation-delay: var(--ember-delay, 0s);
}

.ember--soft {
  background: radial-gradient(circle at 40% 40%, rgba(207, 250, 254, 0.95) 0%, rgba(45, 212, 191, 0.5) 55%, transparent 72%);
  box-shadow:
    0 0 4px rgba(94, 234, 212, 0.6),
    0 0 10px rgba(34, 211, 238, 0.25);
}

@keyframes ember-rise {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0;
  }
  5% {
    opacity: var(--ember-op, 0.75);
  }
  22% {
    transform: translate3d(calc(var(--ember-drift, 0px) * 0.22), -22vh, 0) scale(0.95);
  }
  48% {
    transform: translate3d(calc(var(--ember-drift, 0px) * 0.52), -52vh, 0) scale(0.72);
  }
  72% {
    transform: translate3d(calc(var(--ember-drift, 0px) * 0.78), -78vh, 0) scale(0.52);
  }
  88% {
    opacity: var(--ember-op, 0.75);
  }
  100% {
    transform: translate3d(var(--ember-drift, 0px), calc(-100vh - 60px), 0) scale(0.32);
    opacity: 0;
  }
}

main {
  position: relative;
  z-index: 2;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hot);
}

.container {
  width: min(100% - clamp(1.25rem, 4vw, 2.5rem), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.94);
  border-bottom: 1px solid var(--stroke);
  padding-top: env(safe-area-inset-top, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.06em;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.logo-img {
  display: block;
  height: 1.45em;
  width: auto;
  max-width: 8.25rem;
  object-fit: contain;
  object-position: left center;
}

.logo-dot {
  display: inline-block;
  color: var(--accent);
  /* Status-style pulse: opacity + glow only (no scale — scale was shifting the line height). */
  animation: logoDotStatus 2.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes logoDotStatus {
  0%,
  100% {
    opacity: 0.55;
    color: var(--accent);
    text-shadow:
      0 0 2px rgba(94, 234, 212, 0.25),
      0 0 8px rgba(34, 211, 238, 0.18);
  }
  50% {
    opacity: 1;
    color: #a5f4fc;
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.35),
      0 0 12px rgba(94, 234, 212, 0.85),
      0 0 22px rgba(34, 211, 238, 0.5);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-btn {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text) !important;
}

.nav-btn:hover {
  border-color: rgba(94, 234, 212, 0.35);
}

.nav-btn-call {
  border-color: rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.06);
}

.nav-btn-message {
  border-color: rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.06);
  color: var(--text) !important;
}

.nav-btn-message:hover {
  border-color: rgba(94, 234, 212, 0.55);
  background: rgba(94, 234, 212, 0.10);
}

.nav-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.06);
  color: var(--text) !important;
}

.nav-icon:hover {
  border-color: rgba(94, 234, 212, 0.55);
  background: rgba(94, 234, 212, 0.10);
}

.nav-icon-svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@keyframes navToggleWiggle {
  0%,
  86%,
  100% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-10deg);
  }
  92% {
    transform: rotate(10deg);
  }
  94% {
    transform: rotate(-7deg);
  }
  96% {
    transform: rotate(7deg);
  }
}

.site-header.is-open .nav-toggle-bar:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero — cyan glows (no gold); center blends like the sides (no vertical “frame”). */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow-x: clip;
  overflow-y: visible;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  top: -20%;
  right: -10%;
  bottom: -32%;
  left: -10%;
  height: auto;
  min-height: 100%;
  background:
    /* Wider side glows so they meet softly in the middle */
    radial-gradient(ellipse 95% 62% at 16% 18%, rgba(34, 211, 238, 0.11), transparent 58%),
    radial-gradient(ellipse 88% 56% at 84% 26%, rgba(94, 234, 212, 0.09), transparent 56%),
    radial-gradient(ellipse 52% 42% at 50% 100%, rgba(34, 211, 238, 0.05), transparent 46%),
    /* Soft center wash — fills the mid band so it matches edge falloff */
    radial-gradient(ellipse 78% 100% at 50% 44%, rgba(34, 211, 238, 0.036), transparent 68%);
  pointer-events: none;
  /* Fade the layer out before its box ends — avoids a hard seam mid-page (e.g. under #services intro). */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.45) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.45) 82%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: min(56px, 12vw) min(56px, 12vw);
  pointer-events: none;
  opacity: 0.2;
  /* Fade the grid toward the horizontal center so vertical lines don’t “box” the copy */
  mask-image: radial-gradient(
    ellipse 72% 100% at 50% 48%,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 22%,
    rgba(0, 0, 0, 0.75) 48%,
    black 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #2dd4bf, #22d3ee);
  color: #041016 !important;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: #041016 !important;
}

.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text) !important;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-block {
  width: 100%;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.88rem;
  color: var(--dim);
}

.stat-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.panel-card {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 40, 0.88);
  border: 1px solid var(--stroke);
  border-bottom: none;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(94, 234, 212, 0.05) 50%,
    transparent 60%
  );
  opacity: 0.65;
  pointer-events: none;
}

.panel-card > * {
  position: relative;
  z-index: 1;
}

.panel-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
}

.panel-price {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.panel-price .currency {
  font-size: 1.75rem;
  vertical-align: super;
  margin-right: 0.1em;
}

.panel-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--muted);
}

.panel-list li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(94, 234, 212, 0.45);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-sub {
  margin: 0;
  color: var(--muted);
}

.section-sub strong {
  color: var(--text);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
    border-color: rgba(94, 234, 212, 0.22);
  }

  .price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .price-card-featured:hover {
    border-color: rgba(94, 234, 212, 0.45);
    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.4),
      0 0 40px rgba(34, 211, 238, 0.08);
  }
}

.step,
.price-card {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.card-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.6rem;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.checklist strong {
  color: var(--text);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border-color: rgba(94, 234, 212, 0.35);
  background:
    linear-gradient(145deg, rgba(94, 234, 212, 0.06), transparent 40%),
    var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.08);
}

.price-badge {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.price-name {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.price-amount {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.75rem;
  letter-spacing: -0.03em;
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-term {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dim);
}

.price-desc {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent-hot);
  transform: rotate(45deg);
}

.pricing-footnote {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--dim);
  max-width: 48rem;
}

/* Add-on callout (Pricing) */
.addon-card {
  margin-top: 1.5rem;
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94, 234, 212, 0.22);
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(94, 234, 212, 0.10), transparent 55%),
    linear-gradient(145deg, rgba(34, 211, 238, 0.05), transparent 45%),
    var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.22);
}

.addon-head {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}

.addon-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.addon-title {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.addon-text {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 58ch;
}

.addon-list {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.addon-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.addon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* Steps */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-elevated);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.step-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Examples */
.section-examples {
  position: relative;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.example-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(18, 24, 40, 0.92), rgba(12, 16, 28, 0.88));
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
  min-height: 100%;
}

.example-card:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.35);
  outline-offset: 3px;
}

.example-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 80% 60% at 30% 25%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 60% at 70% 75%, rgba(94, 234, 212, 0.14), transparent 55%),
    rgba(7, 10, 18, 0.6);
  overflow: hidden;
}

.example-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.01);
}

.example-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 15%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

/* .example-badge removed from homepage tiles */

.example-body {
  padding: 1.25rem 1.25rem 1.35rem;
  padding-top: calc(1.25rem + 1px);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-content: start;
  min-height: 0;
  margin-top: -1px;
  position: relative;
}

.example-title {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.example-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.example-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.example-cta::after {
  content: "→";
  opacity: 0.9;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(94, 234, 212, 0.22);
    box-shadow:
      0 22px 58px rgba(0, 0, 0, 0.38),
      0 0 40px rgba(34, 211, 238, 0.06);
  }

  .example-card:hover .example-cta::after {
    transform: translateX(4px);
  }
}

/* Contact */
.section-contact {
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-bullets {
  margin: 1.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.contact-bullets li {
  margin-bottom: 0.5rem;
}

.contact-form-wrap {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(18, 24, 40, 0.9);
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.contact-form .field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(7, 10, 18, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(94, 234, 212, 0.45);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.thank-you-note {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.92rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--stroke);
  padding: 1.75rem 0 max(2.5rem, env(safe-area-inset-bottom, 0));
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-logo {
  display: block;
  height: 1.55em;
  width: auto;
  max-width: 7.75rem;
  object-fit: contain;
  object-position: left center;
}

.footer-link {
  color: var(--text);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .example-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
    transform-origin: 50% 50%;
    animation: navToggleWiggle 6.5s ease-in-out infinite;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(7, 10, 18, 0.97);
    border-bottom: 1px solid var(--stroke);
    gap: 0.75rem;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .site-header.is-open .nav-toggle {
    animation: none;
  }

  .nav a {
    padding: 0.65rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 44px 1fr 1fr;
    gap: 0.75rem;
    padding-top: 0.25rem;
  }

  .nav-btn,
  .nav-icon {
    min-height: 44px;
    padding: 0.65rem 0.95rem;
    justify-content: center;
  }

  .nav-icon {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    order: 0;
  }

  .nav-toggle {
    order: 1;
    margin-left: auto;
  }

  .nav {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .embers {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .logo-dot {
    animation: none;
    transform: none;
    text-shadow: none;
    color: var(--accent);
  }

  .nav-toggle {
    animation: none;
  }

  .card:hover,
  .step:hover,
  .price-card:hover,
  .price-card-featured:hover {
    transform: none;
  }
}
