:root {
  color-scheme: light;
  --font-rounded: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, -apple-system, sans-serif;
  --ink: #263246;
  --muted: #617086;
  --paper: #ffffff;
  --surface: #f6fafc;
  --surface-strong: #edf5f8;
  --line: #cfdceb;
  --accent: #4f8f9d;
  --accent-strong: #2f6d7f;
  --violet: #7c67d8;
  --green: #4f9b6e;
  --amber: #c78532;
  --red: #c95c52;
  --shadow: 0 18px 42px rgba(45, 70, 91, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f4f8fa;
  color: var(--ink);
  font-family: var(--font-rounded);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-rounded);
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(244, 249, 251, 0.98), rgba(255, 255, 255, 0.98) 42%, rgba(237, 246, 245, 0.94));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(154, 180, 196, 0.34);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  width: min(1120px, 100%);
  min-height: 70px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(79, 143, 157, 0.22);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(79, 143, 157, 0.12), rgba(124, 103, 216, 0.11)),
    #ffffff;
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 900;
}

.brand__mark--liflo {
  background:
    linear-gradient(140deg, rgba(16, 185, 129, 0.14), rgba(56, 189, 248, 0.12)),
    #ffffff;
  color: #047857;
}

.brand__label {
  margin: 0 0 2px;
  color: #7a91a1;
  font-size: 10px;
  font-weight: 900;
}

.brand__title {
  margin: 0;
  color: #315765;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  min-height: 36px;
  border-radius: 8px;
  padding: 9px 12px;
  color: #4b6576;
  font-size: 13px;
  font-weight: 900;
}

.nav a.is-primary {
  background: #eef7f8;
  color: var(--accent-strong);
  border: 1px solid rgba(79, 143, 157, 0.18);
}

.hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 26, 43, 0.88) 0%, rgba(18, 47, 65, 0.68) 38%, rgba(18, 47, 65, 0.18) 68%, rgba(255, 255, 255, 0.03) 100%),
    image-set(url("./assets/proflo-hero-dashboard-v04-leftpad.png") 1x);
  background-size: cover, clamp(1180px, 102vw, 2192px) auto;
  background-position: center, 100% 50%;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(244, 248, 250, 0.98));
  pointer-events: none;
}

.hero__inner,
.section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 48px 0 70px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: #bfeaf0;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 900;
}

.hero__subbrand {
  margin: 10px 0 0;
  color: rgba(191, 234, 240, 0.9);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.hero__lead {
  width: min(540px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 700;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero__facts span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.hero__actions,
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.liflo-page {
  --accent: #10b981;
  --accent-strong: #047857;
  --violet: #2563eb;
  --surface-strong: #e9f8f2;
}

.liflo-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #063a3f 0%, #0b5b62 46%, #effcf6 46.2%, #f8fcfb 100%);
}

.liflo-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  background: linear-gradient(180deg, transparent, rgba(244, 248, 250, 0.98));
  pointer-events: none;
}

.liflo-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-height: 620px;
  margin: 0 auto;
  padding: 62px 18px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  gap: 32px;
  align-items: center;
}

.liflo-hero__content {
  color: #ffffff;
}

.liflo-hero__content h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 900;
}

.liflo-hero__content h1 span {
  display: block;
  white-space: nowrap;
}

.liflo-hero__tagline {
  width: max-content;
  max-width: 100%;
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 11px;
  color: #d8fff2;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.liflo-hero__lead {
  width: min(560px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.78;
  font-weight: 700;
}

.liflo-hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.liflo-phone {
  width: min(300px, 78vw);
  aspect-ratio: 9 / 18.5;
  border: 10px solid #122b3a;
  border-radius: 34px;
  background: #122b3a;
  box-shadow: 0 28px 58px rgba(5, 28, 39, 0.28);
  overflow: hidden;
}

.liflo-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #dff7ec;
}

.liflo-phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.04);
}

.liflo-phone__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  box-shadow: 0 16px 34px rgba(15, 52, 62, 0.16);
}

.liflo-phone__overlay span,
.liflo-phone__overlay small {
  display: block;
  color: #617086;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
}

.liflo-phone__overlay strong {
  display: block;
  margin: 5px 0;
  color: #263246;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.liflo-ai-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(310px, 86%);
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 13px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  box-shadow: 0 18px 42px rgba(31, 80, 91, 0.18);
}

.liflo-ai-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.liflo-ai-card span {
  display: block;
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}

.liflo-ai-card strong {
  display: block;
  margin-top: 3px;
  color: #263246;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
}

.liflo-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.liflo-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.liflo-product {
  min-height: 270px;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(37, 99, 235, 0.09)),
    #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 14px 30px rgba(55, 82, 104, 0.09);
}

.liflo-product--connect {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.08)),
    #ffffff;
}

.liflo-product h3 {
  margin: 0;
  color: #263a4a;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.liflo-product p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.liflo-product > span {
  width: max-content;
  max-width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(154, 180, 196, 0.32);
  color: #426979;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.liflo-worlds {
  margin-top: 12px;
}

.text-link,
.muted-label {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-strong);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.muted-label {
  color: #7a91a1;
}

.liflo-about {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
  box-shadow: 0 14px 30px rgba(55, 82, 104, 0.08);
}

.liflo-about h2 {
  margin: 0;
  color: #263a4a;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

.liflo-about p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.liflo-about__quote {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.13), rgba(37, 99, 235, 0.09)),
    #f8fcfd;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.liflo-about__quote strong {
  color: #047857;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.liflo-about__quote span {
  display: block;
  margin-top: 10px;
  color: #33485a;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 800;
}

.button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-strong), var(--violet));
  box-shadow: 0 14px 26px rgba(37, 87, 104, 0.24);
}

.button--light {
  color: #315765;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button--secondary {
  color: #426979;
  background: #eef7f8;
  border: 1px solid rgba(79, 143, 157, 0.2);
}

.button--ghost {
  color: #56697a;
  background: #ffffff;
  border: 1px solid rgba(154, 180, 196, 0.42);
}

.section {
  padding: 42px 0;
}

.section--tight {
  padding-top: 26px;
}

.section--tint {
  background: rgba(238, 247, 248, 0.66);
}

.section__head {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.section__head h2 {
  margin: 0;
  color: #263a4a;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 900;
}

.section__head p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.grid {
  display: grid;
  gap: 12px;
}

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

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

.card {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(55, 82, 104, 0.08);
}

.card__tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eef7f8;
  color: var(--accent-strong);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

.card h3 {
  margin: 0;
  color: #33485a;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 900;
}

.card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.price {
  margin-top: 12px;
  color: #263a4a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.price span {
  display: block;
}

.price small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.plan-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  align-content: start;
  min-height: 275px;
}

.plan-card--featured {
  border-color: rgba(79, 143, 157, 0.54);
  box-shadow: 0 14px 30px rgba(47, 109, 127, 0.13);
}

.plan-card--featured .card__tag {
  background: #e4f3f5;
}

.plan-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.plan-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(154, 180, 196, 0.28);
  padding-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.plan-list strong {
  flex: 0 0 auto;
  color: #33485a;
  font-weight: 900;
}

.plan-list span {
  text-align: right;
}

