/* ============ JobFlow — Hybrid (Atelier polish × Voltage energy) ============ */
:root {
  --r: 12px; /* corner radius, set by tweak */
  --pad: 128px; /* section padding, set by tweak */
  --accent: #e0552b; /* set by tweak */
  --accent-soft: color-mix(in srgb, var(--accent) 13%, transparent);
  --accent-ink: color-mix(in oklab, var(--accent) 80%, #000);
  --maxw: 1180px;
  --display: "Space Grotesk", sans-serif; /* set by font tweak */
  --display-w: 600;
  --display-ls: -0.02em;
  --display-lh: 1.05;
  --em-style: normal;
  --body: "Hanken Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
}
/* ---- themes ---- */
.theme-light {
  --bg: #f4f1ea;
  --bg2: #fbf9f4;
  --panel: #ffffff;
  --panel2: #f6f3ec;
  --text: #1a1714;
  --muted: #6e6457;
  --muted2: #9c9182;
  --line: rgba(26, 23, 20, 0.12);
  --line2: rgba(26, 23, 20, 0.2);
  --ink-btn: #1a1714;
  --ink-btn-text: #f4f1ea;
  --final-bg: #1a1714;
  --final-text: #f4f1ea;
  --on-accent: #fff;
}
.theme-dark {
  --bg: #08090c;
  --bg2: #0c0e13;
  --panel: #101319;
  --panel2: #161a22;
  --text: #eef1f7;
  --muted: #98a1b4;
  --muted2: #6b7387;
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.15);
  --ink-btn: var(--accent);
  --ink-btn-text: #fff;
  --final-bg: #0b0d12;
  --final-text: #eef1f7;
  --on-accent: #fff;
  --accent-ink: color-mix(in oklab, var(--accent) 70%, #fff);
}
/* ---- font modes ---- */
.font-serif {
  --display: "Instrument Serif", Georgia, serif;
  --display-w: 400;
  --display-ls: -0.01em;
  --display-lh: 1.06;
  --em-style: italic;
}
.font-grotesk {
  --display: "Space Grotesk", sans-serif;
  --display-w: 600;
  --display-ls: -0.02em;
  --display-lh: 1.04;
  --em-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition:
    background 0.4s,
    color 0.4s;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: var(--display-w);
  line-height: var(--display-lh);
  letter-spacing: var(--display-ls);
}
em {
  font-style: var(--em-style);
  color: var(--accent-ink);
  font-weight: inherit;
}
.section {
  padding: var(--pad) 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(34px, 5vw, 60px);
  margin: 20px 0 18px;
}
.section-head p {
  color: var(--muted);
  font-size: 19px;
  max-width: 560px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: calc(var(--r) * 1.1);
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.18s,
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.25s;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 12px 30px -12px var(--accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -14px var(--accent);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-ink {
  background: var(--ink-btn);
  color: var(--ink-btn-text);
}
.btn-ink:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.btn-ink:hover svg {
  transform: translateX(4px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line2);
}
.btn-ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

/* ---- nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    visibility 0.3s;
}
.nav.past-hero .nav-cta {
  opacity: 1;
  visibility: visible;
  transform: none;
}
@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .nav-cta .btn-ghost {
    display: none;
  }
}

/* ---- logo ---- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}
.logo-mark {
  width: 34px;
  height: 34px;
  color: var(--accent);
  flex: none;
}
.logo-word {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 23px;
  letter-spacing: var(--display-ls);
}
.font-serif .logo-word b {
  font-weight: 400;
  font-style: italic;
  color: var(--accent-ink);
}
.font-grotesk .logo-word b {
  font-weight: 700;
}

/* ---- hero ---- */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 520px;
  background: radial-gradient(
    ellipse at center,
    var(--accent-soft),
    transparent 64%
  );
  pointer-events: none;
  opacity: 0.9;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(
    ellipse 80% 55% at 50% 0%,
    #000 25%,
    transparent 72%
  );
  opacity: 0.6;
}
.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  margin: 24px 0 24px;
}
.hero p.sub {
  color: var(--muted);
  font-size: 20px;
  max-width: 470px;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-meta {
  display: flex;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.hero-meta .item {
  flex: 1;
}
.hero-meta .item + .item {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.hero-meta .n {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta .n .u {
  color: var(--accent-ink);
}
.hero-meta .l {
  color: var(--muted2);
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}
@media (max-width: 920px) {
  .hero-in {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .hero {
    padding: 140px 0 60px;
  }
}

/* ---- live frame ---- */
.frame {
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: calc(var(--r) + 2px);
  overflow: hidden;
  box-shadow:
    0 44px 90px -44px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel2);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line2);
}
.frame-url {
  flex: 1;
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted2);
}
.live {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.live .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--accent-soft);
  }
  70% {
    box-shadow: 0 0 0 7px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
.psite {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  background: var(--bg2);
}
.psite-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.psite-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 17px;
}
.psite-logo .ico {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-family: var(--body);
  font-weight: 700;
  transition: background 0.5s;
}
.psite-call {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  transition: background 0.5s;
}
.psite-hero {
  padding: 30px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.psite-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: color 0.5s;
}
.psite-h {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  min-height: 62px;
}
.psite-sub {
  color: var(--muted);
  font-size: 13px;
  max-width: 330px;
  margin-bottom: 18px;
}
.psite-btns {
  display: flex;
  gap: 9px;
}
.psite-b {
  font-size: 12px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 50px;
  color: #fff;
  transition: background 0.5s;
}
.psite-b.g {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--text);
}
.psite-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.psite-cell {
  padding: 13px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.psite-cell:last-child {
  border-right: none;
}
.psite-cell b {
  display: block;
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 17px;
  color: var(--text);
  transition: color 0.5s;
}
.build-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  padding: 3px 9px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
}

/* ---- trade strip ---- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  background: var(--bg2);
}
.strip-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  text-align: center;
  margin-bottom: 22px;
}
.trades {
  display: flex;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}
.trade {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 24px;
}
.trade svg {
  width: 23px;
  height: 23px;
  color: var(--accent);
}

/* ---- pain stat band ---- */
.painbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.painbar-in {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 46px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.painbar-num {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: clamp(72px, 11vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent-ink);
  white-space: nowrap;
}
.painbar-copy h3 {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.painbar-copy h3 em {
  font-style: var(--em-style);
  color: var(--accent-ink);
}
.painbar-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.painbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 600;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 16px;
}
.painbar-chip b {
  font-family: var(--display);
  font-weight: var(--display-w);
  color: var(--accent-ink);
  font-size: 17px;
}
.painbar-src {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted2);
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .painbar-in {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
  .painbar {
    padding: 52px 0;
  }
}

/* ---- problem ---- */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.prob {
  padding: 38px 30px 38px 0;
  border-right: 1px solid var(--line);
}
.prob:last-child {
  border-right: none;
  padding-right: 0;
}
.prob:not(:first-child) {
  padding-left: 30px;
}
.prob .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-ink);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.prob p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.5;
}
.prob p b {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-style: var(--em-style);
  color: var(--accent-ink);
}
@media (max-width: 820px) {
  .prob-grid {
    grid-template-columns: 1fr;
  }
  .prob {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }
  .prob:not(:first-child) {
    padding-left: 0;
  }
}

