:root {
  --ink: #162126;
  --muted: #5f6f76;
  --paper: #fbfcf8;
  --mist: #edf5f1;
  --line: #d9e4df;
  --teal: #1f8a83;
  --teal-dark: #14615d;
  --leaf: #6aa66a;
  --coral: #cf6f53;
  --gold: #d59f3f;
  --blue: #326da8;
  --night: #172a32;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(22, 33, 38, 0.13);
  --container: 1160px;
  --app-bg: #f4f6fb;
  --app-ink: #141826;
  --app-muted: #6b7280;
  --app-brand: #2d6cdf;
  --app-brand-dark: #244ea6;
  --app-header: #0f1324;
  --app-header-accent: #1b2140;
  --app-border: #e6e8f0;
  --font-sans: "Barlow", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Barlow", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
}

.site-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav .nav-action {
  color: var(--white);
}

.nav-action {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  padding: 10px 14px;
}

.landing-hero {
  min-height: 78vh;
  padding: 132px 20px 92px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(13, 31, 36, 0.9), rgba(23, 62, 68, 0.76), rgba(18, 47, 50, 0.4)), url("imgs/splash-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.hub-hero .hero-inner {
  max-width: 760px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.landing-hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.96;
}

.product-hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(207, 111, 83, 0.26);
}

.btn-primary:hover {
  background: #bd6047;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-light {
  width: 100%;
  padding: 82px max(20px, calc((100vw - var(--container)) / 2));
  background: var(--mist);
}

.section-head {
  max-width: 740px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.section-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.destination-grid,
.feature-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.destination-card,
.feature-card,
.workflow-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(22, 33, 38, 0.06);
}

.destination-card.featured {
  border-color: rgba(31, 138, 131, 0.38);
  box-shadow: var(--shadow);
}

.card-icon,
.feature-card i {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e5f2ee;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.destination-card:nth-child(2) .card-icon,
.feature-card:nth-child(2) i {
  background: #edf0dd;
  color: #647d27;
}

.destination-card:nth-child(3) .card-icon,
.feature-card:nth-child(3) i {
  background: #f7eadf;
  color: var(--coral);
}

.destination-card h3,
.feature-card h3,
.workflow-grid h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.destination-card p,
.feature-card p,
.workflow-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.destination-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--teal-dark);
  font-weight: 700;
}

.split-section,
.audience-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.focus-list {
  display: grid;
  gap: 14px;
}

.focus-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.focus-item strong {
  color: var(--teal-dark);
}

.focus-item span {
  color: var(--muted);
  line-height: 1.6;
}

.product-screenshot-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.product-screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.product-page {
  color: var(--app-ink);
  background: var(--app-bg);
}

.product-page .site-header {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 0 20px;
  background: var(--app-header);
  color: #d6dbff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(15, 19, 36, 0.12);
}

.product-page .site-brand {
  height: 56px;
  gap: 9px;
  color: #fff;
  font-size: 18px;
}

.product-page .site-brand img {
  width: 27px;
  height: 27px;
}

.product-page .site-nav {
  align-self: stretch;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
}

.product-page .site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #aeb7df;
}

.product-page .site-nav a:hover,
.product-page .site-nav .nav-action {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.product-page .site-nav .nav-action {
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.product-page .site-nav .nav-action::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #4c8dff;
}

.product-page .landing-hero {
  min-height: auto;
  padding: 60px 20px 50px;
  align-items: flex-start;
  color: var(--app-ink);
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
}

.product-page .hero-inner,
.product-page .section,
.product-page .landing-footer {
  width: min(1320px, calc(100% - 40px));
}

.product-page .product-hero-inner {
  grid-template-columns: minmax(340px, 0.88fr) minmax(520px, 1.12fr);
  gap: 36px;
}

.product-page .eyebrow {
  color: var(--app-brand);
  font-size: 0.74rem;
  letter-spacing: 0;
  font-weight: 500;
}

.product-page .landing-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  font-weight: 500;
}

