:root {
  color-scheme: dark;
  --ink: #f7f7f8;
  --muted: #c3c6ca;
  --subtle: #99a0a7;
  --canvas: #1e252d;
  --surface: #2a3139;
  --surface-soft: #242c34;
  --line: #3f4852;
  --teal: #0e766d;
  --teal-dark: #095b55;
  --teal-bright: #2dd4c0;
  --teal-pale: #203c3b;
  --rose: #ff4d8f;
  --rose-dark: #ff76aa;
  --rose-pale: #4a2c3b;
  --gold: #f4b942;
  --gold-pale: #493d29;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  font-family: Inter, Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--teal-dark);
  border-radius: 8px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.event-ribbon {
  color: white;
  background: #151b22;
}

.event-ribbon a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 7px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.event-ribbon__detail {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(100% - 48px, 1200px);
  min-height: 88px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.site-header--event {
  color: white;
  background: #1e252d;
  width: 100%;
  padding-inline: max(24px, calc((100% - 1200px) / 2));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 720;
}

.site-nav > a:not(.button) {
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--teal-bright);
}

.site-header--event .site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.78);
}

.site-header--event .site-nav > a:not(.button):hover {
  color: white;
}

.section {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-bright);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #8ee8dd;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 21px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.2);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.25);
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.button--small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.button--rose {
  color: white;
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 10px 26px rgba(255, 77, 141, 0.25);
}

.button--rose:hover {
  background: var(--rose-dark);
  box-shadow: 0 14px 32px rgba(255, 77, 141, 0.3);
}

.button--light {
  color: var(--teal-dark);
  background: white;
  border-color: white;
  box-shadow: none;
}

