:root {
  color-scheme: light;
  --font-formal-title: "Aichel", "Aichel Regular", "PresMind Boska Regular", Georgia, "Times New Roman", serif;
  --font-content-title: "PresMind Boska Light", Georgia, "Times New Roman", serif;
  --font-brand: Cambria, Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --blue-950: #071f45;
  --blue-900: #0a2c5e;
  --blue-800: #123d73;
  --blue-700: #1c4e80;
  --blue-500: #3271ae;
  --orange-600: #ff7a1a;
  --orange-700: #e85f00;
  --orange-800: #c94f00;
  --paper: #fff3ea;
  --surface: #ffffff;
  --ink: #171717;
  --ink-soft: #475569;
  --muted: #77736d;
  --line: #dedbd4;
  --line-soft: #ece8df;
  --line-primary: rgba(10, 44, 94, 0.32);
  --line-primary-soft: rgba(10, 44, 94, 0.16);
  --line-secondary: rgba(201, 79, 0, 0.48);
  --line-secondary-soft: rgba(201, 79, 0, 0.26);
  --shadow: 0 22px 60px rgba(10, 44, 94, 0.08);
  --focus: rgba(255, 122, 26, 0.32);
  --radius-login: 3px;
  --radius-card: 3px;
}

@font-face {
  font-family: "PresMind Bodoni Moda SC";
  src: url("./assets/fonts/bodoni-moda-sc-500.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PresMind Cormorant Garamond SemiBold";
  src: url("./assets/fonts/cormorant-garamond-semibold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PresMind Libre Caslon Display";
  src: url("./assets/fonts/libre-caslon-display-regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PresMind Nunito Sans SemiBold";
  src: url("./assets/fonts/nunito-sans-semibold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PresMind Boska Regular";
  src: url("./assets/fonts/boska-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PresMind Boska Light";
  src: url("./assets/fonts/boska-light.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 74px;
  padding: 0 clamp(20px, 6vw, 112px);
  background: rgba(255, 243, 234, 0.92);
  border-bottom: 1px solid var(--line-primary);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--blue-900);
  font-size: 24px;
  font-weight: 760;
}

.brand > span:not(.brand-mark) {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-secondary);
  border-radius: 999px;
  background: var(--orange-600);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.site-header nav {
  justify-self: end;
  gap: 26px;
  color: #494641;
  font-size: 14px;
  font-weight: 520;
}

.site-header nav a {
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
}

.site-header nav a:hover {
  border-color: var(--orange-600);
  color: var(--blue-900);
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.header-session-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-primary);
  border-radius: var(--radius-login);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.header-session-status[hidden] {
  display: none;
}

.header-session-status:hover {
  border-color: var(--orange-700);
  background: #fff;
}

.header-session-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #167a43;
  box-shadow: 0 0 0 3px rgba(22, 122, 67, 0.12);
}
.button,
.provider-button,
.desktop-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius-login);
  padding: 0 17px;
  border: 1px solid var(--orange-800);
  background: var(--blue-900);
  color: #fff;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.button-primary {
  border-color: var(--orange-800);
  background: var(--blue-900);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--orange-800);
  background: var(--blue-800);
}

.button-member {
  gap: 8px;
  border-color: var(--orange-800);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-900);
}

.button-member:hover {
  border-color: var(--orange-700);
  background: #fff;
  color: var(--blue-950);
}

.member-badge {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--orange-600);
  border-radius: var(--radius-login);
  background: var(--blue-900);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}

.button-ghost:hover,
.desktop-download:hover {
  border-color: var(--orange-700);
  background: var(--blue-800);
  color: #fff;
}

.provider-button:hover {
  border-color: var(--orange-700);
  background: #fffaf5;
  color: var(--blue-900);
}

.hero-login {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 850px;
  padding-top: 74px;
}

.hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 86px clamp(20px, 5vw, 104px) 72px;
  text-align: center;
}

.hero-login-simple .hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.hero-login-auth-right .hero-copy {
  justify-items: start;
  text-align: left;
  padding-left: clamp(28px, 9vw, 150px);
  padding-right: clamp(24px, 5vw, 78px);
}

.hero-login-auth-right .hero-lede {
  max-width: 580px;
}

.ad-points {
  display: grid;
  gap: 10px;
  width: min(480px, 100%);
  margin-top: 8px;
}

