/* ==========================================================================
   AI Foundry — styles matched to reference design
   ========================================================================== */

:root {
  --primary: #003d2b;
  --primary-dark: #002a1e;
  --primary-mid: #0a4f3a;
  --secondary: #f9f7f2;
  --secondary-deep: #efebe3;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --light: #ffffff;
  --dark: #003d2b;
  --accent: #0d6b4c;
  --accent-soft: rgba(0, 61, 43, 0.08);
  --border: rgba(0, 61, 43, 0.1);
  --card: #ffffff;
  --card-soft: #f3f0ea;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 30, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 30, 20, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 30, 20, 0.12);
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;

  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --fs-h1: clamp(2rem, 5.2vw, 3.75rem);
  --fs-h2: clamp(1.65rem, 3.2vw, 2.75rem);
  --fs-h3: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);
  --lh: 1.65;

  --container: min(1080px, calc(100% - 2 * var(--space-2)));
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--text);
  background: var(--secondary);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  font-family: var(--font);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  color: var(--text-muted);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -100px;
  z-index: 1000;
  background: var(--primary);
  color: var(--light);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-2);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition:
    transform var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn__icon {
  transition: transform var(--transition);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

.btn:active {
  transform: scale(0.98);
}

/* ---------- Forms ---------- */
.form-field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-input.is-invalid {
  border-color: #c62828;
}

.form-error {
  display: block;
  margin-top: 6px;
  font-size: 0.8125rem;
  color: #c62828;
}

.form-error[hidden] {
  display: none;
}

/* ---------- Section ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-5);
}

.section-title {
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: var(--fs-body);
  max-width: 52ch;
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  --header-h: 60px;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0, 30, 20, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-2);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo__mark {
  display: flex;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header__cta {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav.is-open {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) var(--space-2);
  box-shadow: var(--shadow);
}

.nav.is-open .nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

/* ---------- Hero (centered) ---------- */
.hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-7);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  padding-block: var(--space-4);
}

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

.hero__pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow);
}

.hero__title {
  margin-bottom: var(--space-3);
  color: var(--primary);
}

.hero__subtitle {
  max-width: 48ch;
  margin: 0 auto var(--space-4);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 480px;
  margin-inline: auto;
  text-align: left;
}

.hero__avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__avatar {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: visible;
}

.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--light);
  box-shadow: var(--shadow-md);
}

.hero__badge {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--light);
  box-shadow: var(--shadow);
}

.hero__badge--star {
  top: -2px;
  right: -4px;
  background: #e8a317;
}

.hero__badge--check {
  bottom: 0;
  right: -4px;
  background: var(--primary);
}

.hero__avatar--1 { top: 4%; left: 0; }
.hero__avatar--2 { top: 8%; right: 0; }
.hero__avatar--3 { bottom: 18%; left: 2%; }
.hero__avatar--4 { bottom: 12%; right: 4%; }

/* ---------- Press bar ---------- */
.press {
  background: var(--primary);
  padding: var(--space-4) 0;
}

.press__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
}

.press__list img {
  height: 22px;
  width: auto;
  opacity: 0.92;
  transition: opacity var(--transition), transform var(--transition);
}

.press__list li:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------- Features ---------- */
.features {
  padding: var(--space-7) 0;
  background: var(--secondary);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.feature-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 61, 43, 0.22);
}

.feature-card--featured {
  background: var(--primary);
  border-color: transparent;
  color: var(--light);
}

.feature-card--featured .feature-card__title,
.feature-card--featured .feature-card__text,
.feature-card--featured .feature-card__link {
  color: var(--light);
}

.feature-card--featured .feature-card__text {
  opacity: 0.85;
}

.feature-card--featured .feature-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--light);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--primary);
  transition: transform var(--transition);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
}

.feature-card__title {
  font-size: 1.15rem;
  color: var(--primary);
}

.feature-card__text {
  font-size: 0.95rem;
  flex: 1;
}

.feature-card__link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: var(--space-1);
  transition: opacity var(--transition);
}

.feature-card__link:hover {
  opacity: 0.75;
}

/* ---------- Funding ---------- */
.funding {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--secondary);
}

.funding__grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.funding__visual {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
}

.funding__leaf {
  position: absolute;
  width: 80px;
  height: 120px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50% 50% 50% 0;
  pointer-events: none;
}

.funding__leaf--1 {
  left: 8%;
  top: 10%;
  transform: rotate(-25deg);
}

.funding__leaf--2 {
  right: 12%;
  bottom: 8%;
  width: 60px;
  height: 90px;
  transform: rotate(140deg);
  opacity: 0.1;
}

.invest-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  min-width: min(260px, 90%);
  transition: transform var(--transition);
}

.invest-card:hover {
  transform: translateY(-4px);
}

.invest-card--dark {
  background: var(--primary);
  color: var(--light);
  align-self: flex-start;
  margin-left: 8%;
}

