:root {
  color-scheme: light;
  --paper: #FAF9F6;
  --ink: #17211D;
  --green: #174D3C;
  --muted: #59645E;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main {
  width: min(100%, 960px);
  padding: clamp(48px, 9vh, 104px) 28px 40px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 34px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 2px;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 12vw, 112px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.055em;
}
h1 span { color: var(--green); }
.rule { width: 40px; height: 1px; background: #A8B8AD; margin: 35px auto; }
h2 { margin: 0; font-size: clamp(22px, 3.5vw, 30px); line-height: 1.3; font-weight: 500; letter-spacing: -.025em; }
.intro { margin: 18px auto 30px; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 440px; }
a { color: var(--green); text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--green); outline-offset: 6px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  max-width: 100%;
  padding: 16px 25px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--paper);
  background: var(--green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.button:hover { background: var(--ink); border-color: var(--ink); }
.email-label { margin: 26px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.email { display: inline-flex; align-items: center; min-height: 44px; font-size: 15px; line-height: 1.6; overflow-wrap: anywhere; user-select: text; }
footer { margin-top: 64px; color: var(--muted); font-size: 12px; line-height: 1.7; }
footer p { margin: 0; }
@media (max-width: 480px) {
  main { padding: 48px 24px 28px; }
  .eyebrow { font-size: 10px; letter-spacing: .1em; margin-bottom: 32px; }
  .rule { margin: 29px auto; }
  .intro { font-size: 15px; }
  .button { width: 100%; padding-inline: 14px; gap: 12px; }
  footer { margin-top: 48px; }
}
@media (forced-colors: active) {
  .button { border: 1px solid ButtonText; }
  a:focus-visible { outline-color: Highlight; }
}
/* Preserve readable reflow when users enlarge text on narrow screens. */
h1, h2, .eyebrow, .button, .email { overflow-wrap: anywhere; }
.email { max-width: 100%; }