.button--light:hover {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.button--full {
  width: 100%;
  justify-content: space-between;
  padding-inline: 24px;
  border-radius: 14px;
}

.button-row {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-bright);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.hero {
  display: grid;
  min-height: 690px;
  padding: 72px 0 100px;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.event-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7.1vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero h1 em,
.event-hero h1 em {
  color: var(--teal-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero__lede {
  max-width: 34rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.quiet-note {
  margin: 22px 0 0;
  color: var(--subtle);
  font-size: 0.79rem;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.hero__visual::before {
  position: absolute;
  width: 440px;
  height: 440px;
  content: "";
  background: radial-gradient(circle at 30% 30%, #255e59, #203d40 66%, #1b3036);
  border-radius: 50%;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 50%;
}

.orbit--one {
  width: 520px;
  height: 520px;
}

.orbit--two {
  width: 610px;
  height: 610px;
}

.phone-preview {
  position: relative;
  z-index: 2;
  width: 292px;
  min-height: 574px;
  padding: 12px 15px 16px;
  color: var(--ink);
  background: #1e252d;
  border: 8px solid #0c1014;
  border-radius: 45px;
  box-shadow: 0 34px 65px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2deg);
}

.phone-preview__top {
  display: flex;
  height: 28px;
  padding: 2px 6px 0;
  justify-content: space-between;
  color: #f7f7f8;
  font-size: 0.54rem;
  font-weight: 800;
}

.phone-preview__island {
  width: 70px;
  height: 18px;
  margin-top: -1px;
  background: #0c1014;
  border-radius: 999px;
}

.app-greeting {
  display: flex;
  margin: 10px 3px 17px;
  justify-content: space-between;
  align-items: center;
}

.app-greeting div {
  display: grid;
  gap: 1px;
}

.app-caption,
.pet-card__eyebrow {
  color: var(--subtle);
  font-size: 0.58rem;
}

.app-greeting strong {
  font-size: 0.88rem;
}

.mini-avatar {
  display: grid;
  width: 33px;
  height: 33px;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--teal);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--rose);
  place-items: center;
}

.pet-card {
  display: grid;
  overflow: hidden;
  background: #2a3139;
  border: 1px solid #3f4852;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 100px 1fr;
}

.pet-card__art {
  position: relative;
  display: grid;
  min-height: 126px;
  overflow: hidden;
  color: #4b3025;
  background: linear-gradient(150deg, #f7d6aa, #e9ad71);
  place-items: center;
}

.dog-face {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 69px;
  padding-top: 7px;
  font-size: 1.05rem;
  font-weight: 900;
  background: #f1c58f;
  border-radius: 48% 48% 45% 45%;
  place-items: center;
}

.dog-ear {
  position: absolute;
  z-index: 1;
  top: 24px;
  width: 25px;
  height: 64px;
  background: #a46d3e;
  border-radius: 80% 25% 70% 30%;
}

.dog-ear--left {
  left: 12px;
  transform: rotate(17deg);
}

.dog-ear--right {
  right: 12px;
  transform: scaleX(-1) rotate(17deg);
}

.pet-card__body {
  display: flex;
  padding: 19px 14px;
  flex-direction: column;
  justify-content: center;
}

.pet-card__body strong {
  margin: 4px 0;
  color: var(--teal-bright);
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}

.pet-card__body > span:last-child {
  color: var(--subtle);
  font-size: 0.59rem;
  line-height: 1.4;
}

.app-section-title {
  display: flex;
  margin: 24px 3px 10px;
  justify-content: space-between;
  align-items: baseline;
}

.app-section-title strong {
  font-size: 0.78rem;
}

.app-section-title span {
  color: var(--teal-bright);
  font-size: 0.57rem;
  font-weight: 800;
}

.care-row {
  display: flex;
  padding: 10px 8px;
  align-items: center;
  gap: 10px;
  background: #2a3139;
  border-bottom: 1px solid #3f4852;
}

.care-row:first-of-type {
  border-radius: 14px 14px 0 0;
}

.care-row div {
  display: grid;
  gap: 2px;
}

.care-row strong {
  font-size: 0.66rem;
}

.care-row div span {
  color: var(--subtle);
  font-size: 0.52rem;
}

.care-icon {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--teal-bright);
  font-size: 0.67rem;
  font-weight: 900;
  background: var(--teal-pale);
  border-radius: 10px;
  place-items: center;
}

.care-icon--rose {
  color: var(--rose-dark);
  background: var(--rose-pale);
}

.app-tabs {
  display: flex;
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  height: 49px;
  padding-inline: 18px;
  justify-content: space-between;
  align-items: center;
  color: #99a0a7;
  font-size: 0.92rem;
  background: #2a3139;
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.app-tabs .active {
  color: var(--teal-bright);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 188px;
  padding: 12px 14px;
  align-items: center;
  gap: 10px;
  background: rgba(42, 49, 57, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.floating-note--care {
  top: 105px;
  left: 3px;
}

.floating-note--local {
  right: -6px;
  bottom: 112px;
}

.floating-note__icon {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--teal-dark);
  font-weight: 900;
  background: var(--teal-pale);
  border-radius: 11px;
  place-items: center;
}

.floating-note__icon--rose {
  color: var(--rose-dark);
  background: var(--rose-pale);
}

.floating-note > span:last-child {
  display: grid;
  gap: 2px;
}

.floating-note strong {
  font-size: 0.7rem;
}

.floating-note small {
  color: var(--subtle);
  font-size: 0.56rem;
}

.section--soft {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1200px) / 2));
  background: var(--surface-soft);
}

.story-section {
  padding-top: 110px;
  padding-bottom: 120px;
}

.section-heading {
  display: grid;
  max-width: 790px;
  margin-bottom: 54px;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  column-gap: 60px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.manifesto blockquote,
.business-section h2,
.early-section h2,
.event-intro h2,
.signup-section h2,
.partner-section h2,
.event-closing h2,
.privacy-card > h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  content: "";
  background: var(--teal-pale);
  border-radius: 50%;
  opacity: 0.75;
}

.feature-card--care::after {
  background: var(--rose-pale);
}

.feature-card--discover::after {
  background: var(--gold-pale);
}

.feature-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #879099;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 72px;
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--teal-pale);
  border-radius: 15px;
  place-items: center;
}

.feature-card--care .feature-icon {
  color: var(--rose-dark);
  background: var(--rose-pale);
}

.feature-card--discover .feature-icon {
  color: #ffd475;
  background: var(--gold-pale);
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  position: relative;
  z-index: 2;
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.manifesto {
  padding: 130px 0;
  text-align: center;
}

.manifesto__mark {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 34px;
  color: var(--rose-dark);
  font-size: 1.6rem;
  background: var(--rose-pale);
  border-radius: 50%;
  place-items: center;
}

.manifesto blockquote {
  max-width: 18ch;
  margin-inline: auto;
  font-weight: 760;
}

.manifesto p {
  max-width: 590px;
  margin: 26px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.business-section {
  display: grid;
  min-height: 540px;
  padding: 80px;
  overflow: hidden;
  color: white;
  background: #171e25;
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.business-section__content p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.business-stack {
  position: relative;
  min-height: 320px;
}

.business-stack::before {
  position: absolute;
  inset: -100px -150px;
  content: "";
  background: radial-gradient(circle, rgba(20, 184, 166, 0.23), transparent 65%);
}

.business-listing {
  position: absolute;
  z-index: 3;
  top: 105px;
  left: 0;
  display: flex;
  width: min(100%, 420px);
  min-height: 88px;
  padding: 14px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: #2a3139;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.business-listing--back {
  z-index: 1;
  top: 8px;
  left: 44px;
  opacity: 0.56;
  transform: rotate(5deg);
}

.business-listing--front {
  z-index: 2;
  top: 210px;
  left: 35px;
  opacity: 0.77;
  transform: rotate(-3deg);
}

.listing-photo {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 1.2rem;
  background: var(--teal-pale);
  border-radius: 15px;
  place-items: center;
}

.listing-photo--rose {
  color: var(--rose-dark);
  background: var(--rose-pale);
}

.listing-photo--gold {
  color: #ffd475;
  background: var(--gold-pale);
}

.business-listing > span:nth-child(2) {
  display: grid;
  gap: 5px;
}

.business-listing strong {
  font-size: 0.83rem;
}

.business-listing small {
  color: var(--subtle);
  font-size: 0.65rem;
}

.verified-chip {
  margin-left: auto;
  padding: 5px 8px;
  color: var(--teal-bright);
  font-size: 0.55rem;
  font-weight: 850;
  background: var(--teal-pale);
  border-radius: 999px;
}

.early-section {
  padding: 130px 24px;
  text-align: center;
}

.early-section img {
  margin: 0 auto 26px;
  border-radius: 19px;
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.2);
}

.early-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 30px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: grid;
  width: min(100% - 48px, 1200px);
  min-height: 130px;
  margin: 0 auto;
  padding: 34px 0;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.brand--footer {
  font-size: 1rem;
}

.site-footer > p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.75rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

/* Pawlooza event page */

.event-page {
  background: var(--canvas);
}

.event-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  padding: 72px max(24px, calc((100% - 1200px) / 2)) 105px;
  overflow: hidden;
  color: white;
  background: #1e252d;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 80px;
}

.event-hero::after {
  position: absolute;
  right: -150px;
  bottom: -260px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(255, 255, 255, 0.025), 0 0 0 220px rgba(255, 255, 255, 0.018);
}

.event-hero__glow {
  position: absolute;
  top: -180px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 212, 192, 0.24), transparent 67%);
}

