/* ──────────────────────────────────────────────────────────────────────────── */
/* NAVIGATION                                                                    */
/* ──────────────────────────────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  overflow: visible;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 153, 230, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

/* Crop container — shows only the centred slice of the logo */
.nav-logo-link {
  display: flex;
  align-items: center;
  height: 68px;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 150px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
}

/* Mobile menu panel — hidden by default */
.nav-mobile-menu {
  display: none;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  opacity: 0.6;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid rgba(0, 153, 230, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.12);
  padding: 8px;
  min-width: 180px;
  list-style: none;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.75;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: var(--off-white);
  opacity: 1;
}

.nav-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* PAGE BANNER (inner pages — contact, about, etc.)                              */
/* ──────────────────────────────────────────────────────────────────────────── */

.page-banner {
  background: var(--navy-deep);
  padding: 100px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 153, 230, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-banner-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin: 0 auto 16px;
  line-height: 1.2;
}

.page-banner-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* MARKET REFRAME SECTION                                                        */
/* ──────────────────────────────────────────────────────────────────────────── */

.reframe-section {
  background: var(--off-white);
  padding: 80px 40px;
}

.reframe-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: 56px 64px;
  box-shadow: 0 2px 24px rgba(26, 39, 68, 0.08);
}

.reframe-line {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: rgba(26, 39, 68, 0.35);
  line-height: 1.25;
  margin-bottom: 8px;
}

.reframe-accent {
  color: var(--navy);
  margin-bottom: 28px;
}

.reframe-body {
  font-size: 0.975rem;
  color: var(--grey);
  line-height: 1.8;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* COMPETITIVE POSITIONING SECTION                                               */
/* ──────────────────────────────────────────────────────────────────────────── */

.competitive-section {
  background: var(--off-white);
}

.competitive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.competitive-card {
  background: var(--off-white);
  border: 1px solid #dce8f0;
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.competitive-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(0, 153, 230, 0.1);
}

.competitive-card--highlight {
  border-color: var(--blue);
  background: var(--light-blue);
}

.competitive-vs {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.competitive-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 14px;
}

.competitive-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* HERO SECTION                                                                  */
/* ──────────────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 153, 230, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 109, 179, 0.15) 0%, transparent 60%);
}

/* Crossfading background images */
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-img-1 {
  background-image:
    linear-gradient(rgba(14, 26, 48, 0.68), rgba(14, 26, 48, 0.68)),
    url("../assets/images/Action Shots/final-1.png");
  opacity: 1;
}

.hero-img-2 {
  background-image:
    linear-gradient(rgba(14, 26, 48, 0.68), rgba(14, 26, 48, 0.68)),
    url("../assets/images/Action Shots/final-5.jpg");
}

.hero-img-3 {
  background-image:
    linear-gradient(rgba(14, 26, 48, 0.68), rgba(14, 26, 48, 0.68)),
    url("../assets/images/Action Shots/final-10.jpg");
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 230, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 230, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 153, 230, 0.15);
  border: 1px solid rgba(0, 153, 230, 0.3);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.45s ease both;
}

.hero-trust {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.hero-trust strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.6s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* SECTIONS                                                                      */
/* ──────────────────────────────────────────────────────────────────────────── */

.section {
  padding: 96px 40px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
  max-width: 660px;
  margin: 0 auto 20px;
}

.section-sub {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Keep forms left-aligned */
input, textarea, select, label, .form-group, .contact-form {
  text-align: left;
}

/* Placeholder text — clearly lighter than real input */
input::placeholder,
textarea::placeholder {
  color: #bfcfdb;
  opacity: 1;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* PROBLEM SECTION                                                               */
/* ──────────────────────────────────────────────────────────────────────────── */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* HOW IT WORKS SECTION                                                          */
/* ──────────────────────────────────────────────────────────────────────────── */

.how-section {
  background: var(--navy-deep);
  padding: 96px 40px;
}

.how-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 153, 230, 0.15), var(--blue) 50%, rgba(0, 153, 230, 0.15));
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0e1a30;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.2s;
}

.step-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  transition: stroke 0.2s;
}

.step:hover .step-circle svg {
  stroke: white;
}

.step:hover .step-circle {
  background: var(--blue);
  transform: scale(1.08);
}

.step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* REPORTS SECTION                                                               */
/* ──────────────────────────────────────────────────────────────────────────── */

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.report-items {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-items li {
  font-size: 0.875rem;
  color: var(--grey);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.report-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* INTEGRATIONS SECTION                                                          */
/* ──────────────────────────────────────────────────────────────────────────── */

.integrations-section {
  background: var(--navy-deep);
  padding: 96px 40px;
}

.integrations-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.integration-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 20px;
  width: 190px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.integration-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 153, 230, 0.4);
  transform: translateY(-4px);
}

.integration-logo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #C9941A;
  background: rgba(201, 148, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.integration-logo-img {
  height: 68px;
  width: auto;
}

.integration-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.integration-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.integration-status.live {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.integration-status.coming-soon {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.integration-status.supported {
  background: rgba(0, 153, 230, 0.15);
  color: var(--blue);
}

.integration-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}


/* ──────────────────────────────────────────────────────────────────────────── */
/* PRICING SECTION                                                               */
/* ──────────────────────────────────────────────────────────────────────────── */

.pricing-section {
  background: var(--off-white);
  padding: 96px 40px;
}

.pricing-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.beta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 153, 230, 0.1);
  border: 1px solid rgba(0, 153, 230, 0.3);
  border-radius: 10px;
  padding: 14px 24px;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--navy);
}

.beta-banner-icon {
  color: var(--blue);
  display: flex;
  flex-shrink: 0;
}

.plan-badge-free {
  display: inline-block;
  background: rgba(0, 153, 230, 0.12);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pricing-guarantee {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--grey);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* SOCIAL PROOF                                                                  */
/* ──────────────────────────────────────────────────────────────────────────── */

.proof-section {
  padding: 80px 40px;
}

.proof-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.proof-card blockquote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 20px;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.author-role {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* RESOURCES SECTION                                                             */
/* ──────────────────────────────────────────────────────────────────────────── */

.resources-section {
  background: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.resource-card {
  background: var(--white);
  border: 1px solid #dce8f0;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(0, 153, 230, 0.1);
}

.resource-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.resource-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-blue);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.resource-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.resource-btn:hover {
  background: var(--blue);
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* SECURITY SECTION                                                              */
/* ──────────────────────────────────────────────────────────────────────────── */

.security-section {
  background: var(--navy-deep);
  padding: 72px 40px;
}

.security-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.security-text .section-title {
  color: white;
}

.security-text .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.security-badges {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 200px;
}

.badge-item .badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 153, 230, 0.15);
  border: 1.5px solid rgba(0, 153, 230, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.badge-item .badge-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.badge-item .badge-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* CTA SECTION                                                                   */
/* ──────────────────────────────────────────────────────────────────────────── */

.cta-section {
  padding: 96px 40px;
  text-align: center;
  background: linear-gradient(135deg, #e8f5ff 0%, #f4f8fc 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 153, 230, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-small {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 14px;
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                        */
/* ──────────────────────────────────────────────────────────────────────────── */

footer {
  background: var(--navy-deep);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .logo {
  color: white;
}

footer .logo-text {
  color: white;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* ANIMATIONS                                                                    */
/* ──────────────────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease both;
}