.invest-card--light {
  background: var(--light);
  align-self: flex-end;
  margin-right: 8%;
  margin-top: -8px;
}

.invest-card__check {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.invest-card__amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: inherit;
  line-height: 1.2;
}

.invest-card--light .invest-card__amount {
  color: var(--primary);
}

.invest-card__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.9;
}

.invest-card--light .invest-card__label {
  color: var(--text-muted);
}

.invest-card__avatars {
  display: flex;
  margin-top: var(--space-2);
}

.invest-card__avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--light);
  object-fit: cover;
  margin-left: -8px;
}

.invest-card__avatars img:first-child {
  margin-left: 0;
}

.funding__content .section-title {
  text-align: left;
  margin-bottom: var(--space-3);
}

.funding__text {
  margin-bottom: var(--space-4);
  max-width: 42ch;
}

/* ---------- Perks ---------- */
.perks {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--light);
}

.perks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.perk-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--light);
}

.perk-card__logo {
  height: 28px;
  width: auto;
  margin-bottom: var(--space-3);
}

.perk-card__offer {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: var(--space-1);
}

.perk-card__text {
  font-size: 0.9rem;
}

.perks__note {
  text-align: center;
  font-size: 0.75rem;
  color: #9a9a9a;
  margin-top: var(--space-3);
}

/* ---------- Founder ---------- */
.founder {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--secondary);
  text-align: center;
}

.founder__heading {
  max-width: 20ch;
  margin: 0 auto var(--space-5);
  font-style: italic;
  font-weight: 700;
}

.founder__frame {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--secondary-deep);
}

.founder__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.founder__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__botanical {
  position: absolute;
  left: -40px;
  bottom: -20px;
  width: 180px;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 60% at 40% 50%, var(--primary) 0%, transparent 70%),
    radial-gradient(ellipse 35% 55% at 65% 40%, var(--primary-mid) 0%, transparent 70%);
  opacity: 0.55;
  border-radius: 60% 40% 50% 50%;
  transform: rotate(-15deg);
  filter: blur(0.5px);
}

.founder__botanical::before,
.founder__botanical::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  opacity: 0.7;
}

.founder__botanical::before {
  width: 70px;
  height: 110px;
  left: 30px;
  top: 20px;
  transform: rotate(-20deg);
}

.founder__botanical::after {
  width: 50px;
  height: 80px;
  left: 80px;
  top: 50px;
  transform: rotate(30deg);
  opacity: 0.5;
}

.founder__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 30, 20, 0.2);
  transition: background var(--transition);
}

.founder__play:hover {
  background: rgba(0, 30, 20, 0.32);
}

.founder__play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding-left: 4px;
  transition: transform var(--transition);
}

.founder__play:hover .founder__play-icon {
  transform: scale(1.06);
}

.founder__video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(0, 16, 12, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.founder__video-modal[hidden] {
  display: none;
}

.founder__video-dialog {
  position: relative;
  width: min(1100px, 100%, calc((100dvh - 32px) * 16 / 9));
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.founder__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.founder__video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.founder__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.founder__modal-close:hover {
  background: rgba(0, 0, 0, 0.84);
  transform: scale(1.05);
}

.founder__video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: var(--space-3);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--secondary);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.testimonial-card {
  background: var(--card-soft);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--light);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- Contact (replaces FAQ block layout) ---------- */
.contact-home {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--light);
}

.contact-home__header {
  margin-bottom: var(--space-4);
}

.contact-home__header .section-title {
  text-align: left;
  margin-bottom: var(--space-2);
  max-width: none;
}

.contact-home__intro {
  margin-bottom: 0;
  max-width: 42ch;
}

.contact-home__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-home__main {
  flex: 1 1 280px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.wufoo-embed {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--secondary);
  padding: var(--space-2);
}

.wufoo-embed iframe,
#wufoo-qugspke0zzrpu8 iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
}

.contact-aside {
  background: var(--secondary-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  height: fit-content;
  align-self: flex-start;
  flex: 1 1 280px;
  width: 100%;
  max-width: 360px;
}

.contact-aside__title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.contact-aside__text {
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.contact-aside__item {
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

.contact-aside__item:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-4);
  padding-bottom: 0;
}

.contact-aside__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-aside__link {
  display: inline-block;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
  transition: color var(--transition);
}

.contact-aside__link:hover {
  color: var(--primary);
}

.contact-aside__btn {
  width: 100%;
}

/* Keep old FAQ class aliases unused but harmless if referenced */

/* ---------- Footer ---------- */
.site-footer {
  background: var(--secondary);
  padding: var(--space-7) 0 var(--space-4);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__watermark {
  font-size: clamp(3.5rem, 14vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: var(--space-4);
  user-select: none;
  pointer-events: none;
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__dot {
  color: var(--text-muted);
  opacity: 0.5;
}

.footer__copy {
  font-size: 0.8125rem;
  color: #9a9a9a;
}