/* ---- before/after ---- */
.ba {
  position: relative;
  border-radius: calc(var(--r) + 2px);
  overflow: hidden;
  border: 1px solid var(--line2);
  user-select: none;
  background: var(--panel);
  box-shadow: 0 40px 80px -44px rgba(0, 0, 0, 0.4);
}
.ba-pane {
  position: relative;
  height: clamp(360px, 40vw, 460px);
}
.ba-img {
  position: absolute;
  inset: 0;
  padding: 20px;
}
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  z-index: 5;
  cursor: ew-resize;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px -6px var(--accent);
}
.ba-knob svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 50px;
  z-index: 4;
  background: var(--panel);
  border: 1px solid var(--line);
}
.ba-tag.b {
  left: 16px;
  color: var(--muted);
}
.ba-tag.a {
  right: 16px;
  color: var(--accent-ink);
  border-color: var(--accent);
}
.old {
  height: 100%;
  border-radius: var(--r);
  background: color-mix(in srgb, var(--bg2) 70%, #888 8%);
  border: 1px dashed var(--line2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.old-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.old-av {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--line2);
  flex: none;
}
.old-name {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 21px;
  color: var(--muted2);
}
.old-sub {
  font-size: 11px;
  color: var(--muted2);
  font-family: var(--mono);
  margin-top: 3px;
  opacity: 0.8;
}
.old-line {
  height: 10px;
  border-radius: 5px;
  background: var(--line2);
  opacity: 0.6;
}
.old-photo {
  height: 140px;
  border-radius: var(--r);
  background: repeating-linear-gradient(
    45deg,
    color-mix(in srgb, var(--bg2) 60%, #888 6%),
    color-mix(in srgb, var(--bg2) 60%, #888 6%) 12px,
    color-mix(in srgb, var(--bg2) 40%, #888 10%) 12px,
    color-mix(in srgb, var(--bg2) 40%, #888 10%) 24px
  );
  display: grid;
  place-items: center;
  color: var(--muted2);
  font-family: var(--mono);
  font-size: 12px;
}
.old-spacer {
  flex: 1;
}
.old-stamp {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted2);
  z-index: 4;
}
.new {
  height: 100%;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--line2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.new-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
}
.new-logo {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 18px;
}
.new-cta {
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
}
.new-hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px 24px;
  align-items: center;
}
.new-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 12px;
}
.new-h {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 13px;
}
.new-p {
  font-size: 13px;
  color: var(--muted);
  max-width: 340px;
  margin-bottom: 18px;
  line-height: 1.55;
}
.new-btns {
  display: flex;
  gap: 10px;
}
.new-b {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
}
.new-b.p {
  background: var(--accent);
  color: #fff;
}
.new-b.g {
  border: 1px solid var(--line2);
  color: var(--text);
}
.new-shot {
  align-self: stretch;
  border-radius: var(--r);
  border: 1px solid var(--line2);
  background: repeating-linear-gradient(
    45deg,
    var(--panel2),
    var(--panel2) 12px,
    var(--bg2) 12px,
    var(--bg2) 24px
  );
  display: grid;
  place-items: center;
  color: var(--muted2);
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  padding: 14px;
}
.new-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.new-cell {
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.new-cell:last-child {
  border-right: none;
}
.new-cell b {
  display: block;
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 3px;
  text-transform: none;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .new-hero {
    grid-template-columns: 1fr;
  }
  .new-shot {
    display: none;
  }
  .new-h {
    font-size: 24px;
  }
}

/* ---- Cool Front (real client site) preview ---- */
.cf {
  height: 100%;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #eaf2fb;
  background:
    radial-gradient(120% 80% at 80% 0%, #15314e 0%, transparent 55%), #0c1626;
  border: 1px solid #1e3050;
}
.cf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cf-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cf-logo .g {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: #38bdf8;
  display: grid;
  place-items: center;
  color: #06202e;
  flex: none;
}
.cf-logo .g svg {
  width: 16px;
  height: 16px;
}
.cf-logo b {
  color: #38bdf8;
}
.cf-navcta {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cf-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.cf-pill.ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eaf2fb;
}
.cf-pill.call {
  background: #38bdf8;
  color: #06202e;
}
.cf-hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
  padding: 24px 24px;
  align-items: center;
}
.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fd9f6;
  border: 1px solid rgba(143, 217, 246, 0.3);
  padding: 5px 11px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.cf-h {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 33px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 13px;
}
.cf-h span {
  color: #38bdf8;
}
.cf-p {
  font-size: 12.5px;
  color: #a9bdd6;
  max-width: 310px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.cf-btns {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}
.cf-b {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.cf-b.p {
  background: #38bdf8;
  color: #06202e;
}
.cf-b.g {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #eaf2fb;
}
.cf-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-stars {
  color: #ffb020;
  font-size: 15px;
  letter-spacing: 1px;
}
.cf-rtext {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 11px;
  color: #a9bdd6;
  line-height: 1.35;
}
.cf-rtext b {
  color: #fff;
}
.cf-gatorwrap {
  align-self: stretch;
  display: grid;
  place-items: center;
}
.cf-gator {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.45));
}
@media (max-width: 640px) {
  .cf-hero {
    grid-template-columns: 1fr;
  }
  .cf-gatorwrap {
    display: none;
  }
  .cf-h {
    font-size: 26px;
  }
}

/* ---- site card (clickable, opens live site) ---- */
.site-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.site-gallery .sitecard {
  max-width: none;
  margin: 0;
}
.sitecard-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.sitecard {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: calc(var(--r) + 4px);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 34px 80px -46px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s,
    border-color 0.28s;
}
.sitecard:hover {
  transform: translateY(-6px);
  box-shadow: 0 52px 100px -44px rgba(0, 0, 0, 0.55);
  border-color: var(--accent);
}
.sitecard-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: var(--panel2);
  border-bottom: 1px solid var(--line);
}
.sitecard-view {
  position: relative;
  height: clamp(330px, 40vw, 460px);
  overflow: hidden;
}
.sitecard-view .cf {
  height: 100%;
  border: none;
  border-radius: 0;
}
.sitecard-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 16, 28, 0.42);
  opacity: 0;
  transition: opacity 0.28s;
}
.sitecard:hover .sitecard-overlay {
  opacity: 1;
}
.sitecard-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0c1626;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(8px);
  transition: transform 0.28s;
}
.sitecard:hover .sitecard-open {
  transform: none;
}
.sitecard-open svg {
  width: 17px;
  height: 17px;
}
.sitecard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
}
.sitecard-id {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sitecard-logo {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: #0c1626;
  overflow: hidden;
  flex: none;
  display: grid;
  place-items: center;
}
.sitecard-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}
.sitecard-name {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.sitecard-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.sitecard-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-ink);
  white-space: nowrap;
}
.sitecard-visit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.sitecard:hover .sitecard-visit svg {
  transform: translateX(4px);
}
@media (max-width: 560px) {
  .sitecard-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ---- interactive demo modal ---- */
.sitecard {
  cursor: zoom-in;
}
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.demo-modal.open {
  display: flex;
}
.demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 20, 0.74);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}
.demo-modal.open .demo-backdrop {
  opacity: 1;
}
.demo-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  height: 88vh;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: calc(var(--r) + 4px);
  overflow: hidden;
  box-shadow: 0 60px 130px -40px rgba(0, 0, 0, 0.75);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.34s;
}
.demo-modal.open .demo-shell {
  transform: none;
  opacity: 1;
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--panel2);
  border-bottom: 1px solid var(--line);
  flex: none;
}
.demo-dots {
  display: flex;
  gap: 7px;
  flex: none;
}
.demo-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 12px;
  min-width: 0;
}
.demo-url .lock {
  width: 12px;
  height: 12px;
  color: var(--accent-ink);
  flex: none;
}
.demo-url span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-tools {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
}
.demo-seg {
  display: flex;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 3px;
  gap: 2px;
}
.demo-seg button {
  border: none;
  background: none;
  color: var(--muted);
  width: 33px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.15s;
}
.demo-seg button:hover {
  color: var(--text);
}
.demo-seg button.on {
  background: var(--panel);
  color: var(--accent-ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.demo-seg svg {
  width: 16px;
  height: 16px;
}
.demo-open,
.demo-close {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line2);
  background: none;
  color: var(--text);
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  padding: 0 13px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.18s;
}
.demo-open:hover,
.demo-close:hover {
  border-color: var(--text);
  background: var(--bg2);
}
.demo-close {
  width: 34px;
  justify-content: center;
  padding: 0;
}
.demo-open svg,
.demo-close svg {
  width: 15px;
  height: 15px;
}
.demo-stage {
  flex: 1;
  background: #13161d;
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.demo-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #0a1828;
  transition: max-width 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-shell[data-device="mobile"] .demo-stage {
  padding: 20px 0;
}
.demo-shell[data-device="mobile"] .demo-frame {
  max-width: 392px;
  height: calc(100% - 40px);
  align-self: center;
  border-radius: 24px;
  border: 1px solid var(--line2);
  box-shadow: 0 28px 60px -18px rgba(0, 0, 0, 0.6);
}
.demo-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(10, 24, 40, 0.82);
  border: 1px solid var(--line2);
  padding: 7px 14px;
  border-radius: 50px;
  pointer-events: none;
  opacity: 0;
}
.demo-modal.open .demo-hint {
  animation: demohint 4.5s ease forwards;
}
@keyframes demohint {
  8% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 600px) {
  .demo-modal {
    padding: 0;
  }
  .demo-shell {
    height: 100vh;
    border-radius: 0;
    max-width: none !important;
  }
  .demo-stage {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 0 !important;
  }
  .demo-stage .demo-frame,
  .demo-shell[data-device="mobile"] .demo-frame {
    max-width: none;
    width: 100%;
    height: auto;
    align-self: stretch;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .demo-open span {
    display: none;
  }
  .demo-seg {
    display: none;
  }
}

/* ---- how it works ---- */
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  transition:
    padding-left 0.25s,
    background 0.2s;
}
.step:hover {
  padding-left: 14px;
}
.step:last-child {
  border-bottom: 1px solid var(--line);
}
.step-n {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 54px;
  color: var(--accent);
  line-height: 1;
}
.step-c h3 {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 28px;
  margin-bottom: 6px;
}
.step-c p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}
.step-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .step {
    grid-template-columns: 54px 1fr;
    gap: 20px;
  }
  .step-time {
    display: none;
  }
  .step-n {
    font-size: 40px;
  }
  .step-c h3 {
    font-size: 23px;
  }
}

