﻿:root {
    --pale-yellow: #f0e3b0;
    --golden: #f5c452;
    --orange: #cc5226;
    --crimson: #a83347;
    --mint: #e5f2e8;
    --green: #6dae81;
    --teal: #215263;
    --navy: #1c3869;
    --white: #ffffff;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--mint);
    color: var(--teal);
    overflow-x: hidden;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--mint); }
  ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

  /* â”€â”€â”€ STICKY NAV â”€â”€â”€ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 68px;
    background: rgba(230,242,233,0.96);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid rgba(33,82,99,0.18);
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-brand-sub {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: rgba(33,82,99,0.78);
    letter-spacing: 0.05em;
  }
  .nav-brand-logo {
    height: 30px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: rgba(28,56,105,0.85);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-hamburger span {
    width: 22px; height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    color: var(--pale-yellow);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--green); }
  .mobile-menu-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    color: var(--green);
    font-size: 28px;
    cursor: pointer;
  }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 32px 80px;
  }
  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero-blob-1 {
    width: 500px; height: 500px;
    background: rgba(109,174,129,0.1);
    top: -100px; right: -100px;
    animation: float1 12s ease-in-out infinite;
  }
  .hero-blob-2 {
    width: 350px; height: 350px;
    background: rgba(245,196,82,0.07);
    bottom: -80px; left: -60px;
    animation: float2 10s ease-in-out infinite;
  }
  .hero-blob-3 {
    width: 250px; height: 250px;
    background: rgba(204,82,38,0.06);
    top: 40%; left: 30%;
    animation: float1 14s ease-in-out infinite reverse;
  }
  .hero-edge-leaf {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(140px, 16vw, 260px);
    max-height: 80vh;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
  }
  .hero-edge-leaf-left { left: 0; }
  .hero-edge-leaf-right { right: 0; }
  @keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.97); }
  }
  @keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.08); }
  }

  /* Decorative leaf shape */
  .hero-leaf {
    position: absolute;
    width: 400px; height: 400px;
    right: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    opacity: 0.06;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: center;
  }
  .hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.1s;
  }
  .hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(52px, 9vw, 96px);
    color: var(--pale-yellow);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.25s;
  }
  .hero-title span {
    color: var(--golden);
    display: block;
  }
  .hero-subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(18px, 3vw, 26px);
    color: var(--green);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.4s;
  }
  .hero-body {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.68;
    color: rgba(229,242,232,0.85);
    max-width: 64ch;
    margin: 0 auto 18px;
    text-wrap: pretty;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.55s;
  }
  .hero-body-secondary {
    max-width: 58ch;
    margin-bottom: 34px;
    color: rgba(229,242,232,0.76);
    animation-delay: 0.62s;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--golden);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.7s;
  }
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1s;
  }
  .hero-scroll span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: rgba(229,242,232,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(109,174,129,0.8), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
  }
  @keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* â”€â”€â”€ SECTION BASE â”€â”€â”€ */
  .section { padding: 96px 32px; }
  .section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(38px, 5vw, 58px);
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
  }
  .section-title.light { color: var(--pale-yellow); }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* â”€â”€â”€ STEPS â”€â”€â”€ */
  .steps-section { background: var(--mint); }
  .steps-header { max-width: 1200px; margin: 0 auto; }
  .timeline-wrapper { max-width: 1260px; margin: 0 auto; position: relative; padding: 14px 0 44px; }
  .timeline-line {
    position: absolute;
    top: 28px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 2px;
    background: linear-gradient(to right, var(--golden) 0%, var(--green) 50%, var(--teal) 100%);
    z-index: 0;
  }
  .timeline-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; position: relative; z-index: 1; }
  .timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; }
  .timeline-dot-wrap {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2; margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(109,174,129,0.25);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  .timeline-step:hover .timeline-dot-wrap { transform: scale(1.12); box-shadow: 0 8px 24px rgba(109,174,129,0.4); }
  .timeline-dot-num { font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1; }
  .timeline-step:nth-child(1) .timeline-dot-wrap { border-color: var(--golden); background: #fffbee; }
  .timeline-step:nth-child(1) .timeline-dot-num { color: var(--orange); }
  .timeline-step:nth-child(2) .timeline-dot-wrap { border-color: var(--green); }
  .timeline-step:nth-child(2) .timeline-dot-num { color: var(--teal); }
  .timeline-step:nth-child(3) .timeline-dot-wrap { border-color: var(--orange); background: #fff5f0; }
  .timeline-step:nth-child(3) .timeline-dot-num { color: var(--orange); }
  .timeline-step:nth-child(4) .timeline-dot-wrap { border-color: var(--crimson); background: #fef5f7; }
  .timeline-step:nth-child(4) .timeline-dot-num { color: var(--crimson); }
  .timeline-step:nth-child(5) .timeline-dot-wrap { border-color: var(--navy); background: #f0f3fa; }
  .timeline-step:nth-child(5) .timeline-dot-num { color: var(--navy); }
  .timeline-card { background: var(--white); border-radius: 16px; padding: 22px 18px; width: 100%; min-height: 198px; box-shadow: 0 2px 12px rgba(28,56,105,0.07); border: 1px solid rgba(109,174,129,0.2); transition: transform 0.3s, box-shadow 0.3s; }
  .timeline-step:hover .timeline-card { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(28,56,105,0.13); }
  .timeline-step-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; }
  .timeline-step-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--teal); }
  .step-hashtags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; justify-content: center; }
  .step-tag { font-family: var(--font-body); font-size: 12px; font-weight: 600; background: var(--mint); color: var(--teal); padding: 3px 9px; border-radius: 6px; }

  /* â”€â”€â”€ POSTS SECTION â”€â”€â”€ */
  .posts-section {
    background: var(--pale-yellow);
    position: relative;
  }
  .posts-section::before {
    content: '';
    position: absolute;
    top: -50px; left: 0; right: 0;
    height: 50px;
    background: var(--pale-yellow);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .posts-inner { max-width: 900px; margin: 0 auto; }
  .posts-stack { display: flex; flex-direction: column; gap: 32px; }

  .post-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 32px rgba(28,56,105,0.08);
    border-left: 5px solid var(--green);
  }
  .post-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .post-card-left { display: flex; align-items: center; gap: 14px; }
  .post-campaign-heading {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--navy);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin: 14px 0 14px;
    line-height: 1.12;
  }
  .post-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    color: var(--white);
  }
  .post-title-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--navy);
    line-height: 1.1;
  }
  .post-date-badge {
    background: var(--navy);
    color: var(--golden);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
  }
  .post-meta-item {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--crimson);
    font-style: italic;
  }
  .post-meta-calendar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .post-meta-item.purpose {
    color: rgba(33,82,99,0.65);
  }

  /* Language Tabs */
  .lang-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .lang-btn {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--mint);
    color: var(--teal);
    letter-spacing: 0.04em;
  }
  .lang-btn:hover { border-color: var(--green); }
  .lang-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
  }
  .lang-flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(28,56,105,0.12);
    flex-shrink: 0;
  }

  /* Code-snippet post text */
  .post-text-box {
    background: #f8faf9;
    border: 1.5px solid rgba(109,174,129,0.4);
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    margin-bottom: 16px;
  }
  .copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 5px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .copy-btn:hover { background: var(--teal); }
  .copy-btn.copied { background: var(--crimson); }
  .copy-btn:active { transform: scale(0.95); }
  .post-text-content {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--teal);
    padding-right: 90px;
  }
  .graphic-dl-btn {
    width: 100%;
    margin-bottom: 14px;
    border: 1.5px dashed rgba(109,174,129,0.7);
    background: #eef7f1;
    color: var(--teal);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 11px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .graphic-dl-btn:hover {
    border-color: var(--teal);
    background: #e4f2ea;
    color: var(--navy);
  }

  /* Platform tags */
  .platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .platforms-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: rgba(33,82,99,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 4px;
  }
  .platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    background: var(--mint);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 6px;
  }
  .platform-link {
    text-decoration: none;
  }
  .platform-link:hover {
    background: #dcefe4;
    color: var(--navy);
  }

  /* â”€â”€â”€ TICKER â”€â”€â”€ */
  .ticker-wrap {
    background: var(--golden);
    height: 44px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .ticker-track {
    display: flex;
    animation: ticker 22s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 32px;
    flex-shrink: 0;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* â”€â”€â”€ DOWNLOADS SECTION â”€â”€â”€ */
  .downloads-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .downloads-section .section-label { color: var(--green); }
  .downloads-inner { max-width: 1100px; margin: 0 auto; }
  .downloads-intro {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(229,242,232,0.8);
    max-width: 580px;
    margin-bottom: 56px;
  }

  .logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
  }
  .logo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  }
  .logo-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
  .logo-preview {
    background: #ffffff;
    border-radius: 10px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(28,56,105,0.08);
  }
  .logo-preview-img {
    max-width: 100%;
    max-height: 82px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .logo-preview-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    color: rgba(229,242,232,0.4);
    letter-spacing: 0.1em;
  }
  .logo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .logo-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 16px;
  }
  .format-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
  }
  .fmt-btn {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    color: rgba(229,242,232,0.8);
    transition: all 0.2s;
    letter-spacing: 0.04em;
  }
  .fmt-btn:hover { border-color: var(--green); color: var(--green); }
  .fmt-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
  }
  .dl-btn {
    width: 100%;
    background: var(--golden);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .dl-btn:hover {
    background: var(--pale-yellow);
    transform: translateY(-1px);
  }
  .dl-btn:active { transform: scale(0.98); }

  /* Download tips */
  .dl-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .dl-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .dl-tip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 6px;
  }
  .dl-tip-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(229,242,232,0.7);
  }

  /* Toast notification */
  .toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--navy);
    color: var(--mint);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(109,174,129,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 200;
    white-space: nowrap;
  }
  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* â”€â”€â”€ FOOTER â”€â”€â”€ */
  .footer-section {
    background: var(--green);
    padding: 96px 32px 64px;
    position: relative;
    overflow: hidden;
  }
  .footer-section::before {
    content: '';
    position: absolute;
    top: -60px; left: 0; right: 0;
    height: 60px;
    background: var(--green);
    clip-path: ellipse(60% 100% at 50% 100%);
  }
  .footer-bg-text {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 200px;
    color: rgba(28,56,105,0.07);
    pointer-events: none;
    letter-spacing: -0.04em;
    line-height: 1;
    user-select: none;
  }
  .footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .footer-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(38px, 7vw, 70px);
    color: var(--navy);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .footer-body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(28,56,105,0.8);
    max-width: 540px;
    margin: 0 auto 48px;
  }
  .footer-contact-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  .footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--golden);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .footer-email:hover {
    background: var(--teal);
    color: var(--pale-yellow);
  }
  .footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .footer-social-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(28,56,105,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 4px;
  }
  .social-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--navy);
    color: var(--golden);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    letter-spacing: 0.03em;
  }
  .social-pill:hover {
    transform: scale(1.04);
    background: var(--teal);
  }
  .footer-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    font-style: italic;
    color: rgba(28,56,105,0.75);
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    line-height: 1.4;
  }
  .footer-wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.35em;
    color: var(--navy);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }
  .footer-copy {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(28,56,105,0.5);
    letter-spacing: 0.04em;
  }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
  @media (max-width: 1023px) {
    .timeline-line { display: none; }
    .timeline-steps { grid-template-columns: repeat(3,1fr); gap: 20px; }
    .dl-tips { grid-template-columns: 1fr; }
  }
  @media (max-width: 767px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .section { padding: 72px 20px; }
    .hero { padding: 80px 20px 80px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-body {
      max-width: 36ch;
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .hero-body-secondary { margin-bottom: 28px; }
    .hero-edge-leaf {
      width: clamp(90px, 24vw, 140px);
      opacity: 0.75;
    }
    .timeline-line { display: none; }
    .timeline-steps { grid-template-columns: 1fr 1fr; gap: 18px; }
    .timeline-card { min-height: 0; }
    .logo-grid { grid-template-columns: 1fr; }
    .dl-tips { grid-template-columns: 1fr; }
    .post-card { padding: 24px; }
    .post-card-header { flex-direction: column; }
    .post-text-content { padding-right: 0; padding-top: 40px; }
    .footer-bg-text { font-size: 100px; }
    .footer-social-row { flex-direction: column; gap: 8px; }
  }
  @media (max-width: 480px) {
    .hero-body { max-width: 34ch; }
    .timeline-steps { grid-template-columns: 1fr; }
  }

