:root {
  color-scheme: light;
  --header-offset: 16px;
  --bg: #f6efe7;
  --bg-strong: #fff9f4;
  --surface: rgba(255, 250, 245, 0.88);
  --surface-solid: #fffdf9;
  --surface-strong: #fff6ee;
  --line: rgba(44, 30, 20, 0.1);
  --line-strong: rgba(44, 30, 20, 0.16);
  --text: #1f1d1a;
  --muted: #63594f;
  --primary: #ef6d48;
  --primary-dark: #d75b38;
  --secondary: #1f6c63;
  --secondary-soft: #dcefe9;
  --accent: #f5c86a;
  --shadow-soft: 0 24px 70px rgba(76, 49, 24, 0.08);
  --shadow-card: 0 18px 48px rgba(76, 49, 24, 0.12);
  --success-bg: #ecfdf5;
  --success-border: #9fdec1;
  --success-text: #17593f;
  --error-bg: #fff1ef;
  --error-border: #f8c0b5;
  --error-text: #8e2f1d;
  --info-bg: #edf5ff;
  --info-border: #c5dcff;
  --info-text: #244e9d;
}

body.theme-aurora {
  --bg: #edf4ff;
  --bg-strong: #f8fbff;
  --surface: rgba(245, 250, 255, 0.92);
  --surface-solid: #fcfeff;
  --surface-strong: #e8f1ff;
  --line: rgba(28, 65, 122, 0.12);
  --line-strong: rgba(28, 65, 122, 0.2);
  --text: #173155;
  --muted: #5c7497;
  --primary: #2f6df6;
  --primary-dark: #2258cd;
  --secondary: #49a4ff;
  --secondary-soft: #dceeff;
  --accent: #8dd8ff;
  --shadow-soft: 0 24px 70px rgba(23, 49, 85, 0.1);
  --shadow-card: 0 18px 48px rgba(23, 49, 85, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 18%, white) 0%, transparent 30%),
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--secondary) 18%, white) 0%, transparent 20%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-strong) 92%, white) 0%, var(--bg) 48%, color-mix(in srgb, var(--bg) 82%, #f7f4ef) 100%);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-offset);
  z-index: 19;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 18%, white) 0%, transparent 30%),
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--secondary) 18%, white) 0%, transparent 20%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-strong) 92%, white) 0%, var(--bg) 48%, color-mix(in srgb, var(--bg) 82%, #f7f4ef) 100%);
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 40px;
}

.site-header {
  position: fixed;
  top: var(--header-offset);
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 40px rgba(76, 49, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--accent) 72%, white));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 28%, transparent);
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 15px;
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  position: relative;
}

.site-nav > a,
.nav-dropdown > summary {
  text-decoration: none;
  color: var(--muted);
}

.site-nav > a:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.site-nav > a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

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

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

.nav-dropdown > summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.18s ease;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-solid) 94%, white);
  box-shadow: var(--shadow-card);
}

.nav-dropdown-link {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown-link strong {
  font-size: 14px;
  line-height: 1.2;
}

.nav-dropdown-link small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  background: color-mix(in srgb, var(--secondary-soft) 74%, white);
  transform: translateY(-1px);
  outline: none;
}

.header-actions,
.hero-actions,
.cta-actions,
.actions-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 42px 0;
}

.section-tight {
  padding-top: 12px;
  padding-bottom: 24px;
}

.pricing-main {
  display: grid;
  gap: 6px;
}

.pricing-hero {
  padding-top: 30px;
}

.pricing-heading {
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.pricing-hero-lead {
  max-width: 24ch;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--text);
  text-wrap: balance;
}

.pricing-hero-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

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

.pricing-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 94%, white), color-mix(in srgb, var(--surface-strong) 82%, white));
}

.pricing-card:nth-child(2) {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 88%, white), color-mix(in srgb, var(--secondary-soft) 34%, white));
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.price-block {
  display: grid;
  gap: 2px;
}

.price-amount {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price-period {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.pricing-description {
  min-height: 3.5em;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.pricing-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-strong) 90%, white), color-mix(in srgb, var(--accent) 16%, white));
}

