:root {
  color-scheme: light;
  --section-heading-gap: 64px;
  --section-transition-space: 24px;
  --section-tail-space: calc(var(--section-heading-gap) - var(--section-transition-space));
  --section-break-space: var(--section-heading-gap);
  --body-copy-gap: 24px;
  --section-grid-gap: 32px;
  --page-footer-gap: 40px;
  --hero-content-gap: 40px;
}

::selection {
  color: #ffffff;
  background: #d30f21;
}

::-moz-selection {
  color: #ffffff;
  background: #d30f21;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #111111;
  font-family: "Segoe UI", Arial, sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 300px;
  background: #ffffff;
  border-bottom: 1px solid #c8cfd8;
}

.site-logo {
  display: block;
  width: auto;
  max-width: 210px;
  height: auto;
}

.header-tools {
  display: grid;
  grid-template-columns: auto 200px;
  align-items: center;
  column-gap: 40px;
  justify-content: end;
  overflow: visible;
}

.search-button,
.language-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #0069b4;
  font: inherit;
  cursor: pointer;
}

.search-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  width: auto;
  height: 42px;
  padding: 0 16px 0 11px;
  border-radius: 999px;
  background: #f0f1f5;
  text-decoration: none;
  overflow: visible;
  transition: width 0.26s ease, background-color 0.2s ease;
}

.search-button:hover,
.search-button:focus-visible {
  background: #e8edf5;
}

.search-button:focus-visible {
  outline: 2px solid #0069b4;
  outline-offset: 2px;
}

.search-button.is-account-active {
  width: auto;
  max-width: none;
  padding: 0 16px 0 11px;
  overflow: visible;
}

.search-button.is-account-active:hover,
.search-button.is-account-active:focus-visible {
  width: auto;
}

.profile-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.profile-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2.5px solid #0069b4;
  border-radius: 50%;
  transform: translateX(-50%);
}

.profile-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 16px;
  height: 9px;
  border: 2.5px solid #0069b4;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
}

.search-button-label {
  max-width: none;
  margin-left: 12px;
  overflow: visible;
  color: #0069b4;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 1;
  transition: max-width 0.26s ease, margin-left 0.26s ease, opacity 0.18s ease;
}

.search-button:hover .search-button-label,
.search-button:focus-visible .search-button-label {
  max-width: none;
}

.search-button.is-account-active .search-button-label {
  max-width: none;
  margin-left: 12px;
  opacity: 1;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.language-chevron {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 15px 300px;
  background: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.nav-dropdown {
  position: relative;
}

.site-nav::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: #c8cfd8;
}

body.is-scrolled .site-nav::after {
  background: #c8cfd8;
}

.site-notification-bar {
  margin: -1px 0 0;
  background: #0c71b8;
  position: sticky;
  top: var(--site-nav-height, 56px);
  z-index: 19;
}

.site-notification-bar[hidden] {
  display: none;
}

.site-notification-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 300px;
  color: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
  text-align: left;
}

.site-notification-bar-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.nav-link {
  position: relative;
  color: #111111;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.nav-link-active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 3px;
  background: #d30f21;
}

.nav-link-dropdown::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: transform 0.22s ease;
  transform: translateY(-4px) rotate(45deg);
}

