@font-face {
  font-family: StudioSans;
  src: url("/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: StudioSans;
  src: url("/fonts/OpenSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
:root {
  --paper: #f7f5ee;
  --ink: #233a34;
  --muted: #5c6962;
  --line: #d9ddd1;
  --lime: #d2ef87;
  --rose: #e3ac99;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: StudioSans, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #917323;
  outline-offset: 5px;
}
.page-shell {
  max-width: 1392px;
  margin: auto;
  padding: 0 64px;
}
.site-header {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 31px;
  font-style: italic;
  padding-bottom: 5px;
}
.preview-badge {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 10px;
  letter-spacing: 1.4px;
}
.preview-badge span {
  margin-left: 17px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(310px, 1fr);
  gap: 72px;
  padding: 70px 0 72px;
  align-items: center;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 30px;
}
.small-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #678754;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(48px, 5.05vw, 72px);
  line-height: 1.08;
  letter-spacing: -2.6px;
  margin: 0 0 26px;
}
h1 em {
  font-weight: 400;
  color: #597650;
}
.intro {
  font-size: 16px;
  line-height: 1.85;
  max-width: 430px;
  margin: 0 0 13px;
}
.supporting {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 390px;
  margin: 0;
}
.discipline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}
.discipline-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 10px;
}
.connection-card {
  border: 1px solid #cbd3c1;
  border-radius: 5px;
  overflow: hidden;
  background: #fffdf8;
  box-shadow: 8px 10px 0 #e9eade;
  transform: rotate(1deg);
}
.card-topline {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-bottom: 1px solid #cbd3c1;
}
.connection-art {
  height: 154px;
  background: var(--lime);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #cbd3c1;
}
.shape {
  position: absolute;
  display: block;
  width: 175px;
  height: 175px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.shape-one {
  left: 28px;
  top: 30px;
  background: #b8cf76;
}
.shape-two {
  left: 103px;
  top: -42px;
  background: #e5edb8;
  mix-blend-mode: multiply;
}
.art-caption {
  position: absolute;
  left: 26px;
  top: 42px;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1px;
}
.art-star {
  position: absolute;
  right: 21px;
  top: 12px;
  font-size: 67px;
  color: var(--ink);
}
.card-content {
  padding: 24px;
}
.card-content h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 31px;
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}
.card-description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 18px;
}
.connection-status {
  border-left: 3px solid #b5beb2;
  padding: 0 0 0 12px;
  min-height: 86px;
}
.connection-status[data-state="connected"] {
  border-color: #618a4f;
}
.connection-status[data-state="error"] {
  border-color: #a3563e;
}
.status-label {
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 6px;
}
#connection-message {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}
.connection-time {
  font-size: 10px;
  color: var(--muted);
  margin: 6px 0 0;
  min-height: 15px;
}
button {
  font-family: inherit;
  background: var(--ink);
  color: white;
  border: 0;
  border-radius: 3px;
  padding: 14px 18px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 20px;
  cursor: pointer;
}
button:hover {
  background: #385647;
}
button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.next-section {
  border-top: 1px solid var(--line);
  padding: 34px 0 35px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.section-heading h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0;
}
.section-heading > span {
  font-size: 9px;
  letter-spacing: 1.3px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 30px;
}
.step-number {
  font-size: 10px;
  color: #526c46;
  border: 1px solid #c8d2bd;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.steps h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 8px;
}
.steps p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  margin: 0;
  max-width: 295px;
}
.preview-note {
  font-size: 11px;
  color: var(--muted);
  margin: 28px 0 0;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  font-size: 10px;
  color: var(--muted);
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 15px;
  background: var(--ink);
  color: white;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.error-page {
  padding: 70px 0;
  min-height: 65vh;
}
@media (min-width: 1500px) {
  .hero {
    gap: 105px;
  }
}
@media (max-width: 1000px) {
  .page-shell {
    padding: 0 36px;
  }
  .hero {
    gap: 36px;
  }
  h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .intro {
    font-size: 14px;
  }
  .card-content {
    padding: 20px;
  }
}
@media (max-width: 720px) {
  .page-shell {
    padding: 0 23px;
  }
  .site-header {
    height: 96px;
  }
  .brand-mark {
    height: 44px;
    width: 44px;
    font-size: 27px;
  }
  .brand {
    font-size: 12px;
    gap: 10px;
  }
  .preview-badge {
    font-size: 8px;
    padding: 9px 10px;
    letter-spacing: 0.8px;
  }
  .preview-badge span {
    margin-left: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 38px 0 44px;
    gap: 34px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: 49px;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 22px;
  }
  .intro {
    font-size: 14px;
  }
  .supporting {
    font-size: 12px;
  }
  .discipline-tags {
    margin-top: 22px;
  }
  .connection-card {
    transform: none;
    max-width: 480px;
    width: 100%;
    justify-self: center;
    box-shadow: 5px 6px 0 #e9eade;
  }
  .connection-art {
    height: 130px;
  }
  .art-caption {
    top: 35px;
    font-size: 25px;
  }
  .card-content {
    padding: 22px;
  }
  .connection-status {
    min-height: 80px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .section-heading h2 {
    font-size: 24px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 26px;
  }
  .steps article {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 15px;
  }
  .step-number {
    grid-row: 1/3;
  }
  .steps h3 {
    margin: 0 0 7px;
  }
  .steps p {
    max-width: none;
  }
  footer {
    flex-direction: column;
    font-size: 10px;
  }
  .preview-note {
    line-height: 1.8;
  }
}
@media (prefers-reduced-motion: no-preference) {
  button {
    transition: background 0.15s;
  }
}