.ad-points span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-left: 3px solid var(--orange-600);
  border-radius: 0 var(--radius-login) var(--radius-login) 0;
  background: rgba(255, 255, 255, 0.46);
  color: var(--blue-900);
  font-size: 15px;
  font-weight: 760;
}

.hero-auth {
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 78px clamp(28px, 7vw, 116px) 72px;
  border-left: 1px solid var(--line-primary);
}

.auth-shell {
  width: min(440px, 100%);
  padding: 38px 36px 34px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-login);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(10, 44, 94, 0.09);
}

.auth-shell h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-family: var(--font-content-title);
  font-size: clamp(36px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.06;
}

.auth-shell > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.58;
}

.auth-shell .access-card {
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.auth-shell .desktop-download {
  width: 100%;
}

.auth-shell .command-download {
  margin-top: 10px;
  border-color: var(--line-secondary);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-900);
}

.auth-shell .command-download:hover {
  border-color: var(--orange-800);
  background: #fff;
  color: var(--blue-950);
}

.z-auth-shell {
  width: min(448px, 100%);
  padding: 42px 40px 28px;
  border-color: rgba(10, 44, 94, 0.72);
  border-radius: var(--radius-login);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(10, 44, 94, 0.09);
}

.z-auth-logo {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 6px auto 24px;
  place-items: center;
  border: 1px solid var(--orange-600);
  border-radius: var(--radius-login);
  background: var(--blue-900);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.z-auth-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.z-auth-heading h2 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: clamp(30px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.06;
}

.z-auth-heading p,
.z-auth-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.z-auth-form {
  display: grid;
  gap: 10px;
}

.z-auth-form label {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.z-input-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--orange-600);
  border-radius: var(--radius-login);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.96);
}

.z-input-row-action {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  padding-right: 48px;
}

.z-input-row-action .z-input-icon {
  flex: none;
}

.z-input-row-action input {
  width: 100%;
}

.z-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-900);
  cursor: pointer;
  transform: translateY(-50%);
}

.z-password-toggle .z-eye-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.z-password-toggle .z-eye-closed {
  display: none;
}

.z-password-toggle[aria-pressed="true"] .z-eye-open {
  display: none;
}

.z-password-toggle[aria-pressed="true"] .z-eye-closed {
  display: block;
}

.z-input-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--blue-900);
}

.z-input-icon svg,
.z-verify-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.z-input-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font-size: 14px;
  outline: none;
}

.z-input-row input::placeholder {
  color: #8b9099;
}

.z-input-row:focus-within {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.24);
}

.z-forgot-link {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-900);
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.z-verify-button,
.z-login-button,
.z-skip-button {
  display: grid;
  width: 100%;
  min-height: 40px;
  align-items: center;
  border-radius: 5px;
  text-decoration: none;
}

.z-verify-button {
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  border: 1px solid var(--blue-900);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-900);
}

.z-verify-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.z-verify-button > span:first-child svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.z-verify-button strong {
  font-size: 14px;
  font-weight: 700;
}

.z-mini-logo {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: var(--radius-login);
  background: var(--blue-900);
  color: #fff;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.z-login-button {
  justify-content: center;
  border: 1px solid var(--orange-600);
  margin-top: 7px;
  background: var(--blue-900);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.z-login-button:hover {
  border-color: var(--orange-700);
  background: var(--blue-800);
}

.z-skip-button {
  justify-content: center;
  border: 1px solid var(--orange-600);
  margin-top: 3px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.z-verification-area {
  display: grid;
  gap: 10px;
}

.z-auth-status {
  min-height: 36px;
  border: 1px solid var(--line-primary-soft);
  border-radius: var(--radius-login);
  padding: 8px 10px;
  background: rgba(255, 250, 245, 0.92);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.z-auth-status[data-state="error"] {
  border-color: var(--orange-600);
  color: var(--orange-800);
}

.z-auth-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
}

.z-auth-options a {
  color: var(--blue-900);
  font-weight: 600;
}

.z-auth-options i {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--line-secondary-soft);
}

.z-social {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.z-social:disabled {
  color: #a9a9ac;
  cursor: not-allowed;
  opacity: 0.85;
}

.z-social svg {
  width: 19px;
  height: 19px;
}

.z-github svg {
  fill: #a9a9ac;
}

.z-auth-footer {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 18px;
  text-align: center;
}

.z-auth-footer a {
  color: var(--blue-900);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.homepage-login-fields {
  gap: 14px;
  margin: 0;
}

.homepage-login-fields .provider-button {
  min-height: 46px;
}

.homepage-login-fields p {
  text-align: center;
}

.homepage-login-fields p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.google-letter {
  margin-right: 10px;
  color: #2b78e4;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #151515;
  font-family: var(--font-formal-title);
  font-size: clamp(58px, 5.45vw, 84px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 550px;
  margin-bottom: 34px;
  color: #1d1a17;
  font-size: 18px;
  line-height: 1.55;
}

.access-card {
  display: grid;
  width: min(390px, 100%);
  gap: 12px;
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-login);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.provider-button {
  width: 100%;
  min-height: 46px;
  border-color: var(--line-secondary);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-login);
}

.provider-dot {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #0a2c5e 0 50%, #ff7a1a 50% 100%);
}

.divider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: #655f57;
  font-size: 11px;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: var(--line-secondary-soft);
}

.access-card input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-login);
  background: #fff;
  color: var(--ink);
}

