:root {
  --bg: #f6f9fd;
  --bg-soft: #edf5ff;
  --blue-glow: rgba(33, 105, 232, 0.12);
  --cyan-soft: #e8f8ff;
  --paper: #ffffff;
  --paper-soft: #f9fbff;
  --ink: #102033;
  --ink-strong: #061423;
  --muted: #56697f;
  --subtle: #7890a8;
  --blue: #2169e8;
  --blue-dark: #164fb5;
  --blue-soft: #e7f1ff;
  --sky: #cde7ff;
  --gold: #f3b74f;
  --gold-soft: #fff3d8;
  --green: #14946f;
  --line: rgba(25, 58, 99, 0.13);
  --line-strong: rgba(33, 105, 232, 0.26);
  --shadow-sm: 0 10px 28px rgba(27, 58, 95, 0.08);
  --shadow-md: 0 22px 58px rgba(27, 58, 95, 0.13);
  --shadow-lg: 0 34px 90px rgba(27, 58, 95, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body::before {
  content: none;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  color: var(--ink-strong);
}

h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5.4vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

ul {
  color: var(--muted);
}

.site-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.topbar {
  position: relative;
  top: auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(27, 58, 95, 0.08);
}

.topbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink-strong);
  font-weight: 850;
  text-decoration: none;
}

.topbar-brand img,
.footer-brand img {
  width: 158px;
  max-width: 36vw;
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(33, 105, 232, 0.13);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(27, 58, 95, 0.08);
}

.topbar-brand span {
  line-height: 1.08;
}

.topbar-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
}

.topbar-nav a,
.footer-links a,
.nav-dropdown summary {
  color: #07182b;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
}

.topbar-nav a:hover,
.footer-links a:hover,
.nav-dropdown summary:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-dropdown-menu a {
  color: #07182b;
  padding: 10px 12px;
  border-radius: 14px;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-soft);
}

.home-flow,
.solution-shell {
  display: grid;
  gap: 26px;
}

.immersive-hero,
.section-frame,
.ownership-frame,
.setup-banner,
.final-launch,
.solution-hero,
.solution-section,
.solution-proof,
.app-download-frame,
.web-portal-frame,
.policy-shell,
.support-shell,
.verification-shell,
.verification-result,
.page-hero,
.page-section,
.dark-panel,
.callout-panel,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 10%, rgba(33, 105, 232, 0.08), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 12px 40px rgba(27, 58, 95, 0.08);
}

.immersive-hero::before,
.section-frame::before,
.ownership-frame::before,
.setup-banner::before,
.final-launch::before,
.solution-hero::before,
.solution-section::before,
.solution-proof::before,
.app-download-frame::before,
.web-portal-frame::before {
  content: none;
}

.hero-stack,
.hero-side-panel,
.section-frame-head,
.ownership-copy,
.setup-copy,
.solution-copy,
.app-download-copy,
.app-download-card,
.web-portal-frame > *,
.portal-roadmap {
  position: relative;
  z-index: 1;
}

.immersive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: center;
  padding: 44px;
  background: #ffffff;
  box-shadow: 0 16px 60px rgba(27, 58, 95, 0.1);
}

.eyebrow,
.mini-label,
.hero-stat span,
.role-kicker,
.panel-index,
.process-step {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-label {
  color: var(--green);
  letter-spacing: 0.13em;
}

.hero-pretitle {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-weight: 850;
}

.lead,
.section-copy,
.policy-copy,
.support-copy,
.page-subheadline {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-lead {
  max-width: 45rem;
  font-size: 1.12rem;
}

.hero-actions,
.callout-actions,
.center-actions,
.page-cta,
.verification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 28px 0 16px;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(180deg, #2d7aff, #185bd1);
  box-shadow: 0 16px 34px rgba(33, 105, 232, 0.24);
}

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

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.store-badge {
  display: inline-grid;
  min-width: 166px;
  gap: 1px;
  padding: 11px 16px;
  border-radius: 17px;
  color: #ffffff;
  text-decoration: none;
  background: #071524;
  box-shadow: 0 16px 36px rgba(7, 21, 36, 0.18);
}

.store-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
}

.store-badge strong {
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1;
}

.store-badge.muted {
  color: var(--ink-strong);
  border: 1px solid var(--line);
  background: #ffffff;
}

.store-badge.muted span,
.store-badge.muted strong {
  color: var(--ink-strong);
}

.hero-bullet-grid,
.ownership-grid,
.story-panel-grid,
.solution-grid,
.benefit-detail-grid,
.report-compare,
.portal-roadmap,
.trust-strip,
.value-grid,
.step-grid,
.benefit-grid,
.report-grid,
.role-grid,
.support-grid,
.policy-meta,
.support-meta,
.verification-grid {
  display: grid;
  gap: 16px;
}

.hero-bullet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-bullet-grid article,
.story-panel,
.ownership-card,
.process-card,
.role-showcase-card,
.report-compare-card,
.solution-feature,
.solution-side-card,
.benefit-detail-card,
.hero-stat,
.report-use-panel,
.app-download-card,
.portal-roadmap article,
.trust-strip article,
.value-card,
.step-card,
.role-card,
.report-card,
.summary-card,
.message-card,
.threshold-card,
.sectionCard,
.noteCard,
.support-grid article,
.policy-meta article,
.support-meta article,
.verification-grid article,
.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
  box-shadow: var(--shadow-sm);
}

