:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #14201f;
  --muted: #64706d;
  --line: #dce3df;
  --teal: #174d47;
  --coral: #e86f51;
  --blue: #2768d8;
  --green: #2a815f;
  --paper: #ffffff;
  --wash: #f3f6f4;
  --warm: #f5ecdc;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 10px max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(220, 227, 223, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { width: 42px; height: 42px; border-radius: 6px; }
.brand span { display: grid; gap: 1px; }
.brand strong { font-size: 18px; }
.brand small { color: var(--muted); font-size: 11px; }
.site-header nav { display: flex; justify-content: center; gap: 30px; color: #3e4b48; font-size: 14px; font-weight: 700; }
.site-header nav a:hover, footer a:hover { color: var(--coral); }
.header-actions, .hero-actions { display: flex; align-items: center; gap: 10px; }
.site-header > .header-actions { grid-column: 3; justify-self: end; }
.menu-button { display: none; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--coral); color: #fff; border-color: var(--coral); }
.button-primary:hover { background: #ce583d; border-color: #ce583d; }
.button-secondary { border-color: #cfd9d4; background: #fff; color: var(--teal); }
.button-secondary:hover { border-color: var(--teal); }
.button-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; background: rgba(9, 24, 22, .28); }
.button-ghost:hover { background: rgba(9, 24, 22, .5); }

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 230px));
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: rgba(10, 25, 23, .58); box-shadow: inset 54vw 0 180px rgba(10, 25, 23, .4); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 72px 40px 54px;
  color: #fff;
}
.eyebrow { margin: 0 0 10px; color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 64px; line-height: 1; font-weight: 700; }
.hero-copy { max-width: 690px; margin: 22px 0 28px; font-size: 21px; line-height: 1.55; color: rgba(255, 255, 255, .9); }
.hero-facts { max-width: 880px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 46px 0 0; border-top: 1px solid rgba(255, 255, 255, .28); }
.hero-facts div { min-height: 90px; display: grid; align-content: center; gap: 5px; padding: 18px 26px 16px 0; }
.hero-facts div + div { padding-left: 26px; border-left: 1px solid rgba(255, 255, 255, .28); }
.hero-facts dt { font-weight: 850; }
.hero-facts dd { margin: 0; color: rgba(255, 255, 255, .72); font-size: 13px; line-height: 1.4; }