.nav-dropdown-toggle[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 240px;
  max-height: 0;
  padding: 10px 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d4d7de;
  box-shadow: 0 10px 24px rgba(12, 34, 64, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  max-height: 220px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: #0060b6;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.nav-dropdown-item + .nav-dropdown-item {
  border-top: 1px solid #d4d7de;
}

.nav-dropdown-item:hover {
  background: #f5f3f1;
}

.nav-dropdown-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.page {
  flex: 1 0 auto;
  min-height: calc(100vh - 124px);
  display: flex;
  flex-direction: column;
  padding: 0 300px;
}

.page > :has(+ .site-footer) {
  margin-bottom: 0;
  padding-bottom: 0;
}

.page > .site-footer {
  margin-top: var(--page-footer-gap);
}

.hero {
  margin: 0 -300px var(--hero-content-gap);
  padding: 0;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  padding: 32px;
  background-color: #b9282e;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 720'%3E%3Cg fill='none' stroke='%23f2eee8' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='0.96'%3E%3Cpath d='M-20 110 C90 10 210 18 240 122 S390 250 468 196 S610 40 710 88 S842 274 936 216 S1074 42 1220 96'/%3E%3Cpath d='M-30 310 C76 196 152 186 244 274 S394 462 498 388 S640 166 754 248 S914 442 1020 356 S1140 154 1234 246'/%3E%3Cpath d='M-10 530 C110 430 196 416 286 500 S436 688 534 602 S676 384 784 464 S950 648 1042 566 S1140 412 1230 474'/%3E%3Cpath d='M112 0 C164 102 124 156 216 236 S422 354 366 500 S150 672 268 738'/%3E%3Cpath d='M386 -10 C466 74 452 150 516 220 S694 360 628 490 S452 650 560 730'/%3E%3Cpath d='M720 -20 C796 76 784 142 846 216 S1012 360 952 492 S796 650 896 742'/%3E%3Cpath d='M980 -10 C1060 96 1042 166 1118 248 S1286 386 1218 530'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-card {
  width: min(860px, 100%);
  padding: 34px 44px;
  background: rgba(247, 244, 239, 0.96);
  text-align: center;
  box-shadow: 0 20px 40px rgba(10, 23, 44, 0.14);
}

.hero-card-title {
  margin: 0;
  color: #0e2e67;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-card-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: #0e2e67;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 200;
  line-height: 1.6;
}

.page-home .hero-art {
  background-color: #b9282e;
}

.page-about .hero-art {
  background-color: #7f2f59;
}

.page-careers .hero-art {
  background-color: #1f6a5a;
}

.page-contact .hero-art {
  background-color: #2b5f9e;
}

.page-privacy .hero-art {
  background-color: #5c4b8a;
}

.page-publications .hero-art {
  background-color: #a85f12;
}

.page-return .hero-art {
  background-color: #8f4b2b;
}

.page-services .hero-art {
  background-color: #2f6f73;
}

.page-terms .hero-art {
  background-color: #556b2f;
}

.page-faqs .hero-art {
  background-color: #7a3e8e;
}

.page-account-home .hero-art {
  background-color: #6b4a8f;
}

.account-hero .hero-art {
  background-color: #6b4a8f;
  background-image:
    linear-gradient(135deg, rgba(12, 34, 64, 0.12), rgba(255, 255, 255, 0) 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 720'%3E%3Cg fill='none' stroke='%23f2eee8' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='0.96'%3E%3Cpath d='M-20 110 C90 10 210 18 240 122 S390 250 468 196 S610 40 710 88 S842 274 936 216 S1074 42 1220 96'/%3E%3Cpath d='M-30 310 C76 196 152 186 244 274 S394 462 498 388 S640 166 754 248 S914 442 1020 356 S1140 154 1234 246'/%3E%3Cpath d='M-10 530 C110 430 196 416 286 500 S436 688 534 602 S676 384 784 464 S950 648 1042 566 S1140 412 1230 474'/%3E%3Cpath d='M112 0 C164 102 124 156 216 236 S422 354 366 500 S150 672 268 738'/%3E%3Cpath d='M386 -10 C466 74 452 150 516 220 S694 360 628 490 S452 650 560 730'/%3E%3Cpath d='M720 -20 C796 76 784 142 846 216 S1012 360 952 492 S796 650 896 742'/%3E%3Cpath d='M980 -10 C1060 96 1042 166 1118 248 S1286 386 1218 530'/%3E%3C/g%3E%3C/svg%3E");
}

.account-hero .hero-card {
  border: 1px solid rgba(14, 46, 103, 0.08);
}

.account-hero-copy {
  text-align: center;
}

.account-hero-copy .hero-card-title,
.account-hero-copy .hero-card-copy {
  color: #ffffff;
}

.intro {
  padding: 0 0 var(--section-tail-space);
}

.hero + .intro,
.hero + .topics,
.hero + .legal-document,
.hero + .canvas,
.hero + .preview-card {
  padding-top: 0;
  margin-top: 0;
}

.page-login .intro {
  width: min(520px, 100%);
  margin: 0 auto;
  padding-top: 40px;
}

.account-greeting {
  width: 100%;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 20px;
}

.page-account-home .topics {
  padding-top: 0;
}

.page-account-home .topics-grid {
  margin-top: 0;
}

.page-account-accounts,
.page-account-publications,
.page-website-settings {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-account-accounts .page,
.page-account-publications .page,
.page-website-settings .page {
  flex: 1 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.page-account-accounts .site-footer,
.page-account-publications .site-footer,
.page-website-settings .site-footer {
  margin-top: var(--page-footer-gap);
}

.page-account-publications .account-greeting {
  padding-bottom: 8px;
}

.account-publications-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.account-publications-header .section-title,
.account-publications-copy {
  margin: 0;
}

.account-publications-create-button {
  flex: 0 0 auto;
}

.account-publications-editor {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.26s ease-in-out,
    padding-top 0.2s ease-in-out,
    padding-bottom 0.2s ease-in-out,
    opacity 0.18s ease-in-out;
}

.account-publications-editor.is-visible {
  max-height: 880px;
  padding-top: 8px;
  padding-bottom: 8px;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}

.account-publications-form {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 24px;
  border: 1px solid #d9dde5;
  background: #f8fafc;
}

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

.account-publications-form .login-field {
  gap: 10px;
}

.account-publications-form .login-field-label {
  color: #24344a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.account-publications-form .login-input {
  min-height: 54px;
  border-color: #c8cfd8;
  background: #ffffff;
}

.account-publications-date-picker {
  position: relative;
}

.account-publications-date-input {
  padding-right: 56px;
  cursor: pointer;
}

.account-publications-date-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #24344a;
  cursor: pointer;
  transform: translateY(-50%);
}

.account-publications-date-toggle svg {
  width: 18px;
  height: 18px;
}

.account-publications-calendar {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  width: 304px;
  padding: 18px 16px 16px;
  border: 1px solid #d9dde5;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(12, 34, 64, 0.14);
}

.account-publications-calendar[hidden] {
  display: none;
}

.account-publications-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.account-publications-calendar-title {
  margin: 0;
  color: #111111;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.account-publications-calendar-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-publications-calendar-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #d9dde5;
  background: #ffffff;
  color: #24344a;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.account-publications-calendar-nav-button:hover,
.account-publications-calendar-nav-button:focus-visible {
  border-color: #0c71b8;
  background: #eef5fb;
  color: #0c71b8;
}

.account-publications-calendar-weekdays,
.account-publications-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.account-publications-calendar-weekdays {
  margin-bottom: 10px;
}

.account-publications-calendar-weekday {
  color: #607086;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.account-publications-calendar-day {
  min-height: 34px;
  border: 1px solid transparent;
  background: #ffffff;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.account-publications-calendar-day:hover,
.account-publications-calendar-day:focus-visible {
  border-color: #d7e8f7;
  background: #eef5fb;
  color: #0c71b8;
}

.account-publications-calendar-day.is-outside {
  color: #a0acbb;
}

.account-publications-calendar-day.is-today {
  border-color: #a9cbe7;
}

.account-publications-calendar-day.is-selected {
  border-color: #0c71b8;
  background: #0c71b8;
  color: #ffffff;
}

.account-publications-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.account-publications-calendar-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #0c71b8;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.account-publications-form .login-input::placeholder {
  color: #a3adba;
}

.account-publications-form .website-settings-notification-textarea {
  display: block;
  min-height: 60px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: none;
}

.website-settings-action-log-empty {
  text-align: center;
}

.account-publications-form input[type="date"] {
  color: #24344a;
}

.account-publications-file-field {
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
  background: transparent;
}

.account-publications-file-field .login-input {
  padding: 14px 16px;
  background: #ffffff;
}

.account-publications-file-field .login-input::file-selector-button {
  margin-right: 14px;
  padding: 10px 16px;
  border: 0;
  background: #0c71b8;
  color: #ffffff;
  font: inherit;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.account-publications-file-field .login-input:hover::file-selector-button,
.account-publications-file-field .login-input:focus::file-selector-button {
  background: #095f9b;
}

.account-publications-form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d9dde5;
  background: #f8fafc;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.5;
}

.account-publications-form-status.is-error {
  border-color: #f1b8c0;
  background: #fdecee;
  color: #b2162c;
}

.account-publications-form-status.is-success {
  border-color: #b7ddc7;
  background: #eef9f2;
  color: #1f6b3a;
}

.account-publications-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}

.account-publications-form-actions .account-manager-button {
  min-width: 170px;
}

.account-publications-list-section {
  padding-top: 0;
  padding-bottom: 48px;
}

.account-publications-table {
  width: 100%;
  table-layout: fixed;
}

.account-publications-table th:nth-child(1),
.account-publications-table td:nth-child(1) {
  width: 20%;
}

.account-publications-table th:nth-child(2),
.account-publications-table td:nth-child(2) {
  width: 12%;
}

.account-publications-table th:nth-child(3),
.account-publications-table td:nth-child(3) {
  width: 14%;
}

.account-publications-table th:nth-child(4),
.account-publications-table td:nth-child(4) {
  width: 38%;
}

.account-publications-table th:nth-child(5),
.account-publications-table td:nth-child(5) {
  width: 16%;
}

.account-publications-cell-name {
  color: #12365d;
  font-size: 14px;
  font-weight: 400;
}

.account-publications-cell-file {
  overflow: hidden;
  word-break: break-word;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-publications-actions {
  white-space: nowrap;
  vertical-align: middle;
}

.account-publications-actions .account-manager-button {
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  width: 24px;
  height: 24px;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  border-radius: 0;
  white-space: nowrap;
  flex: 0 0 auto;
}

.account-publications-actions .account-manager-button + .account-manager-button {
  margin-left: 8px;
}

.account-publications-item-action-delete {
  background: #d30f21;
}

.account-publications-item-action-delete:hover,
.account-publications-item-action-delete:focus-visible {
  background: #ab0c1b;
}

.account-publications-copy {
  max-width: 760px;
}

.admin-shared-data-note {
  margin: 12px 0 0;
  max-width: 860px;
  padding: 14px 16px;
  border-left: 4px solid #0c71b8;
  background: #eef5fb;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.6;
}

.admin-shared-data-note code {
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
}

.account-publications-section {
  padding-top: 8px;
}

@media (max-width: 820px) {
  .account-publications-form-grid {
    grid-template-columns: 1fr;
  }

  .account-publications-form {
    padding: 24px 20px;
  }

  .account-publications-form-actions {
    justify-content: stretch;
  }

  .account-publications-form-actions .account-manager-button {
    width: 100%;
  }

  .account-publications-actions .account-manager-button {
    width: auto;
  }
}

.account-manager-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.account-manager-header .section-title {
  margin: 0;
}

.account-details-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-details-name-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.account-details-name-input {
  min-width: 320px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 14px;
}

.account-manager-actions {
  display: flex;
  gap: 16px;
  margin-top: 0;
  margin-left: auto;
}

.account-manager-button {
  min-width: 170px;
  min-height: 46px;
  padding: 0 16px;
  font-size: 14px;
}

.account-manager-tab.is-active {
  background: #d90f24;
}

.account-manager-tab.is-active:hover,
.account-manager-tab.is-active:focus-visible {
  background: #b80d1e;
}

.account-manager-button-secondary {
  background: #eef3f8;
  color: #0c71b8;
}

.account-manager-button-secondary:hover,
.account-manager-button-secondary:focus-visible {
  background: #dde8f3;
}

.account-details-divider {
  height: 1px;
  margin-top: 28px;
  background: #d9dde5;
}

.account-details-websites {
  margin-top: 24px;
}

.page-account-mywebsite .account-details-websites {
  margin-top: 0;
}

.account-details-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.account-details-section-heading {
  margin: 0;
}

.account-details-empty-state {
  margin: 18px 0 0;
  color: #5a6b82;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.6;
}

.account-details-website-form {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #d9dde5;
  background: #f8fafc;
}

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

.account-details-website-field {
  margin: 0;
}

.account-details-website-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 24px;
}

.account-details-website-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.account-details-website-list-fields {
  gap: 24px;
}

.page-account-mywebsite .account-details-website-list {
  margin-top: 0;
}

.account-details-website-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 18px 24px;
  padding: 24px;
  border: 1px solid #d9dde5;
  background: #ffffff;
  align-items: start;
}

.account-details-website-card-heading {
  grid-column: 1 / 3;
  margin: 0;
  color: #11284b;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.account-details-website-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  grid-column: 3;
  grid-row: 1;
}

.account-details-website-card-button {
  min-width: 112px;
}

.account-details-website-meta {
  min-width: 0;
}

.account-details-website-meta-label {
  display: block;
  margin-bottom: 8px;
  color: #5a6b82;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.account-details-website-meta-value {
  margin: 0;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.6;
  word-break: break-word;
}

.account-details-website-inline-field {
  margin: 0;
}

.account-details-website-card-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
}

.account-details-website-card-fields .account-details-website-card-heading {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.account-details-website-card-fields .my-website-status-notice {
  grid-column: 1 / -1;
  margin-top: 0;
  margin-bottom: 4px;
}

.account-details-website-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111111;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.account-details-website-card-fields .account-details-website-meta {
  margin: 0;
}

.my-website-support {
  margin-top: 32px;
}

.my-website-support-heading {
  margin-bottom: 0;
}

.my-website-support-copy {
  max-width: 980px;
}

.my-website-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  text-decoration: none;
}

.my-website-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.my-website-status-notice {
  margin-top: 18px;
  padding: 16px 20px;
  background: #0c71b8;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
}

.my-website-status-notice[hidden] {
  display: none;
}

.my-website-status-notice-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.my-website-status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: 0 0 16px;
}