.plan-note {
  margin: 14px 0 0;
  border: 1px solid rgba(201, 133, 50, 0.22);
  border-radius: 8px;
  background: #fffaf1;
  color: #6b542e;
  padding: 11px 12px;
  font-size: 12px;
  line-height: 1.7;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.flow__item {
  min-height: 110px;
  border: 1px solid rgba(154, 180, 196, 0.32);
  border-radius: 8px;
  background: #ffffff;
  padding: 13px;
}

.flow__num {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.flow__item strong {
  display: block;
  margin-top: 8px;
  color: #33485a;
  font-size: 14px;
  line-height: 1.45;
}

.flow__item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.connect-note {
  margin-bottom: 14px;
  border: 1px solid rgba(154, 180, 196, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.connect-note strong {
  display: block;
  margin-bottom: 4px;
  color: #33485a;
  font-size: 12px;
  font-weight: 900;
}

.connect-note span {
  display: block;
}

.cta-band {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 143, 157, 0.11), rgba(124, 103, 216, 0.11)),
    #ffffff;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band h2 {
  margin: 0;
  color: #263a4a;
  font-size: 24px;
  line-height: 1.28;
}

.cta-band p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.form-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-panel__head {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(79, 143, 157, 0.12), rgba(124, 103, 216, 0.12)),
    #f8fcfd;
  border-bottom: 1px solid rgba(154, 180, 196, 0.28);
}

.form-panel__head h1 {
  margin: 0;
  color: #263a4a;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.form-panel__head p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.form {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field__label {
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
}

.field__hint {
  color: #75879a;
  font-size: 12px;
  line-height: 1.55;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfdceb;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 110px;
  resize: vertical;
  padding: 11px 12px;
  line-height: 1.6;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(79, 143, 157, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 143, 157, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.generated {
  display: none;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(79, 143, 157, 0.24);
  border-radius: 8px;
  background: #f8fcfd;
}

.generated.is-visible {
  display: grid;
  gap: 10px;
}

.generated pre {
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(154, 180, 196, 0.34);
  color: #33485a;
  font-family: var(--font-rounded);
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.note {
  border: 1px solid rgba(201, 133, 50, 0.22);
  border-radius: 8px;
  background: #fffaf1;
  color: #6b542e;
  padding: 12px;
  font-size: 12px;
  line-height: 1.7;
}

.footer {
  padding: 26px 18px 34px;
  color: #778b9d;
  text-align: center;
  font-size: 11px;
  line-height: 1.65;
}

.footer a {
  color: #4e6c7f;
  font-weight: 900;
}

.footer a:hover,
.policy-section a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-hero {
  padding: 56px 0 30px;
  background:
    linear-gradient(135deg, rgba(79, 143, 157, 0.12), rgba(124, 103, 216, 0.1)),
    #f8fcfd;
  border-bottom: 1px solid rgba(154, 180, 196, 0.28);
}

.policy-hero h1 {
  margin: 0;
  color: #263a4a;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.policy-hero p {
  width: min(780px, 100%);
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 700;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.policy-meta span {
  border: 1px solid rgba(79, 143, 157, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #4d697a;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 90px;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  padding: 10px;
  box-shadow: 0 10px 24px rgba(55, 82, 104, 0.08);
}

.policy-toc a {
  display: block;
  border-radius: 8px;
  padding: 9px 10px;
  color: #4b6576;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.policy-toc a:hover {
  background: #eef7f8;
  color: var(--accent-strong);
  text-decoration: none;
}

.policy-body {
  display: grid;
  gap: 12px;
}

.policy-section {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(55, 82, 104, 0.08);
}

.policy-section h2,
.policy-section h3,
.policy-section p,
.policy-section ul,
.policy-section dl {
  margin-top: 0;
}

.policy-section h2 {
  margin-bottom: 12px;
  color: #263a4a;
  font-size: 22px;
  line-height: 1.35;
}

.policy-section h3 {
  margin-bottom: 7px;
  color: #33485a;
  font-size: 16px;
  line-height: 1.45;
}

.policy-section p,
.policy-section li,
.policy-section dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.policy-section p:last-child,
.policy-section ul:last-child,
.policy-section dl:last-child {
  margin-bottom: 0;
}

.policy-section a {
  color: var(--accent-strong);
  font-weight: 900;
}

.policy-defs {
  display: grid;
  gap: 10px;
}

.policy-defs div,
.policy-note-list section {
  border: 1px solid rgba(154, 180, 196, 0.28);
  border-radius: 8px;
  background: #fbfdff;
  padding: 13px;
}

.policy-defs dt {
  margin-bottom: 5px;
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
}

.policy-defs dd {
  margin: 0;
}

.policy-note-list {
  display: grid;
  gap: 10px;
}

@media (max-width: 840px) {
  .grid--3,
  .grid--4,
  .flow {
    grid-template-columns: 1fr;
  }

  .liflo-hero {
    background:
      linear-gradient(180deg, #063a3f 0%, #0b5b62 56%, #effcf6 56.2%, #f8fcfb 100%);
  }

  .liflo-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 44px;
    padding-bottom: 78px;
  }

  .liflo-hero__visual {
    min-height: 470px;
  }

  .liflo-product-grid,
  .liflo-about {
    grid-template-columns: 1fr;
  }

  .liflo-about__quote {
    min-height: 170px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: clamp(600px, 82svh, 680px);
    align-items: start;
    background-image:
      linear-gradient(180deg, rgba(8, 26, 43, 0.92) 0%, rgba(18, 47, 65, 0.82) 44%, rgba(18, 47, 65, 0.34) 72%, rgba(244, 248, 250, 0.98) 100%),
      image-set(url("./assets/proflo-hero-dashboard-v04-leftpad.png") 1x);
    background-size: cover, min(740px, 108vw) auto;
    background-position: center, 62% 108%;
  }

  .hero__content {
    padding: 42px 0 240px;
  }

  .cta-band {
    display: grid;
  }
}

@media (max-width: 560px) {
  .topbar__inner {
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__title {
    font-size: 18px;
  }

  .nav a:not(.is-primary) {
    display: none;
  }

  .hero__inner,
  .section__inner {
    padding-inline: 12px;
  }

  .liflo-hero__inner {
    padding-inline: 12px;
  }

  .liflo-hero__content h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .liflo-hero__tagline {
    font-size: 14px;
  }

  .liflo-hero__lead {
    font-size: 15px;
  }

  .liflo-hero__visual {
    min-height: 430px;
  }

  .liflo-phone {
    width: min(260px, 78vw);
  }

  .liflo-ai-card {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: min(320px, 94%);
    transform: translateX(-50%);
  }

  .liflo-product,
  .liflo-about {
    padding: 16px;
  }

  .liflo-product h3,
  .liflo-about h2 {
    font-size: 24px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__subbrand {
    font-size: 14px;
  }

  .hero {
    min-height: clamp(600px, 84svh, 660px);
    background-size: cover, min(600px, 116vw) auto;
    background-position: center, 64% 112%;
  }

  .hero__content {
    padding: 36px 0 226px;
  }

  .section {
    padding: 34px 0;
  }

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

  .form-panel__head h1 {
    font-size: 24px;
  }

  .policy-hero {
    padding-top: 36px;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-section {
    padding: 16px;
  }
}

/* Redesigned public LP surfaces */
.lp-redesign {
  background: #f7fafb;
}

.lp-redesign .topbar {
  border-bottom-color: rgba(150, 169, 185, 0.28);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.showcase-points span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.94);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.liflo-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 46, 48, 0.95), rgba(5, 90, 80, 0.82) 46%, rgba(245, 252, 248, 0.78) 72%),
    url("../assets/v3/liflo/home/v3-liflo-home-bg-main-idle-a-v01.png");
  background-size: cover, min(930px, 86vw) auto;
  background-position: center, right 10% top 38%;
  background-repeat: no-repeat;
}

.liflo-showcase::after,
.proflo-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, #f7fafb);
  pointer-events: none;
}

.liflo-showcase__ambient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05) 62%, rgba(247, 250, 251, 0.92));
  pointer-events: none;
}

.liflo-showcase__inner,
.proflo-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: 720px;
  margin: 0 auto;
  padding: 64px 18px 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.liflo-showcase__copy,
.proflo-showcase__copy {
  color: #ffffff;
}

.liflo-showcase h1,
.proflo-showcase h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1.02;
  font-weight: 900;
}

.liflo-showcase h1 span,
.proflo-showcase h1 span {
  display: block;
}

.liflo-showcase__lead,
.proflo-showcase__lead {
  width: min(610px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 800;
}

.liflo-showcase__stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.liflo-phone-mock {
  position: relative;
  width: min(336px, 78vw);
  aspect-ratio: 9 / 18.7;
  border: 10px solid #123544;
  border-radius: 36px;
  background: #123544;
  overflow: hidden;
  box-shadow: 0 30px 72px rgba(7, 41, 42, 0.34);
}

.liflo-phone-mock__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.liflo-phone-mock__scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.04) brightness(0.98);
}

.liflo-phone-mock__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 35%, rgba(244, 250, 248, 0.88));
}

.mock-appbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #123544;
}

.mock-appbar strong {
  font-size: 22px;
  font-weight: 900;
}

.mock-appbar span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 5px 9px;
  color: #426979;
  font-size: 11px;
  font-weight: 900;
}

.mock-goal-card,
.mock-balance-card,
.mock-ai-card {
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(11, 48, 54, 0.12);
}

.mock-goal-card {
  margin-top: auto;
  padding: 13px;
}

.mock-goal-card span,
.mock-ai-card span,
.mini-ui span,
.preview-panel__head span {
  display: block;
  color: #648091;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
}

.mock-goal-card strong {
  display: block;
  margin-top: 5px;
  color: #263246;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.mock-goal-card p {
  margin: 7px 0 0;
  color: #617086;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
}

.mock-balance-card {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mock-balance-card div:not(.mock-balance-card__bar) {
  border-radius: 8px;
  background: #f2faf7;
  padding: 9px;
}

.mock-balance-card span {
  display: block;
  color: #648091;
  font-size: 10px;
  font-weight: 900;
}

.mock-balance-card strong {
  display: block;
  margin-top: 3px;
  color: #047857;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.mock-balance-card__bar {
  grid-column: 1 / -1;
  height: 9px;
  border-radius: 999px;
  background: #d8ece8;
  overflow: hidden;
}

.mock-balance-card__bar span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #10b981, #2563eb);
}

.mock-ai-card {
  padding: 12px 13px;
}

.mock-ai-card p {
  margin: 5px 0 0;
  color: #263246;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 900;
}

.balance-visual {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(340px, 88%);
  border: 1px solid rgba(196, 210, 219, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px;
  box-shadow: 0 22px 52px rgba(9, 52, 60, 0.18);
}

.balance-visual__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 10px;
}

.balance-visual__head span {
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}

.balance-visual__head strong {
  color: #263246;
  font-size: 12px;
  font-weight: 900;
}

.balance-visual__map,
.cs-map {
  position: relative;
  height: 174px;
  border: 1px solid rgba(130, 154, 173, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(222, 245, 236, 0.85) 0 50%, rgba(255, 248, 221, 0.85) 50%),
    linear-gradient(180deg, rgba(255, 232, 232, 0.85) 0 50%, rgba(237, 246, 255, 0.85) 50%);
  overflow: hidden;
}

.balance-visual__map::before,
.balance-visual__map::after,
.cs-map::before,
.cs-map::after {
  content: "";
  position: absolute;
  background: rgba(103, 128, 148, 0.28);
}

.balance-visual__map::before,
.cs-map::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.balance-visual__map::after,
.cs-map::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.balance-visual__axis,
.cs-map__label {
  position: absolute;
  z-index: 1;
  color: #648091;
  font-size: 10px;
  font-weight: 900;
}

.balance-visual__axis--y,
.cs-map__label--top {
  top: 8px;
  left: 10px;
}

.balance-visual__axis--x,
.cs-map__label--bottom {
  right: 10px;
  bottom: 8px;
}

.balance-visual__dot,
.cs-map__dot {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.68);
}

.balance-visual__dot--user,
.cs-map__dot--user {
  left: 56%;
  top: 37%;
  background: #2563eb;
}

.balance-visual__dot--ai,
.cs-map__dot--ai {
  left: 44%;
  top: 30%;
  background: #10b981;
}

.balance-visual__legend {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  color: #617086;
  font-size: 11px;
  font-weight: 900;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 5px;
}

.legend-dot--user {
  background: #2563eb;
}

.legend-dot--ai {
  background: #10b981;
}

.lp-strip {
  border-bottom: 1px solid rgba(154, 180, 196, 0.26);
  background: #ffffff;
}