.hero-bullet-grid article:nth-child(3n + 1),
.ownership-card:nth-child(3n + 1),
.process-card:nth-child(3n + 1),
.role-showcase-card:nth-child(3n + 1),
.solution-feature:nth-child(3n + 1),
.benefit-detail-card:nth-child(3n + 1),
.support-grid article:nth-child(3n + 1) {
  background: linear-gradient(145deg, #ffffff 0%, #edf6ff 100%);
}

.hero-bullet-grid article:nth-child(3n + 2),
.ownership-card:nth-child(3n + 2),
.process-card:nth-child(3n + 2),
.role-showcase-card:nth-child(3n + 2),
.solution-feature:nth-child(3n + 2),
.benefit-detail-card:nth-child(3n + 2),
.support-grid article:nth-child(3n + 2) {
  background: linear-gradient(145deg, #ffffff 0%, #eaf9ff 100%);
}

.hero-bullet-grid article:nth-child(3n),
.ownership-card:nth-child(3n),
.process-card:nth-child(3n),
.role-showcase-card:nth-child(3n),
.solution-feature:nth-child(3n),
.benefit-detail-card:nth-child(3n),
.support-grid article:nth-child(3n) {
  background: linear-gradient(145deg, #ffffff 0%, #f1f6ff 100%);
}

.hero-bullet-grid article,
.story-panel,
.ownership-card,
.process-card,
.role-showcase-card,
.report-compare-card,
.solution-feature,
.solution-side-card,
.benefit-detail-card,
.trust-strip article,
.value-card,
.step-card,
.role-card,
.report-card,
.summary-card,
.message-card,
.threshold-card,
.sectionCard,
.noteCard,
.support-grid article,
.policy-meta article,
.support-meta article,
.verification-grid article,
.benefit-grid article {
  padding: 20px;
}

.hero-bullet-grid p,
.story-panel p,
.ownership-card p,
.process-card p,
.role-showcase-card p,
.report-compare-card p,
.solution-feature p,
.solution-side-card p,
.benefit-detail-card p,
.report-use-panel p,
.portal-roadmap p {
  margin-bottom: 0;
}

.hero-side-panel {
  display: grid;
  gap: 14px;
}

.hero-visual-shell {
  position: relative;
  min-height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
}

.product-showcase {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.logo-showcase-card {
  width: 100%;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(33, 105, 232, 0.14);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(27, 58, 95, 0.08);
}

.logo-showcase-card img {
  display: block;
  width: 100%;
}

.hero-product-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f7fbff;
}

.hero-product-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.hero-product-card p {
  margin-bottom: 0;
}

.hero-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-mini-metrics article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.hero-mini-metrics strong,
.hero-mini-metrics span {
  display: block;
}

.hero-mini-metrics strong {
  font-size: 1.08rem;
}

.hero-mini-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-frame,
.solution-section,
.solution-proof,
.setup-banner,
.final-launch,
.app-download-frame,
.web-portal-frame,
.page-section {
  padding: 32px;
}

.section-frame::after,
.solution-section::after,
.solution-proof::after,
.ownership-frame::after,
.web-portal-frame::after,
.support-hero-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(33, 105, 232, 0.14),
    rgba(33, 105, 232, 0.03) 60%,
    transparent 70%
  );
  pointer-events: none;
}

.section-frame-head,
.solution-heading {
  max-width: 810px;
  margin-bottom: 24px;
}

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

.story-panel {
  min-height: 190px;
}

.section-closing {
  margin: 22px 0 0;
  color: var(--ink-strong);
  font-size: 1.08rem;
  font-weight: 900;
}

.app-download-frame,
.web-portal-frame,
.ownership-frame,
.solution-hero,
.setup-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: center;
}

