:root {
  /* Brand */
  --navy: #0f1e3d;
  --ink: #0a1124;
  --blue: #1e3a6e;

  /* Accent */
  --teal: #19e3b5;
  --teal-deep: #0fb894;

  /* Neutrals / surfaces */
  --paper: #ffffff;
  --mist: #f4f6fa;
  --line: #e2e7f0;
  --slate: #5b6a85;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -38px rgba(15, 30, 61, 0.4);
  --maxw: 1080px;
  --content-max: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 42%, var(--paper) 100%);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 30, 61, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
}

.site-notice {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--paper);
}

.site-notice-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
}

.site-notice-indicator {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(25, 227, 181, 0.18);
}

.site-notice-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.site-notice-text strong {
  font-weight: 650;
}

.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

.main > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-section {
  width: 100%;
  max-width: var(--content-max);
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
}

.header {
  margin-bottom: 3.5rem;
}

.logo {
  display: inline-flex;
  text-decoration: none;
  color: var(--navy);
}

.logo-word {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

.headline {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.headline-secondary {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate);
}

.hero-date {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate);
}

.ceo-note {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  margin-top: 2.75rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.ceo-media {
  display: flex;
  justify-content: center;
}

.ceo-photo {
  width: 12rem;
  height: 12rem;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -20px rgba(15, 30, 61, 0.35);
}

.ceo-copy {
  min-width: 0;
}

.ceo-heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.ceo-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
}

.ceo-quote p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--ink);
}

.ceo-signature {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.ceo-name {
  font-size: 1rem;
  font-weight: 650;
  color: var(--navy);
}

.bemethod-word {
  white-space: nowrap;
}

.bemethod-be {
  color: var(--slate);
  font-weight: 400;
}

.bemethod-method {
  color: var(--navy);
  font-weight: 650;
}

.ceo-title {
  font-size: 0.875rem;
  color: var(--slate);
}

.details {
  margin-top: 2rem;
}

.status-card {
  list-style: none;
  margin: 0;
  padding: 1.25rem 1.375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  display: grid;
  gap: 0.875rem;
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate);
}

.status-item strong {
  color: var(--ink);
  font-weight: 600;
}

.status-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--paper);
  position: relative;
}

.status-icon-active {
  border-color: var(--teal-deep);
  background: rgba(25, 227, 181, 0.12);
}

.status-icon-active::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--teal-deep);
}

.status-icon-pending {
  border-color: var(--blue);
  background: var(--paper);
}

.status-icon-pending::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--blue);
}

.subhead {
  margin: 0 0 1rem;
  max-width: 620px;
  color: var(--slate);
}

.subhead strong {
  color: var(--ink);
  font-weight: 600;
}

.reassurance {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate);
}

.contact {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.contact-heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.1875rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: var(--slate);
}

.schedule-form {
  display: grid;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.form-optional {
  font-weight: 400;
  color: var(--slate);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.6px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal-deep);
}

.form-input::placeholder {
  color: #9aa5ba;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate);
}

.form-status.is-success {
  color: var(--teal-deep);
}

.form-status.is-error {
  color: #b42318;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--paper);
}

.btn-primary:hover {
  background: #0a162e;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-ghost {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue);
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.logo-footer .logo-word {
  font-size: 0.9375rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate);
}

.footer-meta a {
  color: var(--blue);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.footer-sep {
  margin-inline: 0.5rem;
}

@media (max-width: 640px) {
  .site-notice-inner {
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .main {
    padding: 3.5rem 0 3rem;
  }

  .header {
    margin-bottom: 2.5rem;
  }

  .ceo-note {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .ceo-photo {
    width: 10rem;
    height: 10rem;
  }

  .contact {
    margin-top: 2.75rem;
    padding-top: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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