/* Copyright (c) 2026 Fuzzelogic Solutions Limited. All rights reserved. */
/* Bright, Apple-inspired marketing surface: spacious, calm, product-first. */

:root {
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --paper: #ffffff;
  --mist: #f5f5f7;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-deep: #0066cc;
  --green: #008009;
  --max: 980px;
  --max-wide: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.47059;
  font-size: 17px;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Buttons (Apple pill CTAs) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  border-radius: 980px;
  font: inherit;
  font-size: 17px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.btn-download,
.btn-dark {
  background: var(--blue);
  color: #fff;
}
.btn-download:hover,
.btn-dark:hover { background: var(--blue-hover); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-ghost:hover { background: rgba(0, 113, 227, 0.06); }
.btn-ghost-light {
  background: transparent;
  color: var(--blue);
  border: none;
  min-height: auto;
  padding: 0.35rem 0.15rem;
  font-size: 19px;
}
.btn-ghost-light:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-link {
  color: var(--blue);
  font-size: 19px;
  font-weight: 400;
}
.btn-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 max(1.25rem, calc((100% - 980px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-mark {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.88;
}
.nav-links a:hover { opacity: 1; color: var(--blue); }
.nav-download {
  padding: 0.35rem 0.85rem !important;
  border-radius: 980px;
  color: #fff !important;
  background: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}
.nav-download:hover { background: var(--blue-hover) !important; }
.nav-more { position: relative; }
.nav-more summary {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-drop {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 14rem;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 0.1rem;
  z-index: 20;
}
.nav-drop a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink);
  opacity: 1;
}
.nav-drop a:hover { background: var(--mist); color: var(--blue); }

/* Bright hero (Apple product page rhythm) */
.hero {
  position: relative;
  min-height: calc(100svh - 48px);
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.hero-media {
  position: relative;
  z-index: 1;
  order: 3;
  width: min(100% - 2rem, 1100px);
  margin: 0.5rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 1;
  transform: none;
  animation: none;
}
.hero-shade { display: none; }
.hero-copy {
  position: relative;
  z-index: 2;
  order: 2;
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 5.5rem) 0 1.75rem;
  text-align: center;
  max-width: 40rem;
  animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero .brand {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.hero h1 {
  font-weight: 600;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 auto 1rem;
  max-width: 12ch;
  color: var(--ink);
}
.hero-lead {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.333;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 28ch;
  margin: 0 auto 1.75rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.hero-buy {
  color: var(--blue);
  font-weight: 400;
  font-size: 19px;
}
.hero-buy:hover { text-decoration: underline; text-underline-offset: 3px; }
.hero-trust {
  position: relative;
  z-index: 2;
  order: 4;
  width: min(100% - 2.5rem, 720px);
  margin: 1.75rem auto 2.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  border-top: none;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}
.hero-trust span::before {
  content: "";
  display: none;
}

/* Sections */
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}
section.band {
  padding: 5.5rem 0;
  background: #fff;
}
.band-alt { background: var(--mist); }
.band-dark {
  background: var(--ink);
  color: #f5f5f7;
}
.band-dark .section-lead,
.band-dark .ink-soft { color: #a1a1a6; }

.section-kicker {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--blue);
  margin-bottom: 0.45rem;
  text-align: center;
}
.band-dark .section-kicker { color: #2997ff; }
.section-title {
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.083;
  max-width: 16ch;
  margin: 0 auto 0.75rem;
  text-align: center;
}
.section-lead {
  font-size: 19px;
  line-height: 1.42;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-weight: 400;
}

/* Persona links: hairline, not cards */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.persona-link {
  display: block;
  padding: 1.75rem 1.25rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}
.persona-link:nth-child(3n) { border-right: none; padding-right: 0; }
.persona-link:hover { background: rgba(0, 0, 0, 0.015); }
.persona-link h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.persona-link p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.persona-link .go {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--blue);
  font-weight: 400;
  font-size: 14px;
}
.persona-link .go::after { content: " ›"; }

/* Problems: clean numbered list */
.problem-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.problem-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.problem-list li.in { opacity: 1; transform: none; }
.problem-list .n {
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  padding-top: 0.2rem;
}
.problem-list h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}
.problem-list p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.47;
  max-width: 52ch;
}

.solve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.solve-item h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}
.solve-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.47;
  max-width: 38ch;
}

/* Feature bands */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.feature:last-of-type { border-bottom: none; }
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-copy .section-kicker {
  text-align: left;
  font-size: 17px;
}
.feature-copy .section-title {
  text-align: left;
  margin-left: 0;
  max-width: 12ch;
  font-size: clamp(28px, 3.5vw, 40px);
}
.feature-copy .section-lead {
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
  font-size: 17px;
  max-width: 34ch;
}
.shot {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  background: var(--mist);
}
.shot img { width: 100%; display: block; }

.tool-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  text-align: left;
}
.tool-rows article h3 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
}
.tool-rows article p {
  color: var(--ink-soft);
  margin-top: 0.4rem;
  font-size: 14px;
  line-height: 1.45;
}