.access-card input:focus {
  border-color: var(--orange-600);
  outline: 3px solid var(--focus);
}

.access-submit {
  width: 100%;
  min-height: 48px;
}

.access-card p {
  margin: 0;
  color: #6f6a63;
  font-size: 12px;
  line-height: 1.55;
}

.desktop-download {
  gap: 10px;
  min-height: 46px;
  color: #fff;
}

.hero-product {
  display: grid;
  align-items: center;
  padding: 78px clamp(20px, 5vw, 112px) 64px 0;
  border-left: 1px solid var(--line-primary);
}

.product-shell {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(10, 44, 94, 0.34);
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 122, 26, 0.08), transparent 24%),
    linear-gradient(180deg, #fff, #fff3ea);
  box-shadow: 0 30px 90px rgba(10, 44, 94, 0.11);
  overflow: hidden;
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(10, 44, 94, 0.16);
  border-radius: 16px;
}

.progress-card {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 210px;
  padding: 28px 28px 34px;
  border: 1px solid rgba(10, 44, 94, 0.56);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(10, 44, 94, 0.12);
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.card-heading h2 {
  margin: 0;
  color: #181818;
  font-size: 26px;
  font-weight: 650;
  line-height: 1.2;
}

.card-heading span {
  color: #6d6963;
  font-size: 26px;
}

.progress-card ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-card li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: #5f5b55;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.22;
}

.check {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.active .check {
  background: var(--orange-600);
}

.status-card {
  position: absolute;
  right: 40px;
  bottom: 44px;
  width: min(360px, calc(100% - 80px));
  padding: 22px;
  border-radius: 18px;
  background: var(--blue-950);
  color: #fff;
  box-shadow: 0 24px 55px rgba(7, 31, 69, 0.22);
}

.status-kicker {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.status-card h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 24px;
}

.status-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.status-card div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 122, 26, 0.42);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.status-card dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.status-card dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
  background: var(--line-primary);
}

.summary-band article {
  min-width: 0;
  padding: 38px clamp(20px, 4vw, 70px);
  background: #fff;
}

.summary-band span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 900;
}

.summary-band h2,
.audience-section h2,
.trust-section h2,
.contact-section h2 {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-family: var(--font-content-title);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}

.summary-band p,
.audience-section p,
.trust-section p,
.entry-heading p,
.entry-card p,
.plan-disclaimer {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.summary-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange-600);
  border-radius: var(--radius-login);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 820;
}

.summary-actions a:first-child {
  border-color: var(--orange-600);
  background: var(--blue-900);
  color: #fff;
}

.entry-section {
  padding: 78px clamp(18px, 6vw, 112px) 82px;
  border-bottom: 1px solid var(--line-primary);
  background:
    linear-gradient(90deg, rgba(10, 44, 94, 0.08), transparent 1px) 0 0 / 33.333% 100%,
    var(--paper);
}

.entry-heading {
  display: grid;
  max-width: 860px;
  margin: 0 auto 42px;
  justify-items: center;
  text-align: center;
}

.entry-heading h2 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: clamp(38px, 5.3vw, 66px);
  font-weight: 400;
  line-height: 1.02;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid var(--line-primary);
  background: var(--line-primary);
}

.entry-card {
  display: grid;
  align-content: start;
  min-height: 338px;
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.78);
}

.entry-card span {
  width: max-content;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-secondary);
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.entry-card h3 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-family: var(--font-content-title);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.entry-actions .button {
  min-width: 148px;
}