.my-website-status-dot-green {
  background: #1f8f4d;
}

.my-website-status-dot-yellow {
  background: #d8a208;
}

.my-website-status-dot-red {
  background: #cf2f2f;
}

.my-website-status-dot-grey {
  background: #9ba5b4;
}

.account-manager-list-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid #d9dde5;
  background: #ffffff;
}

.account-manager-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.account-manager-table th,
.account-manager-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e3e7ee;
  text-align: left;
  vertical-align: top;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #24344a;
}

.account-manager-table th {
  background: #f5f7fa;
  font-weight: 400;
  white-space: nowrap;
}

.account-manager-table td {
  font-weight: 200;
}

.account-request-row td {
  vertical-align: middle;
  padding-top: 10px;
  padding-bottom: 10px;
}

.account-manager-table tbody tr:last-child td {
  border-bottom: 0;
}

.account-manager-row {
  cursor: pointer;
}

.account-manager-row:hover td,
.account-manager-row:focus-visible td {
  background: #f5f9fd;
}

.account-manager-row:focus-visible {
  outline: 2px solid #0069b4;
  outline-offset: -2px;
}

.account-manager-actions-cell {
  white-space: nowrap;
  vertical-align: middle;
}

.account-manager-inline-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.account-manager-inline-button.login-submit {
  height: 24px;
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-manager-inline-button-approve.login-submit {
  background: #0c71b8;
}

.account-manager-inline-button-reject.login-submit {
  background: #d30f21;
}

.account-manager-inline-button-reject.login-submit:hover,
.account-manager-inline-button-reject.login-submit:focus-visible {
  background: #ab0c1b;
}

.account-details-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.account-details-field {
  margin: 0;
}

.account-details-select-field {
  position: relative;
}

.account-details-select {
  position: relative;
}

.account-details-select::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #24344a;
  border-bottom: 2px solid #24344a;
  pointer-events: none;
  transition: transform 0.22s ease;
  transform: translateY(-4px) rotate(45deg);
}