.product-page .hero-lead {
  max-width: 680px;
  color: var(--app-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.product-page .hero-note {
  color: var(--app-muted);
}

.product-page .btn {
  min-height: 42px;
  padding: 10px 15px;
  font-weight: 500;
}

.product-page .btn-primary {
  background: var(--app-brand);
  box-shadow: 0 14px 28px rgba(45, 108, 223, 0.22);
}

.product-page .btn-primary:hover {
  background: var(--app-brand-dark);
}

.product-page .btn-secondary {
  color: var(--app-ink);
  border-color: var(--app-border);
  background: #fff;
}

.product-page .btn-secondary:hover {
  color: var(--app-ink);
  border-color: #cfd5e5;
  background: #f8faff;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: #fff;
  color: var(--app-muted);
  font-size: 0.86rem;
}

.hero-metrics strong {
  margin-right: 5px;
  color: var(--app-ink);
  font-weight: 500;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19, 27, 51, 0.08);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-card-hero {
  min-height: 430px;
}

.screenshot-placeholder {
  min-height: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(15, 19, 36, 0.05), rgba(45, 108, 223, 0.06)),
    repeating-linear-gradient(0deg, rgba(20, 24, 38, 0.04) 0, rgba(20, 24, 38, 0.04) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(90deg, rgba(20, 24, 38, 0.035) 0, rgba(20, 24, 38, 0.035) 1px, transparent 1px, transparent 16px),
    #fbfcff;
}

.screenshot-card-hero .screenshot-placeholder {
  aspect-ratio: 16 / 9;
}

.screenshot-placeholder i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e9f0ff;
  color: var(--app-brand);
  font-size: 1.15rem;
}

.screenshot-placeholder strong {
  color: var(--app-ink);
  font-size: 1.15rem;
  font-weight: 500;
}

.screenshot-placeholder span {
  max-width: 420px;
  color: var(--app-muted);
  line-height: 1.5;
}

.screenshot-placeholder code {
  padding: 5px 8px;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: #fff;
  color: #536079;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
}

.product-page .section {
  padding: 58px 0;
}

.product-page .section-light {
  width: 100%;
  padding: 58px max(20px, calc((100vw - 1320px) / 2));
  background: #eef2f8;
}

.product-page .section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.product-page .section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.product-page .section-head p:not(.eyebrow) {
  color: var(--app-muted);
  line-height: 1.58;
}

.product-page .destination-card,
.product-page .feature-card,
.product-page .workflow-grid article,
.product-page .trust-grid article {
  border-color: var(--app-border);
  box-shadow: 0 18px 45px rgba(19, 27, 51, 0.06);
}

.product-page .destination-card h3,
.product-page .feature-card h3,
.product-page .workflow-grid h3,
.product-page .trust-grid h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

.screenshot-section {
  padding-top: 48px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-page .audience-section {
  padding-top: 38px;
  padding-bottom: 64px;
}

.product-page .audience-section > .eyebrow {
  margin-bottom: 10px;
  padding-left: clamp(4px, 0.4vw, 8px);
}

.product-page .audience-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 46px);
  background: var(--app-header);
  margin-bottom: 0;
  padding: clamp(42px, 5.2vw, 74px) clamp(34px, 5vw, 80px);
}

.product-page .audience-band h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-page .audience-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-page .audience-list span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-align: center;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
}

.product-page .policy-links a,
.product-page .landing-footer a,
.product-page .destination-card a {
  color: var(--app-brand);
  font-weight: 500;
}

.workflow-grid {
  counter-reset: workflow;
}

.workflow-grid article span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

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

.feature-card i {
  display: grid;
  margin-bottom: 18px;
}

.feature-card:nth-child(4) i {
  background: #e8eef6;
  color: var(--blue);
}

.trust-section {
  padding-top: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(22, 33, 38, 0.06);
}

.trust-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e5f2ee;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.trust-grid article:nth-child(2) i {
  background: #e8eef6;
  color: var(--blue);
}

.trust-grid article:nth-child(3) i {
  background: #f7eadf;
  color: var(--coral);
}

.trust-grid h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 700;
}

.audience-band {
  background: var(--night);
  color: var(--white);
  border-radius: 8px;
  padding: 46px;
  margin-bottom: 72px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
}

