/* RentFreely marketing site — enterprise landing */

:root {
  --green-950: #052e22;
  --green-900: #0a3d2e;
  --green-800: #0f4f3c;
  --green-700: #1a7a5e;
  --green-600: #22906f;
  --green-100: #e8f5f1;
  --green-50: #f3faf8;

  --ink: #0c1210;
  --ink-secondary: #1a1f1c;
  --muted: #5a6b62;
  --muted-light: #8a9a92;
  --border: #dde8e2;
  --border-strong: #c5d9ce;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --bg: #f6f8f7;
  --bg-subtle: #eef3f1;

  --amber: #e8930a;
  --amber-hover: #f0a020;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(12, 18, 16, 0.06);
  --shadow: 0 8px 30px rgba(15, 79, 60, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 79, 60, 0.14);
  --shadow-hero: 0 32px 80px rgba(5, 46, 34, 0.35);
  --header-h: 72px;
  --container: min(1140px, calc(100% - 3rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--green-800);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--green-700);
  color: #fff;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
}

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

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--amber);
  color: #1a1200;
  box-shadow: 0 4px 14px rgba(232, 147, 10, 0.35);
}

.btn-primary:hover {
  background: var(--amber-hover);
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(232, 147, 10, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink-secondary);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

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

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.btn-white {
  background: #fff;
  color: var(--green-800);
}

.btn-white:hover {
  background: var(--green-50);
  color: var(--green-900);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* —— Header —— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header.is-scrolled .brand-text,
.header.is-scrolled .nav-desktop a {
  color: var(--ink-secondary);
}

.header.is-scrolled .nav-desktop a:hover {
  color: var(--green-700);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.header:not(.is-scrolled) .brand {
  color: #fff;
}

.brand-mark {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.nav-desktop a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header:not(.is-scrolled) .btn-ghost {
  color: rgba(255, 255, 255, 0.9);
}

.header:not(.is-scrolled) .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.header.is-scrolled .nav-toggle {
  background: var(--bg-subtle);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.header.is-scrolled .nav-toggle span {
  background: var(--ink-secondary);
}

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

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

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

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  overflow-y: auto;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-secondary);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(34, 144, 111, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(124, 58, 237, 0.12), transparent 45%),
    linear-gradient(165deg, var(--green-800) 0%, var(--green-900) 40%, var(--green-950) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: var(--green-600);
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -8%;
  background: var(--purple);
  opacity: 0.25;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.text-gradient {
  background: linear-gradient(135deg, #a7f3d0 0%, #fff 50%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 440px);
}

.hero-card-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.25), transparent 70%);
  filter: blur(40px);
}

.hero-mascot {
  position: relative;
  width: 100%;
  filter: drop-shadow(var(--shadow-hero));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}

.floating-chip--1 {
  top: 8%;
  left: -4%;
  animation-delay: -1s;
}

.floating-chip--2 {
  bottom: 18%;
  right: -6%;
  animation-delay: -2.5s;
}

.chip-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chip-icon--green {
  background: var(--green-700);
}

.chip-icon--purple {
  background: var(--purple);
}

@media (max-width: 959px) {
  .floating-chip--1 { left: 0; }
  .floating-chip--2 { right: 0; }
}

/* —— Trust bar —— */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.trust-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-items li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-secondary);
  position: relative;
}

.trust-items li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.875rem;
  color: var(--muted-light);
}

/* —— Sections —— */
section {
  padding: 5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700);
  margin: 0 0 0.75rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-head h2,
.steps-copy h2,
.security-copy h2,
.faq-container h2,
.cta-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
}

/* —— Showcase —— */
.showcase {
  background: var(--surface);
  padding-top: 4rem;
}

.showcase-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--green-50);
}

.showcase-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* —— Solutions —— */
.solutions {
  background: var(--bg);
}

.solution-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.solution-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.solution-card--accent {
  background: linear-gradient(145deg, var(--green-800), var(--green-900));
  border-color: transparent;
  color: #fff;
}

.solution-card--accent h3,
.solution-card--accent p,
.solution-card--accent .solution-list {
  color: inherit;
}

.solution-card--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.solution-card--accent .solution-list li::before {
  background: var(--amber);
}

.solution-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.solution-card--accent .solution-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.solution-icon svg {
  width: 24px;
  height: 24px;
}

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.solution-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.solution-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700);
}

/* —— Features —— */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-tile {
  background: var(--surface);
  padding: 1.75rem;
  transition: background 0.2s;
}

.feature-tile:hover {
  background: var(--green-50);
}

.feature-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.feature-tile h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.feature-tile p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* —— Steps —— */
.steps {
  background: var(--bg-subtle);
}

.steps-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .steps-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-index {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-700);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* —— Security —— */
.security {
  padding: 0;
}

.security-inner {
  display: grid;
  gap: 2.5rem;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  margin: 0 auto;
  max-width: var(--container);
}

@media (min-width: 900px) {
  .security-inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem;
    align-items: center;
  }
}

.security-copy p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.security-copy h2 {
  color: #fff;
}

.security-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.security-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.security-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--amber);
}

.security-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.security-list span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

/* —— FAQ —— */
.faq {
  background: var(--surface);
}

.faq-container {
  max-width: 720px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-700);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* —— CTA —— */
.cta {
  padding: 5rem 0;
  background: var(--bg);
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.cta-logo {
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
}

.cta-inner h2 {
  margin-bottom: 0.75rem;
}

.cta-inner > p {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* —— Footer —— */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.brand--footer {
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-600);
  margin: 0 0 1rem;
}

.footer-copy {
  font-size: 0.8125rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-mascot,
  .floating-chip {
    animation: none;
  }
}