.account-details-select.is-open::after {
  transform: translateY(-1px) rotate(225deg);
}

.account-details-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.account-details-select-trigger {
  position: relative;
  width: 100%;
  padding-right: 60px;
  text-align: left;
  cursor: pointer;
}

.account-details-select-trigger:disabled {
  color: #24344a;
  background: #ffffff;
  opacity: 1;
  cursor: default;
}

.account-details-select-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  left: 0;
  z-index: 5;
  background: #ffffff;
  border: 1px solid #c8cfd8;
  box-shadow: 0 10px 24px rgba(12, 34, 64, 0.08);
}

.account-details-select-option {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d9dde5;
  background: #ffffff;
  color: #24344a;
  padding: 14px 18px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.account-details-select-option:last-child {
  border-bottom: 0;
}

.account-details-select-option:hover,
.account-details-select-option:focus-visible,
.account-details-select-option.is-selected {
  background: #2a69c7;
  color: #ffffff;
}

.account-details-grid > :nth-child(1),
.account-details-grid > :nth-child(2),
.account-details-grid > :nth-child(3),
.account-details-grid > :nth-child(4) {
  grid-column: span 6;
}

.account-details-grid > :nth-child(5),
.account-details-grid > :nth-child(6),
.account-details-grid > :nth-child(7),
.account-details-grid > :nth-child(8),
.account-details-grid > :nth-child(9) {
  grid-column: span 3;
}

.account-details-grid > :nth-child(10) {
  grid-column: span 6;
}

.account-details-input[readonly] {
  color: #24344a;
  background: #ffffff;
  cursor: default;
}

select.account-details-input:disabled {
  color: #24344a;
  background: #ffffff;
  opacity: 1;
  cursor: default;
}

select.account-details-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 60px;
  background-image: none;
}

