﻿:root {
  --bg: #f8f3f7;
  --bg-soft: #fdf8fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: #f9eef4;
  --ink: #575056;
  --ink-soft: #7e757b;
  --ink-faint: #9a8e96;
  --navy: #6a6167;
  --navy-deep: #575056;
  --bluegreen: #8b5b72;
  --teal: #df4e85;
  --teal-soft: rgba(223, 78, 133, 0.12);
  --gold: #f0b6cd;
  --gold-soft: rgba(240, 182, 205, 0.22);
  --peach: #e9a0b6;
  --green: #c194a6;
  --line: rgba(106, 97, 103, 0.12);
  --line-strong: rgba(106, 97, 103, 0.22);
  --shadow-lg: 0 26px 70px rgba(106, 82, 94, 0.14);
  --shadow-md: 0 18px 44px rgba(106, 82, 94, 0.1);
  --shadow-sm: 0 12px 28px rgba(106, 82, 94, 0.07);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --heading-font: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  --body-font: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  --number-font: "Manrope", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 2%, rgba(223, 78, 133, 0.12), transparent 22%),
    radial-gradient(circle at 92% 6%, rgba(182, 137, 159, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, #fbf6f9 42%, #f5eef3 100%);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.72;
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  overflow: clip;
  position: relative;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
}

.site-shell::before {
  top: 120px;
  left: -90px;
  width: 220px;
  height: 220px;
  background: rgba(240, 182, 205, 0.24);
}

.site-shell::after {
  top: 340px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(223, 78, 133, 0.12);
}

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(106, 97, 103, 0.06);
  border-bottom: 1px solid rgba(106, 97, 103, 0.06);
}



.section-heading {
  max-width: 100%;
  margin-bottom: 46px;
}

.section-heading h2,
.cta-panel h2 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.28rem, 1.95vw, 2.02rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.section-heading h2 br,
.cta-panel h2 br {
  display: none;
}

.section-heading p,
.hero-lead,
.info-panel p,
.challenge-list p,
.scorecard-shell li span,
.feature-browser-copy,
.feature-card p,
.plan-card p,
.flow-card p,
.ecosystem-card p,
.footer-inner p,
.cta-panel p:last-child {
  color: var(--ink-soft);
}

.section-heading p {
  max-width: 760px;
}

.section-heading-flow {
  max-width: 860px;
}

.section-heading-flow h2 {
  font-size: clamp(1.22rem, 1.78vw, 1.84rem);
  line-height: 1.28;
}

.section-heading-ecosystem {
  max-width: 920px;
}

.section-heading-ecosystem h2 {
  font-size: clamp(1.18rem, 1.68vw, 1.74rem);
  line-height: 1.3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 2px 6px rgba(223, 78, 133, 0.32);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 252, 253, 0.86);
  border-bottom: 1px solid rgba(106, 97, 103, 0.06);
  box-shadow: 0 10px 30px rgba(106, 82, 94, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 4px;
  padding: 9px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--bluegreen));
  box-shadow: 0 12px 24px rgba(135, 88, 109, 0.2);
}

.brand-mark span {
  display: block;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark span:last-child {
  grid-column: 1 / span 2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--number-font);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #f06da1);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(223, 78, 133, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(106, 97, 103, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 20px rgba(106, 82, 94, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  position: relative;
  padding: 72px 0 28px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(240, 182, 205, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 252, 253, 0.98) 0%, rgba(248, 240, 245, 0.97) 52%, rgba(238, 223, 231, 0.95) 100%);
  clip-path: ellipse(120% 100% at 50% 0%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 91, 114, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 91, 114, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
  clip-path: ellipse(120% 100% at 50% 0%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  color: var(--navy);
  max-width: none;
}

.hero-copy .eyebrow {
  color: var(--teal);
}

.hero-copy .eyebrow::before {
  background: #ef7da8;
  box-shadow: 0 2px 6px rgba(239, 125, 168, 0.26);
}

.hero-copy h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  max-width: none;
  text-wrap: balance;
}

.hero-lead {
  max-width: 920px;
  margin: 0;
  color: rgba(87, 80, 86, 0.86);
  font-size: 1.06rem;
  line-height: 1.92;
}

.hero-lead-break {
  display: inline;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--teal), #f06da1);
  color: #fff;
  box-shadow: 0 16px 34px rgba(223, 78, 133, 0.22);
}