/* ---- included ---- */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.incl {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 30px 23px 0;
  border-bottom: 1px solid var(--line);
}
.incl:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 30px;
}
.incl:nth-child(even) {
  padding-left: 30px;
}
.incl .ck {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  flex: none;
}
.incl .ck svg {
  width: 15px;
  height: 15px;
}
.incl span {
  font-size: 16.5px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .incl-grid {
    grid-template-columns: 1fr;
  }
  .incl:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .incl:nth-child(even) {
    padding-left: 0;
  }
}

/* ---- pricing ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 2px);
  overflow: hidden;
  background: var(--panel);
}
.price {
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.25s;
}
.price:last-child {
  border-right: none;
}
.price:hover {
  background: var(--panel2);
}
.price.pop {
  background: var(--ink-btn);
  color: var(--ink-btn-text);
}
.price.pop .tier,
.price.pop .desc {
  color: color-mix(in srgb, var(--ink-btn-text) 60%, transparent);
}
.price.pop li {
  color: color-mix(in srgb, var(--ink-btn-text) 78%, transparent);
}
.price.pop li svg {
  color: var(--accent);
}
.price.pop .amt {
  color: var(--ink-btn-text);
}
.price.pop:hover {
  background: var(--ink-btn);
}
.price-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
}
.price .tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.price .amt {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price .amt .c {
  font-size: 30px;
  vertical-align: top;
  color: var(--muted2);
}
.price .desc {
  color: var(--muted);
  font-size: 12px;
  margin: 6px 0 24px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.price li {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.4;
}
.price li svg {
  width: 15px;
  height: 15px;
  color: var(--accent-ink);
  flex: none;
  margin-top: 4px;
}
.price .btn {
  width: 100%;
  justify-content: center;
}
.host-note {
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 calc(var(--r) + 2px) calc(var(--r) + 2px);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 22px;
  background: var(--panel2);
}
.host-note b {
  color: var(--text);
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 18px;
}
.host-note a {
  color: var(--accent-ink);
  font-weight: 600;
}
@media (max-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ---- testimonials ---- */
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 2px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tcard .stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 15px;
}
.tcard .quote {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 22px;
  line-height: 1.28;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tcard .who {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}
.tcard .ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 18px;
  flex: none;
}
.tcard .nm {
  font-weight: 600;
  font-size: 15px;
}
.tcard .tr {
  font-size: 13px;
  color: var(--muted2);
  font-family: var(--mono);
}
@media (max-width: 860px) {
  .tg {
    grid-template-columns: 1fr;
  }
}