.button-quiet {
  border-color: var(--line-secondary);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-900);
}

.button-quiet:hover {
  border-color: var(--orange-800);
  background: #fff;
  color: var(--blue-950);
}

.primary-entry {
  background:
    linear-gradient(180deg, rgba(10, 44, 94, 0.04), rgba(255, 255, 255, 0.86)),
    #fff;
}

.plans-section {
  padding: 78px clamp(18px, 6vw, 112px) 86px;
  background: var(--paper);
}

.plans-heading {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-bottom: 48px;
  text-align: center;
}

.plans-heading h2,
.faq-section h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
}

.plan-toggle {
  display: inline-flex;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.42);
}

.plan-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: var(--radius-card);
  padding: 0 clamp(12px, 2.2vw, 24px);
  background: transparent;
  color: var(--blue-900);
  font-weight: 680;
  cursor: default;
  white-space: normal;
}

.plan-toggle .active {
  background: #fff;
  border: 1px solid var(--line-secondary);
  color: var(--blue-950);
  box-shadow: none;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1240px;
  margin: 0 auto;
}

.plan-card {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 34px 32px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.plan-card.highlighted {
  border-color: var(--line-secondary);
  box-shadow: inset 0 0 0 1px rgba(10, 44, 94, 0.08);
}

.plan-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.plan-icon span,
.plan-icon i {
  position: absolute;
  display: block;
  border: 2px solid var(--blue-900);
  border-radius: 999px;
}

.plan-icon span {
  top: 0;
  left: 18px;
  width: 20px;
  height: 20px;
}

.plan-icon span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 2px;
  height: 36px;
  background: var(--blue-900);
}

.plan-icon i {
  width: 10px;
  height: 10px;
}

.plan-icon i:nth-of-type(1) {
  top: 28px;
  left: 2px;
}

.plan-icon i:nth-of-type(2) {
  top: 34px;
  right: 4px;
}

.plan-icon i:nth-of-type(3) {
  bottom: 4px;
  left: 26px;
}

.plan-card h3 {
  margin-bottom: 6px;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: 38px;
  font-weight: 400;
}

.plan-subtitle {
  min-height: 44px;
  margin-bottom: 22px;
  color: #1d1a17;
  font-size: 16px;
}

.plan-price {
  margin-bottom: 6px;
  color: var(--blue-900);
  font-size: 26px;
  font-weight: 820;
}

.plan-note {
  min-height: 48px;
  margin-bottom: 24px;
  color: #6c655d;
  font-size: 14px;
  line-height: 1.45;
}

.plan-card .button {
  width: 100%;
  margin-bottom: 24px;
}

.plan-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-secondary-soft);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: #302d28;
  font-size: 16px;
  line-height: 1.45;
}

.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue-700);
  font-weight: 900;
}

.plan-disclaimer {
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 14px;
}

.audience-section,
.trust-section,
.contact-section {
  padding: 76px clamp(20px, 6vw, 112px);
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
}

.trust-section {
  background: #fff;
}

.trust-section p {
  max-width: 860px;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--blue-900);
  color: #fff;
}

.contact-section h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.faq-section {
  display: grid;
  justify-items: center;
  padding: 86px 18px 104px;
  background: var(--paper);
  text-align: center;
}

.faq-list {
  display: grid;
  width: min(760px, 100%);
  gap: 0;
  margin-top: 34px;
}

.faq-list button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #211f1b;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 30px);
  cursor: default;
}

.faq-list button span:last-child {
  color: #6e6a63;
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.4fr);
  gap: 80px;
  padding: 72px clamp(20px, 6vw, 112px) 92px;
  background: var(--blue-900);
  color: #fff;
}

.subpage-main {
  min-height: 100vh;
  padding-top: 74px;
  background: var(--paper);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  min-height: 560px;
  padding: 88px clamp(20px, 6vw, 112px);
  border-bottom: 1px solid var(--line-primary);
}

.subpage-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--font-formal-title);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
}

.subpage-lede {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.58;
}

.subpage-panel,
.content-card,
.detail-panel {
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.subpage-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.subpage-panel h2,
.content-card h2,
.detail-panel h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}

.subpage-panel p,
.content-card p,
.detail-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.subpage-metric {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line-secondary-soft);
}

.subpage-metric strong {
  color: var(--blue-900);
  font-size: 24px;
}