.lp-strip__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-strip__inner div {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.lp-strip__inner strong,
.lp-strip__inner span {
  display: block;
}

.lp-strip__inner strong {
  color: #263246;
  font-size: 14px;
  font-weight: 900;
}

.lp-strip__inner span {
  margin-top: 4px;
  color: #617086;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.split-head h2 {
  margin: 0;
  color: #263a4a;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.split-head > p {
  margin: 0;
  color: #617086;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 700;
}

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

.experience-card {
  min-height: 285px;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(55, 82, 104, 0.08);
}

.experience-card__num {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.experience-card h3 {
  margin: 10px 0 0;
  color: #263a4a;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.experience-card p {
  margin: 9px 0 0;
  color: #617086;
  font-size: 13px;
  line-height: 1.75;
}

.mini-ui {
  margin-top: auto;
  border: 1px solid rgba(154, 180, 196, 0.3);
  border-radius: 8px;
  background: #f8fcfd;
  padding: 13px;
}

.mini-ui--goal strong,
.mini-ui--ai strong {
  display: block;
  color: #263246;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
}

.mini-ui--goal span {
  margin-top: 7px;
}

.mini-ui--score {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-ui--score div {
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  text-align: center;
}

.mini-ui--score strong {
  display: block;
  color: var(--accent-strong);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.mini-ui--ai span {
  color: var(--accent-strong);
}

.product-tiles {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.product-tile {
  min-height: 250px;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  padding: 19px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(55, 82, 104, 0.08);
}

.product-tile--primary {
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.14), rgba(37, 99, 235, 0.09)),
    #ffffff;
}

.product-tile h3 {
  margin: 0;
  color: #263a4a;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.product-tile p {
  margin: 11px 0 0;
  color: #617086;
  font-size: 13px;
  line-height: 1.8;
}

.product-tile > span,
.product-tile .text-link {
  margin-top: auto;
}

.about-band {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(37, 99, 235, 0.06)),
    #ffffff;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  box-shadow: 0 12px 28px rgba(55, 82, 104, 0.08);
}

.about-band h2 {
  margin: 0;
  color: #263a4a;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 900;
}

.about-band p {
  margin: 12px 0 0;
  color: #617086;
  font-size: 14px;
  line-height: 1.9;
}

.about-band__quote {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(154, 180, 196, 0.3);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-band__quote strong,
.about-band__quote span {
  display: block;
}

.about-band__quote strong {
  color: var(--accent-strong);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.about-band__quote span {
  margin-top: 10px;
  color: #33485a;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 800;
}

.cta-band--strong {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(37, 99, 235, 0.1)),
    #ffffff;
}

.about-page {
  --accent: #10b981;
  --accent-strong: #047857;
  --violet: #2563eb;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
  background:
    linear-gradient(135deg, rgba(3, 46, 48, 0.96), rgba(5, 90, 80, 0.86)),
    url("../assets/v3/liflo/home/v3-liflo-home-bg-main-idle-a-v01.png");
  background-size: cover, min(820px, 80vw) auto;
  background-position: center, right 12% center;
  background-repeat: no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 78px;
  background: linear-gradient(180deg, transparent, #f7fafb);
  pointer-events: none;
}

.about-hero__layout {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 900;
}

.about-hero p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 800;
}

.about-identity-card {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  box-shadow: 0 26px 60px rgba(9, 52, 60, 0.18);
}

.about-identity-card span,
.about-identity-card strong {
  display: block;
}

.about-identity-card span {
  color: #047857;
  font-size: 13px;
  font-weight: 900;
}

.about-identity-card strong {
  margin-top: 9px;
  color: #263246;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.about-story__main,
.about-story__side,
.about-service-card,
.about-note-band {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(55, 82, 104, 0.08);
}

.about-story__main {
  padding: 24px;
}

.about-story__main h2,
.about-note-band h2 {
  margin: 0;
  color: #263a4a;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 900;
}

.about-story__main p:not(.eyebrow),
.about-note-band p {
  margin: 12px 0 0;
  color: #617086;
  font-size: 14px;
  line-height: 1.9;
}

.about-story__side {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.13), rgba(37, 99, 235, 0.08)),
    #ffffff;
}

.about-story__side strong {
  color: #047857;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.about-story__side span {
  display: block;
  margin-top: 10px;
  color: #33485a;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
}

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

.about-service-card {
  min-height: 275px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.about-service-card h3 {
  margin: 0;
  color: #263a4a;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
}

.about-service-card p {
  margin: 10px 0 0;
  color: #617086;
  font-size: 13px;
  line-height: 1.8;
}

.about-service-card .text-link,
.about-service-card .muted-label {
  margin-top: auto;
}

.about-note-band {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.proflo-page {
  --accent: #284593;
  --accent-strong: #1d357d;
  --violet: #6f63d9;
  --green: #2f9f76;
}

.proflo-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, #081a2f 0%, #132f68 47%, #f5f8fc 47.2%, #ffffff 100%);
}

.proflo-showcase__inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.1fr);
}

.proflo-showcase__subbrand {
  margin: 12px 0 0;
  color: rgba(205, 223, 255, 0.92);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.proflo-showcase__stage {
  position: relative;
  min-height: 560px;
}

.admin-mock {
  position: absolute;
  top: 34px;
  right: 0;
  width: min(650px, 100%);
  border: 1px solid rgba(157, 174, 202, 0.34);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 28px 70px rgba(11, 26, 47, 0.22);
}

.admin-mock__top,
.admin-mock__panel-head,
.staff-phone-mock__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.admin-mock__top strong {
  color: #1f2b3d;
  font-size: 22px;
  font-weight: 900;
}

.admin-mock__top span,
.staff-phone-mock__head span {
  border-radius: 999px;
  background: #eef3fb;
  color: #53677f;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
}

.admin-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.admin-mock__stats div {
  min-height: 92px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 13px;
}

.admin-mock__stats span {
  display: block;
  color: #7b8da6;
  font-size: 11px;
  font-weight: 900;
}

.admin-mock__stats strong {
  display: block;
  margin-top: 8px;
  color: #1d357d;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.admin-mock__panel {
  margin-top: 12px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.admin-mock__panel-head strong {
  color: #1f2b3d;
  font-size: 15px;
  font-weight: 900;
}

.admin-mock__panel-head span {
  color: #7b8da6;
  font-size: 11px;
  font-weight: 900;
}

.risk-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  border-radius: 8px;
  background: #fff4f4;
  padding: 10px;
}

.risk-row--soft {
  background: #fff9ec;
}

.risk-row span {
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
}

.risk-row i {
  border-radius: 999px;
  background: #ffffff;
  color: #c6535a;
  padding: 5px 7px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.risk-row--soft i {
  color: #bd7c2b;
}

.admin-mock__chart {
  position: relative;
  height: 118px;
  margin-top: 13px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 24%, rgba(120, 139, 166, 0.13) 24% 25%, transparent 25% 49%, rgba(120, 139, 166, 0.13) 49% 50%, transparent 50% 74%, rgba(120, 139, 166, 0.13) 74% 75%, transparent 75%),
    #ffffff;
  overflow: hidden;
}

.admin-mock__chart span {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 64px;
  border-radius: 64px 64px 0 0;
  border: 5px solid #284593;
  border-bottom: 0;
  opacity: 0.86;
}

.staff-phone-mock {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 238px;
  border: 8px solid #14233a;
  border-radius: 30px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 26px 56px rgba(11, 26, 47, 0.22);
}

.staff-phone-mock__head strong {
  color: #1f2b3d;
  font-size: 22px;
  font-weight: 900;
}

.staff-phone-mock section {
  margin-top: 18px;
  border-radius: 8px;
  background: #eef3fb;
  padding: 13px;
}

.staff-phone-mock small {
  display: block;
  color: #778b9d;
  font-size: 10px;
  font-weight: 900;
}

.staff-phone-mock section strong {
  display: block;
  margin-top: 6px;
  color: #1f2b3d;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.staff-phone-mock p {
  margin: 8px 0 0;
  color: #53677f;
  font-size: 12px;
  font-weight: 900;
}

.staff-phone-mock__button {
  margin-top: 14px;
  border-radius: 8px;
  background: #284593;
  color: #ffffff;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.lp-strip--proflo .lp-strip__inner div {
  border-left-color: #284593;
}

.preview-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
}

.preview-panel {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(55, 82, 104, 0.08);
}

.preview-panel__head {
  margin-bottom: 14px;
}

.preview-panel__head strong {
  display: block;
  margin-top: 3px;
  color: #263a4a;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.preview-panel p {
  margin: 13px 0 0;
  color: #617086;
  font-size: 13px;
  line-height: 1.75;
}

.manager-list {
  display: grid;
  gap: 9px;
}

.manager-list div {
  min-height: 54px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.manager-list strong {
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
}

.pill-red,
.pill-amber,
.pill-green {
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

.pill-red {
  background: #ffe8ea;
  color: #c6535a;
}

.pill-amber {
  background: #fff2d7;
  color: #bd7c2b;
}

.pill-green {
  background: #e4f6ee;
  color: #2f9f76;
}

@media (max-width: 980px) {
  .liflo-showcase__inner,
  .proflo-showcase__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .proflo-showcase {
    background:
      linear-gradient(180deg, #081a2f, #132f68 62%, #f7fafb 100%);
  }

  .liflo-showcase__stage {
    min-height: 570px;
  }

  .proflo-showcase__stage {
    min-height: 610px;
  }

  .admin-mock {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .staff-phone-mock {
    left: 12px;
  }

  .split-head,
  .product-tiles,
  .preview-layout,
  .about-band,
  .about-hero__layout,
  .about-story,
  .about-service-grid {
    grid-template-columns: 1fr;
  }

  .about-note-band {
    display: grid;
  }
}

@media (max-width: 760px) {
  .liflo-showcase,
  .proflo-showcase {
    background-image:
      linear-gradient(180deg, rgba(3, 46, 48, 0.96), rgba(5, 90, 80, 0.86) 56%, rgba(247, 250, 251, 0.98) 100%);
  }

  .proflo-showcase {
    background-image:
      linear-gradient(180deg, #081a2f, #132f68 62%, #f7fafb 100%);
  }

  .liflo-showcase__inner,
  .proflo-showcase__inner,
  .lp-strip__inner {
    padding-inline: 12px;
  }

  .about-hero {
    padding-top: 48px;
  }

  .about-hero__layout {
    min-height: 0;
  }

  .about-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .about-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .about-identity-card,
  .about-story__main,
  .about-story__side,
  .about-service-card,
  .about-note-band {
    padding: 16px;
  }

  .liflo-showcase h1,
  .proflo-showcase h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .liflo-showcase__lead,
  .proflo-showcase__lead {
    font-size: 15px;
  }

  .liflo-showcase__stage {
    min-height: 530px;
  }

  .liflo-phone-mock {
    width: min(292px, 84vw);
  }

  .balance-visual {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(330px, 94vw);
    transform: translateX(-50%);
  }

  .lp-strip__inner,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .admin-mock {
    top: 20px;
    width: min(560px, 96vw);
  }

  .staff-phone-mock {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .proflo-showcase__stage {
    min-height: 720px;
  }

  .admin-mock__chart {
    height: 86px;
  }

  .risk-row {
    grid-template-columns: 1fr;
  }

  .showcase-actions .button {
    width: 100%;
  }
}

/* Platform / Personal LP refinements */
.platform-page {
  --accent: #168775;
  --accent-strong: #08675b;
  --violet: #284593;
  --green: #2f9f76;
}

.platform-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, #092536 0%, #0d4552 45%, #f5f9fc 45.2%, #ffffff 100%);
}

.platform-showcase::after,
.personal-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, #f7fafb);
  pointer-events: none;
}

.platform-showcase__inner,
.personal-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: 720px;
  margin: 0 auto;
  padding: 64px 18px 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1fr);
  gap: 34px;
  align-items: center;
}

.platform-showcase__copy,
.personal-showcase__copy {
  color: #ffffff;
}

.platform-showcase h1,
.personal-showcase h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1.02;
  font-weight: 900;
}

.platform-showcase h1 span,
.personal-showcase h1 span {
  display: block;
}

.platform-showcase__lead,
.personal-showcase__lead {
  width: min(610px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 800;
}

.platform-visual {
  position: relative;
  min-height: 610px;
}

.platform-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 48%;
  width: 220px;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 242, 0.96));
  box-shadow: 0 26px 62px rgba(8, 35, 54, 0.22);
  padding: 22px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-core::before,
.platform-core::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(22, 135, 117, 0.22);
}

