:root {
  color-scheme: light;
  --bg: #eef3f5;
  --surface: #ffffff;
  --surface-soft: #f7fafb;
  --surface-strong: #fdfefe;
  --text: #1f2933;
  --muted: #5a6872;
  --accent: #0b2f4a;
  --accent-ink: #071f31;
  --accent-soft: #e7f0f4;
  --accent-panel: #dce9ef;
  --success: #2f6f5e;
  --success-soft: #e6f1ec;
  --warning: #936b28;
  --border: #dbe3e7;
  --border-strong: #c7d5dc;
  --shadow: 0 22px 58px rgba(31, 41, 51, 0.1);
  --shadow-soft: 0 12px 32px rgba(31, 41, 51, 0.06);
  --radius: 10px;
  --radius-large: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    linear-gradient(180deg, #f8fbfc 0%, var(--bg) 42%, #f3f7f8 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.public-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.public-header-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.public-brand img {
  width: 138px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.public-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
}

.public-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 9px 11px;
  transition: background 160ms ease, color 160ms ease;
}

.public-nav a:hover,
.public-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
}

.public-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.public-access {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(11, 47, 74, 0.18);
}

.public-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 58px;
}

.public-home,
.public-product {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.public-placeholder {
  position: relative;
  overflow: hidden;
  max-width: 680px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.public-placeholder::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 26px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 13px, rgba(47, 111, 94, 0.24) 14px 15px, transparent 16px 30px, rgba(47, 111, 94, 0.14) 31px 32px, transparent 33px 43px),
    conic-gradient(from -20deg, rgba(47, 111, 94, 0.24) 0deg 42deg, transparent 42deg 360deg);
  pointer-events: none;
}

.public-placeholder span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.public-placeholder h1 {
  margin: 10px 0 8px;
  font-size: 2.7rem;
  line-height: 1.04;
}

.public-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.public-placeholder a {
  color: var(--accent);
  font-weight: 800;
}

.home-hero,
.home-section {
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

/*
  Desktop asset slots are reserved as strings until WEB-DESKTOP-001...007 exist.
  When a desktop file is available, set --hero-desktop-image to url(<slot>).
*/
.home-hero {
  --hero-mobile-image: url("/site/assets/home-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/home-context-desktop.jpg";
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(360px, 0.48fr);
  column-gap: 40px;
  align-items: start;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 252, 0.94) 56%, rgba(231, 240, 244, 0.78) 100%);
  box-shadow: var(--shadow);
}

.home-hero::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 28px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 18px, rgba(47, 111, 94, 0.34) 19px 20px, transparent 21px 41px, rgba(47, 111, 94, 0.2) 42px 43px, transparent 44px 63px),
    conic-gradient(from -24deg, rgba(47, 111, 94, 0.3) 0deg 34deg, transparent 34deg 360deg);
  opacity: 0.46;
  pointer-events: none;
  z-index: 2;
}

.home-hero::after {
  content: "";
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 2;
  grid-row: 1 / span 6;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: clamp(300px, 32vw, 390px);
  height: auto;
  border: 1px solid rgba(199, 213, 220, 0.8);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(7, 31, 49, 0.04), rgba(7, 31, 49, 0.18)),
    var(--hero-mobile-image) center / contain no-repeat;
  box-shadow: 0 24px 60px rgba(11, 47, 74, 0.18);
  pointer-events: none;
  z-index: 0;
}

.public-home .home-hero {
  --hero-desktop-image: url("/site/assets/WEB-DESKTOP-001_PRODUCTO_V2.png?v=20260621b");
  --hero-desktop-asset-slot: "/site/assets/WEB-DESKTOP-001_PRODUCTO_V2.png?v=20260621b";
}

.public-product .home-hero {
  --hero-mobile-image: url("/site/assets/modules-context.jpg");
  --hero-desktop-image: url("/site/assets/WEB-DESKTOP-001_PRODUCTO_V2.png?v=20260621b");
  --hero-desktop-asset-slot: "/site/assets/WEB-DESKTOP-001_PRODUCTO_V2.png?v=20260621b";
}