.page-section {
  padding: 78px clamp(20px, 6vw, 112px);
  border-bottom: 1px solid var(--line-primary);
}

.subpage-main .contact-section {
  border-top: 1px solid var(--line-primary);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

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

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

.content-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  padding: 30px;
}

.content-card.emphasis {
  border-color: var(--line-primary);
  background: rgba(255, 255, 255, 0.9);
}

.content-card .eyebrow {
  margin-bottom: 0;
}

.content-card ul,
.detail-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-card li,
.detail-panel li {
  position: relative;
  padding-left: 24px;
  color: #302d28;
  font-size: 15px;
  line-height: 1.5;
}

.content-card li::before,
.detail-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange-600);
}

.detail-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 6px;
  border: 1px solid var(--orange-700);
  border-radius: var(--radius-card);
  padding: 0 18px;
  background: var(--blue-900);
  color: #fff;
  font-weight: 760;
}

.detail-link:hover {
  background: var(--blue-800);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 34px;
}

.detail-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 30px;
}

.boundary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.boundary-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  padding: 0 12px;
  background: #fffaf5;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 780;
}

.subpage-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border-left: 3px solid var(--blue-900);
  padding-left: 12px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.detail-note {
  border-left: 3px solid var(--orange-700);
  padding-left: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand {
  display: grid;
  align-content: space-between;
  min-height: 360px;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-grid h3 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-grid a {
  color: #fff;
  font-size: 14px;
  font-weight: 680;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

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

  .hero-product {
    padding: 0 20px 56px;
    border-left: 0;
  }

  .hero-auth {
    padding: 0 20px 58px;
    border-left: 0;
  }

  .product-shell {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .brand {
    font-size: 20px;
  }

  .button-ghost {
    display: none;
  }

  .header-actions .button-primary {
    display: none;
  }

  .button,
  .provider-button,
  .desktop-download {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .button-member {
    padding: 0 12px;
  }

  .member-badge {
    display: none;
  }

  .hero-login {
    min-height: auto;
    padding-top: 66px;
  }

  .hero-copy {
    padding: 58px 18px 34px;
  }

  .hero-login-auth-right .hero-copy {
    justify-items: center;
    padding: 56px 18px 30px;
    text-align: center;
  }

  .hero-auth {
    padding: 0 18px 42px;
  }

  .auth-shell {
    padding: 26px 20px 24px;
    border-radius: var(--radius-login);
  }

  h1 {
    font-size: clamp(42px, 12.8vw, 56px);
    line-height: 1.05;
  }

  .hero-lede {
    font-size: 16px;
  }

  .access-card {
    padding: 20px;
    border-radius: var(--radius-login);
  }

  .hero-product {
    padding: 0 14px 42px;
  }

  .product-shell {
    min-height: 500px;
    border-radius: 16px;
  }

  .product-shell::before {
    inset: 18px;
  }

  .progress-card {
    left: 24px;
    right: 24px;
    bottom: 180px;
    padding: 22px 20px 26px;
    border-radius: 22px;
  }

  .progress-card li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    font-size: 18px;
  }

  .check {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .status-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  .summary-band,
  .entry-grid,
  .plan-grid,
  .audience-section,
  .subpage-hero,
  .content-grid,
  .content-grid.two,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .summary-band article,
  .entry-section,
  .plans-section,
  .audience-section,
  .trust-section,
  .contact-section,
  .subpage-hero,
  .page-section {
    padding: 38px 18px;
  }

  .entry-grid {
    border-left: 1px solid var(--line-primary);
    border-right: 1px solid var(--line-primary);
  }

  .entry-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .entry-actions {
    display: grid;
  }

  .subpage-main {
    padding-top: 66px;
  }

  .subpage-panel,
  .content-card,
  .detail-panel {
    padding: 24px 20px;
    border-radius: var(--radius-card);
  }

  .contact-section {
    display: grid;
  }

  .plan-card {
    padding: 26px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 54px 18px 70px;
  }

  .footer-brand {
    min-height: auto;
    gap: 20px;
  }

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

/* Homepage + Page Layout Management System P0 */
.homepage-system {
  background: var(--paper);
}

.button-ghost {
  border-color: var(--line-secondary);
  background: rgba(255, 255, 255, 0.68);
  color: var(--blue-900);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.layout-system-section,
.management-split-section,
.content-system-section {
  padding: 82px clamp(20px, 6vw, 112px);
  border-bottom: 1px solid var(--line-primary);
}

.layout-system-section {
  background:
    linear-gradient(90deg, rgba(10, 44, 94, 0.08), transparent 1px) 0 0 / 25% 100%,
    #fff8f1;
}

.management-split-section {
  background: #fff3ea;
}

.content-system-section {
  background: #fff;
}

.layout-registry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid var(--line-primary);
  background: var(--line-primary);
}

.registry-card {
  display: grid;
  align-content: start;
  min-height: 236px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
}

.registry-card span,
.content-status-row span,
.management-grid span {
  width: max-content;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-secondary);
  color: var(--orange-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registry-card h3,
.module-card strong,
.management-grid h3,
.content-status-row h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-family: var(--font-content-title);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.registry-card p,
.module-card p,
.management-grid p,
.content-status-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.58;
}

.registry-card a {
  width: max-content;
  margin-top: 24px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: var(--line-secondary);
  text-underline-offset: 5px;
}

.module-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 28px auto 0;
}

.module-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.8);
}

.module-card div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.module-card strong {
  margin: 0;
  font-size: clamp(22px, 2vw, 29px);
}

.module-card span,
.boundary-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  padding: 0 9px;
  background: #fffaf5;
  color: var(--blue-900);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
  white-space: nowrap;
}

.management-grid,
.content-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  border: 1px solid var(--line-primary);
  background: var(--line-primary);
}

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