.app-download-frame {
  background:
    linear-gradient(135deg, #f4faff 0%, #ffffff 58%, #edf6ff 100%);
}

.app-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.app-feature-row span,
.metaChip,
.meta-chip,
.metaPill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-strong);
  font-size: 0.9rem;
  font-weight: 850;
  background: #ffffff;
}

.app-download-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.app-download-card img {
  width: 104px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.app-download-card strong {
  font-size: 1.35rem;
}

.app-preview-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: center;
}

.app-preview-copy {
  max-width: 460px;
}

.app-preview-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.preview-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-strong);
  font: inherit;
  font-weight: 900;
  background: #ffffff;
  cursor: pointer;
}

.preview-button:hover {
  border-color: var(--line-strong);
  color: var(--blue);
}

.app-preview-card {
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, #eaf5ff 0%, #ffffff 100%);
  box-shadow: 0 12px 38px rgba(27, 58, 95, 0.09);
}

.app-preview-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 32%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 4px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.app-preview-track::-webkit-scrollbar {
  height: 10px;
}

.app-preview-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(33, 105, 232, 0.25);
}

.preview-slide {
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.preview-slide img {
  display: block;
  width: 100%;
  max-height: 420px;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.preview-slide strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.preview-slide p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.ownership-frame {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

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

.outline-word,
.solution-outline {
  margin: 0 0 14px;
  color: rgba(33, 105, 232, 0.08);
  -webkit-text-stroke: 1px rgba(33, 105, 232, 0.32);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.86;
}

.outline-word {
  font-size: clamp(3.2rem, 10vw, 7.4rem);
}

.solution-outline {
  font-size: clamp(2.6rem, 10vw, 6.2rem);
}

.process-track,
.role-showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.process-card,
.role-showcase-card {
  scroll-snap-align: start;
}

.process-card {
  min-height: 205px;
}

.role-showcase-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

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

.report-compare-card {
  min-height: 220px;
}

.report-compare-card.highlight {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, #e5f3ff, #ffffff);
}

.report-use-panel {
  margin-top: 16px;
  padding: 24px;
}

.report-use-title {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-weight: 900;
}

.report-use-list,
.hero-points,
.feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.web-portal-frame {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  background:
    linear-gradient(135deg, #ffffff 0%, #eff7ff 100%);
}

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

.portal-roadmap article {
  padding: 18px;
}

.portal-roadmap article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #edf6ff);
}

.portal-roadmap article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #eaf9ff);
}

.portal-roadmap article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #eff4ff);
}

.setup-banner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-launch {
  text-align: center;
}

.solution-hero {
  align-items: stretch;
  padding: 34px;
}

.solution-side-card {
  align-self: stretch;
  padding: 24px;
  background:
    linear-gradient(145deg, #ffffff 0%, #eef7ff 62%, #e8f8ff 100%);
  box-shadow: 0 18px 54px rgba(27, 58, 95, 0.11);
}

.solution-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

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

.value-grid,
.report-grid,
.role-grid,
.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.hero,
.callout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.hero-copy,
.hero-visual,
.page-hero,
.dark-panel,
.callout-panel,
.cta-band,
.policy-shell,
.support-shell,
.verification-shell,
.verification-result,
.page-section {
  padding: 32px;
}

.hero-visual-frame {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #edf7ff, #ffffff);
}

.hero-product-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 28px;
}

.brand-mark {
  display: block;
  width: 180px;
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.support-link {
  color: var(--blue);
  font-weight: 850;
}

.support-shell {
  display: grid;
  gap: 22px;
}

.support-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
}

.support-hero-card h1 {
  max-width: 12ch;
}

.support-action-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.support-action-panel p,
.support-card p,
.support-path-card p,
.support-report-card p {
  margin-bottom: 0;
}

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

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

.support-card,
.support-path-card,
.support-report-card {
  display: grid;
  gap: 10px;
}

.support-path-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
}

.support-report-card {
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
  box-shadow: var(--shadow-sm);
}

.support-report-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-report-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: #ffffff;
}

.support-legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-shell {
  display: grid;
  gap: 22px;
}

.portal-hero,
.portal-auth-card,
.portal-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 12%, rgba(33, 105, 232, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: var(--shadow-md);
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 22px;
  align-items: stretch;
  padding: 34px;
}