.button-secondary {
  border: 1px solid rgba(106, 97, 103, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(106, 82, 94, 0.06);
}

.button-secondary-light {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
  align-self: start;
}

.hero-fact {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(240, 109, 161, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 252, 0.82));
  border: 1px solid rgba(223, 78, 133, 0.08);
  box-shadow:
    0 18px 34px rgba(166, 131, 148, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-fact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(240, 109, 161, 0.72), rgba(240, 109, 161, 0));
}

.hero-fact::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -14px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 109, 161, 0.12), transparent 72%);
  pointer-events: none;
}

.hero-fact strong {
  display: block;
  color: var(--navy);
  font-family: var(--number-font);
  font-size: 1.02rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-fact span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.72;
}

.hero-fact:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(223, 78, 133, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 244, 248, 0.84));
}

.hero-fact:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(174, 180, 188, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 248, 250, 0.84));
}

.hero-stage {
  position: relative;
  min-height: 240px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.hero-visual-wrap {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.hero-visual {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 241, 246, 0.93));
  box-shadow: var(--shadow-lg);
}

.hero-website {
  position: relative;
  z-index: 2;
  min-height: 100%;
  width: min(100%, 940px);
  margin: 0 auto;
  padding: 0;
}

.website-window {
  position: relative;
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 238, 244, 0.98));
  border: 1px solid rgba(106, 97, 103, 0.12);
  box-shadow:
    0 28px 48px rgba(106, 82, 94, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.website-toolbar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.website-toolbar-dots {
  display: inline-flex;
  gap: 6px;
}

.website-toolbar-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(223, 78, 133, 0.42);
}

.website-toolbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}

.website-toolbar-logo {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal), #f06da1);
  color: #fff;
  font-family: var(--number-font);
  font-weight: 800;
}

.website-toolbar-nav {
  display: inline-flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.website-toolbar-nav span,
.website-search-pills span,
.website-phone-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(106, 97, 103, 0.08);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.website-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  gap: 14px;
  margin-top: 12px;
}

