/* Love Is Everything — warm, grounded, welcoming */
:root {
  --cream: #faf6f1;
  --cream-dark: #f0e8dc;
  --rose: #e8c4c0;
  --rose-soft: #f5e6e3;
  --gold: #c9a86c;
  --gold-light: #e8d5a8;
  --gold-deep: #a88b4a;
  --purple: #5c4a6e;
  --purple-deep: #3d3248;
  --purple-soft: #8b7a9b;
  --text: #3a3340;
  --text-muted: #6b6170;
  --white: #fffefb;
  --shadow: 0 4px 24px rgba(92, 74, 110, 0.08);
  --shadow-hover: 0 8px 32px rgba(92, 74, 110, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 720px;
  --max-wide: 1100px;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Georgia", "Times New Roman", "Palatino Linotype", Palatino, serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--purple);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--gold-deep); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* —— Header / Nav —— */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rose-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(92, 74, 110, 0.04);
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--purple-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo:hover { color: var(--purple); text-decoration: none; }
.logo span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rose);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--purple);
  font-size: 0.9rem;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--purple-deep);
  border-bottom-color: var(--gold);
}

/* —— Main —— */
main { flex: 1; }

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.container-narrow {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* —— Hero —— */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 196, 192, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 168, 108, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero-ornament {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 400;
  color: var(--purple-deep);
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 36em;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* —— Buttons —— */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--purple);
  border-color: var(--rose);
}
.btn-secondary:hover {
  background: var(--rose-soft);
  color: var(--purple-deep);
  text-decoration: none;
}

/* —— Sections —— */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-intro {
  color: var(--text-muted);
  max-width: 40em;
  margin-bottom: 2rem;
}

.section {
  padding: 3rem 0;
}
.section + .section { border-top: 1px solid var(--cream-dark); }

.section-alt {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  margin: 1rem 0;
  box-shadow: var(--shadow);
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--rose-soft);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.card h3 a {
  text-decoration: none;
  color: inherit;
}
.card h3 a:hover { color: var(--purple); }
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}
.card .card-meta {
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.card .read-more {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--purple);
}
.card .read-more:hover { color: var(--gold-deep); }

/* —— Page header (inner pages) —— */
.page-header {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--cream-dark);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 0.75rem;
}
.page-header .lede {
  color: var(--text-muted);
  max-width: 36em;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* —— Article / practice content —— */
.article-body,
.practice-body {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text);
}
.article-body p,
.practice-body p {
  margin-bottom: 1.35rem;
}
.article-body h2,
.practice-body h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin: 2.25rem 0 0.85rem;
  line-height: 1.35;
}
.article-body h3,
.practice-body h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
  margin: 1.75rem 0 0.6rem;
}
.article-meta,
.practice-meta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
}
.article-meta .tag,
.practice-meta .tag {
  display: inline-block;
  background: var(--rose-soft);
  color: var(--purple);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  letter-spacing: 0.03em;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 1.5rem 0 2rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3.5rem;
  margin-bottom: 0.85rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--rose-soft);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.75rem;
  text-align: center;
}

.tip-box {
  background: var(--rose-soft);
  border-left: 4px solid var(--gold);
  padding: 1.15rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
}
.tip-box strong {
  color: var(--purple-deep);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
}
.back-link:hover { color: var(--purple); }

/* —— Community form —— */
.invite-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--rose-soft);
  max-width: 480px;
  margin: 2rem auto 0;
}
.invite-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 0.35rem;
}
.invite-form input,
.invite-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.1rem;
  transition: border-color var(--transition);
}
.invite-form input:focus,
.invite-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.25);
}
.invite-form .form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--purple);
}
.form-success.is-visible { display: block; }
.form-fields.is-hidden { display: none; }

/* —— Soft CTA band —— */
.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  background:
    linear-gradient(135deg, var(--rose-soft) 0%, var(--cream-dark) 50%, rgba(232, 213, 168, 0.4) 100%);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 0.6rem;
}
.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

