:root {
  --ink: #0f172a;
  --muted: #52637a;
  --line: #d9e5f3;
  --paper: #f7fbff;
  --white: #ffffff;
  --green: #2563eb;
  --green-deep: #123f9f;
  --mint: #eaf3ff;
  --coral: #0ea5e9;
  --yellow: #7dd3fc;
  --blue: #1d4ed8;
  --cyan: #22d3ee;
  --soft-blue: #eef6ff;
  --deep-blue: #071b3f;
  --violet: #4f46e5;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -8%, rgba(34, 211, 238, 0.18), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(79, 70, 229, 0.12), transparent 28%),
    var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 228, 242, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.site-header .brand {
  color: var(--ink);
}

.site-header .brand-copy small {
  color: var(--blue);
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(34, 211, 238, 0.42), transparent 26%),
    linear-gradient(135deg, #0f3f9e, #1d4ed8 58%, #22d3ee);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 12px 24px rgba(29, 78, 216, 0.22);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.logo-runner,
.logo-speed,
.logo-finish {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.logo-speed {
  opacity: 0.74;
  stroke-width: 2.4;
}

.logo-finish {
  opacity: 0.92;
  stroke-width: 2.5;
}

.logo-head {
  fill: #ffffff;
}

.nav-links {
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--green-deep);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--green-deep);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  background: var(--green-deep);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(28px, 3.2vw, 48px);
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 64px) 56px;
  background:
    radial-gradient(circle at 16% 12%, rgba(125, 211, 252, 0.28), transparent 30%),
    radial-gradient(circle at 86% 6%, rgba(59, 130, 246, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 80px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 80px),
    linear-gradient(135deg, #eaf7ff 0%, #d7efff 36%, #bfe6ff 100%);
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  opacity: 1;
  min-width: 0;
}

.dashboard-shell {
  position: relative;
  width: min(640px, 100%);
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.96));
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(18px);
  overflow: hidden;
  animation: dashboardFloat 7s ease-in-out infinite;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(56, 189, 248, 0.12) 42%, transparent 58%);
  transform: translateX(-100%);
  animation: dashboardShine 6s ease-in-out infinite;
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.dash-topbar strong {
  margin-left: 10px;
  color: var(--ink);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7dd3fc;
}

.dash-dot:nth-child(2) {
  background: #60a5fa;
}

.dash-dot:nth-child(3) {
  background: #2563eb;
}

.dash-grid,
.dash-content,
.feature-grid,
.pricing-grid,
.single-price-wrap,
.problem-grid,
.output-layout,
.audit-layout {
  display: grid;
  gap: 18px;
}

.dash-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
}

.metric,
.pipeline-panel,
.priority-panel,
.feature-card,
.price-card,
.compare-card,
.audit-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric {
  min-height: 118px;
  padding: 16px;
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 28px;
  line-height: 1;
}

.tile-primary {
  color: var(--white);
  background:
    linear-gradient(145deg, #123f9f, #1d4ed8 64%, #39bdf8);
  border-color: var(--green-deep);
}

.tile-primary span,
.tile-primary small,
.tile-success span,
.tile-success small {
  color: rgba(255, 255, 255, 0.74);
}

.tile-success {
  color: var(--white);
  border-color: rgba(16, 185, 129, 0.32);
  background:
    linear-gradient(145deg, #0f766e, #10b981 68%, #67e8f9);
}

.dash-content {
  grid-template-columns: 1.15fr 0.85fr;
  padding: 0 20px 20px;
}

.pipeline-panel,
.priority-panel {
  min-height: 250px;
  padding: 16px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.panel-title b {
  border-radius: 8px;
  padding: 5px 8px;
  color: var(--green-deep);
  background: var(--mint);
  font-size: 12px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 98px 1fr 34px;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted);
}

.pipeline-row div {
  height: 10px;
  border-radius: 999px;
  background: #edf5ff;
  overflow: hidden;
}

.pipeline-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  animation: barBreath 4.5s ease-in-out infinite;
}

.pipeline-row strong {
  color: var(--ink);
}

.lead-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  animation: leadLift 5.5s ease-in-out infinite;
}

.lead-item span {
  border-radius: 8px;
  padding: 5px 7px;
  color: var(--green-deep);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.lead-item.hot span {
  color: var(--white);
  background: var(--green);
}

.lead-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0;
  text-align: left;
}

.hero .eyebrow {
  color: #1d5fc7;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  color: #0f2a4f;
  text-wrap: balance;
}

.hero-title-row {
  display: block;
}

.hero-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.16em 0.03em;
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.14em;
  right: -0.14em;
  top: 0.08em;
  bottom: 0.04em;
  border: 3px solid #38bdf8;
  border-radius: 999px;
  transform: rotate(-2deg);
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-subtitle {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: #2d4d74;
  font-size: 18px;
  line-height: 1.7;
}