@media (max-width: 700px) {
  .account-details-name-wrap {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .account-details-name-input {
    min-width: min(100%, 320px);
  }

  .account-details-section-header,
  .account-details-website-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-details-website-grid,
  .account-details-website-card {
    grid-template-columns: 1fr;
  }

  .account-details-website-card-actions {
    grid-column: 1;
  }
}

.hero-title {
  margin: 0;
  color: #111111;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.intro-copy {
  margin: var(--body-copy-gap) 0 0;
  color: #303030;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.6;
}

.topics {
  padding: var(--section-transition-space) 0 var(--section-tail-space);
}

.hero + .topics,
.hero + .publications {
  padding-top: 0;
}

.section-break {
  padding-top: var(--section-break-space);
}

.section-group {
  margin-bottom: var(--section-break-space);
}

.section-break-tight {
  padding-top: 0;
}

.publications {
  display: flex;
  flex-direction: column;
  padding: var(--section-transition-space) 0 var(--section-tail-space);
}

.publications-page-heading {
  padding-bottom: 24px;
}

.publications-page-list {
  padding-top: 0;
}

.page-publications .publications-page-list .publications-grid {
  grid-template-columns: 1fr;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
  margin-top: var(--section-grid-gap);
}

.publication-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 20px;
  gap: 16px;
  align-items: center;
  padding: 0 0 20px;
  border-bottom: 1px solid #c8cfd8;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.publication-item:hover {
  background: #f9fafc;
  box-shadow: 0 12px 28px rgba(12, 34, 64, 0.12);
  transform: translateY(-2px);
}

.publication-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 44px;
  background: #d30f21;
}