/* ---- faq ---- */
.faq {
  max-width: 840px;
  margin: 0 auto;
}
.fitem {
  border-bottom: 1px solid var(--line);
}
.fq {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 24px;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.fq .ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line2);
  display: grid;
  place-items: center;
  flex: none;
  transition: 0.25s;
}
.fq .ic svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.fitem.open .ic {
  background: var(--accent);
  border-color: var(--accent);
}
.fitem.open .ic svg {
  transform: rotate(45deg);
  color: #fff;
}
.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fa p {
  color: var(--muted);
  font-size: 16px;
  padding: 0 0 26px;
  max-width: 700px;
}

/* ---- final ---- */
.final {
  padding: var(--pad) 0;
  text-align: center;
  background: var(--final-bg);
  color: var(--final-text);
  position: relative;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    var(--accent-soft),
    transparent 60%
  );
}
.final h2 {
  font-size: clamp(38px, 5.6vw, 72px);
  max-width: 840px;
  margin: 0 auto 22px;
  color: var(--final-text);
  position: relative;
}
.final h2 em {
  color: color-mix(in oklab, var(--accent) 50%, #fff);
}
.final p {
  color: color-mix(in srgb, var(--final-text) 74%, transparent);
  font-size: 19px;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}
.final-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.final .btn-ghost {
  color: var(--final-text);
  border-color: color-mix(in srgb, var(--final-text) 28%, transparent);
}
.final .btn-ghost:hover {
  border-color: var(--final-text);
}

/* ---- footer ---- */
.foot {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}
.foot-links a:hover {
  color: var(--text);
}
.foot small {
  color: var(--muted2);
  font-size: 13px;
}

/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
[data-d="1"] {
  transition-delay: 0.08s;
}
[data-d="2"] {
  transition-delay: 0.16s;
}
[data-d="3"] {
  transition-delay: 0.24s;
}
[data-d="4"] {
  transition-delay: 0.32s;
}