.management-grid article,
.content-status-row article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
}

.content-status-row {
  margin: 0 auto;
}

.layout-admin-main .layout-registry,
.layout-admin-main .module-map,
.layout-admin-main .content-status-row {
  max-width: none;
}

.layout-admin-hero {
  min-height: 520px;
}

.boundary-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line-secondary-soft);
}

@media (max-width: 1180px) {
  .layout-registry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .layout-system-section,
  .management-split-section,
  .content-system-section {
    padding: 44px 18px;
  }

  .layout-registry,
  .module-map,
  .management-grid,
  .content-status-row {
    grid-template-columns: 1fr;
  }

  .registry-card,
  .management-grid article,
  .content-status-row article {
    min-height: auto;
    padding: 24px 20px;
  }

  .module-card div {
    display: grid;
  }
}

/* Simple public entry - Julia 2026-06-25 */
.simple-header {
  grid-template-columns: auto 1fr auto;
}

.simple-header nav {
  justify-content: center;
}

.simple-home {
  min-height: calc(100vh - 74px);
  padding-top: 74px;
  background: var(--paper);
}

.simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  min-height: 720px;
  padding: clamp(70px, 9vw, 126px) clamp(20px, 7vw, 124px);
  border-bottom: 1px solid var(--line-primary);
}

.simple-hero-copy {
  max-width: 760px;
}

.simple-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--blue-900);
  font-family: var(--font-formal-title);
  font-size: clamp(64px, 7.4vw, 108px);
  font-weight: 400;
  line-height: 0.98;
}

.simple-hero .hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: #26231f;
  font-size: clamp(18px, 1.6vw, 22px);
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-actions .button {
  min-width: 160px;
}

.simple-entry-card {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line-secondary);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(10, 44, 94, 0.08);
}

.simple-entry-card h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-content-title);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
}

.entry-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-steps li {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line-secondary-soft);
}

.entry-steps span {
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 900;
}

.entry-steps strong {
  color: var(--blue-900);
  font-size: 17px;
}

.entry-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.simple-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line-primary);
  background: var(--line-primary);
}

.simple-trust-row article {
  min-width: 0;
  padding: 38px clamp(20px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.72);
}

.simple-trust-row span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 900;
}

.simple-trust-row h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-family: var(--font-content-title);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.simple-trust-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.58;
}

.simple-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px clamp(20px, 6vw, 112px);
  background: var(--blue-900);
  color: #fff;
}

.simple-footer .brand {
  color: #fff;
}

.simple-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.simple-footer a {
  color: #fff;
  font-weight: 720;
}

.simple-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 900px) {
  .simple-header {
    grid-template-columns: 1fr auto;
  }

  .simple-header nav {
    display: none;
  }

  .simple-hero,
  .simple-trust-row,
  .simple-footer {
    grid-template-columns: 1fr;
  }

  .simple-hero {
    min-height: auto;
    padding: 54px 18px;
  }

  .simple-hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .simple-entry-card {
    padding: 26px 22px;
  }

  .simple-footer {
    justify-items: start;
  }

  .simple-footer-links {
    justify-content: flex-start;
  }
}