.publication-badge-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.publication-badge-icon-pdf::before,
.publication-badge-icon-pdf::after {
  content: none;
}

.publication-badge-icon-pdf {
  width: 28px;
  height: 28px;
  background-image: url("../assets/icons/adobe-acrobat.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.publication-body {
  min-width: 0;
}

.publication-title {
  margin: 0;
  color: #0c2240;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.publication-date {
  margin: 8px 0 0;
  color: #365d8e;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.3;
}

.publication-link-icon {
  align-self: center;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0060b6;
  border-right: 2px solid #0060b6;
  transition: transform 0.18s ease;
  transform: rotate(45deg);
}

.publication-link-icon::before,
.publication-link-icon::after {
  content: none;
}

.publication-item:hover .publication-link-icon {
  transform: translateX(4px) rotate(45deg);
}

.publications-more {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  margin-left: 0;
  color: #0060b6;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.publications-more:hover {
  color: #d30f21;
}

.publications-more-arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.legal-document {
  display: grid;
  grid-template-areas: "content summary";
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: start;
  padding: 16px 0 72px;
}

.legal-summary {
  grid-area: summary;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 22px 24px;
  background: #f5f3f1;
  scrollbar-width: thin;
  scrollbar-color: #c8cfd8 transparent;
}

.legal-summary::-webkit-scrollbar {
  width: 8px;
}

.legal-summary::-webkit-scrollbar-track {
  background: transparent;
}

.legal-summary::-webkit-scrollbar-thumb {
  background: #c8cfd8;
  border-radius: 999px;
}

.legal-summary-title {
  margin: 0 0 18px;
  color: #0060b6;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.legal-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-summary-item + .legal-summary-item {
  margin-top: 12px;
}

.legal-summary-link {
  position: relative;
  display: block;
  padding-left: 20px;
  color: #5a6b82;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.legal-summary-link::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.legal-summary-link:hover,
.legal-summary-link.is-active {
  color: #d30f21;
}

.legal-summary-link.is-active {
  transform: translateX(4px);
}

.legal-summary-link.is-active::before {
  border-top-color: #d30f21;
  border-right-color: #d30f21;
}

.legal-document-card {
  grid-area: content;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.legal-document-section + .legal-document-section {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #e1e5ec;
}

.legal-document-section {
  scroll-margin-top: 120px;
}

.legal-document-heading {
  margin: 0 0 14px;
  color: #0c2240;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.legal-document-subheading {
  margin: 26px 0 10px;
  color: #d30f21;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.legal-document-copy {
  margin: 0;
  color: #303030;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.85;
}

.legal-document-copy + .legal-document-copy {
  margin-top: 26px;
}

.legal-document-list {
  margin: 26px 0;
  padding-left: 24px;
  color: #303030;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.85;
  list-style-type: square;
}

.legal-document-list li::marker {
  color: #d30f21;
}

.legal-document-list + .legal-document-copy {
  margin-top: 26px;
}

@media (max-width: 1200px) {
  .legal-document {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .legal-document {
    grid-template-areas:
      "summary"
      "content";
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-summary {
    position: static;
  }
}

.site-footer {
  margin: 0 -300px;
  background: #f5f3f1;
}

.site-footer-upper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 300px 64px;
}

.site-footer-column {
  min-width: 0;
}

.site-footer-column-company {
  max-width: 360px;
}

.site-footer-heading {
  margin: 0;
  color: #0c2240;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  background: #d30f21;
}

.site-footer-copy {
  margin: 28px 0 0;
  color: #5a6b82;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.8;
}

.site-footer-contact {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5a6b82;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.6;
}

.site-footer-contact-item + .site-footer-contact-item {
  margin-top: 12px;
}

.site-footer-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #d30f21;
}

.site-footer-links {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer-links li + li {
  margin-top: 12px;
}

.site-footer-links a {
  color: #5a6b82;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer-links a:hover {
  color: #d30f21;
}

.site-footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 300px;
  background: #d30f21;
}

.site-footer-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
}

.site-footer-legal {
  margin: 0;
  color: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.5;
  text-align: center;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
}

.section-title {
  margin: 0;
  color: #111111;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: var(--section-grid-gap);
}

.leader-card {
  padding: 20px 18px 24px;
  background: #ffffff;
  border: 1px solid #d9dde5;
  box-shadow: 0 14px 30px rgba(12, 34, 64, 0.08);
}

.leader-portrait {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9dde5;
  background: linear-gradient(180deg, #f0f2f6 0%, #fafbfd 100%);
}

.leader-placeholder {
  width: 44%;
  max-width: 120px;
  height: auto;
  color: #bcc5d2;
}

.leader-name {
  margin: 16px 0 0;
  color: #0060b6;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
}

.leader-role {
  margin: 14px 0 0;
  color: #111111;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: var(--section-grid-gap);
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 240px;
  padding: 28px 24px;
  background: #d30f21;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 18px 36px rgba(211, 15, 33, 0.18);
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: #ffffff;
}

.value-card-title {
  margin: 0;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.value-card-copy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.55;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: var(--section-grid-gap);
}

.services-grid {
  align-items: start;
}

.topic-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  align-items: start;
  min-height: 168px;
  background: #f3f3f3;
  border: 0;
  padding: 0;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-item {
  background: #f3f3f3;
}

.service-toggle {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: none;
}

.topic-card:hover {
  box-shadow: 0 18px 36px rgba(12, 34, 64, 0.14);
  transform: translateY(-2px);
}

.service-toggle:hover {
  box-shadow: none;
  transform: none;
}

.topic-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #d30f21;
}

.topic-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  color: #ffffff;
}

.topic-body {
  padding: 22px 18px 22px 18px;
}

.topic-title {
  margin: 0;
  color: #0060b6;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.topic-copy {
  margin: 14px 0 0;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
}

.topic-arrow {
  justify-self: center;
  align-self: center;
  width: 10px;
  height: 10px;
  margin-right: 18px;
  border-top: 2px solid #0060b6;
  border-right: 2px solid #0060b6;
  transition: transform 0.18s ease;
  transform: rotate(45deg);
}

.topic-card:hover .topic-arrow {
  transform: translateX(4px) rotate(45deg);
}

.contact-feature {
  margin-top: 32px;
}

.contact-feature-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  min-height: 168px;
  background: #f3f3f3;
}