.platform-core::before {
  left: -210px;
  right: -210px;
  top: 50%;
  height: 1px;
}

.platform-core::after {
  top: -190px;
  bottom: -190px;
  left: 50%;
  width: 1px;
}

.platform-core span,
.platform-core small,
.platform-card span,
.platform-lane span,
.visual-tile__body span,
.personal-float-card span {
  display: block;
  color: #6d8295;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
}

.platform-core strong {
  display: block;
  margin-top: 8px;
  color: #0b2f3e;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
}

.platform-core small {
  margin-top: 10px;
  color: #168775;
}

.platform-card {
  position: absolute;
  z-index: 2;
  width: min(270px, 44%);
  border: 1px solid rgba(178, 196, 211, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(8, 35, 54, 0.16);
  padding: 12px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.platform-card--personal {
  left: 0;
  top: 28px;
}

.platform-card--connect {
  right: 10px;
  top: 72px;
}

.platform-card--proflo {
  right: 0;
  bottom: 42px;
}

.platform-card--manaflo {
  left: 24px;
  bottom: 76px;
}

.platform-card__media,
.platform-card__mock {
  height: 76px;
  border-radius: 8px;
  background: #eef5f7;
  overflow: hidden;
}

.platform-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.platform-card__media--icon {
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(40, 69, 147, 0.1)),
    #ffffff;
  padding: 9px;
}

.platform-card__media--icon img {
  object-fit: contain;
}

.platform-card__mock {
  padding: 9px;
  display: grid;
  gap: 7px;
}

.platform-card__mock i {
  display: block;
  border-radius: 999px;
  background: #d9e8ee;
}

.platform-card__mock i:nth-child(1) {
  width: 80%;
  background: #284593;
}

.platform-card__mock i:nth-child(2) {
  width: 64%;
  background: #2f9f76;
}

.platform-card__mock i:nth-child(3) {
  width: 72%;
  background: #e5a543;
}

.platform-card strong {
  display: block;
  margin-top: 4px;
  color: #263246;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

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

.visual-tile {
  min-height: 430px;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(55, 82, 104, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.visual-tile__image {
  position: relative;
  height: 230px;
  min-height: 0;
  background: #eef4f7;
  overflow: hidden;
}

.visual-tile__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.visual-tile--personal .visual-tile__image img {
  object-position: center 30%;
}

.visual-tile--proflo .visual-tile__image img {
  object-position: right center;
}

.visual-tile__body {
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.visual-tile__body h3 {
  margin: 5px 0 0;
  color: #263a4a;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.visual-tile__body p {
  margin: 10px 0 0;
  color: #617086;
  font-size: 13px;
  line-height: 1.8;
}

.visual-tile__body .text-link {
  margin-top: auto;
}

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

.platform-lane {
  min-height: 260px;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(55, 82, 104, 0.08);
  display: flex;
  flex-direction: column;
}

.platform-lane img {
  width: 106px;
  height: 106px;
  object-fit: contain;
  align-self: center;
  margin-bottom: 14px;
}

.platform-lane h3 {
  margin: 4px 0 0;
  color: #263a4a;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.platform-lane p {
  margin: 9px 0 0;
  color: #617086;
  font-size: 13px;
  line-height: 1.7;
}

.personal-page {
  --accent: #168775;
  --accent-strong: #08675b;
  --violet: #284593;
}

.personal-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 46, 48, 0.95), rgba(5, 90, 80, 0.82) 48%, rgba(245, 252, 248, 0.74) 76%),
    url("../assets/v3/liflo/home/v3-liflo-home-bg-main-idle-a-v01.png");
  background-size: cover, min(930px, 86vw) auto;
  background-position: center, right 10% top 38%;
  background-repeat: no-repeat;
}

.personal-device-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.liflo-phone-mock--personal {
  width: min(344px, 78vw);
}

.personal-float-card {
  position: absolute;
  right: 10px;
  bottom: 48px;
  width: min(330px, 88%);
  border: 1px solid rgba(196, 210, 219, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px;
  box-shadow: 0 22px 52px rgba(9, 52, 60, 0.18);
}

.personal-float-card strong {
  display: block;
  margin-top: 4px;
  color: #263246;
  font-size: 15px;
  font-weight: 900;
}

.mini-cs-map {
  position: relative;
  height: 130px;
  margin-top: 12px;
  border: 1px solid rgba(130, 154, 173, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(222, 245, 236, 0.85) 0 50%, rgba(255, 248, 221, 0.85) 50%),
    linear-gradient(180deg, rgba(255, 232, 232, 0.85) 0 50%, rgba(237, 246, 255, 0.85) 50%);
}

.mini-cs-map::before,
.mini-cs-map::after {
  content: "";
  position: absolute;
  background: rgba(103, 128, 148, 0.28);
}

.mini-cs-map::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.mini-cs-map::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.mini-cs-map i {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.68);
}

.mini-cs-map__user {
  left: 58%;
  top: 38%;
  background: #2563eb;
}

.mini-cs-map__ai {
  left: 44%;
  top: 31%;
  background: #10b981;
}

.proflo-showcase {
  background:
    linear-gradient(112deg, #081a2f 0%, #132f68 58%, #f4f8fc 58.2%, #ffffff 100%);
}

.proflo-showcase__copy {
  max-width: 590px;
}

.proflo-showcase__stage--image {
  min-height: 560px;
}

.proflo-hero-image {
  position: absolute;
  top: 38px;
  right: 0;
  width: min(680px, 100%);
  margin: 0;
  border: 1px solid rgba(157, 174, 202, 0.34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 72px rgba(11, 26, 47, 0.22);
  overflow: hidden;
}

.proflo-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  object-position: right center;
}

.proflo-hero-image figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #53677f;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
}

.staff-phone-mock--hero {
  left: 18px;
  bottom: 18px;
}

.visual-tile--wide .visual-tile__image {
  height: 260px;
  min-height: 0;
}

.visual-tile--wide .visual-tile__image img {
  min-height: 0;
}

.lp-redesign [id] {
  scroll-margin-top: 92px;
}

.visual-tile--check .visual-tile__image img {
  object-fit: contain;
  padding: 18px;
  background: #f3f7fb;
}

@media (max-width: 980px) {
  .proflo-showcase {
    background:
      linear-gradient(180deg, #081a2f, #132f68 58%, #f7fafb 100%);
  }

  .platform-showcase {
    background:
      linear-gradient(180deg, #092536, #0d4552 58%, #f7fafb 100%);
  }

  .platform-showcase__inner,
  .personal-showcase__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .platform-visual {
    min-height: 620px;
  }

  .platform-core {
    top: 50%;
  }

  .service-visual-grid,
  .platform-lanes {
    grid-template-columns: 1fr 1fr;
  }

  .proflo-hero-image {
    left: 50%;
    right: auto;
    width: min(660px, 96vw);
    transform: translateX(-50%);
  }

  .proflo-showcase__stage--image {
    min-height: 630px;
  }
}

@media (max-width: 760px) {
  .platform-showcase,
  .personal-showcase {
    background-image:
      linear-gradient(180deg, rgba(3, 46, 48, 0.96), rgba(5, 90, 80, 0.86) 58%, rgba(247, 250, 251, 0.98) 100%);
  }

  .platform-showcase__inner,
  .personal-showcase__inner {
    padding-inline: 12px;
  }

  .platform-showcase h1,
  .personal-showcase h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .platform-showcase__lead,
  .personal-showcase__lead {
    font-size: 15px;
  }

  .platform-visual {
    min-height: 760px;
  }

  .platform-core {
    top: 52%;
    width: min(220px, 70vw);
  }

  .platform-core::before,
  .platform-core::after {
    display: none;
  }

  .platform-card {
    width: min(318px, 92vw);
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .platform-card--personal {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .platform-card--connect {
    left: 50%;
    right: auto;
    top: 150px;
    transform: translateX(-50%);
  }

  .platform-card--proflo {
    left: 50%;
    right: auto;
    bottom: 148px;
    transform: translateX(-50%);
  }

  .platform-card--manaflo {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .service-visual-grid,
  .platform-lanes {
    grid-template-columns: 1fr;
  }

  .visual-tile {
    min-height: 0;
  }

  .personal-device-stage {
    min-height: 620px;
  }

  .personal-float-card {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(330px, 94vw);
    transform: translateX(-50%);
  }

  .proflo-showcase__stage--image {
    min-height: 640px;
  }

  .proflo-hero-image {
    top: 20px;
  }

  .proflo-hero-image img {
    aspect-ratio: 16 / 10;
  }

  .staff-phone-mock--hero {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

/* Public launch LP design */
.launch-page {
  --launch-ink: #142231;
  --launch-muted: #5f6f80;
  --launch-line: #dbe5ed;
  --launch-paper: #ffffff;
  --launch-soft: #f4f8f7;
  --launch-green: #22866f;
  --launch-green-dark: #0e5e53;
  --launch-blue: #263f8d;
  --launch-gold: #d6a53b;
  background: #ffffff;
  color: var(--launch-ink);
}

.launch-page .topbar {
  border-bottom: 1px solid rgba(205, 218, 226, 0.72);
  background: rgba(255, 255, 255, 0.94);
}

.launch-page .topbar__inner {
  width: min(1180px, 100%);
  min-height: 68px;
}

.launch-brand .brand__asset {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(186, 203, 214, 0.72);
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.launch-brand .brand__asset img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.launch-brand .brand__asset--coin img {
  width: 42px;
  height: 42px;
}

.launch-brand .brand__label {
  color: #7d8d9a;
  font-size: 10px;
  letter-spacing: 0;
}

.launch-brand .brand__title {
  color: #172533;
  font-size: 20px;
}

.launch-nav a {
  color: #42546a;
  border-radius: 8px;
}

.launch-nav a:hover,
.launch-nav a.is-primary {
  background: #f0f6f5;
  color: var(--launch-green-dark);
}

.launch-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 22px;
}

.launch-hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.launch-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.launch-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 110px;
}

.launch-hero__content > * {
  max-width: 610px;
}

.launch-hero__image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.launch-hero--world {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.8) 56%, rgba(244, 248, 247, 0.96) 100%);
}

.launch-hero__image--family {
  right: max(-70px, calc((100vw - 1180px) / 2 - 20px));
  bottom: 88px;
  width: min(760px, 58vw);
  filter: drop-shadow(0 28px 34px rgba(36, 59, 77, 0.12));
}

.launch-family-hero {
  position: absolute;
  z-index: 1;
  right: max(-40px, calc((100vw - 1180px) / 2 - 8px));
  bottom: 104px;
  width: min(720px, 55vw);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 28px 34px rgba(36, 59, 77, 0.12));
}

.launch-family-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.launch-hero--life {
  background:
    linear-gradient(90deg, rgba(7, 49, 43, 0.94) 0%, rgba(13, 93, 79, 0.84) 43%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0.9) 100%),
    url("../assets/v3/liflo/home/v3-liflo-home-bg-main-idle-a-v01.png");
  background-size: cover, min(980px, 78vw) auto;
  background-position: center, right center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.launch-hero--life::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f7faf8);
}

.launch-hero__image--coin {
  right: max(70px, calc((100vw - 1180px) / 2 + 70px));
  top: 132px;
  width: min(330px, 31vw);
  filter: drop-shadow(0 30px 34px rgba(43, 57, 45, 0.22));
}

.launch-hero--proflo {
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 38%, rgba(34, 98, 132, 0.28), transparent 34%),
    linear-gradient(135deg, #06182d 0%, #0a203b 58%, #0d2c48 100%);
  color: #ffffff;
}

.proflo-hero-layout {
  position: relative;
  z-index: 2;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(54px, 6vw, 84px);
  display: block;
}

.proflo-hero-content {
  padding: 0;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.proflo-hero-content > * {
  max-width: none;
}

.proflo-hero-copy {
  max-width: 650px;
}

.launch-hero--proflo::after {
  display: none;
}

.proflo-hero-showcase {
  position: relative;
  aspect-ratio: 1.32 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 24, 45, 0), rgba(6, 24, 45, 0.16)),
    #06182d;
  box-shadow: 0 34px 72px rgba(2, 14, 33, 0.34);
}

.proflo-hero-showcase img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 132%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right bottom;
}

.launch-kicker {
  margin: 0 0 14px;
  color: var(--launch-green);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
}

.launch-hero--life .launch-kicker,
.launch-hero--proflo .launch-kicker,
.launch-section--ink .launch-kicker {
  color: #aee7d5;
}

.launch-hero h1 {
  margin: 0;
  color: inherit;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.launch-hero h1 span {
  display: block;
}

.launch-lead,
.launch-section__head > p,
.split-feature p,
.connect-band p,
.world-card p,
.feature-row p,
.proflo-flow p,
.pricing-grid p {
  color: var(--launch-muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.launch-hero--life .launch-lead,
.launch-hero--proflo .launch-lead {
  color: rgba(255, 255, 255, 0.9);
}

.launch-hero--proflo h1 {
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.08;
}

.launch-hero--proflo .launch-lead {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.9;
}

.launch-lead {
  margin: 22px 0 0;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.launch-page .button {
  min-height: 46px;
  border-radius: 8px;
  padding: 13px 18px;
}

.launch-page .button--primary {
  background: #183f8f;
  box-shadow: 0 18px 34px rgba(24, 63, 143, 0.22);
}

.launch-page .button--secondary {
  color: #17354a;
  background: #ffffff;
  border: 1px solid rgba(186, 203, 214, 0.72);
}

.launch-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.launch-proof span {
  border: 1px solid rgba(174, 194, 205, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #40576a;
  padding: 8px 11px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.launch-hero--proflo .launch-proof span {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.launch-section {
  padding: 88px 0;
  background: #ffffff;
}

.launch-section--soft {
  background: #f5f9f8;
}

.launch-section--issue {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.launch-section--ink {
  background: #0b2233;
  color: #ffffff;
}

.launch-section__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.launch-section__head h2,
.split-feature h2,
.connect-band h2 {
  margin: 0;
  color: inherit;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.launch-section__head > p,
.split-feature p,
.connect-band p {
  margin: 15px 0 0;
}

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

.issue-grid article {
  min-height: 330px;
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 38px rgba(42, 64, 80, 0.08);
}

.issue-grid span {
  color: var(--launch-green);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.issue-grid h3 {
  margin: 9px 0 0;
  color: var(--launch-ink);
  font-size: 20px;
  line-height: 1.34;
  font-weight: 900;
}

.issue-grid p {
  margin: 12px 0 0;
  color: var(--launch-muted);
  font-size: 13px;
  line-height: 1.82;
  font-weight: 800;
}

.issue-visual {
  position: relative;
  min-height: 106px;
  margin-top: auto;
  border: 1px solid rgba(201, 215, 224, 0.62);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 20%, rgba(174, 231, 213, 0.34), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.issue-visual::before {
  content: "";
  position: absolute;
  inset: auto 12px 12px;
  height: 1px;
  background: rgba(154, 180, 196, 0.42);
}

.issue-visual__avatar {
  position: absolute;
  left: 16px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 21%, transparent 22%),
    linear-gradient(180deg, #dff7ec, #aee7d5);
  border: 2px solid #ffffff;
  box-shadow: 0 10px 18px rgba(42, 64, 80, 0.12);
}

.issue-visual__bar {
  position: absolute;
  left: 66px;
  height: 10px;
  border-radius: 999px;
  background: #dfe8f1;
}

.issue-visual__bar--one {
  top: 34px;
  width: 56%;
}

.issue-visual__bar--two {
  top: 56px;
  width: 38%;
  background: #f2c9bd;
}

.issue-visual__alert,
.issue-visual__notice {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #c95c52;
  box-shadow: 0 10px 20px rgba(201, 92, 82, 0.22);
}

.issue-visual__alert::after,
.issue-visual__notice::after {
  content: "!";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.issue-visual--formal {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px;
}

.issue-visual__sheet {
  min-height: 58px;
  border: 1px solid rgba(154, 180, 196, 0.52);
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #33485a;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(42, 64, 80, 0.08);
}

.issue-visual__break {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #c95c52 0 8px, transparent 8px 14px);
}

.issue-visual__break::before,
.issue-visual__break::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c95c52;
  transform: translateY(-50%);
}

.issue-visual__break::before {
  left: -2px;
}

.issue-visual__break::after {
  right: -2px;
}

.issue-visual--gap {
  background:
    radial-gradient(circle at 22% 18%, rgba(79, 143, 157, 0.16), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(201, 133, 50, 0.15), transparent 30%),
    #ffffff;
}

.issue-visual__bubble {
  position: absolute;
  min-width: 78px;
  border-radius: 8px;
  padding: 9px 11px;
  color: #33485a;
  background: #eef7f8;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.issue-visual__bubble--left {
  left: 18px;
  top: 20px;
}

.issue-visual__bubble--right {
  right: 18px;
  bottom: 20px;
  background: #fff7ec;
}

.issue-visual__gapline {
  position: absolute;
  left: 35%;
  top: 50%;
  width: 30%;
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(47, 109, 127, 0.55) 0 8px, transparent 8px 14px);
  transform: rotate(-12deg);
}

.issue-visual--busy {
  background:
    linear-gradient(135deg, rgba(24, 63, 143, 0.08), rgba(79, 143, 157, 0.08)),
    #ffffff;
}

.issue-visual__dashboard {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 48%;
  height: 68px;
  border: 1px solid rgba(154, 180, 196, 0.54);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #183f8f 0 16px, transparent 16px),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 22px rgba(42, 64, 80, 0.1);
}

.issue-visual__dashboard::before,
.issue-visual__dashboard::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 10px;
  height: 8px;
  border-radius: 999px;
  background: #dfe8f1;
}

.issue-visual__dashboard::before {
  top: 18px;
}

.issue-visual__dashboard::after {
  top: 38px;
  width: 44%;
  background: #aee7d5;
}

.issue-visual__todo {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 86px;
  height: 46px;
  border-radius: 8px;
  background: #fff7ec;
  border: 1px solid rgba(201, 133, 50, 0.24);
}

.issue-visual__todo::before,
.issue-visual__todo::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 7px;
  border-radius: 999px;
  background: rgba(201, 133, 50, 0.36);
}

.issue-visual__todo::before {
  top: 12px;
}

.issue-visual__todo::after {
  top: 27px;
  right: 32px;
}

.issue-solution {
  margin-top: 16px;
  border: 1px solid rgba(38, 63, 141, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(174, 231, 213, 0.28), transparent 30%),
    linear-gradient(135deg, #0c2440 0%, #123a66 100%);
  color: #ffffff;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  box-shadow: 0 24px 52px rgba(9, 31, 59, 0.16);
}

.issue-solution h3 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 900;
}

.issue-solution p:not(.launch-kicker) {
  max-width: 760px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 800;
}

.issue-solution__next {
  color: #d7fff0;
  font-size: 13px;
}

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

.world-card {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 38px rgba(42, 64, 80, 0.08);
  overflow: hidden;
}

.world-card--life {
  background: linear-gradient(180deg, #fffaf0, #ffffff 42%);
}

.world-card--learn {
  background: linear-gradient(180deg, #f0f8ff, #ffffff 42%);
}

.world-card--cheer {
  background: linear-gradient(180deg, #fff8df, #ffffff 42%);
}

.world-card--pro {
  background: linear-gradient(180deg, #edf3ff, #ffffff 42%);
}

.world-card__icon {
  width: 118px;
  height: 118px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}

.world-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.world-card__icon--wood,
.world-card__icon--color {
  padding: 0;
}

.world-card__icon--color {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.world-card__character {
  position: absolute;
  right: 16px;
  top: 22px;
  width: 108px;
  height: 108px;
  object-fit: contain;
  opacity: 0.94;
}

.world-card span,
.feature-row span,
.proflo-flow span,
.pricing-grid span,
.step-list span {
  color: var(--launch-green);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.world-card h3,
.feature-row h3,
.proflo-flow h3,
.pricing-grid h3 {
  margin: 8px 0 0;
  color: var(--launch-ink);
  font-size: 25px;
  line-height: 1.24;
  font-weight: 900;
}

.world-card p {
  margin: 12px 0 0;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.split-feature--reverse {
  grid-template-columns: minmax(420px, 0.85fr) minmax(0, 1fr);
}

.logic-board {
  border: 1px solid rgba(177, 202, 211, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.logic-board__map {
  position: relative;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 150, 119, 0.26) 0 50%, rgba(214, 165, 59, 0.22) 50%),
    linear-gradient(180deg, rgba(218, 94, 94, 0.2) 0 50%, rgba(58, 116, 199, 0.2) 50%);
}

.logic-board__map::before,
.logic-board__map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.34);
}

.logic-board__map::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.logic-board__map::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.logic-board__map span {
  position: absolute;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.logic-board__map span:first-child {
  left: 16px;
  top: 14px;
}

.logic-board__map span:nth-child(2) {
  right: 16px;
  bottom: 14px;
}

.logic-board__dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
}

.logic-board__dot--user {
  left: 58%;
  top: 42%;
  background: #ffffff;
}

.logic-board__dot--ai {
  left: 45%;
  top: 34%;
  background: #6ee7b7;
}

.logic-board__legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
}

.connect-band {
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 44px rgba(42, 64, 80, 0.08);
}

.connect-band > img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.connect-band--life {
  grid-template-columns: 260px minmax(0, 1fr) auto;
}

.connect-band--life > img {
  width: 260px;
  height: 122px;
  object-fit: cover;
  object-position: left center;
  border-radius: 8px;
}

.family-mini {
  width: 260px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  align-items: end;
}

.family-mini img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.connect-band--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.connect-band--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.life-phone {
  width: min(390px, 100%);
  margin: 0 auto;
  border: 10px solid #142d35;
  border-radius: 36px;
  background: #142d35;
  box-shadow: 0 30px 64px rgba(25, 57, 54, 0.22);
  overflow: hidden;
}

.experience-demo {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.experience-demo__phone {
  width: min(340px, 100%);
  border: 10px solid #142d35;
  border-radius: 36px;
  background: #142d35;
  box-shadow: 0 30px 64px rgba(25, 57, 54, 0.22);
  overflow: hidden;
}

.experience-demo__map {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: min(300px, 74%);
  height: 220px;
  border: 1px solid rgba(201, 215, 224, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 150, 119, 0.13) 0 50%, rgba(214, 165, 59, 0.13) 50%),
    linear-gradient(180deg, rgba(218, 94, 94, 0.1) 0 50%, rgba(58, 116, 199, 0.11) 50%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(42, 64, 80, 0.12);
}

.experience-demo__map::before,
.experience-demo__map::after {
  content: "";
  position: absolute;
  background: rgba(97, 112, 134, 0.22);
}

.experience-demo__map::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.experience-demo__map::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.experience-demo__map span {
  position: absolute;
  z-index: 2;
  color: #617086;
  font-size: 11px;
  font-weight: 900;
}

.experience-demo__map span:first-child {
  left: 14px;
  top: 12px;
}

.experience-demo__map span:nth-child(2) {
  right: 14px;
  bottom: 12px;
}

.personal-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr) minmax(0, 0.82fr);
  gap: 16px;
  align-items: center;
}

.personal-experience-grid .experience-demo {
  min-height: 520px;
}

.personal-demo-card {
  min-height: 230px;
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
  box-shadow: 0 18px 44px rgba(42, 64, 80, 0.08);
}

.personal-demo-card--next {
  border-color: rgba(34, 134, 111, 0.26);
  background: linear-gradient(135deg, #ffffff, #f0faf5);
}

.personal-demo-card > span {
  color: var(--launch-green);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.personal-demo-card h3 {
  margin: 0;
  color: var(--launch-ink);
  font-size: 22px;
  line-height: 1.32;
  font-weight: 900;
}

.personal-demo-card p {
  margin: 0;
  color: var(--launch-muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.personal-demo-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.personal-demo-card__chips small {
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 999px;
  background: #f7fafc;
  color: #40576a;
  padding: 6px 9px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
}

.liflo-life-page #experience .flow-steps {
  margin-top: 22px;
}

.liflo-life-page #experience {
  padding-top: 62px;
}

.liflo-life-page #experience .launch-section__head {
  max-width: 700px;
  margin-bottom: 26px;
}

.liflo-life-page #experience .launch-section__head h2 {
  font-size: 36px;
}

.liflo-life-page #experience .launch-section__head > p {
  max-width: 680px;
}

.life-phone__screen {
  position: relative;
  aspect-ratio: 9 / 17.5;
  overflow: hidden;
  background: #edf7f2;
}

.life-phone__screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.life-phone__panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 16px 34px rgba(26, 56, 49, 0.16);
}

.life-phone__panel span,
.life-phone__panel small {
  display: block;
  color: #6b8292;
  font-size: 12px;
  font-weight: 900;
}

.life-phone__panel strong {
  display: block;
  margin: 6px 0;
  color: #172533;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.personal-experience-grid .experience-demo__phone {
  width: min(310px, 100%);
}

.personal-experience-grid .experience-demo__map {
  top: 42px;
  right: 0;
  bottom: auto;
  width: min(230px, 62%);
  height: 170px;
}

.experience-demo__line {
  position: absolute;
  z-index: 2;
  left: 45%;
  top: 34%;
  width: 24%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.82), rgba(255, 255, 255, 0.95));
  transform: rotate(24deg);
  transform-origin: 0 50%;
}

.experience-demo__map .logic-board__dot {
  z-index: 3;
}

.step-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.step-list div {
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-list strong {
  color: var(--launch-ink);
  font-size: 15px;
  font-weight: 900;
}

.flow-steps {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.flow-steps--life {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.flow-steps article {
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 15px;
  box-shadow: 0 12px 28px rgba(42, 64, 80, 0.07);
}

.flow-steps span {
  color: var(--launch-green);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.flow-steps strong {
  display: block;
  margin-top: 6px;
  color: var(--launch-ink);
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
}

.flow-steps small {
  display: block;
  margin-top: 8px;
  color: var(--launch-muted);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 800;
}

.feature-row,
.proflo-flow,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-row article,
.proflo-flow article,
.pricing-grid article {
  min-height: 245px;
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 16px 38px rgba(42, 64, 80, 0.08);
}

.proflo-flow article {
  min-height: 210px;
}

.product-frame {
  margin: 0;
  border: 1px solid rgba(201, 215, 224, 0.88);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 24px 54px rgba(42, 64, 80, 0.12);
}

.product-frame img {
  width: 100%;
  border-radius: 6px;
}

.product-frame--manager {
  padding: 12px;
}

.product-frame--manager img {
  display: block;
  aspect-ratio: 1535 / 1024;
  object-fit: cover;
  object-position: left top;
}

.manager-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.manager-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #203448;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 900;
}

.manager-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #1f7b65;
  box-shadow: 0 0 0 5px rgba(31, 123, 101, 0.11);
}

.pricing-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.pricing-grid article.is-featured {
  border-color: rgba(38, 63, 141, 0.38);
  box-shadow: 0 22px 48px rgba(38, 63, 141, 0.14);
}

.pricing-grid strong {
  display: block;
  margin-top: auto;
  color: var(--launch-ink);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.pricing-grid small {
  display: block;
  margin-top: 6px;
  color: var(--launch-muted);
  font-size: 12px;
  font-weight: 900;
}

.launch-footer {
  background: #ffffff;
}

.launch-page [id] {
  scroll-margin-top: 96px;
}

@media (max-width: 1080px) {
  .launch-hero--proflo {
    background:
      radial-gradient(circle at 70% 54%, rgba(34, 98, 132, 0.22), transparent 36%),
      linear-gradient(135deg, #06182d 0%, #0a203b 58%, #0d2c48 100%);
  }

  .launch-hero h1 {
    font-size: 52px;
  }

  .launch-hero__image--family {
    opacity: 0.46;
    width: min(780px, 78vw);
  }

  .launch-family-hero {
    opacity: 0.48;
    right: 18px;
    width: min(620px, 60vw);
  }

  .proflo-hero-layout {
    padding-top: 58px;
    padding-bottom: 56px;
  }

  .proflo-hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proflo-hero-showcase {
    width: min(760px, 100%);
    aspect-ratio: 16 / 9.2;
  }

  .proflo-hero-showcase img {
    width: 122%;
  }

  .launch-hero__image--coin {
    opacity: 0.26;
    width: min(330px, 45vw);
  }

  .world-family {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-feature,
  .split-feature--reverse,
  .connect-band,
  .connect-band--life {
    grid-template-columns: 1fr;
  }

  .liflo-life-page #experience .split-feature--reverse > div:not(.experience-demo) {
    order: 1;
  }

  .liflo-life-page #experience .experience-demo {
    order: 2;
  }

  .connect-band .button {
    width: max-content;
  }

  .experience-demo {
    min-height: 520px;
  }

  .personal-experience-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
    align-items: center;
  }

  .liflo-life-page #experience .personal-experience-grid .experience-demo {
    order: 0;
    grid-row: span 2;
    min-height: 500px;
  }

  .flow-steps--proflo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .issue-solution {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .launch-page .topbar__inner {
    min-height: 68px;
  }

  .launch-nav {
    gap: 2px;
    overflow-x: auto;
  }

  .launch-nav a {
    white-space: nowrap;
    font-size: 12px;
    padding: 8px 9px;
  }

  .launch-container {
    padding-inline: 16px;
  }

  .launch-hero:not(.launch-hero--proflo) {
    min-height: 680px;
  }

  .launch-hero__content {
    padding-top: 48px;
    padding-bottom: 84px;
  }

  .proflo-hero-content {
    padding: 0;
  }

  .proflo-hero-layout {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .proflo-hero-showcase {
    aspect-ratio: 1.12 / 1;
  }

  .proflo-hero-showcase img {
    width: 150%;
  }

  .launch-hero--proflo h1 {
    font-size: 38px;
  }

  .launch-hero--proflo .launch-lead {
    font-size: 14px;
  }

  .launch-hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .launch-lead,
  .launch-section__head > p,
  .split-feature p,
  .connect-band p,
  .world-card p,
  .feature-row p,
  .proflo-flow p,
  .pricing-grid p {
    font-size: 14px;
  }

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

  .launch-section__head h2,
  .split-feature h2,
  .connect-band h2 {
    font-size: 30px;
  }

  .world-family,
  .issue-grid,
  .feature-row,
  .proflo-flow,
  .pricing-grid,
  .personal-experience-grid,
  .flow-steps--life,
  .flow-steps--proflo {
    grid-template-columns: 1fr;
  }

  .world-card,
  .issue-grid article,
  .feature-row article,
  .proflo-flow article,
  .pricing-grid article {
    min-height: 0;
  }

  .issue-solution {
    padding: 20px;
  }

  .issue-solution h3 {
    font-size: 24px;
  }

  .logic-board__map {
    height: 270px;
  }

  .connect-band,
  .connect-band--life {
    padding: 20px;
  }

  .connect-band > img,
  .connect-band--life > img {
    width: 132px;
    height: 132px;
  }

  .family-mini {
    width: min(260px, 100%);
  }

  .experience-demo {
    min-height: 610px;
  }

  .personal-experience-grid .experience-demo {
    grid-row: auto;
    min-height: 500px;
  }

  .personal-demo-card {
    min-height: 0;
  }

  .experience-demo__phone {
    width: min(300px, 92vw);
  }

  .experience-demo__map {
    left: auto;
    right: 50%;
    top: 28px;
    bottom: auto;
    width: min(260px, 82vw);
    height: 180px;
    transform: translateX(50%);
  }

  .launch-actions .button,
  .connect-band .button {
    width: 100%;
  }
}

/* ProFlo LP director pass: issues section */
.proflo-public-page .proflo-hero-showcase .proflo-hero-product {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 132%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right bottom;
}

.proflo-public-page .launch-section--issue {
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 54%, #ffffff 100%);
}

.proflo-public-page .launch-section--core {
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 88% 10%, rgba(174, 231, 213, 0.18), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.proflo-public-page #flow {
  padding-top: 52px;
}

.proflo-public-page .launch-section__head h2:not(.issue-title),
.proflo-public-page .split-feature h2,
.proflo-public-page .connect-band h2 {
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.28;
}

.proflo-public-page .issue-intro {
  display: block;
  max-width: 820px;
  margin-bottom: 34px;
}

.proflo-public-page .issue-intro .launch-section__head {
  margin-bottom: 0;
}

.proflo-public-page .issue-title {
  max-width: 820px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.18;
}

.proflo-public-page .issue-title span {
  display: block;
  white-space: nowrap;
}

.proflo-public-page .launch-section--issue .launch-section__head > p {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.9;
}

.proflo-public-page .plans-intro {
  display: block;
  margin-bottom: 34px;
}

.proflo-public-page .plans-intro .launch-section__head {
  margin-bottom: 0;
}

.proflo-public-page .core-flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.proflo-public-page .core-flow-map article {
  position: relative;
  min-height: 216px;
  border: 1px solid rgba(190, 207, 220, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  padding: 22px 18px;
  box-shadow: 0 18px 42px rgba(32, 54, 74, 0.08);
}

.proflo-public-page .core-flow-map article + article::before {
  content: "›";
  position: absolute;
  left: -13px;
  top: 34px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  background: #0b1f3a;
  color: #aee7d5;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.18);
}

.proflo-public-page .core-flow-map span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 123, 101, 0.1);
  color: #1f7b65;
  font-size: 13px;
  font-weight: 900;
}

.proflo-public-page .core-flow-map h3 {
  margin: 18px 0 0;
  color: #203448;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 900;
}

.proflo-public-page .core-flow-map p {
  margin: 10px 0 0;
  color: #526779;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 800;
}

.proflo-public-page .issue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proflo-public-page .issue-grid article {
  position: relative;
  min-height: 228px;
  padding: 28px;
  border-color: rgba(199, 213, 224, 0.86);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 46px rgba(32, 54, 74, 0.08);
  overflow: hidden;
}

.proflo-public-page .issue-grid article::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(34, 134, 111, 0.58), rgba(174, 231, 213, 0));
}

.proflo-public-page .issue-grid article > span {
  display: block;
  color: #1f7b65;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.proflo-public-page .issue-grid h3 {
  max-width: 520px;
  margin-top: 16px;
  font-size: clamp(21px, 2vw, 24px);
  line-height: 1.35;
}

.proflo-public-page .issue-grid p {
  max-width: 520px;
  margin-top: 12px;
  color: #536778;
  font-size: 14px;
  line-height: 1.86;
  font-weight: 750;
}

.proflo-public-page .issue-visual {
  display: none;
  grid-template-columns: minmax(0, 1fr) 158px;
  align-items: end;
  gap: 12px;
  min-height: 166px;
  margin-top: 22px;
  padding: 16px 14px 0 16px;
  border-color: rgba(199, 213, 224, 0.7);
  background:
    radial-gradient(circle at 82% 20%, rgba(174, 231, 213, 0.28), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.proflo-public-page .issue-visual::before {
  display: none;
}

.proflo-public-page .issue-visual__panel {
  align-self: center;
  min-height: 112px;
  border: 1px solid rgba(154, 180, 196, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(42, 64, 80, 0.08);
}

.proflo-public-page .issue-visual__character {
  width: 158px;
  height: 158px;
  justify-self: end;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 20px rgba(36, 69, 75, 0.16));
}

.proflo-public-page .issue-visual__panel span,
.proflo-public-page .issue-visual__panel i {
  display: block;
  color: #41596c;
  font-style: normal;
}

.proflo-public-page .issue-visual__panel--signal {
  position: relative;
  padding: 20px 18px;
}

.proflo-public-page .issue-visual__panel--signal span {
  height: 11px;
  border-radius: 999px;
  background: #dfe8f1;
}

.proflo-public-page .issue-visual__panel--signal span + span {
  width: 68%;
  margin-top: 16px;
  background: #f0c1b6;
}

.proflo-public-page .issue-visual__panel--signal i {
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #c85c52;
  color: #ffffff;
}

.proflo-public-page .issue-visual__panel--signal i::after {
  content: "!";
  display: grid;
  height: 100%;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.proflo-public-page .issue-visual__panel--split,
.proflo-public-page .issue-visual__panel--gap {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  gap: 9px;
  padding: 16px;
}

.proflo-public-page .issue-visual__panel--split span,
.proflo-public-page .issue-visual__panel--gap span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(154, 180, 196, 0.34);
  border-radius: 8px;
  background: #ffffff;
  color: #344b5d;
  font-size: 12px;
  font-weight: 900;
}

.proflo-public-page .issue-visual__panel--split i,
.proflo-public-page .issue-visual__panel--gap i {
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #c85c52 0 7px, transparent 7px 13px);
}

.proflo-public-page .issue-visual__panel--gap {
  background:
    radial-gradient(circle at 18% 28%, rgba(79, 143, 157, 0.13), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(201, 133, 50, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.84);
}

.proflo-public-page .issue-visual__panel--gap i {
  transform: rotate(-10deg);
  background: repeating-linear-gradient(90deg, #2f6d7f 0 7px, transparent 7px 13px);
}

.proflo-public-page .issue-visual__panel--busy {
  position: relative;
  padding: 18px;
}

.proflo-public-page .issue-visual__panel--busy span {
  height: 10px;
  margin-left: 24px;
  border-radius: 999px;
  background: #dfe8f1;
}

.proflo-public-page .issue-visual__panel--busy span + span {
  width: 58%;
  margin-top: 16px;
  background: #aee7d5;
}

.proflo-public-page .issue-visual__panel--busy i {
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 10px;
  border-radius: 999px;
  background: #1d428f;
}

.proflo-public-page .issue-solution {
  margin-top: 22px;
  padding: 30px;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.proflo-public-page .issue-solution h3 {
  max-width: 790px;
  font-size: clamp(25px, 2.7vw, 32px);
  line-height: 1.32;
}

.proflo-public-page .issue-solution p:not(.launch-kicker) {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.9;
}

.proflo-public-page .issue-solution__next {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 14px;
  color: #d9fff2;
  font-size: 13px;
  font-weight: 900;
}

.proflo-public-page .solution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin-top: 24px;
}

.proflo-public-page .solution-flow span {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 13px 16px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
}

.proflo-public-page .solution-flow span + span::before {
  content: "›";
  position: absolute;
  left: -9px;
  top: 50%;
  color: #aee7d5;
  font-size: 22px;
  font-weight: 900;
  transform: translateY(-54%);
}

.proflo-public-page .issue-solution__mascot {
  width: clamp(120px, 14vw, 168px);
  height: clamp(120px, 14vw, 168px);
  object-fit: contain;
  align-self: end;
  justify-self: end;
  opacity: 0.94;
  filter: drop-shadow(0 18px 24px rgba(2, 14, 33, 0.24));
}

.proflo-public-page .plan-consult {
  position: relative;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 38%, rgba(34, 98, 132, 0.28), transparent 34%),
    linear-gradient(135deg, #06182d 0%, #0a203b 58%, #0d2c48 100%);
  min-height: 250px;
  padding: 34px 174px 36px 38px;
  overflow: hidden;
}

.proflo-public-page .plan-compare-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid rgba(199, 213, 224, 0.78);
  border-radius: 8px;
  background: #f8fbfd;
  padding: 18px 20px;
}

.proflo-public-page .plan-compare-link p {
  margin: 0;
  color: #526779;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 800;
}

.proflo-public-page .plan-compare-link a {
  flex: 0 0 auto;
  color: #1f7b65;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.proflo-public-page .plan-compare-link a::after {
  content: "›";
  margin-left: 8px;
}

.proflo-public-page .faq-preview {
  border: 1px solid rgba(199, 213, 224, 0.82);
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(32, 54, 74, 0.08);
}

.proflo-public-page .faq-preview .launch-section__head {
  margin-bottom: 22px;
}

.proflo-public-page .faq-preview__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.proflo-public-page .faq-preview__items article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  border: 1px solid rgba(199, 213, 224, 0.82);
  border-radius: 8px;
  background: #f8fbfd;
  padding: 16px;
}

.proflo-public-page .faq-preview__items span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #0b1f3a;
  color: #aee7d5;
  font-size: 13px;
  font-weight: 900;
}

.proflo-public-page .faq-preview__items p {
  margin: 0;
  color: #203448;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 900;
}

.proflo-public-page .launch-section--final {
  padding-top: 76px;
  background: #ffffff;
}

.proflo-public-page .launch-section--final .plan-consult {
  margin-top: 0;
}

.proflo-public-page .plan-consult__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.proflo-public-page .plan-consult h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.28;
  font-weight: 900;
}

.proflo-public-page .plan-consult p:not(.launch-kicker) {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.proflo-public-page .plan-consult .launch-kicker {
  color: #aee7d5;
}

.proflo-public-page .plan-consult__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.proflo-public-page .plan-consult .button--primary {
  border-color: #f59e0b;
  background: #f59e0b;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

.proflo-public-page .plan-consult .button--secondary {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.96);
  color: #0b2233;
  box-shadow: 0 12px 24px rgba(2, 14, 33, 0.18);
}

.proflo-public-page .plan-consult__mascot {
  position: absolute;
  z-index: 1;
  right: 32px;
  top: 50%;
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: none;
  opacity: 0.88;
  pointer-events: none;
  transform: translateY(-45%);
}

.proflo-public-page .pricing-grid article {
  min-height: 252px;
  justify-content: flex-start;
  gap: 10px;
}

.proflo-public-page .pricing-grid p {
  margin-bottom: 0;
}

.proflo-public-page .pricing-grid strong {
  margin-top: 8px;
}

.proflo-public-page .flow-steps--proflo {
  gap: 14px;
}

.proflo-public-page .flow-steps--proflo article {
  position: relative;
  min-height: 178px;
  border-color: rgba(190, 207, 220, 0.98);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  padding: 22px 18px;
  box-shadow: 0 18px 38px rgba(34, 54, 72, 0.09);
  overflow: hidden;
}

.proflo-public-page .flow-steps--proflo article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(29, 66, 143, 0.7), rgba(174, 231, 213, 0));
}

.proflo-public-page .flow-steps--proflo span {
  color: #1d428f;
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1;
}

.proflo-public-page .flow-steps--proflo strong {
  margin-top: 13px;
  font-size: 18px;
}

.proflo-public-page .flow-steps--proflo small {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.75;
}

.proflo-public-page .user-flow-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(199, 213, 224, 0.8);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 50%, rgba(174, 231, 213, 0.18), transparent 28%),
    #ffffff;
  padding: 18px 20px;
  box-shadow: 0 16px 36px rgba(32, 54, 74, 0.07);
}

.proflo-public-page .user-flow-cta p {
  margin: 0;
  color: #526779;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 850;
}

.proflo-public-page .user-flow-cta .button {
  flex: 0 0 auto;
}

.proflo-public-page .screen-gallery {
  margin-top: 26px;
  border: 1px solid rgba(190, 207, 220, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(174, 231, 213, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  padding: 28px;
  box-shadow: 0 22px 52px rgba(32, 54, 74, 0.09);
}

.proflo-public-page .screen-gallery__header {
  max-width: 780px;
}

.proflo-public-page .screen-gallery__header h3 {
  margin: 0;
  color: #1d2c3b;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.32;
  font-weight: 900;
}

.proflo-public-page .screen-gallery__header p:not(.launch-kicker) {
  margin: 12px 0 0;
  color: #526779;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 800;
}

.proflo-public-page .screen-gallery__body {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.proflo-public-page .screen-gallery__tabs {
  display: grid;
  gap: 10px;
}

.proflo-public-page .screen-gallery__tab {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(199, 213, 224, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 14px;
  color: #203448;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
}

.proflo-public-page .screen-gallery__tab span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #edf4f8;
  color: #1d428f;
  font-size: 13px;
  font-weight: 900;
}

.proflo-public-page .screen-gallery__tab.is-active {
  border-color: #1d428f;
  background: #0b1f3a;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(11, 31, 58, 0.18);
}

.proflo-public-page .screen-gallery__tab.is-active span {
  background: rgba(255, 255, 255, 0.14);
  color: #aee7d5;
}

.proflo-public-page .screen-gallery__preview {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 330px);
  gap: 20px;
  align-items: stretch;
  margin: 0;
}

.proflo-public-page .screen-gallery__frame {
  display: grid;
  min-height: 520px;
  max-height: 600px;
  place-items: center;
  border: 1px solid rgba(199, 213, 224, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #eff6fb 0%, #ffffff 48%, #f7fbfd 100%);
  padding: 18px;
  overflow: hidden;
}

.proflo-public-page .screen-gallery__frame.is-landscape {
  min-height: 440px;
}

.proflo-public-page .screen-gallery__frame img {
  display: block;
  max-width: 100%;
  max-height: 560px;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(32, 54, 74, 0.16);
}

.proflo-public-page .screen-gallery__frame.is-landscape img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.proflo-public-page .screen-gallery__preview figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(199, 213, 224, 0.78);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.proflo-public-page .screen-gallery__preview figcaption span {
  color: #1f7b65;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.proflo-public-page .screen-gallery__preview figcaption strong {
  margin-top: 12px;
  color: #203448;
  font-size: 22px;
  line-height: 1.38;
  font-weight: 900;
}

.proflo-public-page .screen-gallery__preview figcaption p {
  margin: 12px 0 0;
  color: #526779;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 800;
}

.proflo-faq-page .faq-hero {
  background:
    radial-gradient(circle at 72% 36%, rgba(34, 98, 132, 0.24), transparent 34%),
    linear-gradient(135deg, #06182d 0%, #0a203b 58%, #0d2c48 100%);
  color: #ffffff;
}

.proflo-faq-page .faq-hero__inner {
  min-height: 360px;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(52px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 36px;
  align-items: center;
}

.proflo-faq-page .faq-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.proflo-faq-page .faq-hero p:not(.launch-kicker) {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 800;
}

.proflo-faq-page .faq-hero img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  justify-self: end;
}

.proflo-faq-page .faq-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.proflo-faq-page .faq-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(201, 215, 224, 0.82);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(42, 64, 80, 0.08);
}

.proflo-faq-page .faq-side a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #395166;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.proflo-faq-page .faq-side a:hover {
  background: #edf8f3;
  color: #1f7b65;
}

.proflo-faq-page .faq-main {
  display: grid;
  gap: 34px;
}

.proflo-faq-page .faq-group {
  padding-bottom: 4px;
}

.proflo-faq-page .faq-group h2 {
  margin: 0 0 16px;
  color: #203448;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.28;
  font-weight: 900;
}

.proflo-faq-page details {
  border: 1px solid rgba(199, 213, 224, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 54, 74, 0.06);
  overflow: hidden;
}

.proflo-faq-page details + details {
  margin-top: 10px;
}

.proflo-faq-page summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 18px 54px 18px 20px;
  color: #203448;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 900;
}

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

.proflo-faq-page summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #edf8f3;
  color: #1f7b65;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

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

.proflo-faq-page details p {
  margin: 0;
  border-top: 1px solid rgba(199, 213, 224, 0.7);
  padding: 18px 20px 20px;
  color: #526779;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 750;
}

.proflo-faq-page .faq-note {
  margin: 0 0 16px;
  color: #526779;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 800;
}

.proflo-faq-page .plan-table-wrap {
  border: 1px solid rgba(199, 213, 224, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 54, 74, 0.06);
  overflow-x: auto;
}

.proflo-faq-page .plan-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.proflo-faq-page .plan-table th,
.proflo-faq-page .plan-table td {
  border-bottom: 1px solid rgba(199, 213, 224, 0.68);
  padding: 14px 16px;
  color: #526779;
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
  font-weight: 800;
}

.proflo-faq-page .plan-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f5f9fb;
  color: #203448;
  font-size: 13px;
  font-weight: 900;
}

.proflo-faq-page .plan-table tbody th {
  width: 190px;
  background: #fbfdff;
  color: #203448;
  font-weight: 900;
}

.proflo-faq-page .plan-table tr:last-child th,
.proflo-faq-page .plan-table tr:last-child td {
  border-bottom: 0;
}

.proflo-faq-page .plan-table td small {
  display: block;
  margin-top: 3px;
  color: #8091a0;
  font-size: 11px;
  font-weight: 900;
}

.proflo-faq-page .faq-cta {
  margin-top: 8px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 34%, rgba(34, 98, 132, 0.26), transparent 36%),
    linear-gradient(135deg, #06182d 0%, #0a203b 58%, #0d2c48 100%);
  padding: 30px;
  color: #ffffff;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.proflo-faq-page .faq-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.28;
}

.proflo-faq-page .faq-cta p:not(.launch-kicker) {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.proflo-faq-page .faq-cta .button {
  flex: 0 0 auto;
  border-color: #f59e0b;
  background: #f59e0b;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

@media (max-width: 980px) {
  .proflo-public-page .issue-intro {
    max-width: 820px;
  }

  .proflo-public-page .core-flow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proflo-public-page .core-flow-map article + article::before {
    display: none;
  }

  .proflo-public-page .issue-grid {
    grid-template-columns: 1fr;
  }

  .proflo-public-page .issue-grid article {
    min-height: 0;
  }

  .proflo-public-page .issue-solution {
    grid-template-columns: 1fr;
  }

  .proflo-public-page .solution-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proflo-public-page .solution-flow span + span::before {
    display: none;
  }

  .proflo-public-page .plan-consult {
    padding-right: 38px;
  }

  .proflo-public-page .plan-consult__mascot {
    display: none;
  }

  .proflo-public-page .screen-gallery__body {
    grid-template-columns: 1fr;
  }

  .proflo-public-page .screen-gallery__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proflo-public-page .screen-gallery__tab {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 88px;
  }

  .proflo-public-page .screen-gallery__preview {
    grid-template-columns: 1fr;
  }

  .proflo-public-page .screen-gallery__preview figcaption {
    justify-content: flex-start;
  }

  .proflo-faq-page .faq-layout {
    grid-template-columns: 1fr;
  }

  .proflo-faq-page .faq-side {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .proflo-faq-page .faq-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .proflo-faq-page .faq-hero img {
    display: none;
  }

  .proflo-faq-page .faq-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proflo-faq-page .faq-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 22px;
  }

  .proflo-faq-page .faq-cta .button {
    width: 100%;
  }

  .proflo-public-page .issue-title {
    font-size: 30px;
  }

  .proflo-public-page .issue-title span {
    display: inline;
    white-space: normal;
  }

  .proflo-public-page .launch-section--core {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .proflo-public-page .core-flow-map {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .proflo-public-page .core-flow-map article {
    min-height: 0;
    padding: 20px;
  }

  .proflo-public-page .user-flow-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .proflo-public-page .user-flow-cta .button {
    width: 100%;
  }

  .proflo-public-page .faq-preview {
    padding: 22px;
  }

  .proflo-public-page .faq-preview__items {
    grid-template-columns: 1fr;
  }

  .proflo-public-page .faq-preview .button {
    width: 100%;
  }

  .proflo-public-page .launch-section--issue .launch-section__head > p,
  .proflo-public-page .issue-grid p,
  .proflo-public-page .issue-solution p:not(.launch-kicker) {
    font-size: 14px;
  }

  .proflo-public-page .issue-grid article {
    padding: 20px;
  }

  .proflo-public-page .solution-flow {
    grid-template-columns: 1fr;
  }

  .proflo-public-page .plans-intro {
    margin-bottom: 24px;
  }

  .proflo-public-page .screen-gallery {
    padding: 18px;
  }

  .proflo-public-page .screen-gallery__tabs {
    display: flex;
    gap: 8px;
    margin: 0 -18px;
    padding: 0 18px 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .proflo-public-page .screen-gallery__tab {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }

  .proflo-public-page .screen-gallery__frame,
  .proflo-public-page .screen-gallery__frame.is-landscape {
    min-height: 390px;
    max-height: 520px;
    padding: 12px;
  }

  .proflo-public-page .screen-gallery__frame img,
  .proflo-public-page .screen-gallery__frame.is-landscape img {
    max-height: 490px;
  }

  .proflo-public-page .screen-gallery__preview figcaption {
    padding: 20px;
  }

  .proflo-public-page .screen-gallery__preview figcaption strong {
    font-size: 20px;
  }

  .proflo-public-page .plan-compare-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .proflo-public-page .plan-consult {
    min-height: 0;
    padding: 26px 22px 24px;
  }

  .proflo-public-page .plan-consult__mascot {
    display: none;
  }

  .proflo-public-page .issue-grid article::after {
    left: 20px;
    right: 20px;
  }

  .proflo-public-page .issue-grid h3 {
    font-size: 22px;
  }

  .proflo-public-page .flow-steps--proflo article {
    min-height: 0;
    padding: 20px;
  }

  .proflo-public-page .issue-visual {
    grid-template-columns: minmax(0, 1fr) 124px;
    min-height: 138px;
    padding: 14px 10px 0 14px;
  }

  .proflo-public-page .issue-visual__panel {
    min-height: 94px;
  }

  .proflo-public-page .issue-visual__character {
    width: 124px;
    height: 124px;
  }

  .proflo-public-page .issue-solution {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .proflo-public-page .issue-solution__mascot {
    width: 104px;
    height: 104px;
    margin-top: -6px;
  }
}