.website-copy {
  padding: 14px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(223, 78, 133, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.website-panel-head {
  display: grid;
  gap: 6px;
}

.website-copy-label {
  margin: 0;
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.website-panel-head strong {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 0.98rem;
  line-height: 1.2;
}

.website-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.website-filter-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(106, 97, 103, 0.08);
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 600;
}

.website-search-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.website-search-summary strong {
  color: var(--navy);
  font-family: var(--number-font);
  font-size: 0.92rem;
}

.website-search-summary span {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.website-search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.website-search-pills span {
  min-height: 26px;
}

.website-spotlight {
  display: flex;
  align-items: stretch;
}

.website-spotlight-panel {
  position: relative;
  width: 100%;
  min-height: 138px;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 248, 251, 0.96), rgba(248, 234, 241, 0.98));
  border: 1px solid rgba(106, 97, 103, 0.08);
  display: grid;
  gap: 8px;
}

.website-featured-property {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(106, 97, 103, 0.08);
  box-shadow: 0 10px 20px rgba(106, 82, 94, 0.06);
}

.website-featured-visual {
  height: 64px;
}

.website-featured-body {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
}

.website-featured-label {
  margin: 0;
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.website-featured-body strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.website-featured-body span {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.website-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.website-kpi-card {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.website-kpi-card strong {
  color: var(--navy);
  font-family: var(--number-font);
  font-size: 0.76rem;
}

.website-kpi-card span {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.website-listings {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.website-property-card {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(106, 97, 103, 0.08);
  box-shadow: 0 12px 24px rgba(106, 82, 94, 0.08);
}

.website-property-visual {
  height: 60px;
  background-size: cover;
}

.website-property-visual-a {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(135deg, #f5c9da, #f7eef3);
}

.website-property-visual-b {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(135deg, #f2d6df, #f9f2f5);
}

.website-property-visual-c {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(135deg, #e7c4d1, #f7edf2);
}

.website-property-body {
  display: grid;
  gap: 4px;
  padding: 10px 10px 12px;
}

.website-property-body strong,
.website-phone-minicard strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.website-property-body span,
.website-phone-minicard span {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.website-phone {
  position: absolute;
  right: 0;
  bottom: 6px;
  z-index: 4;
  display: none;
  width: 124px;
  padding: 7px;
  border-radius: 24px;
  background: linear-gradient(180deg, #4b4148, #211b20);
  box-shadow:
    0 24px 44px rgba(39, 23, 31, 0.32),
    0 0 0 4px rgba(255, 255, 255, 0.52);
}

.website-phone-notch {
  width: 48px;
  height: 10px;
  margin: 0 auto 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.website-phone-screen {
  display: grid;
  gap: 7px;
  min-height: 172px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 239, 245, 0.98));
}

.website-phone-minihead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.website-phone-minibrand {
  width: 30px;
  height: 10px;
  border-radius: 999px;
  background: rgba(106, 97, 103, 0.78);
}

.website-phone-ministat {
  width: 54px;
  height: 8px;
  border-radius: 999px;
  background: rgba(106, 97, 103, 0.32);
}

.website-phone-minihero {
  min-height: 24px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(223, 78, 133, 0.12), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.website-phone-minirows {
  display: grid;
  gap: 6px;
}

.website-phone-minicard {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.website-phone-thumb {
  height: 30px;
  border-radius: 7px;
}

.website-phone-minilines {
  display: grid;
  gap: 5px;
}

.website-phone-minilines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(106, 97, 103, 0.2);
}

.website-phone-minilines span:first-child {
  width: 78%;
  background: rgba(106, 97, 103, 0.32);
}

.website-phone-minilines span:last-child {
  width: 56%;
}

.website-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.website-phone-actions span {
  min-width: 38px;
  color: transparent;
}

.dashboard-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(106, 97, 103, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.dashboard-card-main {
  z-index: 2;
  padding: 28px;
}

.dashboard-head strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  line-height: 1.24;
}

.dashboard-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.signal-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.signal-grid span,
.dashboard-search li,
.dashboard-support p {
  color: var(--ink-soft);
}

.signal-grid strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy);
  font-family: var(--number-font);
  font-size: 1.08rem;
}

.signal-grid small {
  color: var(--ink-faint);
}

.dashboard-card-floating {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
}

.dashboard-search {
  top: 54px;
  right: 18px;
  width: min(290px, 100%);
}

.dashboard-search ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-search li {
  position: relative;
  padding-left: 18px;
}

.dashboard-search li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.dashboard-support {
  right: 40px;
  bottom: 28px;
  width: min(250px, 100%);
}

.dashboard-support p {
  margin: 12px 0 0;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.62;
}

.hero-orbit-a {
  top: -30px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: rgba(223, 78, 133, 0.2);
}

.hero-orbit-b {
  left: -24px;
  bottom: 16px;
  width: 170px;
  height: 170px;
  background: rgba(212, 178, 109, 0.16);
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 152px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(17, 25, 41, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 252, 0.96));
  box-shadow: 0 14px 26px rgba(17, 25, 41, 0.05);
  text-align: left;
}

.trust-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 26px;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trust-value {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.16rem;
  line-height: 1.3;
}

.trust-card span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.accent-navy {
  border-color: #bb97a7;
}

.accent-navy .trust-label {
  background: #b58aa0;
}

.accent-gold {
  border-color: #efb7cd;
}

.accent-gold .trust-label {
  background: #e7a4c0;
}

.accent-teal {
  border-color: #d487a6;
}

.accent-teal .trust-label {
  background: #cf779e;
}

.accent-green {
  border-color: #d7b1c0;
}

.accent-green .trust-label {
  background: #be8ea3;
}

.overview-grid,
.flow-grid,
.ecosystem-grid {
  display: grid;
  gap: 18px;
}

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

.info-panel,
.challenge-list article,
.benefit-tile,
.benefit-scorecard,
.feature-browser,
.feature-card,
.plan-card,
.plan-note,
.flow-card,
.ecosystem-card,
.cta-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 253, 0.86));
  border: 1px solid rgba(106, 97, 103, 0.08);
  box-shadow: 0 18px 42px rgba(106, 82, 94, 0.08);
  backdrop-filter: blur(14px);
}

.info-panel,
.challenge-list article,
.benefit-tile,
.feature-card,
.plan-card,
.flow-card,
.ecosystem-card {
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.challenge-list article,
.benefit-scorecard,
.scorecard-shell {
  overflow: hidden;
}

.ecosystem-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
}

.info-panel:hover,
.challenge-list article:hover,
.benefit-tile:hover,
.feature-card:hover,
.plan-card:hover,
.flow-card:hover,
.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(106, 82, 94, 0.1);
  border-color: rgba(223, 78, 133, 0.22);
}

.panel-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: var(--number-font);
  font-weight: 800;
}

.info-panel h3,
.challenge-list h3,
.benefit-tile h3,
.flow-card h3,
.plan-card h3,
.ecosystem-card h3,
.feature-card h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.28rem;
  line-height: 1.28;
}

.benefits-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.benefit-tile {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 253, 0.9));
  border-color: rgba(223, 78, 133, 0.1);
}