/* Homepage reference login layout - Julia 2026-06-25 */
.reference-login-home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  min-height: 100vh;
  background: #fbfaf7;
  color: #171717;
  overflow: hidden;
}

.reference-brand {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: clamp(20px, 4vw, 52px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a2c5e;
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.reference-brand-mark {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line-secondary);
  border-radius: 999px;
  background: var(--orange-600);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 900;
}

.reference-login-copy {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 96px clamp(22px, 5vw, 112px) 54px;
}

.reference-copy-inner {
  display: grid;
  justify-items: center;
  width: min(520px, 100%);
  text-align: center;
}

.reference-copy-inner h1 {
  width: 100%;
  margin: 0 0 18px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.reference-copy-inner > p {
  margin: 0 0 34px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.4;
}

.reference-login-card {
  display: grid;
  width: min(386px, 100%);
  gap: 14px;
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid #dedbd4;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 52px rgba(23, 23, 23, 0.07);
}

.reference-google-button,
.reference-login-card input,
.reference-login-card button,
.reference-download {
  display: inline-flex;
  width: 100%;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1;
}

.reference-google-button {
  gap: 10px;
  border: 1px solid #cfcac2;
  background: #fff;
  color: #2a2927;
  font-weight: 500;
}

.reference-google-button span {
  color: #2b78e4;
  font-weight: 800;
}

.reference-divider {
  color: #47433d;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.reference-login-card input {
  border: 1px solid #ddd9d2;
  background: #fff;
  color: #171717;
  padding: 0 14px;
  text-align: left;
}

.reference-login-card input:focus {
  border-color: var(--orange-600);
  outline: 3px solid rgba(255, 122, 26, 0.2);
}

.reference-login-card button {
  border: 1px solid #111;
  background: #151515;
  color: #fff;
  font-weight: 760;
}

.reference-login-card p {
  margin: 0;
  color: #706b64;
  font-size: 12px;
  line-height: 1.4;
}

.reference-login-card p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reference-download {
  width: min(260px, 100%);
  gap: 12px;
  border: 1px solid #bdb8b0;
  background: rgba(255, 255, 255, 0.68);
  color: #292724;
  font-weight: 500;
}

.windows-icon {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 2px;
  width: 14px;
  height: 14px;
}

.windows-icon::before,
.windows-icon::after {
  content: "";
  display: block;
  width: 6px;
  height: 14px;
  background:
    linear-gradient(#171717 0 6px, transparent 6px 8px, #171717 8px 14px);
}

.reference-preview-panel {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  border-left: 1px solid #dedbd4;
  background: #fbfaf7;
}

.reference-preview-panel::before {
  content: "";
  position: absolute;
  inset: 56px clamp(28px, 5vw, 78px);
  border: 1px solid #dedbd4;
  border-radius: 16px;
  background: transparent;
}

.reference-progress-pill {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(430px, calc(100% - 72px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #bcb7af;
  border-radius: 18px;
  padding: 0 20px;
  background: #fbfaf7;
  color: #2a2927;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 900px) {
  .reference-login-home {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .reference-brand {
    top: 22px;
    left: 18px;
    font-size: 23px;
  }

  .reference-login-copy {
    min-height: auto;
    padding: 112px 18px 46px;
  }

  .reference-copy-inner h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .reference-copy-inner > p {
    font-size: 18px;
  }

  .reference-login-card {
    padding: 22px;
    border-radius: 22px;
  }

  .reference-preview-panel {
    min-height: 420px;
    border-top: 1px solid #dedbd4;
    border-left: 0;
  }

  .reference-preview-panel::before {
    inset: 28px 18px;
  }

  .reference-progress-pill {
    width: min(430px, calc(100% - 48px));
  }
}

.z-forgot-link[type="button"] {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-900);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: underline;
}
.z-recovery-step {
  display: grid;
  gap: 10px;
}

.z-recovery-step[hidden] {
  display: none;
}

.z-step-label {
  margin: 0;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.z-field-help {
  margin: 0;
  color: rgba(0, 38, 89, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.z-verification-area.z-recovery-step {
  margin-top: 2px;
  border: 1px solid rgba(0, 38, 89, 0.18);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.z-verification-area .z-forgot-link[type="button"] {
  justify-self: start;
  margin-top: 2px;
}