.modules-page .home-hero {
  --hero-mobile-image: url("/site/assets/modules-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/modules-context-desktop.jpg";
}

.pdr-page .home-hero {
  --hero-mobile-image: url("/site/assets/pdr-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/pdr-context-desktop.jpg";
}

.blog-page .home-hero {
  --hero-mobile-image: url("/site/assets/knowledge-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/knowledge-context-desktop.jpg";
}

.faq-page .home-hero {
  --hero-mobile-image: url("/site/assets/faq-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/faq-context-desktop.jpg";
}

.support-page .home-hero {
  --hero-mobile-image: url("/site/assets/support-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/support-context-desktop.jpg";
}

.cases-page .home-hero {
  --hero-mobile-image: url("/site/assets/cases-context.jpg");
  --hero-desktop-image: var(--hero-mobile-image);
  --hero-desktop-asset-slot: "/site/assets/cases-context-desktop.jpg";
}

.home-hero::after {
  background-color: #f2f7f9;
}

@media (min-width: 761px) {
  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 31, 49, 0.04), rgba(7, 31, 49, 0.18)),
      var(--hero-desktop-image) center / contain no-repeat;
    background-color: #f2f7f9;
  }

  .public-product .home-hero::after {
    align-self: center;
    min-height: 0;
    height: clamp(600px, 48vw, 680px);
    background:
      linear-gradient(180deg, rgba(7, 31, 49, 0.04), rgba(7, 31, 49, 0.18)),
      var(--hero-desktop-image) center / contain no-repeat;
    background-color: #f2f7f9;
  }

  .public-home .home-hero::after {
    align-self: center;
    min-height: 0;
    height: clamp(600px, 48vw, 680px);
    background:
      linear-gradient(180deg, rgba(7, 31, 49, 0.04), rgba(7, 31, 49, 0.18)),
      var(--hero-desktop-image) center / contain no-repeat;
    background-color: #f2f7f9;
  }
}

.home-hero > * {
  grid-column: 1;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.home-kicker {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1,
.section-heading h2 {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--text);
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 100%;
  color: var(--accent-ink);
  font-size: 3rem;
  line-height: 1.02;
}

.section-heading h2 {
  font-size: 2rem;
  line-height: 1.14;
}

.home-lead {
  max-width: 100%;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.36rem;
  line-height: 1.45;
}

.home-copy,
.section-heading p,
.home-section-note,
.home-panel p,
.home-legal-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.home-copy,
.section-heading p {
  margin: 12px 0 0;
}

.home-quick-list,
.home-check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.home-quick-list {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px 12px;
}

.home-quick-list li,
.home-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.home-quick-list li::before,
.home-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px var(--success-soft);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  margin-top: 24px;
}

.public-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.public-button:hover,
.public-button:focus-visible,
.public-access:hover,
.public-access:focus-visible {
  transform: translateY(-1px);
}

.public-button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 47, 74, 0.18);
}

.public-button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border);
  color: var(--accent);
}

.section-heading {
  max-width: 840px;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.home-card-grid-four {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.home-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.035);
}

.home-card h3 {
  margin: 0;
  color: var(--accent-ink);
  font-size: 1rem;
  line-height: 1.3;
}

.home-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.home-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(47, 111, 94, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 111, 94, 0.1), rgba(255, 255, 255, 0.92) 48%),
    var(--surface-strong);
}

.founder-panel-copy h3 {
  margin: 8px 0 0;
  color: var(--accent-ink);
  font-size: 1.18rem;
  line-height: 1.28;
}

.founder-panel-copy p,
.founder-form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.founder-benefits {
  margin-top: 14px;
}

.founder-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.founder-form label {
  display: grid;
  gap: 6px;
  color: var(--accent-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.founder-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.founder-form input:focus {
  outline: 3px solid rgba(47, 111, 94, 0.18);
  border-color: rgba(47, 111, 94, 0.48);
}

.founder-form button {
  width: 100%;
  margin-top: 2px;
}

.founder-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.founder-form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.founder-form-status[data-status="success"] {
  color: var(--success);
  font-weight: 800;
}

.founder-form-status[data-status="error"] {
  color: #b42318;
  font-weight: 800;
}

.home-section-note,
.home-legal-note {
  margin: 16px 0 0;
}

.home-topic-list {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.home-topic {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.home-topic strong {
  color: var(--accent-ink);
}

.home-topic span {
  color: var(--muted);
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.home-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--accent-soft);
}

.home-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 12px, rgba(11, 47, 74, 0.22) 13px 14px, transparent 15px 26px, rgba(11, 47, 74, 0.12) 27px 28px, transparent 29px 38px),
    conic-gradient(from 42deg, rgba(47, 111, 94, 0.2) 0deg 48deg, transparent 48deg 360deg);
  opacity: 0.8;
  pointer-events: none;
}

.home-panel h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.3;
}

.home-product-band {
  background:
    linear-gradient(135deg, #f7fbf9 0%, #eef6f2 100%);
}

.home-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-flow span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--accent);
  font-weight: 800;
  text-align: center;
}

.home-legal-note {
  padding: 14px;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius);
  background: #fffaf0;
  color: #4d4331;
}

.product-hero {
  background: var(--surface);
}

.product-fit-grid .home-card {
  background: #ffffff;
}

.product-cycle-section {
  background: #f8faf8;
}

.product-cycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.product-cycle div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.product-cycle strong,
.product-cycle span {
  display: block;
}

.product-cycle strong {
  color: var(--accent);
  font-size: 1.05rem;
}

.product-cycle span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-panel {
  background: #f8faf8;
}

.product-limits .product-panel {
  background: #fffaf0;
}

.product-final {
  box-shadow: var(--shadow);
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-category-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfc;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfc;
}

.faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
}

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

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  padding-left: 16px;
  color: var(--success);
  font-size: 1.25rem;
  line-height: 1;
}

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

.faq-answer {
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.support-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.support-search-form {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfc;
}

.support-search-form label {
  color: var(--text);
  font-weight: 800;
}

.support-search-row {
  display: grid;
  gap: 8px;
}

.support-search-row input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.support-search-row input:focus {
  outline: 3px solid var(--accent-soft);
  border-color: var(--accent);
}

.support-search-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.support-search-results {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.support-search-result .public-button {
  justify-content: center;
}

.support-search-empty {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfc;
  color: var(--muted);
  line-height: 1.55;
}

.support-kb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.support-kb-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.support-card,
.support-help-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfc;
}

.support-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.support-card h3,
.support-help-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.support-card p,
.support-help-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.support-card a,
.support-help-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.support-kb-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.support-kb-card p {
  margin-top: 0;
}

.support-kb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-kb-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.support-kb-block {
  display: grid;
  gap: 8px;
}

.support-kb-block > strong {
  color: var(--accent);
}

.support-kb-block p {
  margin: 0;
}

.support-kb-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.support-kb-related a {
  min-height: 34px;
  margin-top: 0;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef5f7;
}

.support-kb-faq .support-kb-meta {
  margin-bottom: 8px;
}

.support-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.support-route div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfc;
}

.support-route strong,
.support-route span {
  display: block;
}

.support-route strong {
  color: var(--accent);
  line-height: 1.25;
}

.support-route span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (min-width: 761px) {
  .support-search-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .cases-page .home-card-grid,
  .cases-page .home-card-grid-four {
    grid-template-columns: 1fr;
  }

  .cases-page .home-hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .cases-page .section-heading h2 {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .cases-page .home-card,
  .cases-page .home-panel,
  .cases-page .home-legal-note {
    padding: 18px;
  }

  .cases-page .public-button {
    min-height: 48px;
  }

  .faq-page .home-card-grid,
  .faq-page .home-card-grid-four {
    grid-template-columns: 1fr;
  }

  .faq-page .home-hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .faq-page .section-heading h2 {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .faq-page .home-card,
  .faq-page .faq-item {
    min-width: 0;
  }

  .faq-page .public-button,
  .faq-category-nav a,
  .faq-answer a {
    width: 100%;
    min-height: 48px;
  }

  .faq-item summary {
    min-height: 50px;
    padding: 14px;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .support-page .home-card-grid,
  .support-page .home-card-grid-four,
  .support-action-grid,
  .support-kb-grid,
  .support-route {
    grid-template-columns: 1fr;
  }

  .support-page .home-hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .support-page .section-heading h2 {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .support-card,
  .support-help-card,
  .support-route div {
    padding: 16px;
  }

  .support-page .public-button,
  .support-card a,
  .support-help-card a {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 760px) {
  .public-header-inner {
    min-height: 0;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .public-nav {
    order: 3;
    flex-basis: 100%;
  }

  .public-access {
    margin-left: auto;
  }

  .public-main {
    padding: 22px 0;
  }

  .public-home,
  .public-product {
    gap: 14px;
  }

  .home-hero,
  .home-section {
    padding: 20px;
  }

  .home-hero {
    display: block;
    column-gap: 0;
    min-height: 0;
  }

  .home-hero::before {
    right: 18px;
    top: 18px;
    width: 88px;
    height: 88px;
  }

  .home-hero::after {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    display: block;
    width: 100%;
    height: 200px;
    margin-top: 22px;
    border-radius: 16px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .home-lead,
  .home-quick-list,
  .home-actions {
    max-width: 100%;
  }

  .section-heading h2 {
    font-size: 1.5rem;
    line-height: 1.18;
  }

  .public-placeholder h1 {
    font-size: 2.2rem;
    line-height: 1.06;
  }

  .home-lead {
    font-size: 1.12rem;
  }

  .home-actions,
  .public-button {
    width: 100%;
  }

  .home-topic {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .founder-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .founder-form {
    padding: 14px;
  }

  .home-split {
    grid-template-columns: 1fr;
  }

  .home-flow {
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
  }

  .product-cycle {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .public-main {
    width: min(100% - 20px, 1120px);
  }

  .home-hero,
  .home-section {
    padding: 16px;
  }

  .home-hero h1,
  .cases-page .home-hero h1,
  .faq-page .home-hero h1,
  .support-page .home-hero h1 {
    font-size: 1.72rem;
  }

  .section-heading h2,
  .cases-page .section-heading h2,
  .faq-page .section-heading h2,
  .support-page .section-heading h2 {
    font-size: 1.32rem;
  }

  .public-placeholder h1 {
    font-size: 1.9rem;
  }

  .home-hero::after {
    height: 170px;
  }

  .home-flow {
    grid-template-columns: 1fr;
  }

  .product-cycle {
    grid-template-columns: 1fr;
  }
}