.pricing-trust-copy {
  display: grid;
  gap: 14px;
}

.pricing-trust-copy h2,
.faq-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.pricing-trust-list {
  align-content: center;
}

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

.faq-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 94%, white), color-mix(in srgb, var(--surface-strong) 84%, white));
}

.faq-card p,
.pricing-cta-copy p {
  color: var(--text);
}

.pricing-cta-panel {
  align-items: center;
}

.pricing-cta-stack {
  display: grid;
  gap: 18px;
}

.pricing-cta-copy {
  display: grid;
  gap: 12px;
  max-width: 48ch;
}

.pricing-demo-panel {
  display: grid;
  gap: 10px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface-solid) 92%, white);
  box-shadow: var(--shadow-card);
}

.pricing-demo-kicker {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.pricing-demo-link {
  width: fit-content;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: color-mix(in srgb, var(--primary) 78%, #7d4dff);
}

.pricing-demo-link:hover,
.pricing-demo-link:focus-visible {
  color: var(--primary-dark);
  outline: none;
}

.hero {
  display: grid;
  gap: 44px;
  justify-items: center;
  padding-top: 26px;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.mini-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--primary);
}

.section-kicker,
.mini-label {
  color: var(--secondary);
}

.hero h1 {
  max-width: 24ch;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 42ch;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  text-wrap: balance;
}

.hero-title-accent {
  color: color-mix(in srgb, var(--primary) 78%, #7d4dff);
}

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

.hero-cta-note {
  font-size: 14px;
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 84%, white);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: auto;
  padding-top: 12px;
}

.dashboard-card,
.story-card,
.benefit-card,
.testimonial-card,
.cta-panel,
.card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.dashboard-main {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.54);
  border-bottom: 1px solid rgba(44, 30, 20, 0.08);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(99, 89, 79, 0.3);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 460px;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.46);
  border-right: 1px solid rgba(44, 30, 20, 0.08);
}

.sidebar-block {
  height: 48px;
  border-radius: 16px;
  background: rgba(99, 89, 79, 0.12);
}

.sidebar-brand {
  height: 72px;
  background: linear-gradient(160deg, var(--primary), var(--accent));
}

.dashboard-content {
  display: grid;
  gap: 22px;
  padding: 22px;
}

.dashboard-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 238, 0.72));
}

.dashboard-banner small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.dashboard-banner strong {
  font-size: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.calendar-cell {
  height: 88px;
  border-radius: 18px;
  background: rgba(99, 89, 79, 0.08);
}

.calendar-cell.highlight {
  background: linear-gradient(150deg, var(--primary), color-mix(in srgb, var(--accent) 78%, white));
}

.calendar-cell.highlight-soft {
  background: linear-gradient(150deg, color-mix(in srgb, var(--secondary) 28%, white), color-mix(in srgb, var(--secondary) 12%, white));
}

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

.stat-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.stat-card strong {
  font-size: 28px;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow-soft);
}

.floating-note span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.floating-note strong {
  font-size: 16px;
}

.note-top {
  top: 0;
  left: 12px;
}

.note-bottom {
  right: 12px;
  bottom: 18px;
}

.logo-strip {
  border-top: 1px solid rgba(44, 30, 20, 0.08);
  border-bottom: 1px solid rgba(44, 30, 20, 0.08);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.logo-row span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px dashed rgba(44, 30, 20, 0.18);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.54);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.split-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: end;
  max-width: none;
}

.story-grid,
.benefits-grid,
.testimonials-grid {
  display: grid;
  gap: 20px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 24px;
  padding: 24px;
  border-radius: 30px;
}

.story-card:nth-child(even) {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
}

.story-card-accent {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-solid) 88%, var(--accent) 12%), color-mix(in srgb, var(--surface-solid) 94%, white));
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.story-copy h3,
.benefit-card h3,
.cta-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.story-visual {
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
}

.visual-board,
.visual-columns,
.visual-meter {
  border: 1px solid rgba(44, 30, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(248, 237, 227, 0.88));
}

.visual-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  height: 100%;
}

.visual-stack span,
.visual-columns div,
.meter-bars span {
  border-radius: 18px;
  background: rgba(99, 89, 79, 0.12);
}