.section { padding: 96px max(28px, calc((100vw - 1280px) / 2)); }
.section-heading { max-width: 760px; }
.section-heading h2, .product-copy h2, .cta-band h2, .registration-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.12;
}
.section-heading > p:last-child, .product-copy > p, .cta-band > div > p:last-child, .registration-intro > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.workflow { background: #fff; }
.workflow-lane {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 44px 0 0;
  padding: 0;
  border-top: 2px solid var(--teal);
  list-style: none;
}
.workflow-lane li { min-height: 152px; display: grid; align-content: start; gap: 7px; padding: 22px 18px; border-bottom: 1px solid var(--line); }
.workflow-lane li + li { border-left: 1px solid var(--line); }
.workflow-lane span { color: var(--coral); font-size: 12px; font-weight: 850; }
.workflow-lane strong { font-size: 17px; }
.workflow-lane small { color: var(--muted); line-height: 1.5; }

.product-band {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(620px, 1.2fr);
  gap: 60px;
  align-items: center;
  padding: 94px max(28px, calc((100vw - 1440px) / 2));
  background: var(--teal);
  color: #fff;
}
.product-copy > p { color: rgba(255, 255, 255, .75); }
.product-copy ul { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.product-copy li { position: relative; padding-left: 24px; line-height: 1.45; }
.product-copy li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; background: var(--coral); }
.operations-surface { min-width: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .3); background: #fff; color: var(--ink); box-shadow: 0 32px 64px rgba(0, 0, 0, .2); }
.operations-surface > header { min-height: 66px; display: flex; align-items: center; gap: 14px; padding: 0 20px; border-bottom: 1px solid var(--line); }
.operations-surface > header span { color: var(--blue); font-weight: 800; }
.operations-surface > header strong { flex: 1; }
.operations-surface > header em { padding: 6px 9px; background: #e9f5ef; color: var(--green); font-style: normal; font-size: 12px; font-weight: 800; }
.operations-surface > nav { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); }
.operations-surface > nav b { padding: 13px 10px; text-align: center; color: var(--muted); font-size: 12px; }
.operations-surface > nav b:nth-child(3) { color: var(--blue); border-bottom: 3px solid var(--blue); }
.operations-grid { display: grid; grid-template-columns: 1fr 250px; min-height: 300px; }
.operations-grid section, .operations-grid aside { padding: 22px; }
.operations-grid aside { border-left: 1px solid var(--line); background: var(--wash); }
.operations-grid h3 { margin: 0 0 7px; font-size: 15px; }
.operations-grid p, .operations-grid small { color: var(--muted); }
.table-row { min-height: 52px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; border-top: 1px solid var(--line); font-size: 13px; }
.table-row i { color: var(--green); font-style: normal; font-weight: 800; }
.table-row.warning { background: #fff4ee; }
.table-row.warning i { color: #c64e31; }
.progress { height: 8px; margin: 24px 0 8px; background: #d7dfdb; }
.progress span { display: block; width: 70%; height: 100%; background: var(--coral); }

.security { background: var(--wash); }
.security-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 42px; border-top: 1px solid #bfcac4; border-bottom: 1px solid #bfcac4; }
.security-points article { min-height: 180px; padding: 28px 28px 28px 0; }
.security-points article + article { padding-left: 28px; border-left: 1px solid #bfcac4; }
.security-points strong { font-size: 19px; }
.security-points p { color: var(--muted); line-height: 1.6; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 70px max(28px, calc((100vw - 1280px) / 2)); background: var(--warm); }
.cta-band > div { max-width: 760px; }
footer { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; padding: 34px max(28px, calc((100vw - 1280px) / 2)); background: #13201f; color: #fff; }
footer p { color: rgba(255, 255, 255, .62); }
footer > div { display: flex; gap: 24px; font-weight: 700; }

.registration-page { min-height: 100vh; background: var(--wash); }
.registration-main { min-height: calc(100vh - 70px); display: grid; grid-template-columns: minmax(320px, .8fr) minmax(560px, 1.2fr); }
.registration-intro { padding: 80px max(36px, calc((100vw - 1280px) / 2)); padding-right: 70px; background: var(--teal); color: #fff; }
.registration-intro > p { color: rgba(255, 255, 255, .75); }
.registration-intro ol { display: grid; gap: 0; margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .28); }
.registration-intro li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, .28); }
.registration-intro li > span { color: var(--coral); font-weight: 850; }
.registration-intro li div { display: grid; gap: 4px; }
.registration-intro li small { color: rgba(255, 255, 255, .66); line-height: 1.45; }
.registration-form-section { display: grid; align-items: center; padding: 54px max(36px, calc((100vw - 1280px) / 2)); padding-left: 70px; background: #fff; }
#registrationForm { width: min(720px, 100%); display: grid; gap: 24px; }
.form-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 34px; }
.form-heading > p:last-child { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid label { display: grid; align-content: start; gap: 7px; color: #43514d; font-size: 13px; font-weight: 800; }
.optional-label { margin-left: 5px; color: var(--muted); font-size: 11px; font-weight: 600; }
.form-grid .wide { grid-column: 1 / -1; }
.registration-plan-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}
.registration-plan-choice legend { grid-column: 1 / -1; margin-bottom: 1px; color: #43514d; font-size: 13px; font-weight: 800; }
.registration-plan-choice > label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #cbd8d3;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.registration-plan-choice > label:has(input:checked) { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(23, 77, 71, .13); }
.registration-plan-choice > label input { width: 17px; min-height: 17px; margin-top: 2px; padding: 0; }
.registration-plan-choice > label span { display: grid; gap: 3px; min-width: 0; }
.registration-plan-choice > label strong { color: #14231f; font-size: 16px; }
.registration-plan-choice > label b { color: var(--teal); font-size: 14px; }
.registration-plan-choice > label small { color: var(--muted); font-size: 11px; font-weight: 600; }
.registration-plan-choice > label em { grid-column: 2; color: #43514d; font-size: 11px; font-style: normal; font-weight: 500; line-height: 1.45; }
.registration-plan-choice > p { grid-column: 1 / -1; margin: 2px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd5d0;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
}
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: 3px solid rgba(23, 77, 71, .16); border-color: var(--teal); }
.consent { grid-template-columns: 20px 1fr; align-items: start; font-weight: 500 !important; line-height: 1.5; }
.consent input { min-height: 18px; margin: 2px 0 0; }
.honeypot { position: absolute !important; left: -10000px; }
.submit-button { justify-self: start; min-width: 210px; }
.form-note { color: var(--muted); line-height: 1.5; }
.form-status { padding: 13px 14px; border: 1px solid #cfdbd5; background: var(--wash); line-height: 1.5; }
.form-status.is-error { border-color: #e8ada0; background: #fff3ef; color: #a83d26; }
.form-status.is-success { border-color: #a7d6bf; background: #edf8f2; color: #1d694a; }
.consent a, .legal-document a, .activation-panel a { color: var(--teal); text-decoration: underline; }
.legal-footer {
  min-height: 54px;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 16px 28px;
  background: #13201f;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.legal-page { min-height: 100vh; background: var(--wash); }
.legal-main { padding: 56px 24px 86px; }
.legal-document {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 42px 48px;
  border: 1px solid var(--line);
  background: #fff;
}
.legal-document h1 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 42px; }
.legal-document h2 { margin: 34px 0 10px; font-size: 20px; }
.legal-document h3 { margin: 24px 0 8px; font-size: 16px; }
.legal-document p, .legal-document li { color: #43514d; line-height: 1.65; }
.legal-document address { font-style: normal; line-height: 1.65; }
.legal-meta { margin-bottom: 32px; color: var(--muted); }
.activation-main { min-height: calc(100vh - 70px); display: grid; place-items: center; padding: 42px 22px; background: var(--wash); }
.activation-panel {
  width: min(620px, 100%);
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
}
.activation-panel h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 34px; }
.activation-panel > p { margin: 0; color: var(--muted); line-height: 1.6; }
.activation-panel .form-grid { grid-template-columns: 1fr; }
.activation-panel .form-grid label > small { color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.4; }
.activation-panel .form-status { margin: 0; }
.activation-summary { display: grid; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.activation-summary > div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 16px; padding: 11px 0; }
.activation-summary > div + div { border-top: 1px solid var(--line); }
.activation-summary dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.activation-summary dd { min-width: 0; margin: 0; overflow-wrap: anywhere; color: var(--ink); font-size: 13px; font-weight: 800; }
.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}
.onboarding-progress li { position: relative; display: grid; gap: 5px; justify-items: center; color: var(--muted); text-align: center; }
.onboarding-progress li + li::before { position: absolute; top: 13px; right: 50%; width: 100%; height: 1px; background: var(--line); content: ""; }
.onboarding-progress span { position: relative; z-index: 1; width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 11px; font-weight: 850; }
.onboarding-progress small { font-size: 10px; font-weight: 750; }
.onboarding-progress .is-done span { border-color: var(--teal); background: var(--teal); color: #fff; }
.onboarding-progress .is-active { color: var(--ink); }
.onboarding-progress .is-active span { border-color: var(--coral); background: var(--coral); color: #fff; }
.activation-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.activation-actions .button { width: 100%; min-width: 0; }
.activation-actions #activationLink { grid-column: 1 / -1; }
.password-visibility { display: flex !important; align-items: center; gap: 8px !important; font-weight: 600 !important; }
.password-visibility input { width: 18px; min-height: 18px; margin: 0; }
.password-requirements { padding: 13px 14px; border: 1px solid var(--line); background: #f8faf9; }
.password-requirements p { margin: 0 0 9px; color: var(--ink); font-size: 12px; font-weight: 800; }
.password-requirements ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin: 0; padding: 0; list-style: none; }
.password-requirements li { position: relative; min-width: 0; padding-left: 20px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.password-requirements li::before {
  position: absolute; top: 0; left: 0; width: 14px; height: 14px; display: grid; place-items: center;
  border: 1px solid #aebbb5; border-radius: 50%; background: #fff; color: #fff; content: "";
}
.password-requirements li.is-met { color: #1d694a; font-weight: 700; }
.password-requirements li.is-met::before { border-color: #1d694a; background: #1d694a; content: "✓"; font-size: 9px; font-weight: 900; }
.activation-panel #activationSubmit { width: 100%; min-height: 48px; }
.activation-panel #activationSubmit[aria-busy="true"] { cursor: wait; }
.activation-complete-actions { display: grid; gap: 9px; }
.activation-complete-actions .button { width: 100%; }
.verification-form { display: grid; gap: 14px; }
.verification-form label { display: grid; gap: 8px; color: #43514d; font-size: 13px; font-weight: 800; }
.verification-form input {
  width: 100%; min-height: 58px; padding: 10px 14px; border: 1px solid #cbd5d0; border-radius: 5px;
  color: var(--ink); background: #fff; font-size: 28px; font-weight: 800; letter-spacing: 8px; text-align: center;
}
.verification-form input:focus { outline: 3px solid rgba(23, 77, 71, .16); border-color: var(--teal); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto auto; padding-inline: 18px; }
  .site-header nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 20px; border-bottom: 1px solid var(--line); background: #fff; }
  .site-header.is-open nav { display: grid; justify-content: start; }
  .site-header > .header-actions { grid-column: auto; justify-self: end; }
  .menu-button { display: inline-flex; min-height: 40px; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 5px; background: #fff; font-weight: 800; }
  .hero h1 { font-size: 52px; }
  .workflow-lane { grid-template-columns: repeat(3, 1fr); }
  .product-band { grid-template-columns: 1fr; }
  .registration-main { grid-template-columns: 1fr; }
  .registration-intro, .registration-form-section { padding: 54px 36px; }
}

@media (max-width: 680px) {
  .site-header { gap: 8px; }
  .site-header .header-actions .button-secondary { display: none; }
  .site-header .header-actions .button-primary { min-height: 40px; padding-inline: 11px; font-size: 12px; }
  .hero { min-height: min(620px, calc(100svh - 160px)); }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: rgba(10, 25, 23, .72); }
  .hero-content { padding: 60px 22px 32px; }
  .hero h1 { font-size: 42px; }
  .hero-copy { font-size: 17px; }
  .hero-facts { display: none; }
  .section { padding: 66px 22px; }
  .section-heading h2, .product-copy h2, .cta-band h2, .registration-intro h1 { font-size: 33px; }
  .workflow-lane { grid-template-columns: 1fr 1fr; }
  .workflow-lane li { min-height: 120px; }
  .product-band { padding: 66px 22px; }
  .operations-grid { grid-template-columns: 1fr; }
  .operations-grid aside { border-top: 1px solid var(--line); border-left: 0; }
  .operations-surface > nav { overflow-x: auto; grid-template-columns: repeat(5, 110px); }
  .security-points { grid-template-columns: 1fr; }
  .security-points article { min-height: 0; padding: 24px 0; }
  .security-points article + article { padding-left: 0; border-top: 1px solid #bfcac4; border-left: 0; }
  .cta-band { display: grid; padding: 54px 22px; }
  footer { grid-template-columns: 1fr; gap: 16px; padding: 34px 22px; }
  .registration-intro, .registration-form-section { padding: 46px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .registration-plan-choice { grid-template-columns: 1fr; }
  .registration-plan-choice legend, .registration-plan-choice > p { grid-column: auto; }
  .activation-main { min-height: calc(100svh - 70px); place-items: start center; padding: 20px 12px; }
  .activation-panel { gap: 14px; padding: 22px 20px; }
  .activation-panel h1 { font-size: 32px; }
  .activation-panel .form-grid { gap: 12px; }
  .password-requirements ul { grid-template-columns: 1fr; gap: 6px; }
  .activation-summary > div { grid-template-columns: 105px minmax(0, 1fr); gap: 12px; padding-block: 8px; }
  .onboarding-progress { margin-bottom: 0; }
  .activation-actions { grid-template-columns: 1fr; }
  .activation-actions #activationLink { grid-column: auto; }
  .legal-document { padding: 30px 22px; }
  .legal-document h1 { font-size: 34px; }
}