.portal-hero h1 {
  max-width: 14ch;
}

.portal-security-card,
.portal-list-card,
.portal-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.88));
  box-shadow: var(--shadow-sm);
}

.portal-security-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
}

.portal-security-card p {
  margin-bottom: 0;
}

.portal-auth-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.portal-message {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.portal-message[data-tone="error"] {
  color: #b42318;
}

.portal-dashboard {
  padding: 28px;
}

.portal-dashboard-head,
.portal-list-head,
.portal-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
}

.portal-list-card,
.portal-detail-card {
  padding: 20px;
}

.portal-property-list,
.portal-asset-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.portal-property-button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink-strong);
  text-align: left;
  background: #ffffff;
  cursor: pointer;
}

.portal-property-button:hover,
.portal-property-button.is-active {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, #ffffff, #eaf5ff);
}

.portal-property-button span,
.portal-field-grid span,
.portal-stat-grid span,
.portal-asset-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.portal-stat-grid,
.portal-field-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

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

.portal-stat-grid article,
.portal-field-grid article,
.portal-asset-list article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.portal-stat-grid strong {
  font-size: 1.45rem;
}

.portal-assets-panel {
  margin-top: 20px;
}

.portal-empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
}

.portal-empty-state.compact {
  padding: 20px;
}

.portal-empty-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #dff0ff, #ffffff),
    var(--blue-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}

.portal-loading {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.verification-form {
  display: grid;
  gap: 12px;
}

.verification-form input,
.verification-form button {
  min-height: 50px;
  border-radius: 16px;
  font: inherit;
}

.verification-form input {
  border: 1px solid var(--line);
  padding: 0 14px;
}

.verification-form button {
  border: 0;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.footer-brand p {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 900;
}

.footer-brand span {
  color: var(--muted);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll[data-reveal-variant="slide-left"] {
  transform: translate3d(-24px, 0, 0);
}

.reveal-on-scroll[data-reveal-variant="slide-right"] {
  transform: translate3d(24px, 0, 0);
}

.reveal-on-scroll.is-visible,
.reveal-on-scroll.is-visible[data-reveal-variant="slide-left"],
.reveal-on-scroll.is-visible[data-reveal-variant="slide-right"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
  .immersive-hero,
  .ownership-frame,
  .solution-hero,
  .setup-banner,
  .app-download-frame,
  .web-portal-frame,
  .app-preview-frame,
  .portal-hero,
  .portal-auth-card,
  .portal-layout,
  .hero,
  .callout-panel {
    grid-template-columns: 1fr;
  }

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

  .report-compare,
  .benefit-detail-grid,
  .portal-roadmap {
    grid-template-columns: 1fr;
  }

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

  .app-preview-copy {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 24px, var(--max));
    padding-top: 14px;
  }

  .topbar {
    position: relative;
    top: auto;
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
  }

  .topbar-nav {
    justify-content: flex-start;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.55rem);
  }

  .immersive-hero,
  .section-frame,
  .ownership-frame,
  .setup-banner,
  .final-launch,
  .solution-hero,
  .solution-section,
  .solution-proof,
  .app-download-frame,
  .web-portal-frame,
  .page-hero,
  .page-section,
  .dark-panel,
  .callout-panel,
  .cta-band,
  .policy-shell,
  .support-shell,
  .verification-shell,
  .verification-result {
    padding: 24px;
    border-radius: 28px;
  }

  .portal-dashboard,
  .portal-hero,
  .portal-auth-card {
    padding: 24px;
    border-radius: 28px;
  }

  .hero-bullet-grid,
  .story-panel-grid,
  .ownership-grid,
  .value-grid,
  .report-grid,
  .role-grid,
  .benefit-grid,
  .step-grid,
  .compact-trust,
  .final-trust,
  .support-hero-card,
  .support-grid,
  .policy-meta,
  .support-meta,
  .verification-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-shell {
    min-height: auto;
  }

  .portal-stat-grid,
  .portal-field-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .callout-actions,
  .center-actions,
  .page-cta,
  .verification-actions,
  .store-badge-row,
  .app-feature-row {
    flex-direction: column;
  }

  .button,
  .store-badge {
    width: 100%;
  }

  .process-track,
  .role-showcase-track {
    grid-auto-columns: minmax(88%, 88%);
  }

  .app-preview-track {
    grid-auto-columns: minmax(78%, 78%);
  }

  .product-showcase {
    padding: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