.landing-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.landing-footer a {
  color: var(--teal-dark);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-hero {
  min-height: 46vh;
  padding-bottom: 72px;
}

.legal-hero h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-updated {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 900px;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-copy p,
.legal-list {
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(213, 159, 63, 0.42);
  border-radius: 8px;
  background: #fff8e9;
  color: #805b10;
}

.legal-note i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.legal-note p {
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    min-height: 74px;
  }

  .site-nav a:not(.nav-action) {
    display: none;
  }

  .landing-hero {
    min-height: 72vh;
  }

  .product-hero-inner,
  .split-section,
  .audience-band {
    grid-template-columns: 1fr;
  }

  .destination-grid,
  .feature-grid,
  .workflow-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .product-screenshot-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .site-brand span {
    font-size: 1rem;
  }

  .site-brand img {
    width: 32px;
    height: 32px;
  }

  .nav-action {
    padding: 9px 11px;
  }

  .landing-hero {
    padding: 118px 16px 64px;
    min-height: 70vh;
  }

  .hub-hero .hero-inner {
    margin-left: auto;
  }

  .landing-hero h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section,
  .section-light {
    width: 100%;
    padding: 58px 20px;
  }

  .focus-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-screenshot-card {
    margin-top: 8px;
  }

  .audience-band {
    width: calc(100% - 40px);
    padding: 28px;
  }

  .landing-footer {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .product-page .site-header {
    position: sticky;
    width: 100%;
    min-height: 56px;
  }

  .product-page .product-hero-inner,
  .product-page .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .product-page .screenshot-card-hero {
    min-height: 0;
  }

  .product-page .screenshot-card {
    max-width: none;
  }

  .product-page .audience-band {
    gap: 24px;
  }

  .product-page .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-page .site-header {
    width: 100%;
    padding: 0 14px;
  }

  .product-page .site-brand span {
    font-size: 1rem;
  }

  .product-page .site-brand img {
    width: 26px;
    height: 26px;
  }

  .product-page .landing-hero {
    min-height: auto;
    padding: 42px 16px 38px;
  }

  .product-page .hero-inner,
  .product-page .section,
  .product-page .landing-footer {
    width: calc(100% - 32px);
  }

  .product-page .landing-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .product-page .hero-actions .btn {
    width: 100%;
  }

  .product-page .section {
    padding: 44px 0;
  }

  .product-page .section-light {
    width: 100%;
    padding: 44px 16px;
  }

  .product-page .audience-band {
    width: 100%;
    padding: 30px 22px;
  }

  .product-page .audience-band h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .product-page .audience-list {
    grid-template-columns: 1fr;
  }

  .product-page .screenshot-placeholder {
    padding: 22px 16px;
  }

  .product-page .screenshot-placeholder code {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* ============ Landing 2026: risk section, platform note, final CTA ============ */
.platform-note {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 14px 0 0; font-size: 0.92rem; color: var(--muted);
}
.platform-note i { font-size: 1.05rem; color: var(--ink); }
.platform-note span { color: var(--muted); }

/* Risk / CanRisk — full-bleed dark band.
   Must mirror `.product-page .section-light`, not the base one: the product page overrides
   `.section` to a 1320px container with 58px padding, and those rules outrank an unprefixed
   `.risk-section`, so without the `.product-page` prefix the padding silently resolves to 0 and
   the text sits flush against the dark edge. */
.product-page .risk-section {
  width: 100%;
  padding: 58px max(20px, calc((100vw - 1320px) / 2));
  background: var(--night);
  color: var(--white);
}
.product-page .risk-section .section-head h2 { color: var(--white); }
.product-page .risk-section .eyebrow { color: var(--gold); }
.product-page .risk-section strong { color: var(--white); }
/* Beats `.product-page .section-head p:not(.eyebrow)`, which paints it app-muted grey. */
.product-page .risk-section .section-head p:not(.eyebrow) { color: rgba(255, 255, 255, 0.86); }

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.risk-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px;
}
.risk-card i { font-size: 1.5rem; color: var(--gold); }
.risk-card h3 {
  margin: 12px 0 6px;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}
.risk-card p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 0.94rem; line-height: 1.55; }

.risk-note {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 26px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem; line-height: 1.55;
}
.risk-note i { margin-top: 3px; color: var(--gold); }

/* Step badges reuse the existing .workflow-grid article span rule. */
.workflow-grid article span { margin-bottom: 12px; }

/* Free editor and app editor, side by side under the hero. Equal cards on purpose: the free
   build is not a demo of the app, it is the same editor with a different backend. */
.lite-callout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.lite-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
}

.lite-card .eyebrow { margin: 0 0 8px; }

.lite-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 1.9vw, 1.62rem);
  line-height: 1.16;
}

.lite-card > p:not(.eyebrow):not(.lite-card-note) {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.58;
}

/* Pushed to the foot so the two cards line their buttons up, whatever the copy length. */
.lite-card .hero-actions { margin-top: auto; }

.lite-card .lite-card-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.lite-card-free { background: var(--mist); }

.lite-card-app {
  background: #fff;
  border-color: var(--app-border);
  box-shadow: 0 18px 45px rgba(19, 27, 51, 0.06);
}