.hero-value {
  width: min(640px, 100%);
  margin: 18px 0 0;
  border: 1px solid rgba(96, 165, 250, 0.34);
  border-radius: 8px;
  padding: 13px 14px;
  color: #17395f;
  background: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(96, 165, 250, 0.34);
  border-radius: 8px;
  padding: 9px 11px;
  color: #16477f;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.hero-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  padding: 22px clamp(18px, 5vw, 64px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.trust-grid strong {
  color: var(--ink);
  font-size: 14px;
}

.trust-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.trust-icon,
.icon {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--green-deep);
  background: var(--mint);
}

.trust-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.trust-icon svg,
.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2f7cf6, #23b6e8);
}

.button-primary:hover {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.button-secondary {
  color: #1d5fc7;
  border-color: rgba(47, 124, 246, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.section,
.problem-band,
.audit-section {
  padding: 92px clamp(18px, 5vw, 64px);
}

.platform-preview {
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.16), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.preview-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.preview-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.preview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.preview-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--green-deep);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.preview-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  border: 1px solid rgba(216, 228, 242, 0.86);
  border-radius: 26px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-stack::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.16);
  filter: blur(10px);
}

.preview-stack::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.preview-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 130px;
  border: 1px solid rgba(216, 228, 242, 0.9);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.preview-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.6));
  transform-origin: left;
  animation: previewPulse 4.8s ease-in-out infinite;
}

.preview-card-main {
  grid-row: span 3;
  align-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 12%, rgba(125, 211, 252, 0.34), transparent 24%),
    linear-gradient(135deg, #123f9f, #1d4ed8 56%, #0e7490);
}

.preview-card span {
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-card strong {
  font-size: 20px;
  line-height: 1.25;
}

.preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.visual-proof {
  background:
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 242, 0.9);
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.photo-card.large {
  grid-row: span 2;
  min-height: 580px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.07);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(7, 27, 63, 0.86)),
    linear-gradient(135deg, rgba(18, 63, 159, 0.16), rgba(34, 211, 238, 0.12));
}

.photo-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #ffffff;
}

.photo-card span {
  display: block;
  margin-bottom: 8px;
  color: #9bd8ec;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card strong {
  display: block;
  max-width: 560px;
  font-size: 24px;
  line-height: 1.18;
}

