:root {
  --navy: #061a3a;
  --navy-2: #092554;
  --ink: #101827;
  --muted: #667085;
  --line: #e6eaf2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --cyan: #34d5ff;
  --blue: #2864ff;
  --gold: #d4af37;
  --green: #25d366;
  --upwork: #14a800;
  --upwork-dark: #108a00;
  --fiverr: #1dbf73;
  --fiverr-dark: #0f8f4f;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --email: #2864ff;
  --email-dark: #061a3a;
  --shadow: 0 22px 70px rgba(6, 26, 58, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.08; color: var(--ink); font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif; }
h1 { font-size: clamp(2.55rem, 6vw, 5.6rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -0.055em; }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow { width: min(900px, calc(100% - 40px)); }
.section-pad { padding: 96px 0; }
.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: .95rem;
}
.dark-section .eyebrow, .inverted .eyebrow { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,234,242,.7);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(6, 26, 58, .08); background: rgba(255,255,255,.94); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .72rem; font-weight: 900; font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 30px rgba(40,100,255,.25);
  letter-spacing: -.04em;
}
.brand-text { font-size: 1.12rem; letter-spacing: -.03em; color: var(--navy); }
.brand-text span { color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: 1.2rem; font-weight: 700; font-size: .95rem; color: #344054; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }
.nav-cta {
  padding: .78rem 1.05rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(6,26,58,.18);
}
.nav-toggle { display: none; border: 0; background: transparent; padding: .35rem; cursor: pointer; }
.nav-toggle span { display: block; width: 27px; height: 2px; margin: 6px 0; background: var(--navy); transition: .2s ease; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(52,213,255,.16), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(40,100,255,.14), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 76%);
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  opacity: .7;
}
.hero-bg::before { width: 360px; height: 360px; background: rgba(52,213,255,.14); right: 6%; top: 18%; }
.hero-bg::after { width: 480px; height: 480px; background: rgba(212,175,55,.12); left: -140px; bottom: -180px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .78fr; align-items: center; gap: 64px; position: relative; z-index: 2; }
.hero-lead { font-size: 1.2rem; max-width: 720px; color: #475467; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; box-shadow: 0 18px 40px rgba(40,100,255,.26); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: 0 12px 30px rgba(6,26,58,.08); }
.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.trust-row span {
  padding: .55rem .82rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #344054;
  font-weight: 750;
  font-size: .88rem;
}
.hero-card { position: relative; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .7rem 1rem;
  box-shadow: var(--shadow);
  font-weight: 850;
  margin-bottom: 1rem;
}
.status-pill span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(37,211,102,.15); }
.dashboard-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.main-panel { padding: 1.6rem; background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,248,252,.94)); }
.panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; color: var(--muted); }
.panel-top strong { color: var(--green); }
.meter { height: 12px; background: #e9edf5; border-radius: 999px; overflow: hidden; margin-bottom: 1.3rem; }
.meter span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.check-list li { position: relative; padding-left: 1.75rem; color: #344054; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 950; }
.mini-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.mini-panels strong { display: block; font-size: 1.6rem; letter-spacing: -.04em; color: var(--navy); }
.mini-panels span { color: var(--muted); font-weight: 700; }

.logo-strip { background: var(--navy); color: #dfe7ff; padding: 1rem 0; }
.strip-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .75rem; text-align: center; font-weight: 850; font-size: .9rem; }

.section-head { max-width: 770px; margin-bottom: 3rem; }
.section-head p:last-child { font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.service-grid.small { grid-template-columns: repeat(3, 1fr); }
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(6,26,58,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(40,100,255,.26); }
.service-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-weight: 950;
  margin-bottom: 1.25rem;
}
.service-card a { color: var(--blue); font-weight: 900; }

.dark-section { background: var(--navy); color: #fff; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: #cbd7ee; }
.split-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 60px; align-items: start; }
.feature-list { display: grid; gap: 1rem; }
.feature-list div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255,255,255,.07);
}
.feature-list strong { display: block; margin-bottom: .3rem; color: #fff; font-size: 1.05rem; }
.feature-list span { color: #cbd7ee; }
.feature-list.light div { background: #fff; border-color: var(--line); box-shadow: 0 12px 40px rgba(6,26,58,.05); }
.feature-list.light strong { color: var(--navy); }
.feature-list.light span { color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(6,26,58,.05);
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: rgba(40,100,255,.42); box-shadow: var(--shadow); transform: translateY(-8px); }
.price-card .plan { color: var(--blue); font-weight: 900; margin-bottom: .5rem; }
.price-card h3 { font-size: 2.35rem; color: var(--navy); }
.price-card ul { padding: 0; margin: 1rem 0 1.4rem; list-style: none; display: grid; gap: .7rem; }
.price-card li { padding-left: 1.45rem; position: relative; color: #475467; }
.price-card li::before { content: "•"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.price-card .btn { margin-top: auto; }
.pricing-note { margin-top: 1.2rem; font-size: .95rem; }

.soft-section { background: var(--soft); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 40px rgba(6,26,58,.05);
}
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
  margin-bottom: 1.2rem;
}

.results-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.results-copy { grid-row: span 2; padding-right: 1rem; }
.use-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 130px;
  display: flex;
  align-items: end;
  padding: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(40,100,255,.08), rgba(52,213,255,.08)),
    #fff;
}

.founders-section .section-head { margin-inline: auto; text-align: center; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.founder-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-weight: 950;
  margin-bottom: 1.1rem;
}
.role { color: var(--cyan) !important; font-weight: 850; }

.faq-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 54px; align-items: start; }
.accordion { display: grid; gap: .85rem; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: #fff;
  padding: 1.15rem;
  text-align: left;
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
}
.faq-item button span { width: 18px; height: 18px; position: relative; flex: 0 0 18px; }
.faq-item button span::before, .faq-item button span::after { content: ""; position: absolute; background: var(--blue); border-radius: 999px; }
.faq-item button span::before { width: 18px; height: 2px; top: 8px; left: 0; }
.faq-item button span::after { width: 2px; height: 18px; top: 0; left: 8px; transition: transform .2s ease; }
.faq-item.open button span::after { transform: rotate(90deg); }
.faq-content { display: none; padding: 0 1.15rem 1.15rem; }
.faq-item.open .faq-content { display: block; }

.cta-section { padding-top: 0; }
.cta-card {
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: #cbd7ee; }

.page-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(52,213,255,.18), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  text-align: center;
}
.page-hero .btn { margin-top: 1rem; }
.two-col { display: grid; grid-template-columns: .8fr 1fr; gap: 54px; align-items: start; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: 2rem; align-items: start; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.form-row { display: grid; gap: .45rem; }
.form-row.full { grid-column: 1 / -1; }
label { font-weight: 850; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .86rem .95rem;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(40,100,255,.65); box-shadow: 0 0 0 4px rgba(40,100,255,.1); }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { grid-column: 1 / -1; font-size: .9rem; margin: 0; }
.contact-aside { display: grid; gap: 1rem; }
.contact-card h2 { font-size: 1.4rem; }
.contact-card.warning { border-color: rgba(212,175,55,.3); background: linear-gradient(180deg, #fff, #fffaf0); }
.legal-copy { max-width: 850px; }
.legal-copy h2 { font-size: 1.5rem; margin-top: 2rem; }

.site-footer { background: #05152f; color: #dfe7ff; padding: 56px 0 24px; }
.site-footer.compact { padding: 24px 0; }
.site-footer p, .site-footer span { color: #b9c7df; }
.site-footer h4 { color: #fff; font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 2rem; }
.footer-grid a, .footer-grid span { display: block; color: #b9c7df; margin-bottom: .55rem; }
.footer-brand { margin-bottom: 1rem; color: #fff; }
.footer-brand .brand-text { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer.compact .footer-bottom { margin-top: 0; padding-top: 0; border-top: 0; }

@media (max-width: 1020px) {
  .hero-grid, .split-grid, .two-col, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .results-copy { grid-row: auto; grid-column: 1 / -1; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 72px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.always { position: static; display: flex; flex-direction: row; box-shadow: none; border: 0; padding: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .8rem .9rem; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: .4rem; }
  .hero { min-height: auto; }
  .hero-actions, .cta-card { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .service-grid, .service-grid.small, .pricing-grid, .timeline, .founder-grid, .results-grid, .contact-form, .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-panels { grid-template-columns: 1fr; }
  h1 { letter-spacing: -0.055em; }
}

/* One-page conversion additions */
.founder-actions { margin-top: 1.25rem; }
.founder-actions .btn { min-height: 46px; padding-inline: 1rem; }
.contact-stack { display: grid; gap: .85rem; min-width: min(360px, 100%); }
.review-grid .use-card { align-items: start; min-height: 165px; flex-direction: column; justify-content: space-between; font-size: 1.02rem; line-height: 1.45; }
.review-card span { display: block; margin-top: 1rem; color: var(--muted); font-size: .9rem; font-weight: 750; }
.dark-section .btn-secondary { color: var(--navy); }
@media (max-width: 760px) {
  .contact-stack { width: 100%; }
  .founder-actions { flex-direction: column; }
}


/* Marketplace brand buttons */
.marketplace-note {
  margin-top: -1rem;
  margin-bottom: 1.25rem;
  color: #5d6b82;
  font-size: .95rem;
  font-weight: 650;
}
.btn-upwork {
  background: linear-gradient(135deg, var(--upwork), var(--upwork-dark));
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 168, 0, .24);
}
.btn-fiverr {
  background: linear-gradient(135deg, var(--fiverr), var(--fiverr-dark));
  color: #062313;
  box-shadow: 0 18px 40px rgba(29, 191, 115, .22);
}
.btn-upwork:hover, .btn-fiverr:hover {
  box-shadow: 0 24px 54px rgba(6, 26, 58, .18);
}
.marketplace-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
  text-transform: lowercase;
}
.upwork-logo {
  background: #fff;
  color: var(--upwork-dark);
}
.fiverr-logo {
  background: #062313;
  color: var(--fiverr);
}
.contact-stack .btn, .founder-actions .btn {
  justify-content: flex-start;
}
@media (max-width: 760px) {
  .contact-stack .btn, .founder-actions .btn { justify-content: center; }
  .marketplace-note { margin-top: -.5rem; }
}


/* Footer logo containment fix */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}
.footer-brand .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin: 0;
  border-radius: 14px;
  color: #fff;
}
.footer-brand .brand-text,
.footer-brand .brand-text span {
  display: inline;
  margin: 0;
}

/* Quick quote contact block */
.cta-copy { max-width: 700px; }
.quick-quote-box {
  display: grid;
  gap: .28rem;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.quick-quote-box strong { color: #fff; font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif; }
.quick-quote-box a { color: #fff; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.quick-quote-box span { color: #cbd7ee; font-weight: 750; }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #052116;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .22);
}
.btn-email {
  background: linear-gradient(135deg, var(--email), var(--email-dark));
  color: #fff;
  box-shadow: 0 18px 40px rgba(40, 100, 255, .24);
}
.whatsapp-logo {
  background: #052116;
  color: var(--whatsapp);
}
.email-logo {
  background: #fff;
  color: var(--email-dark);
}
.btn-whatsapp:hover, .btn-email:hover {
  box-shadow: 0 24px 54px rgba(6, 26, 58, .18);
}


/* Decorative floating platform badges */
.hero, .use-cases-section, .cta-section { position: relative; }
.floating-tech {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-grid, .cta-card, .use-cases-grid { position: relative; z-index: 2; }
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .5rem .82rem;
  border-radius: 999px;
  border: 1px solid rgba(6,26,58,.08);
  background: rgba(255,255,255,.72);
  color: var(--navy);
  box-shadow: 0 16px 40px rgba(6,26,58,.08);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  font-weight: 850;
  opacity: .72;
  animation: floaty 7s ease-in-out infinite;
  white-space: nowrap;
}
.float-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: .84rem;
  font-weight: 900;
  background: rgba(255,255,255,.7);
}
.badge-obs { color: #302e31; }
.badge-obs .float-icon { background: rgba(48,46,49,.08); }
.badge-deck { color: #6a3cff; }
.badge-deck .float-icon { background: rgba(106,60,255,.1); }
.badge-twitch { color: #9146ff; }
.badge-twitch .float-icon { background: rgba(145,70,255,.1); }
.badge-youtube { color: #ff0033; }
.badge-youtube .float-icon { background: rgba(255,0,51,.1); }
.badge-tiktok { color: #111827; }
.badge-tiktok .float-icon { background: rgba(17,24,39,.08); }
.badge-audio { color: #0ea5e9; }
.badge-audio .float-icon { background: rgba(14,165,233,.1); }
.badge-capture { color: #f59e0b; }
.badge-capture .float-icon { background: rgba(245,158,11,.12); }
.floating-tech-hero .float-badge:nth-child(1) { top: 14%; left: 4%; animation-delay: .1s; }
.floating-tech-hero .float-badge:nth-child(2) { top: 12%; right: 16%; animation-delay: 1.2s; }
.floating-tech-hero .float-badge:nth-child(3) { bottom: 12%; right: 6%; animation-delay: 2.4s; }
.floating-tech-hero .float-badge:nth-child(4) { bottom: 18%; left: 10%; animation-delay: 3s; }
.floating-tech-mid { inset: auto 0 0 0; height: 0; }
.floating-tech-mid .float-badge:nth-child(1) { top: -20px; right: 10%; animation-delay: .6s; }
.floating-tech-mid .float-badge:nth-child(2) { top: 210px; left: 5%; animation-delay: 1.8s; }
.floating-tech-mid .float-badge:nth-child(3) { bottom: 30px; right: 3%; animation-delay: 2.8s; }
.floating-tech-cta .float-badge:nth-child(1) { top: 32px; left: 6%; animation-delay: .4s; }
.floating-tech-cta .float-badge:nth-child(2) { bottom: 26px; right: 8%; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Use case cards with icon style art */
.use-cases-grid { gap: 1rem; }
.use-cases-section .results-copy { padding-right: 1rem; }
.use-cases-section .use-card {
  align-items: flex-start;
  min-height: 190px;
  padding: 1.25rem;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.98));
  box-shadow: 0 16px 46px rgba(6,26,58,.06);
}
.use-cases-section .use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.use-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(40,100,255,.12), rgba(52,213,255,.14));
  border: 1px solid rgba(40,100,255,.12);
}
.use-icon svg { width: 26px; height: 26px; }
.use-content { display: grid; gap: .45rem; }
.use-content strong {
  color: var(--navy);
  font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}
.use-content span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 1020px) {
  .floating-tech-mid { display: none; }
  .floating-tech-hero .float-badge:nth-child(2) { right: 4%; }
}
@media (max-width: 760px) {
  .floating-tech { display: none; }
  .use-cases-section .use-card { min-height: auto; }
}


/* Faster ping-pong platform movement */
.services-section, .pricing-section { position: relative; overflow: hidden; }
.marketplace-note a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer p a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quick-quote-box a[href^="https://wa.me"] {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Override previous slow float behavior */
.float-badge {
  opacity: .58;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.float-badge:hover { opacity: .82; }

/* Route animations: corner-to-corner, screensaver-style */
@keyframes pingpong-a {
  0% { transform: translate(0, 0); }
  24% { transform: translate(38vw, 9vh); }
  48% { transform: translate(18vw, 27vh); }
  72% { transform: translate(-8vw, 12vh); }
  100% { transform: translate(0, 0); }
}
@keyframes pingpong-b {
  0% { transform: translate(0, 0); }
  22% { transform: translate(-28vw, 13vh); }
  45% { transform: translate(-8vw, 34vh); }
  70% { transform: translate(18vw, 16vh); }
  100% { transform: translate(0, 0); }
}
@keyframes pingpong-c {
  0% { transform: translate(0, 0); }
  25% { transform: translate(20vw, -12vh); }
  50% { transform: translate(42vw, 10vh); }
  75% { transform: translate(12vw, 29vh); }
  100% { transform: translate(0, 0); }
}
@keyframes pingpong-d {
  0% { transform: translate(0, 0); }
  30% { transform: translate(-20vw, -8vh); }
  55% { transform: translate(-36vw, 18vh); }
  78% { transform: translate(-10vw, 32vh); }
  100% { transform: translate(0, 0); }
}
@keyframes pingpong-e {
  0% { transform: translate(0, 0); }
  20% { transform: translate(14vw, 20vh); }
  44% { transform: translate(-14vw, 31vh); }
  70% { transform: translate(-24vw, 6vh); }
  100% { transform: translate(0, 0); }
}

/* Hero badge positions and routes */
.floating-tech-hero .float-badge:nth-child(1) { top: 12%; left: 3%; animation-name: pingpong-a; animation-duration: 10s; }
.floating-tech-hero .float-badge:nth-child(2) { top: 10%; right: 14%; animation-name: pingpong-b; animation-duration: 12s; }
.floating-tech-hero .float-badge:nth-child(3) { bottom: 14%; right: 6%; animation-name: pingpong-d; animation-duration: 11s; }
.floating-tech-hero .float-badge:nth-child(4) { bottom: 20%; left: 8%; animation-name: pingpong-c; animation-duration: 13s; }
.floating-tech-hero .float-badge:nth-child(5) { top: 31%; left: 1%; animation-name: pingpong-e; animation-duration: 9.5s; }
.floating-tech-hero .float-badge:nth-child(6) { top: 34%; right: 4%; animation-name: pingpong-d; animation-duration: 12.5s; }
.floating-tech-hero .float-badge:nth-child(7) { bottom: 34%; left: 18%; animation-name: pingpong-b; animation-duration: 10.5s; }

/* Services badge positions and routes */
.floating-tech-services .float-badge:nth-child(1) { top: 12%; left: 4%; animation-name: pingpong-a; animation-duration: 11s; }
.floating-tech-services .float-badge:nth-child(2) { top: 18%; right: 8%; animation-name: pingpong-b; animation-duration: 10s; }
.floating-tech-services .float-badge:nth-child(3) { bottom: 12%; left: 13%; animation-name: pingpong-c; animation-duration: 12s; }
.floating-tech-services .float-badge:nth-child(4) { bottom: 16%; right: 3%; animation-name: pingpong-d; animation-duration: 11.5s; }

/* Pricing badge positions and routes */
.floating-tech-pricing .float-badge:nth-child(1) { top: 13%; left: 6%; animation-name: pingpong-e; animation-duration: 10s; }
.floating-tech-pricing .float-badge:nth-child(2) { top: 20%; right: 7%; animation-name: pingpong-d; animation-duration: 12s; }
.floating-tech-pricing .float-badge:nth-child(3) { bottom: 10%; left: 30%; animation-name: pingpong-a; animation-duration: 11s; }

/* Use case and CTA badge routes */
.floating-tech-mid .float-badge:nth-child(1) { top: -28px; right: 10%; animation-name: pingpong-b; animation-duration: 10s; }
.floating-tech-mid .float-badge:nth-child(2) { top: 180px; left: 5%; animation-name: pingpong-a; animation-duration: 12s; }
.floating-tech-mid .float-badge:nth-child(3) { bottom: 30px; right: 4%; animation-name: pingpong-d; animation-duration: 11s; }
.floating-tech-mid .float-badge:nth-child(4) { top: 70px; right: 34%; animation-name: pingpong-c; animation-duration: 10.5s; }
.floating-tech-mid .float-badge:nth-child(5) { top: 250px; left: 36%; animation-name: pingpong-e; animation-duration: 13s; }

.floating-tech-cta .float-badge:nth-child(1) { top: 28px; left: 6%; animation-name: pingpong-a; animation-duration: 10s; }
.floating-tech-cta .float-badge:nth-child(2) { bottom: 28px; right: 8%; animation-name: pingpong-d; animation-duration: 11s; }
.floating-tech-cta .float-badge:nth-child(3) { top: 42px; right: 22%; animation-name: pingpong-b; animation-duration: 9.5s; }
.floating-tech-cta .float-badge:nth-child(4) { bottom: 34px; left: 24%; animation-name: pingpong-c; animation-duration: 12s; }

/* Extra badge color identities */
.badge-kick { color: #0b0f0c; }
.badge-kick .float-icon { background: rgba(83, 252, 24, .16); color: #0b0f0c; }
.badge-elements { color: #111827; }
.badge-elements .float-icon { background: rgba(40,100,255,.12); color: var(--blue); }
.badge-alerts { color: #d97706; }
.badge-alerts .float-icon { background: rgba(217,119,6,.12); }
.badge-camera { color: #2563eb; }
.badge-camera .float-icon { background: rgba(37,99,235,.12); }
.badge-mic { color: #7c3aed; }
.badge-mic .float-icon { background: rgba(124,58,237,.12); }
.badge-overlays { color: #0891b2; }
.badge-overlays .float-icon { background: rgba(8,145,178,.12); }
.badge-restream { color: #0f766e; }
.badge-restream .float-icon { background: rgba(15,118,110,.12); }
.badge-console { color: #16a34a; }
.badge-console .float-icon { background: rgba(22,163,74,.12); }
.badge-elgato { color: #0f172a; }
.badge-elgato .float-icon { background: rgba(15,23,42,.08); }
.badge-whatnot { color: #7c2d12; }
.badge-whatnot .float-icon { background: rgba(124,45,18,.12); }
.badge-dualpc { color: #4338ca; }
.badge-dualpc .float-icon { background: rgba(67,56,202,.12); }
.badge-quote { color: #15803d; }
.badge-quote .float-icon { background: rgba(21,128,61,.12); }
.badge-support { color: #0369a1; }
.badge-support .float-icon { background: rgba(3,105,161,.12); }

@media (prefers-reduced-motion: reduce) {
  .float-badge { animation: none !important; }
}
@media (max-width: 1020px) {
  .floating-tech-services, .floating-tech-pricing { display: none; }
}


/* Global fixed roaming badges: independent of scroll, behind readable content */
.global-floating-tech {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  contain: layout style paint;
}

/* Keep all real content above the roaming layer */
.site-header { z-index: 100; }
main .container,
.site-footer .container,
.hero-grid,
.cta-card,
.nav-wrap {
  position: relative;
  z-index: 2;
}

/* Stop old section-based floating positioning from affecting the global layer */
.global-floating-tech .float-badge {
  position: absolute !important;
  top: 0;
  left: 0;
  right: auto !important;
  bottom: auto !important;
  opacity: .32;
  animation: none !important;
  transform: translate3d(0, 0, 0);
  transition: opacity .2s ease;
  box-shadow: 0 14px 34px rgba(6, 26, 58, .06);
  border-color: rgba(6,26,58,.06);
  background: rgba(255,255,255,.58);
}

.global-floating-tech .float-badge.is-visible {
  opacity: .34;
}

/* Make badges readable but visually subordinate to page copy */
.global-floating-tech .float-icon {
  background: rgba(255,255,255,.62);
}

/* Older floating containers are no longer used */
.floating-tech:not(.global-floating-tech) {
  display: none !important;
}

/* Extra protection against text collision on small screens */
@media (max-width: 760px) {
  .global-floating-tech .float-badge {
    opacity: .18;
    transform: scale(.9);
  }
}
@media (prefers-reduced-motion: reduce) {
  .global-floating-tech { display: none; }
}


/* V6: subtle fixed ambient badges, independent of scroll but no longer concentrated */
.ambient-floating-tech {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-floating-tech .float-badge {
  position: absolute !important;
  top: 0;
  left: 0;
  right: auto !important;
  bottom: auto !important;
  opacity: .18 !important;
  animation: none !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  background: rgba(255,255,255,.46);
  border-color: rgba(6,26,58,.045);
  box-shadow: 0 10px 26px rgba(6,26,58,.045);
  backdrop-filter: blur(7px);
}

.ambient-floating-tech .float-badge.is-visible {
  opacity: .18 !important;
}

.ambient-floating-tech .float-badge:nth-child(odd) {
  opacity: .16 !important;
}

.ambient-floating-tech .float-icon {
  background: rgba(255,255,255,.54);
}

/* Keep content safely above the ambient layer */
main .container,
.site-footer .container,
.hero-grid,
.cta-card,
.nav-wrap {
  position: relative;
  z-index: 2;
}

/* Never show dense section-level badge layers */
.floating-tech:not(.global-floating-tech) {
  display: none !important;
}

@media (max-width: 1020px) {
  .ambient-floating-tech .float-badge {
    opacity: .12 !important;
  }
  .ambient-floating-tech .float-badge:nth-child(n+6) {
    display: none;
  }
}

@media (max-width: 760px) {
  .ambient-floating-tech {
    display: none;
  }
}


/* V7 final floating badge fix */
.global-floating-tech,
.ambient-floating-tech,
.floating-tech {
  display: none !important;
}

.site-floating-badges {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.site-floating-badges .float-badge {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  opacity: .16 !important;
  animation: none !important;
  transition: none !important;
  will-change: transform;
  background: rgba(255,255,255,.44);
  border-color: rgba(6,26,58,.05);
  box-shadow: 0 10px 25px rgba(6,26,58,.045);
  backdrop-filter: blur(7px);
}

.site-floating-badges .float-icon {
  background: rgba(255,255,255,.55);
}

/* Content stays above fixed background badges */
.site-header {
  z-index: 100;
}
main,
.site-footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .site-floating-badges {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-floating-badges {
    display: none;
  }
}


/* V8 final: fixed CSS-only ping-pong badges
   - Does not scroll with the page
   - No JavaScript movement
   - No section locking
   - Subtle edge-only motion so it does not distract from content
*/
.global-floating-tech,
.ambient-floating-tech,
.site-floating-badges,
.floating-tech {
  display: none !important;
}

.fixed-badge-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.fixed-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .78rem;
  border-radius: 999px;
  border: 1px solid rgba(6, 26, 58, .05);
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 10px 26px rgba(6, 26, 58, .045);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: .79rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  opacity: .16;
  will-change: transform;
}

.fixed-badge span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  font-weight: 950;
  font-size: .78rem;
}

/* Outer-edge placement only */
.fixed-badge:nth-child(1) {
  top: 18%;
  left: 2.5%;
  animation: badge-pingpong-a 10s linear infinite alternate;
}
.fixed-badge:nth-child(2) {
  top: 17%;
  right: 2.5%;
  animation: badge-pingpong-b 11s linear infinite alternate;
}
.fixed-badge:nth-child(3) {
  bottom: 18%;
  left: 3%;
  animation: badge-pingpong-c 12s linear infinite alternate;
}
.fixed-badge:nth-child(4) {
  bottom: 19%;
  right: 3%;
  animation: badge-pingpong-d 10.5s linear infinite alternate;
}
.fixed-badge:nth-child(5) {
  top: 47%;
  left: 1.5%;
  animation: badge-pingpong-e 13s linear infinite alternate;
}
.fixed-badge:nth-child(6) {
  top: 48%;
  right: 1.5%;
  animation: badge-pingpong-f 12.5s linear infinite alternate;
}

/* Simple controlled ping-pong movement inside edge zones */
@keyframes badge-pingpong-a {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(130px, 72px, 0); }
}
@keyframes badge-pingpong-b {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-145px, 68px, 0); }
}
@keyframes badge-pingpong-c {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(150px, -70px, 0); }
}
@keyframes badge-pingpong-d {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-140px, -76px, 0); }
}
@keyframes badge-pingpong-e {
  from { transform: translate3d(0, -48px, 0); }
  to   { transform: translate3d(95px, 48px, 0); }
}
@keyframes badge-pingpong-f {
  from { transform: translate3d(0, 52px, 0); }
  to   { transform: translate3d(-100px, -52px, 0); }
}

/* Platform color hints */
.fixed-badge.badge-obs { color: #302e31; }
.fixed-badge.badge-deck { color: #6a3cff; }
.fixed-badge.badge-twitch { color: #9146ff; }
.fixed-badge.badge-youtube { color: #ff0033; }
.fixed-badge.badge-tiktok { color: #111827; }
.fixed-badge.badge-audio { color: #0ea5e9; }

/* Keep real website content above decorative layer */
.site-header {
  z-index: 100;
}
main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* Pause when tab hidden */
.badges-paused .fixed-badge {
  animation-play-state: paused;
}

/* Reduced distraction on smaller screens */
@media (max-width: 1020px) {
  .fixed-badge {
    opacity: .11;
  }
  .fixed-badge:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 760px) {
  .fixed-badge-layer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-badge-layer {
    display: none;
  }
}


/* V9 polish: cleaner readability, spacing, header, footer */
:root {
  --radius: 20px;
}

body {
  font-size: 16px;
  line-height: 1.65;
}

p {
  line-height: 1.72;
}

h1 {
  font-size: clamp(2.65rem, 5.1vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -0.062em;
  max-width: 970px;
}

h2 {
  font-size: clamp(1.95rem, 3.25vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.046em;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.section-pad {
  padding: 84px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.35rem;
}

.section-head p:last-child {
  font-size: 1.02rem;
  max-width: 760px;
}

.site-header {
  background: rgba(255,255,255,.9);
}

.nav-wrap {
  min-height: 70px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: .92rem;
}

.brand-text {
  font-size: 1.04rem;
}

.main-nav {
  gap: .95rem;
  font-size: .91rem;
}

.nav-cta {
  padding: .64rem .95rem;
}

.hero {
  min-height: 690px;
}

.hero-grid {
  gap: 50px;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 760px;
}

.hero-actions {
  gap: .78rem;
  margin: 1.55rem 0 1.1rem;
}

.btn {
  min-height: 48px;
  padding: .78rem 1.05rem;
  font-size: .94rem;
}

.marketplace-note {
  margin: -.35rem 0 1.05rem;
  font-size: .91rem;
  line-height: 1.65;
  max-width: 720px;
}

.trust-row {
  gap: .55rem;
  margin-top: 1rem;
}

.trust-row span {
  padding: .48rem .72rem;
  font-size: .82rem;
}

.service-grid,
.pricing-grid,
.timeline,
.results-grid,
.founder-grid {
  gap: .92rem;
}

.service-card,
.price-card,
.timeline-item,
.founder-card {
  padding: 1.22rem;
}

.service-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.price-card h3 {
  font-size: 2rem;
}

.price-card ul {
  gap: .5rem;
}

.review-grid .use-card {
  min-height: 150px;
}

.use-cases-section .use-card {
  min-height: 172px;
  padding: 1.12rem;
}

.use-icon {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 16px;
}

.use-icon svg {
  width: 24px;
  height: 24px;
}

.faq-grid {
  gap: 42px;
}

.faq-item button {
  padding: 1rem 1.05rem;
  font-size: .97rem;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  padding: 1.65rem;
  align-items: center;
}

.cta-card h2 {
  max-width: 760px;
}

.cta-card p {
  max-width: 760px;
}

/* Remove quote box spacing entirely */
.quick-quote-box {
  display: none !important;
}

/* Footer cleanup */
.site-footer {
  padding: 42px 0 20px;
}

.footer-grid {
  grid-template-columns: 1.45fr .72fr .72fr .88fr;
  gap: 1.35rem;
  align-items: start;
}

.footer-about p {
  max-width: 420px;
  margin-bottom: 1rem;
}

.footer-grid h4 {
  margin-bottom: .75rem;
}

.footer-grid a,
.footer-grid span {
  margin-bottom: .42rem;
  font-size: .92rem;
  line-height: 1.45;
}

.footer-brand {
  margin-bottom: .75rem;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 13px;
  overflow: hidden;
  line-height: 1;
}

.footer-icon-links,
.footer-contact-icons {
  display: flex;
  align-items: center;
  gap: .58rem;
  flex-wrap: wrap;
}

.footer-icon-links a,
.footer-contact-icons a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: #fff;
  margin: 0;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.footer-contact-icons {
  margin-bottom: .8rem;
}

.footer-contact-icons a {
  width: auto;
  min-width: 92px;
  grid-template-columns: 20px auto;
  display: inline-grid;
  gap: .38rem;
  padding: 0 .68rem;
  font-weight: 800;
}

.footer-icon-links a:hover,
.footer-contact-icons a:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}

.footer-icon-links svg,
.footer-contact-icons svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-icons span {
  margin: 0;
  color: #fff;
  font-size: .86rem;
}

.site-footer p a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  gap: .75rem;
}

.footer-bottom span {
  font-size: .88rem;
}

/* Keep floating badges subtle after typography polish */
.fixed-badge {
  opacity: .12;
}

@media (max-width: 1020px) {
  .section-pad {
    padding: 74px 0;
  }

  .hero-grid {
    gap: 34px;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 30px, 1160px);
  }

  .section-pad {
    padding: 62px 0;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-text {
    font-size: .98rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .cta-card {
    padding: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .footer-bottom {
    margin-top: 22px;
  }
}


/* V10 pricing tier optimization */
.pricing-grid {
  align-items: stretch;
}

.price-card {
  gap: .35rem;
}

.price-card h3 {
  margin-bottom: .35rem;
}

.price-card p:not(.plan) {
  font-size: .94rem;
  line-height: 1.58;
  min-height: 58px;
}

.price-card ul {
  gap: .55rem;
  margin: .9rem 0 1.25rem;
}

.price-card li {
  font-size: .9rem;
  line-height: 1.48;
  padding-left: 1.25rem;
}

.price-card.featured::before {
  content: "Best for creators";
  display: inline-flex;
  width: max-content;
  margin-bottom: .35rem;
  padding: .28rem .62rem;
  border-radius: 999px;
  background: rgba(40,100,255,.1);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 980px;
  line-height: 1.62;
}


/* V11 content clarity polish */
.hero-lead,
.section-head p:last-child,
.cta-card p {
  max-width: 820px;
}

.feature-list div span,
.service-card p,
.price-card p,
.use-content span,
.faq-content p {
  color: #536176;
}

.results-copy p,
.pricing-note {
  color: #5f6d80;
}

.price-card .plan {
  line-height: 1.2;
}

.footer-about p {
  line-height: 1.68;
}