.principle {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.principle blockquote {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto 0.75rem;
}
.principle p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 40ch;
  margin: 0 auto;
}

/* Buy */
.trial-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
  text-align: left;
}
.trial-strip h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.trial-strip p {
  color: var(--ink-soft);
  max-width: 40ch;
  font-size: 15px;
}

.sale-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 0.5rem 0 1rem;
  text-align: left;
}
.sale-panel .section-kicker,
.sale-panel .section-title,
.sale-panel .section-lead {
  text-align: left;
  margin-left: 0;
}
.sale-panel .section-title { max-width: 12ch; }
.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}
.price {
  font-weight: 600;
  font-size: clamp(40px, 6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-note { color: var(--ink-soft); font-size: 15px; }
.launch-note {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 36ch;
}
.sale-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 18px;
  background: var(--mist);
}
.sale-form h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.sale-form ul {
  display: grid;
  gap: 0.55rem;
  font-size: 14px;
  color: var(--ink-soft);
}
.sale-form li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.55rem;
}
.sale-form li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
}
.paypal-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.85rem 0.5rem;
  min-height: 3.5rem;
  color: #111;
}
#paypal-container-8TXRYGLQYRTUQ { min-height: 2.75rem; }
#paypal-form-fields-container-8TXRYGLQYRTUQ-wrapper { margin: 0 !important; }
#paypal-form-fields-container-8TXRYGLQYRTUQ .item-header,
#paypal-form-fields-container-8TXRYGLQYRTUQ .item-description {
  display: none !important;
}
.paypal-fallback {
  margin-top: 0.65rem;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.paypal-fallback a {
  color: var(--blue);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.paypal-box.is-failed .paypal-fallback {
  margin-top: 0;
  font-size: 15px;
}
.paypal-box.is-failed .paypal-fallback a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 980px;
  background: #ffc439;
  color: #111;
  text-decoration: none;
}
.fine {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  text-align: left;
}
.related a { display: block; padding: 0.25rem 0; }
.related strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.related span { color: var(--ink-soft); font-size: 14px; }
.related a:hover strong { color: var(--blue); }

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  background: var(--mist);
}
.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 12px;
}
.footer-top strong {
  color: var(--ink);
  font-weight: 600;
}
.footer-top a:hover { color: var(--blue); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  font-size: 12px;
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--blue); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .persona-grid,
  .tool-rows,
  .related,
  .solve-grid { grid-template-columns: 1fr 1fr; }
  .persona-link:nth-child(3n) { border-right: 1px solid var(--line); padding-right: 1.25rem; }
  .persona-link:nth-child(2n) { border-right: none; padding-right: 0; }
  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
    padding: 2.75rem 0;
  }
  .sale-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav { padding: 0 1rem; }
  .nav-links > a:not(.nav-download),
  .nav-more { display: none; }
  .hero-copy,
  .hero-trust,
  .hero-media { width: min(100% - 1.5rem, 720px); }
  .hero h1 { max-width: none; font-size: clamp(36px, 10vw, 48px); }
  .hero-lead { max-width: 34ch; }
  .persona-grid,
  .tool-rows,
  .related,
  .solve-grid { grid-template-columns: 1fr; }
  .persona-link,
  .persona-link:nth-child(3n),
  .persona-link:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
  .cta-row { flex-direction: column; }
  .section-title { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .problem-list li { opacity: 1; transform: none; }
}

/* Comparison tables: clear grid, easy to scan */
.compare-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
}
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-align: left;
}
.compare th,
.compare td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
  line-height: 1.4;
}
.compare th:last-child,
.compare td:last-child { border-right: none; }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: none; }
.compare thead th {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: #f5f5f7;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}
.compare tbody th {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  width: 26%;
  background: #fafafa;
}
.compare td {
  color: var(--ink-soft);
  font-weight: 400;
  width: 37%;
}
.compare tbody tr:nth-child(even) td {
  background: #fcfcfd;
}
.compare tbody tr:nth-child(even) th {
  background: #f3f3f5;
}
.compare td.yes {
  color: var(--ink);
  font-weight: 600;
}
.compare td.no {
  color: var(--ink-soft);
}
.compare .col-us,
.compare thead th.col-us,
.compare td.col-us {
  background: rgba(0, 113, 227, 0.06);
  color: var(--ink);
  font-weight: 600;
}
.compare tbody tr:nth-child(even) td.col-us {
  background: rgba(0, 113, 227, 0.09);
}
.compare thead th.col-us {
  background: rgba(0, 113, 227, 0.12);
  color: var(--blue-deep);
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.vs-row article h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}
.vs-row .pain {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}
.vs-row .fix {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.vs-row .fix strong {
  color: var(--blue);
  font-weight: 600;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.proof-strip p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.proof-strip strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

@media (max-width: 760px) {
  .vs-row,
  .proof-strip { grid-template-columns: 1fr; }
}