.visual-stack span:first-child {
  background: linear-gradient(140deg, var(--primary), color-mix(in srgb, var(--accent) 78%, white));
}

.visual-stack span:last-child {
  background: linear-gradient(140deg, color-mix(in srgb, var(--secondary) 34%, white), color-mix(in srgb, var(--secondary) 14%, white));
}

.visual-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  padding: 24px;
}

.visual-columns div:nth-child(1) {
  min-height: 55%;
}

.visual-columns div:nth-child(2) {
  min-height: 80%;
  background: linear-gradient(160deg, var(--secondary), color-mix(in srgb, var(--secondary) 45%, white));
}

.visual-columns div:nth-child(3) {
  min-height: 65%;
}

.visual-meter {
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 24px;
}

.meter-ring {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 249, 243, 0.98) 42%, transparent 43%),
    conic-gradient(from 90deg, var(--primary) 0 58%, var(--secondary) 58% 85%, rgba(99, 89, 79, 0.12) 85% 100%);
}

.meter-bars {
  display: grid;
  gap: 12px;
  width: 100%;
}

.meter-bars span {
  display: block;
  height: 18px;
}

.meter-bars span:nth-child(2) {
  width: 82%;
  background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--accent) 74%, white));
}

.meter-bars span:nth-child(3) {
  width: 66%;
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.text-link {
  width: fit-content;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

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

.benefit-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
}

.benefit-index {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--primary);
}

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

.testimonial-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
}

.testimonial-meta {
  display: grid;
  gap: 4px;
}

.testimonial-meta span {
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-strong) 86%, var(--accent) 14%), color-mix(in srgb, var(--surface-strong) 92%, white));
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 28px 0 10px;
  border-top: 1px solid rgba(44, 30, 20, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.8fr));
  gap: 28px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column-brand {
  gap: 14px;
}

.footer-brand {
  width: fit-content;
}

.site-footer p {
  max-width: 42ch;
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(44, 30, 20, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.legal-card {
  display: grid;
  gap: 16px;
}

.wrap {
  min-height: calc(100vh - 152px);
  display: grid;
  place-items: center;
  padding: 24px;
}

body.page-registration-confirmation .page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-registration-confirmation .wrap {
  flex: 1;
  min-height: auto;
  place-items: start center;
  padding-top: 18px;
  padding-bottom: 28px;
}

body.page-registration-confirmation .site-nav {
  display: none;
}

body.page-registration-confirmation .header-actions {
  margin-left: auto;
}

body.page-registration-confirmation .header-actions .button-primary {
  display: none;
}

body.page-registration-confirmation .site-footer {
  gap: 14px;
  padding-top: 18px;
  border-top-color: rgba(28, 65, 122, 0.1);
}

body.page-registration-confirmation .footer-grid {
  display: none;
}

body.page-registration-confirmation .footer-bottom {
  padding-top: 0;
  border-top: 0;
  text-align: center;
}

.card {
  width: 100%;
  max-width: 620px;
  padding: 32px;
  border-radius: 28px;
}

.card-wide {
  max-width: 760px;
}

.confirmation-card {
  max-width: 780px;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 44px 48px 38px;
  border-radius: 32px;
  text-align: center;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 96%, white), color-mix(in srgb, var(--surface-strong) 88%, white)),
    var(--surface);
}

.confirmation-intro {
  display: grid;
  gap: 12px;
  max-width: 34rem;
}

.confirmation-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-wrap: balance;
}

.confirmation-lead {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}

.confirmation-copy {
  font-size: 1.02rem;
  text-wrap: balance;
}

.confirmation-box {
  width: 100%;
  max-width: 640px;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid color-mix(in srgb, var(--success-border) 88%, white);
  border-radius: 24px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--success-bg) 92%, white), #ffffff);
  box-shadow: 0 14px 34px rgba(23, 49, 85, 0.08);
}

.confirmation-box-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3dbb83, #78dca9);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(61, 187, 131, 0.2);
}

.confirmation-box p {
  color: var(--success-text);
  font-size: 15px;
  font-weight: 700;
}

