/* ============================================================
   helm — sub-page (non-homepage) styles
   Loaded after shared.css for all pages other than homepage.
   ============================================================ */

/* Page-fit scaler used by every sub-page */
#page-fit {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}
#page-fit > .helm-art {
  width: 1440px;
  flex-shrink: 0;
  min-width: 1440px;
  transform-origin: top left;
}

/* Page hero — used by module, pricing, security, etc. */
.page-hero {
  position: relative;
  padding: 80px 80px 56px;
  background: linear-gradient(180deg, #FBFCFD 0%, #FFFFFF 70%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-hero .crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-3);
  margin-bottom: 18px;
}
.page-hero .crumbs a { color: var(--ink-3); }
.page-hero .crumbs span.sep { color: var(--ink-3); opacity: 0.6; }
.page-hero h1.page-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink-1);
  margin: 0;
  max-width: 880px;
}
.page-hero p.page-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 22px 0 0;
  max-width: 680px;
  letter-spacing: -0.005em;
}

/* Section wrapper — sub-pages use these instead of homepage's .helm-section */
.page-section {
  padding: 88px 80px;
}
.page-section.tight {
  padding: 56px 80px;
}
.page-section.tinted {
  background: var(--bg-soft);
}

.page-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink-1);
  margin: 0 0 14px;
  max-width: 760px;
}
.page-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  margin: 0 0 8px;
}
.page-section p.section-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0;
}

/* Form controls */
.input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink-1);
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.input:focus {
  outline: none;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 3px rgba(14,123,112,0.15);
}
.input::placeholder { color: var(--ink-3); }

.label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.helper {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}

/* Long-form legal text */
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-prose h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  margin: 48px 0 14px;
  font-weight: 700;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-size: 18px;
  color: var(--ink-1);
  margin: 28px 0 8px;
  font-weight: 600;
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { margin: 0 0 14px; padding-left: 22px; }
.legal-prose li { margin: 0 0 6px; }
.legal-prose a { color: var(--brand-1); }
.legal-prose code {
  background: var(--bg-tint);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13.5px;
}

/* Auth split-screen */
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.auth-form {
  padding: 96px 80px 64px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.auth-aside {
  background: var(--brand-ink);
  color: #fff;
  padding: 96px 64px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