.benefit-tile span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 233, 240, 0.88));
  border: 1px solid rgba(223, 78, 133, 0.14);
  box-shadow: 0 10px 22px rgba(223, 78, 133, 0.1);
}

.benefit-tile span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f06da1, #f4b3ca);
  box-shadow: 0 0 0 5px rgba(240, 109, 161, 0.1);
}

.benefit-tile p {
  margin: 0;
}

.benefit-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(240, 109, 161, 0.58), rgba(240, 109, 161, 0));
}

.benefit-tile::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -10px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 109, 161, 0.09), transparent 72%);
  pointer-events: none;
}

.benefit-tile-merit {
  background:
    radial-gradient(circle at top right, rgba(240, 109, 161, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 248, 0.92));
}

.benefit-tile-merit::before {
  background: linear-gradient(180deg, rgba(240, 109, 161, 0.8), rgba(240, 109, 161, 0.18));
}

.benefit-tile-merit span {
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.98), rgba(250, 233, 241, 0.9));
}

.challenge-list {
  display: grid;
  gap: 18px;
}

.challenge-list span,
.flow-card span,
.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.challenge-list span,
.scorecard-label {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 233, 240, 0.88));
  border: 1px solid rgba(223, 78, 133, 0.14);
  box-shadow: 0 10px 22px rgba(223, 78, 133, 0.1);
}

.challenge-list span::before,
.scorecard-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f06da1, #f4b3ca);
  box-shadow: 0 0 0 5px rgba(240, 109, 161, 0.1);
}

.flow-card span {
  font-size: 0.96rem;
  letter-spacing: 0.14em;
}

.plan-tag[class*="plan-tag-"]::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  opacity: 0.72;
}

.plan-tag-minimum::before {
  border: 1.6px solid currentColor;
  border-radius: 999px;
}

.plan-tag-standard::before {
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) left 2px top 3px / 2px 8px no-repeat,
    linear-gradient(currentColor, currentColor) center top 1px / 2px 10px no-repeat,
    linear-gradient(currentColor, currentColor) right 2px top 5px / 2px 6px no-repeat;
}

.plan-tag-recommended::before {
  width: 14px;
  height: 14px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.plan-tag-premium::before {
  border-radius: 4px 4px 6px 6px;
  background:
    linear-gradient(135deg, transparent 0 45%, currentColor 45% 55%, transparent 55%) left top / 50% 52% no-repeat,
    linear-gradient(45deg, transparent 0 45%, currentColor 45% 55%, transparent 55%) right top / 50% 52% no-repeat,
    linear-gradient(currentColor, currentColor) center 100% / 10px 2px no-repeat;
}

.benefit-scorecard {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(121, 111, 118, 0.96), rgba(88, 79, 85, 0.88)),
    rgba(139, 91, 114, 0.9);
  color: #fff;
  border-color: rgba(117, 107, 114, 0.24);
  box-shadow:
    0 24px 54px rgba(106, 82, 94, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.benefit-scorecard::before {
  content: "";
  position: absolute;
  inset: auto -42px -48px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 109, 161, 0.24), transparent 72%);
  pointer-events: none;
}

.scorecard-shell {
  height: 100%;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 246, 249, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -24px 40px rgba(240, 109, 161, 0.04);
}

.scorecard-label {
  margin: 0 0 18px;
  width: fit-content;
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scorecard-shell ul,
.plan-note ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scorecard-shell li strong,
.plan-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.06rem;
}

.scorecard-shell li {
  position: relative;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 239, 245, 0.6));
  border: 1px solid rgba(223, 78, 133, 0.08);
  box-shadow: 0 12px 26px rgba(106, 82, 94, 0.06);
}

.scorecard-shell li::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f06da1, rgba(240, 109, 161, 0.18));
}

.scorecard-shell li span {
  color: var(--ink-soft);
}

.challenge-list article {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(240, 109, 161, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 253, 0.92));
  border-color: rgba(223, 78, 133, 0.1);
}

.challenge-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(240, 109, 161, 0.58), rgba(240, 109, 161, 0));
}

.challenge-list article::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -10px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 109, 161, 0.09), transparent 72%);
  pointer-events: none;
}

.feature-browser {
  padding: 30px;
}

.feature-browser-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.feature-browser-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.52rem;
}