/* —— Values / about —— */
.values-list {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.value-item {
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 0.35rem;
}
.value-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* —— Footer —— */
.site-footer {
  background: var(--purple-deep);
  color: rgba(255, 254, 251, 0.85);
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand + p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 28em;
}
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: rgba(255, 254, 251, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.25rem 0;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max-wide);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 254, 251, 0.15);
  font-size: 0.8rem;
  opacity: 0.65;
  text-align: center;
}

/* —— List pages —— */
.content-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.content-list-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--rose-soft);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.content-list-item:hover { box-shadow: var(--shadow-hover); }
.content-list-item h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.content-list-item h2 a {
  text-decoration: none;
  color: var(--purple-deep);
}
.content-list-item h2 a:hover { color: var(--purple); }
.content-list-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.content-list-item .meta {
  font-size: 0.8rem;
  color: var(--gold-deep);
}

/* —— Decorative divider —— */
.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
  color: var(--gold);
}
.ornament-line::before,
.ornament-line::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--rose);
}

/* —— Utility —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* —— Responsive —— */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rose-soft);
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .site-nav a {
    display: block;
    padding: 0.55rem 0;
    width: 100%;
  }
  .header-inner { position: relative; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .container, .container-narrow { padding: 2rem 1.25rem; }
}

@media (min-width: 769px) {
  .site-nav { display: block !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
  .card:hover { transform: none; }
}

/* —— Guiding maxims —— */
.maxims {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 560px) {
  .maxims { grid-template-columns: 1fr 1fr; }
}
.maxim {
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--rose-soft);
  box-shadow: var(--shadow);
  text-align: center;
}
.maxim p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--purple-deep);
  line-height: 1.4;
  margin: 0;
}

/* —— Home mission strip —— */
.mission-strip {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0.5rem 0 0.5rem;
}
.mission-pill {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--rose-soft);
  box-shadow: var(--shadow);
}
.mission-pill h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 0.4rem;
}
.mission-pill p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* —— Donation / give from the heart —— */
.donation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--rose-soft);
  margin: 2rem auto 0;
  max-width: 520px;
  position: relative;
  overflow: hidden;
}
.donation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--purple-soft));
}
.donation-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--purple-deep);
  text-align: center;
  margin-bottom: 0.75rem;
}
.donation-card > .donation-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.donation-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 0.35rem;
}
.donation-card input,
.donation-card textarea,
.donation-card select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.1rem;
  transition: border-color var(--transition);
}
.donation-card input:focus,
.donation-card textarea:focus,
.donation-card select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.25);
}
.donation-reassure {
  background: var(--rose-soft);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.donation-reassure strong {
  color: var(--purple-deep);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.donation-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.donation-placeholder {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.55;
}
.amount-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.1rem;
}
.amount-row span {
  color: var(--text-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.amount-row input {
  margin-bottom: 0;
}
.donation-fields.is-hidden { display: none; }


/* —— The Place of Happiness —— */
.place-happiness {
  text-align: center;
  padding: 2.75rem 1.75rem;
  margin: 1.5rem 0 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 196, 192, 0.45) 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--rose-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rose);
  box-shadow: var(--shadow);
}
.place-happiness--compact {
  padding: 2rem 1.4rem;
  margin: 2rem 0;
}
.place-happiness-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  color: var(--purple-deep);
  margin: 0.35rem 0 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.place-happiness-quote {
  margin: 0 auto;
  max-width: 38em;
  border: none;
  padding: 0;
}
.place-happiness-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* —— Connect placeholders —— */
.connect-block {
  text-align: center;
  margin: 2.5rem 0 1rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rose-soft);
  box-shadow: var(--shadow);
}
.connect-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 360px;
  margin: 0 auto;
  padding: 0;
}
.connect-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--rose-soft);
}
.connect-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.connect-value {
  color: var(--purple);
  font-size: 1rem;
}
.footer-soon {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: rgba(255, 254, 251, 0.65);
}
