:root {
  color-scheme: light;
  --paper: #f8f5f0;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --surface-soft: #f4ede5;
  --ink: #211d1a;
  --muted: #6d655f;
  --quiet: #9a8f87;
  --line: #e9dfd6;
  --line-strong: #ddcfc3;
  --brand: #2f4a5a;
  --brand-dark: #233a47;
  --brand-soft: #e9eff1;
  --green: #4f8565;
  --green-soft: #e7f1e9;
  --danger: #a84639;
  --danger-soft: #f8e7e3;
  --shadow: 0 22px 70px rgba(76, 51, 34, 0.09);
  --shadow-soft: 0 10px 32px rgba(76, 51, 34, 0.07);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shell: 1480px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wordmark: "Avenir Next", "Segoe UI Variable Display", "Segoe UI", Inter, ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: clamp(1em, calc(0.95em + 0.25vw), 1.125em);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 8% 4%, rgba(47, 74, 90, 0.06), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(104, 132, 144, 0.05), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.site-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.site-icon {
  width: 1em;
  height: 1em;
  display: block;
  overflow: visible;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(248, 245, 240, 0.86);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(221, 207, 195, 0.74);
  box-shadow: 0 8px 28px rgba(76, 51, 34, 0.045);
}
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-dark); text-decoration: none; flex-shrink: 0; }
.brand-name {
  color: inherit;
  font-family: var(--wordmark);
  font-size: 26px;
  font-weight: 620;
  font-variation-settings: "wght" 620;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: lowercase;
}
.brand-symbol {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--brand);
}
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); margin-inline: auto; }
.desktop-nav a {
  position: relative;
  color: #3c3632;
  font-size: 0.875rem;
  font-weight: 590;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 1.5px;
  background: var(--brand);
  transition: left 160ms ease, right 160ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.site-account { position: relative; flex: 0 0 auto; }
.site-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #c7d3d8;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.site-avatar:hover, .site-avatar[aria-expanded="true"] {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47, 74, 90, 0.12);
}
.site-account-dropdown {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  width: min(290px, calc(100vw - 24px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 22px 58px rgba(35, 35, 35, 0.14);
}
.site-account-dropdown[hidden] { display: none; }
.site-account-identity {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 8px 12px;
  border-bottom: 1px solid var(--line);
}
.site-account-identity > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
}
.site-account-identity strong, .site-account-identity small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-account-identity strong { font-size: 0.875rem; }
.site-account-identity small { margin-top: 2px; color: var(--muted); font-size: 0.75rem; }
.site-account-dropdown > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 650;
  text-decoration: none;
}
.site-account-dropdown > a:first-of-type { margin-top: 5px; }
.site-account-dropdown > a:hover { background: var(--surface-soft); }
.site-account-dropdown > a .site-icon { width: 19px; height: 19px; color: var(--brand); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 730;
  font-size: 0.875rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, button:focus-visible {
  outline: 3px solid rgba(47, 74, 90, 0.23);
  outline-offset: 3px;
}
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 9px 22px rgba(47, 74, 90, 0.18); }
.button-primary:hover { background: var(--brand-dark); box-shadow: 0 11px 25px rgba(35, 58, 71, 0.22); }
.button-quiet { border-color: var(--line); background: rgba(255,255,255,0.55); color: var(--ink); }
.button-quiet:hover { border-color: var(--line-strong); background: #fff; }
.button-large { min-height: 54px; padding-inline: 25px; font-size: 0.9375rem; }
.button-play { border-color: var(--line); background: rgba(255,255,255,0.48); }
.play-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
}
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 1.5px; margin: 4px auto; background: var(--ink); }
.mobile-nav { border-top: 1px solid var(--line); background: var(--surface); }
.mobile-nav nav { width: min(calc(100% - 32px), var(--shell)); margin: auto; padding: 12px 0 20px; display: grid; }
.mobile-nav nav > a { min-height: 48px; display: flex; align-items: center; padding: 13px 4px; border-bottom: 1px solid var(--line); font-weight: 650; text-decoration: none; }
.mobile-nav-actions { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 10px; margin-top: 16px; }
.mobile-nav-account { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.mobile-nav-account a {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.hero { min-height: 690px; display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(580px, 1.18fr); align-items: center; gap: clamp(40px, 4vw, 72px); padding-top: 70px; padding-bottom: 48px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 18px; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #506b79;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero h1, .page-hero h1, .auth-intro h1, .legal-hero h1 {
  margin: 18px 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero h1 { font-size: clamp(3.5rem, 5.35vw, 5.5rem); }
.hero-lead { max-width: 650px; margin: 0; color: #534c47; font-size: clamp(1.0625rem, calc(1rem + 0.3vw), 1.3125rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-note { max-width: 520px; display: flex; align-items: center; gap: 14px; margin-top: 25px; }
.hero-note p { margin: 0; color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.shield-icon, .trust-icon, .soft-icon, .mini-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--brand);
}
.shield-icon { width: 44px; height: 44px; border: 1px solid var(--line); font-size: 1.25rem; font-weight: 800; }

.product-visual { position: relative; min-height: 570px; padding: 20px 100px 86px 0; }
.visual-dots {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.22;
  background-image: radial-gradient(#8298a2 1.2px, transparent 1.2px);
  background-size: 10px 10px;
}
.dots-one { top: -7px; left: -55px; }
.dots-two { right: 2px; bottom: 8px; }
.overview-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}
.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-header > strong { font-size: 1rem; }
.security-pill { padding: 8px 11px; border-radius: 8px; background: #f3ece5; color: #584c45; font-size: 0.75rem; }
.overview-grid { display: grid; grid-template-columns: 0.9fr 1.15fr; gap: 12px; }
.mock-panel { padding: 18px; border: 1px solid #eee5de; border-radius: 11px; background: #fffefa; }
.mock-label { color: #352f2c; font-size: 0.8125rem; font-weight: 760; }
.progress-list { position: relative; list-style: none; margin: 13px 0 0; padding: 0; display: grid; gap: 8px; }
.progress-list::before { content: ""; position: absolute; top: 10px; bottom: 10px; left: 9px; width: 1px; background: var(--line-strong); }
.progress-list li { position: relative; display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 6px 7px; border-radius: 8px; }
.progress-list li.current { background: #eff3f4; }
.progress-list li > span { z-index: 1; width: 22px; height: 22px; display: grid; place-items: center; border: 2px solid #c8bbb1; border-radius: 50%; background: #fff; font-size: 0.6875rem; }
.progress-list li.done > span { border-color: var(--green); background: var(--green); color: #fff; }
.progress-list li.current > span { border-color: var(--brand); background: var(--brand); color: #fff; }
.progress-list strong, .progress-list small { display: block; }
.progress-list strong { font-size: 0.8125rem; }
.progress-list small { color: var(--quiet); font-size: 0.75rem; }
.mock-panel-title { display: flex; justify-content: space-between; align-items: center; }
.mock-panel-title small { color: var(--muted); font-size: 0.75rem; }
.document-row { display: flex; align-items: center; gap: 11px; padding: 14px 0; border-bottom: 1px solid #eee8e2; }
.document-row:last-child { border-bottom: 0; }
.document-row strong, .document-row small { display: block; }
.document-row strong { max-width: 180px; overflow: hidden; color: #403936; font-size: 0.8125rem; text-overflow: ellipsis; white-space: nowrap; }
.document-row small { color: var(--quiet); font-size: 0.75rem; }
.file-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; font-size: 0.625rem; font-weight: 800; }
.file-pdf { background: var(--brand-soft); color: var(--brand); }
.file-mail { background: #eaf2fb; color: #3d76a5; }
.file-image { background: #eeeae6; color: #5f5852; }
.assessment-card {
  position: absolute;
  z-index: 4;
  top: 100px;
  right: 0;
  width: 215px;
  padding: 21px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.strength-row { display: flex; align-items: center; gap: 11px; margin: 17px 0; }
.strength-ring { width: 48px; height: 48px; border: 8px solid #eae5df; border-top-color: var(--green); border-right-color: var(--green); border-radius: 50%; transform: rotate(20deg); }
.strength-row small, .strength-row strong { display: block; }
.strength-row small { font-size: 0.75rem; }
.strength-row strong { color: var(--green); font-size: 0.875rem; }
.assessment-subtitle { font-size: 0.8125rem; font-weight: 750; }
.skeleton-lines { display: grid; gap: 5px; margin: 11px 0 16px; }
.skeleton-lines span { height: 5px; border-radius: 99px; background: #e9e5e1; }
.skeleton-lines span:nth-child(2) { width: 74%; }
.skeleton-lines span:nth-child(3) { width: 62%; }
.mock-action { min-height: 44px; display: grid; place-items: center; padding: 9px; border: 1px solid #c3cfd3; border-radius: 7px; background: #eff3f4; color: var(--brand-dark); font-size: 0.8125rem; font-weight: 740; text-align: center; }
.workflow-strip {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 12px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}
.workflow-strip > div { display: flex; align-items: center; gap: 8px; }
.workflow-strip p { margin: 0; }
.workflow-strip strong, .workflow-strip small { display: block; white-space: nowrap; }
.workflow-strip strong { font-size: 0.8125rem; }
.workflow-strip small { color: var(--muted); font-size: 0.75rem; }
.workflow-strip > i { color: #8a9da5; font-style: normal; }
.mini-icon { width: 36px; height: 36px; border: 1px solid var(--line); font-size: 1rem; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
  margin-bottom: 48px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.64);
}
.trust-band article { min-width: 0; display: flex; align-items: center; gap: 14px; padding: 4px 24px; border-right: 1px solid var(--line); }
.trust-band article:last-child { border-right: 0; }
.trust-icon { width: 46px; height: 46px; border: 1px solid var(--line); font-size: 1.25rem; }
.trust-band strong, .trust-band small { display: block; }
.trust-band strong { font-size: 0.9375rem; line-height: 1.3; }
.trust-band small { margin-top: 5px; color: var(--muted); font-size: 0.8125rem; line-height: 1.4; }

.section-heading { margin-bottom: 18px; }
.section-heading h2 { margin: 4px 0 0; font: 600 clamp(28px, 3.2vw, 42px)/1.05 var(--serif); letter-spacing: -0.035em; }
.compact-heading h2 { font-size: 2rem; }
.home-process { padding: 34px 0 64px; }
.process-pricing-grid { display: grid; grid-template-columns: 1fr 0.72fr; gap: 20px; align-items: stretch; }
.step-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.step-card, .pricing-card, .why-grid article, .founder-mini, .faq-list details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,0.54);
}
.step-card { position: relative; min-height: 220px; padding: 52px 24px 24px; }
.step-number { position: absolute; top: 16px; left: 16px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-size: 0.75rem; font-weight: 800; }
.step-icon { min-height: 48px; display: grid; place-items: center; color: var(--brand); font-size: 2.25rem; text-align: center; }
.step-card h3 { margin: 14px 0 8px; font-size: 1rem; line-height: 1.3; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.pricing-card { display: grid; align-content: space-between; gap: 18px; padding: 26px; box-shadow: var(--shadow-soft); }
.pricing-top { display: grid; grid-template-columns: 0.72fr 1fr; gap: 20px; }
.pricing-top > div:first-child { padding-right: 18px; border-right: 1px solid var(--line); }
.price { display: block; margin: 13px 0 4px; font: 600 49px/0.9 var(--serif); letter-spacing: -0.05em; }
.pricing-top small { color: var(--muted); font-size: 0.8125rem; }
.check-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 9px; }
.check-list li { position: relative; padding-left: 20px; color: #554e49; font-size: 0.875rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.pricing-note { display: block; color: var(--muted); font-size: 0.75rem; text-align: center; }

.home-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-bottom: 54px; }
.why-preview { grid-column: 1 / -1; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.why-grid article { min-height: 190px; padding: 22px; }
.soft-icon { width: 44px; height: 44px; border: 1px solid var(--line); font-size: 1.25rem; }
.why-grid h3 { margin: 22px 0 8px; font-size: 0.9375rem; line-height: 1.3; }
.why-grid p { margin: 0; color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.founder-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.founder-mini { min-height: 230px; overflow: hidden; display: grid; grid-template-columns: 42% 58%; }
.portrait { min-height: 164px; display: grid; place-items: end center; background: linear-gradient(155deg, #e9e0d8, #d6c2b4); }
.portrait::before {
  content: "";
  position: absolute;
  width: 62px;
  height: 82px;
  margin-bottom: 0;
  border-radius: 38px 38px 5px 5px;
  background: linear-gradient(155deg, #35424b, #171f25);
}
.portrait { position: relative; }
.portrait span { z-index: 1; margin-bottom: 59px; color: #fff; font: 700 13px var(--serif); }
.portrait-yagub { background: linear-gradient(155deg, #e8ddd4, #cbb7aa); }
.portrait-alaskar { background: linear-gradient(155deg, #eee6df, #d6cbc1); }
img.portrait {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  align-self: center;
  object-fit: contain;
  object-position: center;
}
.founder-mini > div:last-child { padding: 20px 16px; }
.founder-mini strong, .founder-mini small { display: block; }
.founder-mini strong { font-size: 0.875rem; }
.founder-mini small { margin-top: 6px; color: var(--muted); font-size: 0.8125rem; line-height: 1.45; }
.founder-mini p { margin: 15px 0 0; color: var(--muted); font-size: 0.875rem; line-height: 1.55; }
.faq-list { display: grid; }
.faq-list details { border-radius: 0; border-bottom: 0; }
.faq-list details:first-child { border-radius: 10px 10px 0 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 10px 10px; }
details summary { position: relative; min-height: 50px; display: flex; align-items: center; padding: 14px 42px 14px 16px; font-size: 0.875rem; font-weight: 670; cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 12px; top: 50%; font-size: 15px; transform: translateY(-50%); }
details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 16px 16px; color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

.closing-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 40px;
  padding: 27px 34px;
  border: 1px solid #ccd5d8;
  border-radius: var(--radius);
  background: linear-gradient(110deg, #e9eff1, #f3f6f6 60%, #e3eaec);
}
.closing-mark { transform: scale(0.9); }
.closing-cta h2 { margin: 0 0 3px; font: 600 25px/1.1 var(--serif); }
.closing-cta p { margin: 0; color: var(--muted); font-size: 0.875rem; }
.closing-actions { display: flex; gap: 11px; }

.page-hero { max-width: 1040px; padding-top: 100px; padding-bottom: 70px; text-align: center; }
.narrow-hero { max-width: 900px; }
.page-hero h1 { margin-inline: auto; max-width: 900px; font-size: clamp(48px, 6.6vw, 82px); }
.page-hero > p { max-width: 750px; margin: 0 auto; color: var(--muted); font-size: 19px; }
.detailed-steps { max-width: 980px; padding-bottom: 65px; }
.detailed-step { display: grid; grid-template-columns: 76px 1fr; gap: 28px; padding: 30px 0; border-top: 1px solid var(--line); }
.detailed-step > span { color: var(--brand); font: 600 26px var(--serif); }
.detailed-step h2 { margin: 0 0 8px; font: 600 29px var(--serif); letter-spacing: -0.03em; }
.detailed-step p { max-width: 700px; margin: 0; color: var(--muted); }
.process-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 55px; }
.process-principles article, .contact-card, .value-grid article { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.52); }
.process-principles strong { font: 600 22px var(--serif); }
.process-principles p, .contact-card p { color: var(--muted); }

.pricing-page-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: 28px; align-items: center; max-width: 1060px; margin-bottom: 80px; }
.pricing-feature-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.price-caption { display: block; color: var(--muted); }
.large-checks { margin: 30px 0; gap: 13px; }
.large-checks li { padding-left: 25px; font-size: 15px; }
.pricing-feature-card .button { width: 100%; }
.pricing-explainer { padding: 25px; }
.pricing-explainer h2 { margin: 0 0 16px; font: 600 32px var(--serif); }
.pricing-explainer p { color: var(--muted); }
.calm-note { display: grid; gap: 7px; margin-top: 25px; padding: 19px; border-left: 3px solid var(--brand); background: var(--surface-soft); }
.calm-note span { color: var(--muted); font-size: 0.8125rem; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1080px; margin-bottom: 62px; }
.value-grid article > span { color: var(--brand); font-size: 0.75rem; font-weight: 800; }
.value-grid h2 { margin: 28px 0 10px; font: 600 29px var(--serif); letter-spacing: -0.03em; }
.value-grid p { margin: 0; color: var(--muted); }
.manifesto-panel { max-width: 960px; margin-bottom: 75px; padding: 50px; border-radius: var(--radius-lg); background: var(--ink); color: #fff; text-align: center; }
.manifesto-panel .brand-symbol { filter: brightness(1.8); }
.manifesto-panel blockquote { margin: 25px auto 12px; font: 500 clamp(30px, 4vw, 50px)/1.15 var(--serif); letter-spacing: -0.035em; }
.manifesto-panel p { margin: 0; color: #c9c0ba; }

.founder-grid { max-width: 1100px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }
.founder-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.founder-portrait { min-height: 310px; position: relative; display: grid; place-items: center; background: linear-gradient(145deg, #eee5dd, #cfbbae); }
.founder-portrait::before { content: ""; position: absolute; bottom: 0; width: 180px; height: 215px; border-radius: 100px 100px 0 0; background: linear-gradient(155deg, #35424b, #171f25); }
.founder-portrait span { z-index: 1; color: #fff; font: 600 35px var(--serif); }
img.founder-portrait {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  object-position: center;
}
.founder-copy { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.founder-copy h2 { margin: 18px 0 2px; font: 600 36px var(--serif); letter-spacing: -0.035em; }
.founder-copy > strong { color: var(--brand-dark); }
.founder-copy > p { margin: 20px 0; color: var(--muted); }
.founder-focus { display: flex; flex-wrap: wrap; gap: 7px; }
.founder-focus span { padding: 7px 10px; border-radius: 999px; background: var(--surface-soft); color: #6e5548; font-size: 0.75rem; }
.founder-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; padding-top: 24px; }
.founder-social-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.founder-social-link:hover { border-color: #bbc8cd; box-shadow: 0 8px 20px rgb(43 61 70 / 0.09); transform: translateY(-1px); }
.founder-social-link:focus-visible { outline: 3px solid rgb(47 74 90 / 0.22); outline-offset: 2px; }
.social-mark { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; color: #fff; font-size: 11px; font-weight: 850; letter-spacing: -0.02em; text-transform: lowercase; }
.social-mark-linkedin { background: #0a66c2; }
.social-mark-instagram { background: linear-gradient(135deg, #6c3dc1, #d63672 55%, #f3a536); }
.social-arrow { margin-left: 2px; color: var(--muted); font-size: 13px; }
.team-principle { display: grid; grid-template-columns: minmax(280px, 0.7fr) 1fr; gap: 50px; align-items: center; max-width: 1050px; margin-bottom: 70px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.team-principle > div { display: flex; align-items: center; gap: 18px; }
.team-principle h2 { margin: 0; font: 600 31px var(--serif); }
.team-principle > p { margin: 0; color: var(--muted); }

.faq-page { max-width: 900px; margin-bottom: 75px; border-top: 1px solid var(--line); }
.faq-page details { border-bottom: 1px solid var(--line); }
.faq-page details summary { padding: 24px 50px 24px 2px; font-size: 17px; }
.faq-page details summary::after { right: 5px; font-size: 23px; }
.faq-page details p { max-width: 760px; margin: -5px 0 0; padding: 0 30px 25px 2px; color: var(--muted); }

.contact-grid { max-width: 1100px; display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.contact-card { min-height: 260px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-card.featured { background: var(--ink); color: #fff; }
.contact-card.featured p { color: #cfc5be; }
.contact-card h2 { margin: 24px 0 3px; font: 600 26px var(--serif); }
.contact-card .button, .contact-card .text-link { margin-top: auto; }
.text-link { color: var(--brand-dark); font-weight: 750; text-underline-offset: 4px; }
.response-note { max-width: 1100px; display: flex; align-items: baseline; gap: 25px; margin-bottom: 72px; padding: 20px 24px; border-radius: var(--radius); background: var(--surface-soft); }
.response-note p { margin: 0; color: var(--muted); }

.auth-shell { min-height: calc(100vh - 84px); display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr); gap: clamp(55px, 8vw, 120px); align-items: center; max-width: 1080px; padding-top: 60px; padding-bottom: 80px; }
.auth-intro h1 { font-size: clamp(52px, 6vw, 76px); }
.auth-intro > p { max-width: 540px; color: var(--muted); font-size: 18px; }
.auth-brand { margin-bottom: 55px; }
.auth-benefits { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 13px; }
.auth-benefits li { position: relative; padding-left: 26px; color: #4f4843; }
.auth-benefits li::before { content: "✓"; position: absolute; left: 0; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 10px; font-weight: 800; }
.auth-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.auth-card-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; }
.auth-card-heading h2 { margin: 0; font: 600 31px var(--serif); }
.auth-card-heading p { margin: 2px 0 0; color: var(--muted); font-size: 0.8125rem; }
.site-form { display: grid; gap: 17px; }
.site-form label { display: grid; gap: 8px; color: #514a45; font-size: 0.875rem; font-weight: 720; }
.site-form label > span { color: var(--quiet); font-weight: 500; }
.site-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  outline: 0;
}
.site-form input:not([type="checkbox"]):focus { border-color: #687f8a; box-shadow: 0 0 0 4px rgba(47, 74, 90, 0.1); }
.site-form input::placeholder { color: #b2aaa4; }
.auth-switch { margin: 22px 0 0; color: var(--muted); font-size: 0.8125rem; text-align: center; }
.auth-switch a, .check-field a { color: var(--brand-dark); font-weight: 730; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.check-field { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.5; }
.check-field input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--brand); }
.form-footnote { color: var(--muted); line-height: 1.5; text-align: center; }
.form-alert { margin-bottom: 18px; padding: 13px 15px; border: 1px solid #efc9c0; border-radius: 10px; background: var(--danger-soft); color: var(--danger); font-size: 0.8125rem; }
.form-alert ul { margin: 7px 0 0; padding-left: 18px; }
.price-inline { display: flex; align-items: center; gap: 15px; margin: 28px 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.5); }
.price-inline > strong { font: 600 42px/1 var(--serif); }
.price-inline > span { color: #4e4742; line-height: 1.35; }
.price-inline small { color: var(--muted); }

.legal-hero { max-width: 900px; padding-top: 95px; padding-bottom: 45px; }
.legal-hero h1 { font-size: clamp(45px, 5vw, 67px); }
.legal-hero p { color: var(--muted); }
.legal-document { max-width: 900px; padding-bottom: 90px; }
.legal-intro { margin: 0 0 40px; padding: 24px; border-left: 3px solid var(--brand); background: var(--surface-soft); font-size: 17px; }
.legal-document section { padding: 25px 0; border-top: 1px solid var(--line); }
.legal-document h2 { margin: 0 0 9px; font: 600 25px var(--serif); }
.legal-document p { margin: 0; color: var(--muted); }
.not-found { min-height: 65vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.not-found .button { margin-top: 25px; }

.site-footer { margin-top: 40px; padding-top: 55px; border-top: 1px solid var(--line); background: rgba(243, 237, 230, 0.78); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.65fr 0.85fr 1fr; gap: 45px; padding-bottom: 45px; }
.footer-brand > p { max-width: 390px; margin: 20px 0 14px; color: var(--muted); }
.company-name { color: var(--quiet); font-size: 0.8125rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-column > strong { margin-bottom: 8px; font-size: 0.875rem; }
.footer-column a:not(.button) { color: var(--muted); font-size: 0.875rem; text-decoration: none; }
.footer-column a:not(.button):hover { color: var(--ink); }
.footer-column p { margin: 0 0 8px; color: var(--muted); font-size: 0.875rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0 27px; border-top: 1px solid var(--line); color: var(--quiet); font-size: 0.75rem; }

.site-bottom-nav { display: none; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 0.8125rem; }
  .header-actions .button { padding-inline: 13px; }
  .hero { grid-template-columns: 0.9fr 1.1fr; gap: 30px; }
  .product-visual { transform: none; }
  .home-lower { grid-template-columns: 1fr 1fr; }
  .faq-preview { grid-column: 1 / -1; }
  .faq-preview .faq-list { grid-template-columns: 1fr 1fr; }
  .faq-list details { border: 1px solid var(--line); border-radius: 9px !important; }
}

@media (max-width: 960px) {
  .site-shell { width: min(calc(100% - 32px), var(--shell)); }
  .desktop-nav, .desktop-action { display: none; }
  .menu-toggle { display: block; }
  .header-actions { margin-left: auto; }
  .header-inner { min-height: 72px; }
  .mobile-nav {
    max-height: calc(100dvh - 72px - 76px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .site-bottom-nav {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(68px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    padding: 5px max(6px, env(safe-area-inset-right)) env(safe-area-inset-bottom) max(6px, env(safe-area-inset-left));
    border-top: 1px solid rgba(221, 207, 195, 0.9);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 -10px 32px rgba(76, 51, 34, 0.09);
    backdrop-filter: blur(18px);
  }
  .site-bottom-nav > a {
    min-width: 0;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 2px 2px;
    border-radius: 11px;
    color: var(--muted);
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
  }
  .site-bottom-nav > a > .site-icon { width: 21px; height: 21px; flex: 0 0 auto; }
  .site-bottom-nav > a > span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-bottom-nav > a:hover, .site-bottom-nav > a.is-active { color: var(--brand); }
  .site-bottom-nav > a.is-active:not(.site-bottom-primary) { background: var(--brand-soft); }
  .site-bottom-nav .site-bottom-primary {
    height: 64px;
    justify-content: flex-start;
    gap: 3px;
    margin-top: -15px;
    color: var(--brand-dark);
  }
  .site-bottom-primary-icon {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 4px solid var(--surface);
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 22px rgba(47, 74, 90, 0.28);
  }
  .site-bottom-primary-icon .site-icon { width: 21px; height: 21px; }
  .hero { grid-template-columns: 1fr; gap: 16px; padding-top: 55px; }
  .hero-copy { max-width: 720px; }
  .product-visual { width: min(100%, 760px); margin: 0 auto; transform: none; }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .trust-band article { padding: 15px; }
  .trust-band article:nth-child(2) { border-right: 0; }
  .trust-band article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-pricing-grid { grid-template-columns: 1fr; }
  .home-lower { grid-template-columns: 1fr; }
  .faq-preview { grid-column: auto; }
  .pricing-page-grid, .auth-shell { grid-template-columns: 1fr; }
  .auth-shell { max-width: 720px; gap: 40px; }
  .auth-intro { text-align: center; }
  .auth-intro > p { margin-inline: auto; }
  .auth-brand { justify-content: center; margin-bottom: 38px; }
  .auth-benefits { width: fit-content; margin-inline: auto; text-align: left; }
  .founder-grid { grid-template-columns: 1fr; max-width: 680px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card.featured { grid-row: span 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-start { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-shell { width: min(calc(100% - 24px), var(--shell)); }
  main, section, article, div { min-width: 0; }
  p, li, h1, h2, h3, strong, small, a { overflow-wrap: anywhere; }
  .brand { gap: 6px; }
  .brand-name { font-size: 23px; }
  .brand-symbol { width: 25px; height: 25px; }
  .hero { min-height: auto; padding-top: 43px; padding-bottom: 20px; }
  .hero h1 { font-size: clamp(49px, 14vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; }
  .product-visual { min-height: auto; display: grid; gap: 12px; padding: 10px 0 0; }
  .visual-dots { display: none; }
  .overview-card { padding: 16px; }
  .overview-grid { grid-template-columns: 1fr; gap: 12px; }
  .mock-panel { padding: 14px; }
  .assessment-card { position: relative; inset: auto; width: auto; padding: 16px; }
  .strength-ring { width: 44px; height: 44px; border-width: 7px; }
  .workflow-strip { position: relative; inset: auto; display: grid; grid-template-columns: 1fr; gap: 5px; overflow: visible; padding: 9px; }
  .workflow-strip > div { min-width: 0; justify-content: flex-start; padding: 7px 8px; border-radius: 10px; background: rgba(244, 237, 229, 0.58); }
  .workflow-strip > i { display: none; }
  .workflow-strip p { min-width: 0; }
  .workflow-strip strong, .workflow-strip small { display: block; overflow: visible; text-overflow: clip; white-space: normal; }
  .workflow-strip small { font-size: 0.75rem; }
  .document-row { gap: 9px; padding: 12px 0; }
  .file-icon { width: 32px; height: 32px; }
  .document-row strong { max-width: none; font-size: 0.8125rem; }
  .progress-list { gap: 5px; }
  .progress-list li { min-height: 42px; padding-inline: 5px; }
  .progress-list strong { font-size: 0.8125rem; }
  .trust-band { margin-top: 15px; margin-bottom: 34px; padding: 6px 12px; }
  .trust-band article { align-items: flex-start; padding: 13px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-band article:last-child { border-bottom: 0; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-icon { width: 42px; height: 42px; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .step-card { min-height: 190px; }
  .pricing-top { grid-template-columns: 1fr; }
  .pricing-top > div:first-child { padding: 0 0 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-lower { gap: 28px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .founder-mini-grid, .faq-preview .faq-list { grid-template-columns: 1fr; }
  .closing-cta { grid-template-columns: auto 1fr; padding: 25px 20px; }
  .closing-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .page-hero { padding-top: 72px; padding-bottom: 48px; text-align: left; }
  .page-hero h1 { margin-inline: 0; font-size: clamp(44px, 13vw, 64px); }
  .page-hero > p { margin-inline: 0; font-size: 17px; }
  .detailed-step { grid-template-columns: 48px 1fr; gap: 15px; }
  .detailed-step h2 { font-size: 24px; }
  .process-principles, .value-grid { grid-template-columns: 1fr; }
  .pricing-feature-card { padding: 25px 19px; }
  .manifesto-panel { padding: 38px 22px; }
  .founder-portrait { min-height: 250px; }
  .founder-copy { padding: 24px 20px; }
  .team-principle { grid-template-columns: 1fr; gap: 23px; padding: 25px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card.featured { grid-row: auto; }
  .response-note { display: grid; gap: 7px; }
  .auth-shell { padding-top: 36px; gap: 30px; }
  .auth-intro { text-align: left; }
  .auth-brand { justify-content: flex-start; }
  .auth-benefits { width: auto; margin-inline: 0; }
  .auth-card { padding: 25px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .legal-hero { padding-top: 65px; }
  .legal-intro { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-brand, .footer-start { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span { max-width: 42ch; }
}

@media (max-width: 430px) {
  .mobile-nav-actions, .mobile-nav-account, .closing-actions { grid-template-columns: 1fr; }
  .step-grid, .why-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .overview-grid { grid-template-columns: 1fr; }
  .mock-header .security-pill { display: none; }
  .workflow-strip p strong { font-size: 0.8125rem; }
  .closing-cta { grid-template-columns: 1fr; }
  .closing-mark { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-start { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