@keyframes previewPulse {
  0%,
  100% {
    transform: scaleX(0.48);
    opacity: 0.58;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.problem-band {
  color: #0f2a4f;
  background:
    radial-gradient(circle at 12% 10%, rgba(125, 211, 252, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #eef8ff 0%, #dcedff 100%);
}

.problem-band .section-kicker,
.problem-band .problem-list {
  color: #35577f;
}

.problem-grid,
.output-layout,
.audit-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.problem-list {
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.section-heading p,
.output-layout p,
.audit-layout p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.compare-section {
  background: var(--paper);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.compare-card {
  padding: 26px;
}

.compare-card h3 {
  margin-bottom: 18px;
}

.compare-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.compare-bad {
  border-color: rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.compare-good {
  border-color: rgba(37, 99, 235, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
}

.feature-card,
.price-card {
  padding: 24px;
}

.icon {
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
}

.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.feature-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.65;
}

.output-section {
  background: var(--soft-blue);
}

.business-section {
  background: var(--paper);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.business-grid article {
  min-height: 150px;
  border: 1px solid rgba(216, 228, 242, 0.95);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.business-grid strong,
.business-grid span {
  display: block;
}

.business-grid strong {
  margin-bottom: 12px;
  font-size: 18px;
}

.business-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  background:
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.045) 0 1px, transparent 1px 48px),
    #f6faff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.faq-layout p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: var(--green-deep);
  background: var(--mint);
  text-align: center;
  line-height: 26px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.output-list {
  display: grid;
  gap: 12px;
}

.output-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.output-list span {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.payment-pricing {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  align-items: stretch;
}

.single-price-wrap {
  grid-template-columns: minmax(320px, 520px) 1fr;
  align-items: center;
}

.price-card {
  position: relative;
  min-height: 390px;
}

.price-card.featured {
  border-color: var(--green-deep);
  box-shadow: 0 18px 50px rgba(15, 63, 158, 0.12);
}

.price-card.best-deal {
  border-width: 2px;
  transform: translateY(-12px);
  background:
    linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
  box-shadow: 0 28px 70px rgba(15, 63, 158, 0.2);
}

.deal-ribbon {
  position: absolute;
  top: -14px;
  right: 18px;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 63, 158, 0.24);
}

.best-deal .price {
  color: var(--green-deep) !important;
}

.best-deal .button {
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.single-price {
  min-height: auto;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--white);
  background: #2563eb;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 8px 0 12px;
  color: var(--ink) !important;
  font-size: 34px;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.yearly-price {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 8px;
  padding: 13px;
  background: #edf6ff;
}

.yearly-price strong {
  color: var(--green-deep);
}

.yearly-price span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-analogy {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 13px;
  background: #f8fbff;
}

.price-analogy strong {
  color: var(--blue);
}

.price-analogy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.price-card .button {
  margin-top: 24px;
}

.billing-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.billing-switch span,
.billing-switch strong {
  padding: 9px 11px;
}

.billing-switch strong {
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
}

.payment-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.payment-note-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.payment-note-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.payment-note-copy p + p {
  margin-top: 10px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.payment-methods span {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  min-height: 66px;
  padding: 13px 14px;
  color: var(--green-deep);
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.payment-status {
  grid-column: 1 / -1;
  min-height: 48px;
  margin: 0;
  border-left: 0;
  padding-left: 12px;
  font-size: 14px;
}

.price-note {
  padding: 28px;
  border-left: 4px solid var(--green);
}

.price-note strong {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
}

.price-note p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.process-section {
  background: #ffffff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline div {
  border-top: 4px solid var(--green);
  padding-top: 18px;
}

.timeline span {
  color: var(--green-deep);
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-top: 14px;
  font-size: 24px;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.audit-section {
  color: #0f2a4f;
  background:
    radial-gradient(circle at 12% 8%, rgba(125, 211, 252, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #f4fbff 0%, #dfefff 100%);
}

.audit-section .section-kicker,
.audit-section p {
  color: #35577f;
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--ink);
}

.audit-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #f8fbff;
}

.audit-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-deep) !important;
  font-weight: 800;
}

.starter-kit {
  margin-top: 34px;
  color: var(--ink);
}

.starter-heading {
  margin-bottom: 18px;
  border: 1px solid rgba(216, 228, 242, 0.32);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.starter-heading h2 {
  color: var(--white);
}

.starter-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.kit-card {
  border: 1px solid rgba(216, 228, 242, 0.9);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.kit-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-weight: 800;
}

.kit-card p,
.kit-card li {
  color: var(--muted);
  line-height: 1.65;
}

.kit-card ul {
  margin: 0;
  padding-left: 20px;
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes dashboardShine {
  0%,
  42% {
    transform: translateX(-110%);
  }

  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes barBreath {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.16);
  }
}

@keyframes leadLift {
  0%,
  100% {
    background: transparent;
  }

  50% {
    background: rgba(232, 241, 255, 0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-shell,
  .dashboard-shell::before,
  .pipeline-row i,
  .lead-item {
    animation: none;
  }
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 64px);
  background: #ffffff;
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 118px;
    background:
      radial-gradient(circle at 16% 8%, rgba(56, 189, 248, 0.3), transparent 36%),
      radial-gradient(circle at 94% 12%, rgba(59, 130, 246, 0.18), transparent 34%),
      linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0 1px, transparent 1px 70px),
      linear-gradient(180deg, #f4fbff 0%, #dff2ff 100%);
  }

  .hero-dashboard {
    margin: 0;
  }

  .dashboard-shell {
    width: 100%;
    min-height: auto;
  }

  .dash-grid,
  .trust-grid,
  .feature-grid,
  .compare-grid,
  .business-grid,
  .kit-grid,
  .pricing-grid,
  .payment-pricing,
  .single-price-wrap,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-content,
  .problem-grid,
  .output-layout,
  .payment-note,
  .faq-layout,
  .audit-layout,
  .preview-layout,
  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .preview-stack {
    grid-template-columns: 1fr;
  }

  .preview-card-main {
    grid-row: auto;
  }

  .photo-card.large {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-dashboard {
    margin: 0;
  }

  .dashboard-shell {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 14px;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero,
  .section,
  .problem-band,
  .audit-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-bottom: 42px;
  }

  .problem-band {
    background:
      radial-gradient(circle at 12% 6%, rgba(56, 189, 248, 0.28), transparent 36%),
      linear-gradient(180deg, #f6fbff 0%, #e4f4ff 100%);
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-subtitle,
  .section-heading p,
  .output-layout p,
  .audit-layout p {
    font-size: 16px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions,
  .hero-points {
    justify-content: flex-start;
  }

  .hero-highlight::after {
    border-width: 2px;
  }

  .dash-grid,
  .dash-content,
  .trust-grid,
  .feature-grid,
  .compare-grid,
  .business-grid,
  .kit-grid,
  .pricing-grid,
  .payment-pricing,
  .single-price-wrap,
  .preview-stack,
  .timeline {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.large {
    min-height: 320px;
    border-radius: 20px;
  }

  .dashboard-shell {
    overflow: visible;
  }

  .price-card.best-deal {
    transform: none;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .dash-topbar {
    min-height: 48px;
    padding: 0 14px;
  }

  .dash-grid,
  .dash-content {
    padding: 14px;
  }

  .dash-content {
    padding-top: 0;
  }

  .pipeline-row {
    grid-template-columns: 70px 1fr 28px;
    gap: 8px;
    font-size: 13px;
  }

  .output-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-points span {
    width: 100%;
  }

  .trust-grid article {
    grid-template-columns: 38px 1fr;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
  }

  .price-note {
    padding: 8px 0 0;
    border-left: 0;
    border-top: 4px solid var(--green);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