@media (max-width: 860px) {
  .lite-callout-grid { grid-template-columns: 1fr; }
  .lite-card { padding: 26px 20px; }
}

/* Leaves the page, unlike the anchors around it, so it reads as an action rather than a
   section marker - without competing with the solid "Entrar" button beside it. Matches the
   specificity of `.product-page .site-nav a`, which sets the muted colour these sit in. */
.product-page .site-nav .nav-lite {
  font-weight: 600;
  color: #fff;
}

/* Closing call to action */
.final-cta { text-align: center; }
.final-cta-inner {
  max-width: 720px; margin: 0 auto;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 28px;
}
.final-cta-inner h2 { margin: 0 0 8px; }
.final-cta-inner p { margin: 0 0 22px; color: var(--muted); }
.final-cta .hero-actions { justify-content: center; }

@media (max-width: 720px) {
  .final-cta-inner { padding: 28px 18px; }
  .product-page .risk-section { padding: 44px 20px; }
}

/* Four-step workflow: the original grid was sized for three cards, which orphaned the fourth. */
.product-page .workflow-grid { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
@media (max-width: 980px) {
  .product-page .workflow-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* =============================================================================================
   Product landing, 2026-09 redesign. Everything here is scoped to .product-page and prefixed
   pp-, so the hub landing (which shares this file) is untouched. The older product-only rules
   above are left in place: the feature grid, screenshot cards and closing CTA are still used.
   ============================================================================================= */

.product-page h1,
.product-page .section h2,
.product-page .pp-after h2,
.product-page .pp-trust h2 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.product-page .landing-hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  line-height: 1.0;
}

.product-page .section h2,
.product-page .pp-after h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.06;
}

/* --- nav ------------------------------------------------------------------------------------ */
.product-page .site-nav .nav-cta {
  margin-left: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--app-brand);
  color: #fff;
  font-weight: 600;
  align-self: center;
}
.product-page .site-nav .nav-cta:hover { background: var(--app-brand-dark); }
.product-page .site-nav .nav-cta i { margin-right: 6px; }

/* --- hero ----------------------------------------------------------------------------------- */
.product-page .pp-hero {
  padding-top: 56px;
  padding-bottom: 40px;
  background:
    radial-gradient(900px 420px at 88% 10%, rgba(45, 108, 223, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
}

.product-page .pp-hero .product-hero-inner {
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
}

.product-page .pp-hero-actions { margin-top: 26px; }

.product-page .pp-hero-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--app-brand);
  font-weight: 500;
  text-decoration: none;
}
.product-page .pp-hero-more:hover { text-decoration: underline; }

.product-page .platform-note { margin-top: 22px; }
.product-page .hero-note { max-width: 560px; }

/* The composite is transparent and carries its own shadows, so no card frame around it - a
   frame would box in the floating form card and the arrow. */
.product-page .pp-hero-figure {
  margin: 0;
  text-align: right;
}
.product-page .pp-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.product-page .pp-hero-figure figcaption {
  margin-top: 6px;
  color: var(--app-muted);
  font-size: 0.78rem;
}
.product-page .pp-hero-figure .screenshot-placeholder { min-height: 360px; }

/* --- value strip ---------------------------------------------------------------------------- */
.product-page .pp-values {
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
  background: #fff;
}
.product-page .pp-values-inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-page .pp-value {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  border-left: 1px solid var(--app-border);
}
.product-page .pp-value:first-child { border-left: 0; padding-left: 0; }
.product-page .pp-value > i {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-border);
  border-radius: 10px;
  color: var(--app-brand);
  font-size: 18px;
}
.product-page .pp-value h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--app-ink);
}
.product-page .pp-value p {
  margin: 0;
  color: var(--app-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* --- steps ---------------------------------------------------------------------------------- */
.product-page .pp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  position: relative;
}
.product-page .pp-steps li {
  position: relative;
  padding-top: 8px;
}
/* connector between steps: a hairline that runs behind the icons */
.product-page .pp-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 62px;
  right: -28px;
  border-top: 1px solid var(--app-border);
}
.product-page .pp-step-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e9effc;
  color: var(--app-brand);
  font-size: 18px;
}
.product-page .pp-steps li.is-highlight .pp-step-icon {
  background: var(--app-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(45, 108, 223, 0.28);
}
.product-page .pp-step-num {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--app-border);
  color: var(--app-muted);
  font-size: 0.72rem;
  font-weight: 600;
}
.product-page .pp-steps h3 {
  margin: 18px 0 6px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--app-ink);
}
.product-page .pp-steps li.is-highlight h3 { color: var(--app-brand); }
.product-page .pp-steps p {
  margin: 0;
  color: var(--app-muted);
  line-height: 1.5;
}