.login-form {
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  margin-top: 32px;
}

.login-field {
  display: grid;
  gap: 10px;
}

.login-field-password {
  gap: 0;
}

.login-field-password .login-password-wrap {
  margin-top: 10px;
}

.login-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.login-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b2559;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.login-choice input {
  margin: 0;
}

.login-birth-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 12px;
}

.login-birth-row .login-input {
  text-align: center;
}

.login-field.has-error .login-input {
  border-color: #d30f21;
}

.login-field.has-error .login-input:focus {
  outline-color: #d30f21;
}

.login-password-wrap {
  position: relative;
  display: block;
}

.login-field-alert {
  max-height: 0;
  margin-top: 0;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid transparent;
  background: #fdecee;
  color: #b2162c;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.25s ease,
    margin-top 0.25s ease,
    padding-top 0.25s ease,
    padding-bottom 0.25s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.login-field-alert.is-visible {
  max-height: 120px;
  margin-top: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: #f1b8c0;
  opacity: 1;
  transform: translateY(0);
}

.password-requirements {
  margin-top: 0;
  padding: 20px 24px;
  border: 0 solid transparent;
  background: #ffffff;
  box-shadow: none;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.3s ease,
    padding-top 0.3s ease,
    padding-bottom 0.3s ease,
    opacity 0.24s ease,
    transform 0.24s ease;
}

.password-requirements.is-open {
  margin-top: 12px;
  border-width: 1px;
  border-color: #d8deeb;
  box-shadow: 0 14px 30px rgba(24, 45, 82, 0.08);
  max-height: 420px;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.password-requirements-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.password-requirement {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1b2559;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.password-requirement + .password-requirement {
  margin-top: 24px;
}

.password-requirement-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.password-requirement-icon::before,
.password-requirement-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.password-requirement-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.password-requirement-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.password-requirement.is-valid {
  color: #1f8a4c;
}

.password-requirement.is-valid .password-requirement-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231f8a4c' d='M6.3 11.3 3.5 8.5l-1 1 3.8 3.8 7.2-7.2-1-1z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.password-requirement.is-valid .password-requirement-icon::before,
.password-requirement.is-valid .password-requirement-icon::after {
  content: none;
}

.login-field-label {
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.login-input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #c8cfd8;
  background: #ffffff;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}

.login-phone-combo {
  display: flex;
  align-items: stretch;
  min-height: 54px;
  border: 1px solid #c8cfd8;
  background: #ffffff;
}

.login-phone-country {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 118px;
  padding: 0 12px;
  border-right: 1px solid #d9dde5;
  background: #f8fafc;
  flex: 0 0 auto;
}

.login-phone-country-flag {
  display: inline-flex;
  width: 24px;
  height: 17px;
  margin-right: 8px;
  border: 1px solid rgba(36, 52, 74, 0.12);
  overflow: hidden;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  background: #ffffff;
}

.login-phone-country-flag svg,
.login-phone-country-flag img {
  width: 100%;
  height: 100%;
  display: block;
}

.login-phone-code {
  color: #6d7a8d;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}


.login-phone-input {
  border: 0;
  color: #24344a;
  flex: 1 1 auto;
}

.login-phone-input::placeholder {
  color: #a3adba;
}

.login-phone-input:focus {
  outline: 0;
}

.login-phone-combo:focus-within {
  outline: 2px solid #0069b4;
  outline-offset: 2px;
}

.login-input-password {
  padding-right: 54px;
}

.login-input:focus {
  outline: 2px solid #0069b4;
  outline-offset: 2px;
}

.login-password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8d6a8c;
  cursor: pointer;
  transform: translateY(-50%);
}

.login-password-icon {
  width: 18px;
  height: 18px;
}

.login-password-icon-show {
  display: none;
}

.login-password-toggle[aria-pressed="true"] .login-password-icon-hide {
  display: none;
}

.login-password-toggle[aria-pressed="true"] .login-password-icon-show {
  display: block;
}

.login-submit {
  min-height: 54px;
  border: 0;
  background: #0c71b8;
  color: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-submit:disabled {
  background: #a9bbcb;
  cursor: not-allowed;
}

.login-submit:hover,
.login-submit:focus-visible {
  background: #d30f21;
}

@media (max-width: 720px) {
  .login-phone-combo {
    flex-direction: column;
  }

  .login-phone-country {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid #d9dde5;
  }
}

.login-submit:disabled:hover,
.login-submit:disabled:focus-visible {
  background: #a9bbcb;
}

.login-register-callout {
  width: min(520px, 100%);
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #c8cfd8;
}

.login-register-callout .intro-copy {
  margin-top: 0;
}

.login-register-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #1b2559;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-register-link:hover,
.login-register-link:focus-visible {
  color: #d30f21;
}

.login-register-link-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.service-toggle[aria-expanded="true"] .topic-arrow {
  transform: rotate(135deg);
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  background: #f3f3f3;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.24s ease;
}

.service-panel.is-open {
  opacity: 1;
}

.service-panel-inner {
  padding: 0 24px 32px 80px;
}

.service-panel-copy {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid #d3d9e2;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
}

.service-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.55;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #d30f21;
  transform: translateY(-50%);
}

.service-contact {
  margin: 22px 0 0;
  color: #24344a;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
}

.service-contact-email {
  color: #d30f21;
}

.preview-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  margin-top: var(--section-grid-gap);
  padding: 6px 0 0;
  align-items: start;
}

.preview-visual {
  min-width: 0;
}

.preview-open {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.preview-map {
  overflow: hidden;
  border-radius: 16px;
  background: #eef1f5;
  box-shadow: 0 20px 40px rgba(12, 34, 64, 0.1);
}

.preview-slide {
  display: none;
}

.preview-slide.is-active {
  display: block;
}

.preview-map-svg {
  display: block;
  width: 100%;
  height: auto;
}

.preview-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.preview-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.preview-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #b9c2cf;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.preview-dot.is-active {
  background: #d30f21;
  border-color: #d30f21;
  transform: scale(1.08);
}

.preview-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18px;
}

.preview-kicker {
  margin: 0;
  padding: 8px 12px;
  background: #d30f21;
  color: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.preview-title {
  margin: 20px 0 0;
  color: #3e4654;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
}

.preview-copy {
  margin: 24px 0 0;
  color: #4b5565;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6;
}

.preview-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 15px 18px;
  background: #0c71b8;
  color: #ffffff;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.preview-button:hover,
.preview-button:focus-visible {
  background: #d30f21;
}

.preview-button-arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.preview-modal[hidden] {
  display: none;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 34, 64, 0.72);
}

.preview-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 64px);
  padding: 22px 22px 18px;
  overflow: auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(12, 34, 64, 0.28);
}

.preview-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f1f4f8;
  color: #24344a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.preview-modal-stage .preview-map {
  box-shadow: none;
}

.preview-modal-stage .preview-map-svg {
  width: 100%;
}

.preview-controls-modal {
  margin-top: 20px;
}

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

  .preview-card {
    grid-template-columns: 1fr;
  }

  .preview-content {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .preview-title {
    font-size: 28px;
  }

  .preview-copy {
    font-size: 16px;
  }

  .preview-modal {
    padding: 16px;
  }

  .preview-modal-panel {
    padding: 18px 18px 16px;
  }
}

.canvas {
  min-height: calc(100vh - 552px);
  background: #ffffff;
}

.page-document-viewer,
.page-document-viewer body {
  min-height: 100vh;
}

.document-viewer {
  min-height: 100vh;
  background: #f3f6fa;
}

.document-viewer-frame {
  width: 100%;
  min-height: 100vh;
  border: 0;
  background: #ffffff;
}

.document-viewer-error {
  margin: 0;
  padding: 18px;
  color: #b2162c;
  font-family: "Geologica", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