.feature-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(106, 97, 103, 0.05);
  border: 1px solid rgba(106, 97, 103, 0.08);
}

.feature-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
}

.feature-tab.is-active {
  background: linear-gradient(135deg, var(--teal), #f06da1);
  color: #fff;
  box-shadow: 0 12px 24px rgba(223, 78, 133, 0.18);
}

.feature-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
  color: var(--navy);
  font-family: var(--number-font);
}

.feature-meta span:first-child {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

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

.feature-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.feature-card-kind {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: var(--number-font);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.feature-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(160, 166, 176, 0.26);
  color: #9ba3ae;
  box-shadow:
    0 10px 18px rgba(106, 97, 103, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card[data-feature-kind="optional"] .feature-icon {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(139, 91, 114, 0.14);
  color: var(--bluegreen);
}

.feature-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
}

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

.plan-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.plan-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(106, 97, 103, 0.08);
}

.plan-card dt {
  color: var(--ink-soft);
}

.plan-card dd {
  margin: 0;
  color: var(--navy);
  font-family: var(--number-font);
  font-weight: 800;
}

.plan-card-recommended {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at top right, rgba(240, 109, 161, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.9));
  border-color: rgba(223, 78, 133, 0.28);
  box-shadow:
    0 28px 62px rgba(223, 78, 133, 0.14),
    0 0 0 1px rgba(240, 109, 161, 0.08) inset;
}

.plan-card-recommended .plan-tag-recommended {
  color: #d95289;
  background: linear-gradient(180deg, rgba(255, 241, 247, 0.98), rgba(248, 224, 235, 0.94));
  border: 1px solid rgba(223, 78, 133, 0.18);
  box-shadow: 0 12px 24px rgba(223, 78, 133, 0.12);
}

.plan-note {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 26px 28px 28px;
  background:
    radial-gradient(circle at top left, rgba(240, 109, 161, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(207, 213, 221, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 246, 249, 0.96));
  border: 1px solid rgba(223, 78, 133, 0.1);
  box-shadow:
    0 24px 56px rgba(166, 131, 148, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.plan-note::before {
  content: "";
  position: absolute;
  inset: auto -36px -42px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 109, 161, 0.12), transparent 70%);
  pointer-events: none;
}

.plan-note strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 233, 240, 0.9));
  border: 1px solid rgba(223, 78, 133, 0.14);
  box-shadow: 0 12px 24px rgba(223, 78, 133, 0.08);
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-note strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f06da1, #f4b3ca);
  box-shadow: 0 0 0 5px rgba(240, 109, 161, 0.1);
}

.plan-note ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-note li {
  position: relative;
  min-height: 100%;
  padding: 16px 18px 16px 44px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 252, 0.82));
  border: 1px solid rgba(223, 78, 133, 0.08);
  box-shadow: 0 12px 26px rgba(106, 82, 94, 0.06);
  color: var(--navy);
  line-height: 1.6;
}

.plan-note li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(240, 109, 161, 0.08);
  background: linear-gradient(135deg, #f06da1, #f4b3ca);
}

.plan-note li::after {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 109, 161, 0.5), rgba(240, 109, 161, 0.1));
}

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

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

.faq-item {
  position: relative;
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 253, 0.88));
  border: 1px solid rgba(106, 97, 103, 0.08);
  box-shadow: 0 16px 36px rgba(106, 82, 94, 0.08);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.08rem;
  line-height: 1.42;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

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

.ecosystem-card h3 {
  margin: 8px 0 4px;
}

.ecosystem-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ecosystem-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 238, 244, 0.88));
  border: 1px solid rgba(223, 78, 133, 0.12);
  color: #b07f95;
  box-shadow:
    0 10px 22px rgba(223, 78, 133, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ecosystem-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-card h3 {
  margin: 0;
}

.ecosystem-card p {
  margin: 0;
  line-height: 1.6;
}

.ecosystem-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bluegreen);
  font-weight: 700;
  margin-top: 2px;
}

.ecosystem-link::after {
  content: "→";
}

.section-cta {
  padding-top: 80px;
  padding-bottom: 118px;
}

.cta-panel {
  display: grid;
  justify-items: stretch;
  gap: 24px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border: 1px solid rgba(223, 78, 133, 0.12);
  box-shadow: 0 22px 52px rgba(106, 82, 94, 0.08);
}

.cta-panel .eyebrow {
  color: var(--teal);
}

.cta-panel .eyebrow::before {
  background: var(--teal);
  box-shadow: 0 2px 8px rgba(223, 78, 133, 0.2);
}