/* --- after the review (dark band) ----------------------------------------------------------- */
.product-page .pp-after {
  padding: 72px 20px;
  color: #fff;
  background:
    radial-gradient(700px 360px at 100% 100%, rgba(76, 141, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #0f1324 0%, #142049 100%);
}
.product-page .pp-after-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}
.product-page .pp-after .eyebrow { color: #8fb4ff; }
.product-page .pp-after h2 { margin: 0 0 22px; color: #fff; }
.product-page .pp-after-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.product-page .pp-after-list li {
  display: flex;
  gap: 16px;
}
.product-page .pp-after-list li > i {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #8fb4ff;
  font-size: 18px;
}
.product-page .pp-after-list h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 600;
}
.product-page .pp-after-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.product-page .pp-after-list strong { color: #fff; font-weight: 600; }
.product-page .pp-after-note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}
.product-page .pp-after-figure {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.product-page .pp-after-figure .screenshot-placeholder {
  min-height: 340px;
  color: var(--app-muted);
}

/* --- tiers ---------------------------------------------------------------------------------- */
.product-page .pp-tiers .section-head { max-width: 720px; }
.product-page .pp-tiers-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--app-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19, 27, 51, 0.06);
}
.product-page .pp-tiers-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.product-page .pp-tiers-table th,
.product-page .pp-tiers-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--app-border);
  text-align: center;
  vertical-align: middle;
}
.product-page .pp-tiers-table thead th {
  border-top: 0;
  padding-top: 22px;
  padding-bottom: 18px;
}
.product-page .pp-tiers-table th[scope="row"] {
  width: 40%;
  text-align: left;
  font-weight: 500;
  color: var(--app-ink);
}
.product-page .pp-tier-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--app-ink);
}
.product-page .pp-tier-sub {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--app-muted);
}
.product-page .pp-tiers-table td .fa-check { color: var(--app-brand); }
.product-page .pp-dash { color: #c3c9d9; }
.product-page .pp-limit {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef2fb;
  color: var(--app-brand);
  font-size: 0.82rem;
  font-weight: 600;
}
.product-page .pp-tiers-table .is-pro { background: #f6f8fe; }
.product-page .pp-tiers-table thead th.is-pro { border-top: 3px solid var(--app-brand); padding-top: 19px; }
.product-page .pp-tiers-table tfoot td { padding: 18px; }
.product-page .btn.btn-sm {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 0.88rem;
}
.product-page .pp-tiers-note {
  margin: 16px 0 0;
  color: var(--app-muted);
  font-size: 0.9rem;
}
.product-page .pp-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--app-brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.product-page .pp-screens-note {
  margin: 14px 0 0;
  color: var(--app-muted);
  font-size: 0.85rem;
}

/* --- trust strip ---------------------------------------------------------------------------- */
.product-page .pp-trust {
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
  background: #fff;
}
.product-page .pp-trust-inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.product-page .pp-trust-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-border);
  border-radius: 14px;
  color: var(--app-brand);
  font-size: 24px;
}
.product-page .pp-trust h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
}
.product-page .pp-trust p {
  margin: 0;
  max-width: 560px;
  color: var(--app-muted);
  line-height: 1.55;
}
.product-page .pp-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  white-space: nowrap;
}
.product-page .pp-trust-links a {
  color: var(--app-brand);
  font-weight: 500;
  text-decoration: none;
}
.product-page .pp-trust-links a:hover { text-decoration: underline; }

