  :root {
    /* Warm palette */
    --warm-cream: #FEFCF9;
    --soft-ivory: #FAF8F5;
    --light-sand: #F5F3F0;
    
    --green: #059669;
    --green-hover: #047857;
    --green-pale: #ecfdf5;
    
    --text-dark: #1F2937;
    --text-body: #374151;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    
    --coral: #F87171;
    --amber: #F59E0B;
    --sky: #38BDF8;
    --violet: #A78BFA;
    --rose: #FDA4AF;
    --teal: #2DD4BF;
    
    /* Warm shadows */
    --shadow-sm: 0 2px 6px rgba(120,100,80,0.06);
    --shadow-md: 0 4px 12px rgba(120,100,80,0.08);
    --shadow-lg: 0 8px 24px rgba(120,100,80,0.10);
    --shadow-xl: 0 16px 32px rgba(120,100,80,0.12);
    
    --font-headline: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--warm-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  h1, h2, h3 { font-family: var(--font-headline); font-weight: 700; line-height: 1.1; }

  /* NAV */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
  }

  .nav__logo svg { width: 32px; height: 32px; }
  .nav__logo span { font-family: var(--font-headline); font-size: 20px; font-weight: 700; }

  .btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .btn--primary {
    background: var(--green);
    color: white;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
  }

  .btn--primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .btn--secondary {
    background: white;
    color: var(--text-dark);
    border: 1.5px solid #E5E7EB;
  }

  .btn--secondary:hover {
    border-color: var(--green);
    color: var(--green);
  }

  .btn--ghost {
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
  }

  .btn--ghost:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  @media (max-width: 768px) {
    .nav-cta--desktop {
      display: none;
    }
  }

  /* GREETING BADGE - Notification/Alert Style */
  .greeting-badge {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 16px 28px;
    border-radius: 16px;
    border: 2px solid var(--green);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15), 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    opacity: 0;
    animation: badgeFadeIn 0.6s ease 0.3s forwards;
    z-index: 10;
  }

  .greeting-badge::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
  }

  @keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.7; }
  }

  .greeting-badge__line1 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .greeting-badge__line2 {
    font-size: 14px;
    color: var(--text-medium);
  }

  @keyframes badgeFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: visible;
  }

  .hero__headline {
    font-size: clamp(48px, 10vw, 72px);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-bounce) 0.5s forwards;
  }

  .hero__subheadline {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-bounce) 0.6s forwards;
  }

  .hero__cta {
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-bounce) 0.8s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* FLOATING AVATARS */
  .floating-avatar {
    position: fixed;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 50;
    pointer-events: auto;
    cursor: pointer;
    will-change: transform, left, top;
    transition: box-shadow 0.2s ease;
  }

  .floating-avatar:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }

  .floating-avatar::after {
    content: attr(data-name);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: white;
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .floating-avatar:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  .floating-avatar.docked {
    z-index: 60;
    pointer-events: none;
  }


  .floating-avatar.docked::after {
    display: none;
  }

  .floating-avatar[data-i="0"] { top: 18vh; left: 15vw; }
  .floating-avatar[data-i="1"] { top: 20vh; right: 15vw; left: auto; }
  .floating-avatar[data-i="2"] { top: 55vh; left: 10vw; }
  .floating-avatar[data-i="3"] { top: 60vh; right: 12vw; left: auto; }

  .avatar-g1 { background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%); }
  .avatar-g2 { background: linear-gradient(135deg, var(--violet) 0%, var(--rose) 100%); }
  .avatar-g3 { background: linear-gradient(135deg, var(--sky) 0%, #E0F2FE 100%); }
  .avatar-g4 { background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%); }

  /* SECTION BASE + REVEAL */
  .section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 24px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
  }

  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .section.visible .reveal-item { opacity: 1; transform: translateY(0); }
  .section.visible .reveal-item:nth-child(1) { transition-delay: 0s; }
  .section.visible .reveal-item:nth-child(2) { transition-delay: 0.1s; }
  .section.visible .reveal-item:nth-child(3) { transition-delay: 0.2s; }
  .section.visible .reveal-item:nth-child(4) { transition-delay: 0.3s; }
  
  @media (prefers-reduced-motion: reduce) {
    .section, .floating-avatar, .team-card, .reveal-item {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
    }
  }

  .section__title {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 48px;
  }

  /* DEMO SECTION */
  .solution-demo { background: var(--light-sand); }

  .demo-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .demo-card__question {
    background: var(--soft-ivory);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
  }

  .demo-card__q {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .demo-card__click {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .demo-card__click:hover {
    background: var(--green-hover);
    transform: scale(1.02);
  }

  .demo-card__answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
  }

  .demo-card.revealed .demo-card__answer {
    padding: 24px;
    max-height: 200px;
  }

  .demo-answer__row {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .demo-answer__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .demo-answer__info { flex: 1; }
  .demo-answer__name { font-weight: 600; font-size: 16px; }
  .demo-answer__detail { color: var(--text-medium); font-size: 14px; }

  .demo-answer__badge {
    background: var(--green-pale);
    color: var(--green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
  }

  .demo-result {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: var(--green-pale);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
  }

  .solution-demo.visible .demo-result { opacity: 1; }
  .demo-result__text { color: var(--green); font-weight: 600; font-size: 18px; }

  /* PROFILE SECTION */
  .profile-section { background: var(--warm-cream); }

  .profile-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--green);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(5, 150, 105, 0.15);
  }

  .profile-card__header {
    background: var(--green-pale);
    padding: 24px;
    text-align: center;
  }

  .profile-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 3px solid white;
  }

  .profile-card__name { font-family: var(--font-headline); font-size: 20px; font-weight: 600; }
  .profile-card__role { color: var(--text-medium); font-size: 14px; margin-bottom: 8px; }

  .profile-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
  }

  .profile-card__status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: statusPulse 3s ease-in-out infinite;
  }

  @keyframes statusPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }

  .profile-card__body { padding: 20px 24px; }

  .profile-card__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
  }

  .profile-card__row:last-child { border-bottom: none; }
  .profile-card__label { color: var(--text-light); }
  .profile-card__value { font-weight: 500; }

  /* TEAM REVEAL SECTION */
  .team-reveal { 
    background: linear-gradient(180deg, var(--light-sand) 0%, var(--soft-ivory) 50%, var(--light-sand) 100%);
    position: relative; 
  }

  .team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (max-width: 800px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .team__grid { grid-template-columns: 1fr; max-width: 280px; } }

  .team-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: visible;
    transition: all 0.4s var(--ease-bounce);
    cursor: pointer;
  }

  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
  }

  .team-card__avatar-slot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
    background: #F3F4F6;
    border: 2px dashed #D1D5DB;
    transition: all 0.3s ease;
  }

  .team-card__avatar-slot.filled {
    background: var(--slot-gradient, #E5E7EB);
    border: none;
  }

  .team-card__avatar {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
  }

  .team-card.docked .team-card__avatar { opacity: 0; }

  .team-card__info { position: relative; }

  .team-card__name {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .team-card__role {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 8px;
  }

  .team-card__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
  }

  .team-card__status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  .team-card__status--active {
    background: rgba(5, 150, 105, 0.1);
    color: var(--green);
  }

  .team-card__status--active::before {
    background: var(--green);
    animation: statusPulse 3s ease-in-out infinite;
  }

  .team-card__status--pto {
    background: rgba(248, 113, 113, 0.1);
    color: var(--coral);
  }

  .team-card__status--pto::before {
    background: var(--coral);
  }

  .team-card__status--meeting {
    background: rgba(251, 191, 36, 0.1);
    color: #B45309;
  }

  .team-card__status--meeting::before {
    background: var(--amber);
    animation: statusBlink 2s ease-in-out infinite;
  }

  .team-card__status--back {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
  }

  .team-card__status--back::before {
    background: #8B5CF6;
    animation: statusPulse 3s ease-in-out infinite;
  }

  @keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .team-card__extra {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
  }

  .team-card:hover .team-card__extra {
    max-height: 80px;
    opacity: 1;
    margin-top: 12px;
  }

  .team-card__detail {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 0;
  }

  .team-card__detail-label { color: var(--text-light); }
  .team-card__detail-value { font-weight: 500; color: var(--text-dark); }

  /* FEATURES SECTION - Enhanced */
  .features-section { 
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--soft-ivory) 50%, var(--warm-cream) 100%);
  }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (max-width: 800px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .features__grid { grid-template-columns: 1fr; } }

  .feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-bounce);
    cursor: default;
    border: 1px solid transparent;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green);
  }

  .feature-card__visual {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.4s var(--ease-bounce);
  }

  .feature-card:hover .feature-card__visual {
    transform: scale(1.2);
  }

  .feature-card__title {
    font-family: var(--font-headline);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    transition: color 0.2s ease;
  }

  .feature-card:hover .feature-card__title {
    color: var(--green);
  }

  .feature-card__desc {
    font-size: 13px;
    color: var(--text-medium);
  }

  /* PRICING SECTION - Enhanced */
  .pricing-section { 
    background: linear-gradient(180deg, var(--light-sand) 0%, #F0EDE8 50%, var(--light-sand) 100%);
  }

  .pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
  }

  @media (max-width: 700px) { .pricing__grid { grid-template-columns: 1fr; max-width: 320px; } }

  .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s var(--ease-bounce);
  }

  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .pricing-card--featured {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15);
    transform: scale(1.02);
  }

  .pricing-card--featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.2);
  }

  .pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 12px;
  }

  .pricing-card__name {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .pricing-card__amount {
    font-family: var(--font-headline);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.2s ease;
  }

  .pricing-card:hover .pricing-card__amount {
    transform: scale(1.05);
    color: var(--green);
  }

  .pricing-card__period {
    display: block;
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 20px;
  }

  .pricing-card__features { text-align: left; }

  .pricing-card__feature {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid #F3F4F6;
  }

  .pricing-card__feature:last-child { border-bottom: none; }

  /* THE CIRCLE SECTION */
  .circle-section {
    background: var(--warm-cream);
    text-align: center;
  }

  .circle-section__title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 40px;
  }

  .the-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .circle-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .empty-spot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px dashed var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: invitePulse 2.5s ease-in-out infinite;
  }

  @keyframes invitePulse {
    0%, 100% { transform: scale(1); border-color: var(--green); }
    50% { transform: scale(1.08); border-color: #10B981; }
  }

  .empty-spot__label {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    animation: labelFade 3s ease-in-out infinite;
  }

  @keyframes labelFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .empty-spot .user-avatar {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s var(--ease-bounce);
  }

  .empty-spot.filled .user-avatar { opacity: 1; transform: scale(1); }
  .empty-spot.filled { border-color: transparent; animation: none; }
  .empty-spot.filled .empty-spot__label { display: none; }

  .the-circle.complete { animation: circleComplete 0.6s ease-out; }

  @keyframes circleComplete { 50% { filter: drop-shadow(0 0 24px rgba(5, 150, 105, 0.4)); } }

  .circle-form { max-width: 420px; margin: 0 auto; }
  .circle-form__row { display: flex; gap: 12px; margin-bottom: 12px; }
  @media (max-width: 480px) { .circle-form__row { flex-direction: column; } }

  .circle-form__input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.2s ease;
  }

  .circle-form__input:focus { outline: none; border-color: var(--green); }
  .circle-form__note { text-align: center; font-size: 13px; color: var(--text-light); }

  .success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12);
  }

  .success-message.visible { display: block; animation: fadeUp 0.5s var(--ease-bounce); }
  .success-message h3 { font-family: var(--font-headline); font-size: 28px; color: var(--green); margin-bottom: 8px; }
  .success-message p { color: var(--text-medium); }

  /* FOOTER */
  .footer {
    background: var(--light-sand);
    padding: 40px 0;
    border-top: 1px solid #E5E7EB;
  }

  .footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer__brand { display: flex; align-items: center; gap: 8px; }
  .footer__brand svg { width: 24px; height: 24px; }
  .footer__brand span { font-family: var(--font-headline); font-weight: 600; }
  .footer__tagline { color: var(--text-medium); font-size: 14px; margin-left: 8px; }
  .footer__link { color: var(--text-medium); font-size: 14px; text-decoration: none; }
  .footer__link:hover { color: var(--green); }