.event-hero__content,
.event-hero__badge {
  position: relative;
  z-index: 2;
}

.event-kicker {
  display: inline-flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-kicker span:first-child {
  color: var(--teal-bright);
}

.event-kicker span:last-child {
  color: #ff91b8;
}

.event-hero h1 {
  font-size: clamp(4.3rem, 8.3vw, 7.6rem);
}

.event-hero h1 em {
  color: var(--rose);
}

.event-hero__content > p:not(.event-kicker) {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.button-row--event {
  margin-top: 34px;
}

.text-link--light {
  color: white;
}

.event-hero__badge {
  display: flex;
  width: 300px;
  height: 360px;
  padding: 35px;
  justify-self: end;
  flex-direction: column;
  justify-content: space-between;
  color: #1e252d;
  background: #f9d9e5;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 48% 48% 44% 44% / 44% 44% 56% 56%;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.23);
  transform: rotate(5deg);
}

.event-hero__badge::before {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 72px;
  height: 72px;
  content: "";
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.9;
}

.event-hero__badge-top {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 7px 11px;
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--teal);
  border-radius: 999px;
}

.event-hero__badge strong {
  color: var(--teal-dark);
  font-size: 4rem;
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.event-hero__badge > span:last-child {
  color: #a51f53;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paw-trail {
  position: absolute;
  z-index: 1;
  right: 27%;
  bottom: 54px;
  display: flex;
  gap: 40px;
  color: rgba(255, 255, 255, 0.12);
  transform: rotate(-18deg);
}

.paw-trail span:nth-child(even) {
  margin-top: -18px;
}

.event-intro {
  display: grid;
  padding: 120px 0 90px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 90px;
}

.event-intro__copy {
  padding-top: 38px;
}

.event-intro__copy p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.event-benefits {
  display: grid;
  margin-bottom: 120px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.event-benefits article {
  min-height: 225px;
  padding: 32px;
  background: var(--surface);
}

.benefit-mark {
  display: block;
  margin-bottom: 50px;
  color: var(--rose-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.event-benefits h3 {
  margin: 0 0 9px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.event-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.signup-section,
.partner-section {
  display: grid;
  width: 100%;
  padding: 110px max(24px, calc((100% - 1200px) / 2));
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.signup-section {
  background: #203236;
}

.signup-section__intro,
.partner-section__intro {
  position: sticky;
  top: 40px;
  padding-top: 38px;
}

.signup-section__intro > p:not(.eyebrow),
.partner-section__intro > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.check-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--teal-bright);
  font-size: 0.88rem;
  font-weight: 740;
}

.check-list li::before {
  display: grid;
  width: 23px;
  height: 23px;
  content: "✓";
  color: white;
  font-size: 0.7rem;
  background: var(--teal);
  border-radius: 50%;
  place-items: center;
}

.form-card {
  padding: clamp(25px, 4vw, 42px);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-card__header {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 24px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.form-card__header > div {
  display: grid;
  gap: 3px;
}

.form-card__header strong {
  font-size: 0.96rem;
}

.form-card__header div span {
  color: var(--subtle);
  font-size: 0.72rem;
}

.form-card__icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: var(--rose-dark);
  font-size: 1.25rem;
  background: var(--rose-pale);
  border-radius: 13px;
  place-items: center;
}

.form-card__icon--gold {
  color: #ffd475;
  background: var(--gold-pale);
}

.form-card form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  color: #e7e8ea;
  font-size: 0.76rem;
  font-weight: 780;
}

.field span small {
  color: #99a0a7;
  font-size: 0.68rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #1e252d;
  border: 1px solid #46515c;
  border-radius: 11px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #242d35;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.13);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7f8790;
}

.consent-field {
  display: grid;
  margin: 2px 0;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-status {
  min-height: 0;
  margin: -4px 0 0;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status--success {
  padding: 12px 14px;
  color: #baf4d1;
  background: #1d4435;
  border: 1px solid #2b654c;
  border-radius: 10px;
}

.form-status--error {
  padding: 12px 14px;
  color: #ffc0d4;
  background: #4a2634;
  border: 1px solid #754054;
  border-radius: 10px;
}

.form-fineprint {
  margin: -3px 0 0;
  color: #9299a1;
  font-size: 0.67rem;
  line-height: 1.5;
  text-align: center;
}

.partner-section {
  color: white;
  background: #171e25;
}

.partner-section h2 {
  max-width: 12ch;
}

.partner-section__intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.partner-points {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 9px;
}

.partner-points span {
  padding: 8px 10px;
  color: #c5f2ec;
  font-size: 0.68rem;
  font-weight: 750;
  background: rgba(20, 184, 166, 0.13);
  border: 1px solid rgba(142, 232, 221, 0.16);
  border-radius: 999px;
}

.form-card--dark {
  background: #2a3139;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.event-closing {
  padding: 125px 24px;
  text-align: center;
}

.event-closing img {
  margin: 0 auto 28px;
  border-radius: 21px;
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.18);
}

.event-closing > p:not(.eyebrow) {
  max-width: 550px;
  margin: 22px auto 25px;
  color: var(--muted);
  line-height: 1.7;
}

.event-closing .text-link {
  justify-content: center;
}

.site-footer--event {
  grid-template-columns: auto 1fr auto;
}

.site-footer--event > p:nth-of-type(1) {
  text-align: left;
}

.affiliation-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Privacy */

.privacy-main {
  padding: 70px 24px 120px;
}

.privacy-card {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 70px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.privacy-card > h1 {
  max-width: 13ch;
}

.privacy-updated {
  margin: 19px 0 55px;
  color: var(--subtle);
  font-size: 0.78rem;
}

.privacy-card section {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.privacy-card section h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.privacy-card section p,
.privacy-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.privacy-callout {
  margin: 30px 0;
  padding: 22px;
  color: var(--teal-bright);
  background: var(--teal-pale);
  border-radius: 15px;
}

.privacy-callout p {
  margin-top: 7px;
  color: #a9ded8;
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1fr);
    gap: 30px;
  }

  .hero__visual {
    transform: scale(0.9);
  }

  .business-section {
    padding: 60px;
    gap: 40px;
  }

  .event-hero {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }

  .event-hero__badge {
    width: 260px;
    height: 320px;
  }

  .signup-section,
  .partner-section {
    grid-template-columns: minmax(0, 0.7fr) minmax(440px, 1fr);
    gap: 45px;
  }
}

@media (max-width: 850px) {
  .site-nav > a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 55px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lede {
    margin-inline: auto;
  }

  .hero .button-row {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 20px;
    transform: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 245px;
  }

  .feature-icon {
    margin-bottom: 46px;
  }

  .business-section {
    padding: 60px 44px;
    grid-template-columns: 1fr;
  }

  .business-stack {
    min-height: 320px;
  }

  .event-hero {
    padding-top: 55px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-kicker,
  .event-hero .button-row {
    justify-content: center;
  }

  .event-hero__content > p:not(.event-kicker) {
    margin-inline: auto;
  }

  .event-hero__badge {
    width: 225px;
    height: 270px;
    margin-top: 10px;
    justify-self: center;
    text-align: left;
  }

  .event-hero__badge strong {
    font-size: 3rem;
  }

  .event-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-intro__copy {
    padding-top: 0;
  }

  .event-benefits {
    grid-template-columns: 1fr;
  }

  .event-benefits article {
    min-height: 175px;
  }

  .benefit-mark {
    margin-bottom: 28px;
  }

  .signup-section,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .signup-section__intro,
  .partner-section__intro {
    position: static;
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  .event-ribbon__detail {
    display: none;
  }

  .site-header {
    width: min(100% - 30px, 1200px);
    min-height: 74px;
  }

  .site-header--event {
    width: 100%;
    padding-inline: 15px;
  }

  .site-nav {
    gap: 10px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .section {
    width: min(100% - 30px, 1200px);
  }

  .section--soft {
    width: 100%;
    padding-inline: 15px;
  }

  .hero {
    min-height: auto;
    padding: 55px 0 65px;
  }

  .hero h1,
  .event-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.7rem);
  }

  .hero__lede {
    font-size: 1rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 515px;
    margin: -10px -28px 0;
    transform: scale(0.82);
  }

  .orbit--one {
    width: 490px;
    height: 490px;
  }

  .orbit--two {
    display: none;
  }

  .floating-note--care {
    left: 10px;
  }

  .floating-note--local {
    right: 8px;
  }

  .story-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .manifesto blockquote,
  .business-section h2,
  .early-section h2,
  .event-intro h2,
  .signup-section h2,
  .partner-section h2,
  .event-closing h2,
  .privacy-card > h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .manifesto {
    padding: 90px 0;
  }

  .business-section {
    width: 100%;
    padding: 70px 24px;
    border-radius: 0;
  }

  .business-stack {
    min-height: 280px;
  }

  .business-listing {
    width: calc(100% - 8px);
  }

  .business-listing--back,
  .business-listing--front {
    left: 8px;
  }

  .early-section {
    padding: 95px 12px;
  }

  .site-footer,
  .site-footer--event {
    width: min(100% - 30px, 1200px);
    padding: 36px 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer--event > p:nth-of-type(1) {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .event-hero {
    padding: 55px 18px 85px;
  }

  .event-hero__badge {
    width: 205px;
    height: 245px;
    padding: 28px;
  }

  .event-intro {
    padding: 85px 0 60px;
  }

  .event-benefits {
    width: min(100% - 30px, 1200px);
    margin-bottom: 80px;
  }

  .signup-section,
  .partner-section {
    padding: 80px 15px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 18px;
    border-radius: 19px;
  }

  .event-closing {
    padding: 90px 12px;
  }

  .privacy-main {
    padding: 35px 15px 80px;
  }

  .privacy-card {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