/* --- closing ------------------------------------------------------------------------------- */
.product-page .pp-final .final-cta-inner {
  max-width: 820px;
  background: linear-gradient(180deg, #f4f6fb 0%, #e9effc 100%);
  border-color: var(--app-border);
}
.product-page .pp-final h2 { margin-bottom: 20px; }
.product-page .pp-final-platform {
  margin: 14px 0 0;
  color: var(--app-muted);
  font-size: 0.9rem;
}
.product-page .pp-final-lite {
  margin: 6px 0 0;
  color: var(--app-muted);
  font-size: 0.95rem;
}
.product-page .pp-final-lite a { color: var(--app-brand); font-weight: 500; }

/* --- footer -------------------------------------------------------------------------------- */
.product-page .pp-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 24px;
}
.product-page .pp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--app-ink);
  font-weight: 600;
}
.product-page .pp-footer-brand img { width: 26px; height: 26px; }
.product-page .pp-footer-brand em {
  margin-left: 8px;
  color: var(--app-muted);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
}
.product-page .pp-footer-copy {
  grid-column: 1 / -1;
  color: var(--app-muted);
  font-size: 0.82rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- responsive ---------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .product-page .pp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 28px; }
  .product-page .pp-steps li:nth-child(2)::after { display: none; }
  .product-page .pp-after-inner { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .product-page .pp-hero .product-hero-inner { grid-template-columns: 1fr; }
  .product-page .pp-hero-figure { text-align: left; margin-top: 8px; }
  .product-page .pp-values-inner { grid-template-columns: 1fr; }
  .product-page .pp-value { border-left: 0; padding: 18px 0; border-top: 1px solid var(--app-border); }
  .product-page .pp-value:first-child { border-top: 0; }
  .product-page .pp-trust-inner { grid-template-columns: auto minmax(0, 1fr); }
  .product-page .pp-trust-links { grid-column: 1 / -1; white-space: normal; }
  .product-page .site-nav .nav-cta { display: none; }
}

@media (max-width: 640px) {
  .product-page .pp-steps { grid-template-columns: 1fr; }
  .product-page .pp-steps li::after { display: none !important; }
  .product-page .pp-after { padding: 52px 20px; }
  .product-page .pp-footer { grid-template-columns: 1fr; }
  .product-page .pp-footer-brand { flex-wrap: wrap; }
  .product-page .pp-footer-brand em { margin-left: 0; flex-basis: 100%; }
}

/* --- headings on one line (2026-09-10) ------------------------------------------------------
   The hero heading sits above the columns and gives each sentence its own line; section
   headings are sized so they fit a line at desktop widths and are only allowed to wrap below
   the point where a line no longer fits. */
.product-page .pp-hero { display: block; }
.product-page .pp-hero .hero-inner { margin: 0 auto; }
/* Outranks `.product-page .pp-hero .hero-inner { margin: 0 auto }`, which this element also
   matches - without the extra specificity the bottom margin was silently reset to zero. */
.product-page .pp-hero .pp-hero-head {
  position: relative;
  z-index: 1;               /* descenders draw over the figure below, never under it */
  margin: 0 auto 26px;
}
.product-page .pp-hero-head .eyebrow { margin-bottom: 14px; }
.product-page .pp-hero-head h1 {
  max-width: none;
  margin: 0;
  /* Sized so the whole headline fits one line across the container at desktop widths;
     below that each sentence takes a line of its own. */
  font-size: clamp(2.3rem, 4.1vw, 3.85rem);
  line-height: 1.08;
  padding-bottom: 0.14em;   /* the serif's descenders reach below the line box */
}
.product-page .pp-hero-head h1 span { display: block; }
@media (min-width: 1080px) {
  .product-page .pp-hero-head h1 { white-space: nowrap; }
  .product-page .pp-hero-head h1 span { display: inline; }
}
.product-page .pp-hero .product-hero-inner {
  grid-template-columns: minmax(320px, 0.95fr) minmax(520px, 1.05fr);
  /* Top-aligned, not centred: the image is taller than the copy, and centring left a hole
     between the headline and the lead that read as something missing. */
  align-items: start;
}
.product-page .pp-hero .hero-lead { margin-top: 0; }

.product-page .section h2,
.product-page .pp-after h2 {
  font-size: clamp(1.9rem, 2.9vw, 3rem);
}
.product-page .pp-after-head { grid-column: 1 / -1; }
.product-page .pp-after-head h2 { margin-bottom: 8px; }
.product-page .pp-after-inner { row-gap: 20px; }
.product-page .pp-tiers .section-head,
.product-page .pp-steps-section .section-head { max-width: none; }
.product-page .pp-tiers .section-head p:not(.eyebrow) { max-width: 720px; }

@media (min-width: 1080px) {
  .product-page .section h2,
  .product-page .pp-after h2 { white-space: nowrap; }
}
/* Each sentence stays on its own line at every width: on a phone the second one wraps within
   itself, which reads better than a break landing after "O". */

/* Pro badge pinned to the card's corner, so a long title cannot push it around. */
.product-page .feature-card { position: relative; }
.product-page .feature-card .pp-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
}