.cta-panel h2 {
  color: var(--navy);
}

.cta-panel p:last-child {
  color: var(--ink-soft);
}

.cta-panel > div:first-child {
  max-width: 880px;
  width: 100%;
  text-align: left;
  justify-self: start;
}

.cta-panel > div:first-child h2 {
  font-size: clamp(1.05rem, 1.4vw, 1.5rem);
  line-height: 1.28;
}

.cta-actions {
  justify-content: center;
  margin-top: 4px;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(106, 97, 103, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .benefits-layout,
  .plan-grid,
  .flow-grid,
  .ecosystem-grid,
  .overview-grid,
  .feature-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-search,
  .dashboard-support {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-stage {
    min-height: 260px;
  }

  .hero-website {
    width: min(100%, 840px);
    padding-right: 0;
  }

  .website-window {
    width: 100%;
  }

  .website-phone {
    display: none;
  }

  .footer-inner,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero-backdrop,
  .hero::after {
    inset: 18px 18px auto;
    height: 760px;
    border-radius: 36px;
    clip-path: none;
  }

  .hero-grid,
  .hero-facts,
  .benefits-layout,
  .overview-grid,
  .feature-grid,
  .plan-grid,
  .flow-grid,
  .faq-list,
  .ecosystem-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 18px;
  }

  .feature-browser-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-visual-wrap {
    margin-top: 24px;
  }

  .hero-website {
    display: grid;
    gap: 18px;
    padding: 8px;
  }

  .website-window {
    width: 100%;
  }

  .website-hero {
    grid-template-columns: 1fr;
  }

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

  .website-listings {
    display: none;
  }

  .website-phone {
    position: relative;
    display: block;
    right: auto;
    bottom: auto;
    width: min(100%, 184px);
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-backdrop,
  .hero::after {
    inset: 14px 12px auto;
    height: 980px;
    border-radius: 28px;
  }

  .website-toolbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .website-toolbar-nav {
    justify-content: flex-start;
  }

  .website-copy,
  .website-spotlight-panel {
    padding: 16px;
  }

  .website-panel-head strong {
    font-size: 1.12rem;
  }

  .website-search-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .website-listings {
    grid-template-columns: 1fr;
  }

  .website-phone {
    width: min(100%, 176px);
    margin: 0 auto;
    padding: 8px;
    border-radius: 26px;
  }

  .website-phone-notch {
    width: 58px;
    height: 11px;
    margin-bottom: 6px;
  }

  .website-phone-screen {
    min-height: 214px;
    padding: 9px;
    gap: 7px;
    border-radius: 18px;
  }

  .website-phone-minibrand {
    width: 34px;
    height: 11px;
  }

  .website-phone-ministat {
    width: 60px;
    height: 9px;
  }

  .website-phone-minihero {
    min-height: 28px;
  }

  .website-phone-minicard {
    grid-template-columns: 34px 1fr;
    gap: 7px;
    padding: 7px;
    border-radius: 11px;
  }

  .website-phone-thumb {
    height: 34px;
    border-radius: 8px;
  }

  .website-phone-actions {
    gap: 5px;
  }

  .website-phone-actions span {
    min-height: 28px;
    padding: 0 10px;
  }

  .hero-lead-break {
    display: none;
  }

  .feature-card-head {
    align-items: flex-start;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }



  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.22rem, 5.1vw, 1.68rem);
    line-height: 1.22;
  }

  .section-heading-flow h2 {
    font-size: clamp(1.14rem, 4.7vw, 1.5rem);
    line-height: 1.3;
  }

  .section-heading-ecosystem h2 {
    font-size: clamp(1.1rem, 4.5vw, 1.42rem);
    line-height: 1.32;
  }

  .cta-panel > div:first-child h2 {
    font-size: clamp(1.05rem, 4.25vw, 1.34rem);
    line-height: 1.3;
  }



  .section-heading h2 br,
  .cta-panel h2 br {
    display: inline;
  }

  .hero-stage,
  .feature-browser,
  .cta-panel,
  .plan-note {
    padding: 22px;
  }

  .plan-note ul {
    grid-template-columns: 1fr;
  }

  .info-panel,
  .challenge-list article,
  .feature-card,
  .plan-card,
  .flow-card,
  .ecosystem-card {
    padding: 22px;
  }

  .feature-tabs {
    width: 100%;
  }

  .feature-tab {
    flex: 1;
  }

  .cta-actions {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}