.confirmation-trust-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.confirmation-trust-list li {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-solid) 92%, white);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(23, 49, 85, 0.05);
}

.confirmation-note {
  font-size: 14px;
}

.footer-legal-minimal {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
}

.footer-legal-minimal a {
  text-decoration: none;
  color: var(--muted);
}

.footer-legal-minimal a:hover,
.footer-legal-minimal a:focus-visible {
  color: var(--text);
  outline: none;
}

body.page-registration-confirmation .footer-legal-minimal {
  display: flex;
}

h1 {
  margin: 0 0 8px;
  font-size: 40px;
}

.form-intro {
  display: grid;
  gap: 8px;
  margin: 10px 0 20px;
  text-align: center;
}

.form-intro h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.form-intro-subtitle {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  border-color: rgba(44, 30, 20, 0.18);
}

.button-primary,
button.button-primary {
  border-color: color-mix(in srgb, var(--primary) 20%, white);
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--secondary) 72%, white));
  background-clip: padding-box;
  color: #fff;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 24%, transparent);
}

.button-primary:hover,
button.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), color-mix(in srgb, var(--secondary) 60%, var(--primary-dark)));
}

.button-secondary {
  border-color: rgba(31, 108, 99, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
}

.hidden {
  display: none !important;
}

form {
  margin-top: 28px;
}

input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 15px;
}

input:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 18%, white);
  border-color: color-mix(in srgb, var(--primary) 48%, white);
}

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

.message {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.message-success {
  background: var(--success-bg);
  border-color: var(--success-border);
  color: var(--success-text);
}

.message-error {
  background: var(--error-bg);
  border-color: var(--error-border);
  color: var(--error-text);
}

.message-info {
  background: var(--info-bg);
  border-color: var(--info-border);
  color: var(--info-text);
}

@media (max-width: 1080px) {
  .hero,
  .story-card,
  .story-card:nth-child(even),
  .split-heading,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    gap: 30px;
  }

  .hero-visual {
    width: 100%;
  }

  .dashboard-main {
    margin: 0 auto;
  }

  .note-top {
    left: 0;
  }

  .note-bottom {
    right: 0;
    bottom: 0;
  }

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

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

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

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

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 156px;
  }

  .site-header {
    flex-wrap: wrap;
    width: min(100% - 20px, 1180px);
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-top: 6px;
    border-top: 1px solid rgba(44, 30, 20, 0.08);
  }

  .nav-dropdown-menu {
    width: min(360px, calc(100vw - 40px));
  }

  .hero h1,
  .section-heading h2,
  .story-copy h3,
  .benefit-card h3,
  .cta-panel h2,
  h1 {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .testimonials-grid,
  .logo-row,
  .benefits-grid,
  .pricing-grid,
  .faq-grid,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .pricing-trust {
    grid-template-columns: 1fr;
  }

  .confirmation-trust-list {
    grid-template-columns: 1fr;
  }

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

  .dashboard-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(44, 30, 20, 0.08);
  }

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

  .testimonial-card p {
    font-size: 18px;
  }
}

@media (min-width: 640px) {
  .row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .page-shell {
    width: calc(100% - 16px);
    padding-top: 184px;
  }

  .site-header,
  .card,
  .story-card,
  .testimonial-card,
  .cta-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .brand {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-nav {
    align-items: center;
  }

  .nav-dropdown {
    min-width: 0;
  }

  .nav-dropdown-menu {
    left: 0;
    width: min(100vw - 32px, 360px);
  }

  .header-actions,
  .hero-actions,
  .cta-actions,
  .actions-inline {
    width: 100%;
  }

  .header-actions .button,
  .hero-actions .button,
  .cta-actions .button,
  .actions-inline .button,
  .actions .button,
  button {
    width: 100%;
  }

  .logo-row span {
    width: 100%;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
  }

  .site-header {
    width: calc(100% - 16px);
  }

  .confirmation-card {
    padding: 28px 20px 24px;
    gap: 18px;
  }

  .confirmation-box {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .confirmation-trust-list li {
    min-height: 0;
  }

  .footer-legal-minimal {
    gap: 14px;
  }
}
