/* Aptro Labs — Marketing site: bold theme, animations, imagery */

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-elevated: #1a1a24;
  --text: #f4f4f6;
  --text-muted: #9898a6;
  --accent: #00d4aa;
  --accent-dim: #00a884;
  --accent-glow: rgba(0, 212, 170, 0.4);
  --purple: #a855f7;
  --orange: #f97316;
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: min(1180px, 100% - 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open .nav-mobile {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6px, -8px) scale(1.02); }
  66% { transform: translate(-4px, 4px) scale(0.98); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 10px); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-up.delay-1 { animation-delay: 0.15s; }
.animate-slide-up.delay-2 { animation-delay: 0.3s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo-suffix {
  color: var(--accent);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--accent) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 99;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}

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

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleIn 20s ease-in-out infinite alternate;
}

@keyframes scaleIn {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(10, 10, 15, 0.75) 50%,
    rgba(18, 18, 26, 0.85) 100%);
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation: float 12s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  bottom: 20%;
  left: -80px;
  animation: floatSlow 15s ease-in-out infinite;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--orange);
  bottom: -50px;
  right: 20%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 42rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.03em;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--accent), #5eead4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-xl);
  line-height: 1.65;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: #00e6b8;
  color: var(--bg);
}

.btn-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(0, 212, 170, 0.1);
}

.btn-block {
  width: 100%;
}

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

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 5;
  background: var(--surface);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.trust-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}

/* Sections */
section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-xl);
  max-width: 36rem;
}

/* Products */
.products {
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 212, 170, 0.25);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--surface) 75%);
  z-index: 1;
  pointer-events: none;
}

.product-image-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.product-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: var(--radius);
  z-index: 2;
}

.product-card-featured .product-icon {
  background: linear-gradient(135deg, var(--accent), var(--purple));
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 0.35rem 0.75rem;
  background: var(--purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  z-index: 2;
}

.product-card > .product-name,
.product-card > .product-tagline,
.product-card > .product-desc,
.product-card > .product-benefits,
.product-card > .product-cta {
  position: relative;
  z-index: 2;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: var(--space-md) var(--space-lg) 0;
  color: var(--text);
}

.product-tagline {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 var(--space-lg);
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: var(--space-sm) var(--space-lg) var(--space-md);
  line-height: 1.6;
}

.product-benefits {
  margin: 0 var(--space-lg);
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.product-benefits li {
  padding: var(--space-xs) 0;
  padding-left: 1.25rem;
  position: relative;
}

.product-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.product-cta {
  display: block;
  margin: var(--space-md) var(--space-lg) var(--space-lg);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.product-cta:hover {
  color: #5eead4;
  transform: translateX(4px);
}

/* Product card as link (Vantory, Feldo) */
a.product-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.product-card .product-cta {
  pointer-events: none;
}

/* Product sub-pages (vantory.html, feldo.html) */
.product-page .hero-product {
  min-height: 70vh;
  padding: 5rem 0 3rem;
}

.product-page .hero-product .hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.page-section {
  padding: var(--space-3xl) 0;
}

.page-section-alt {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  border-color: rgba(0, 212, 170, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}

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

.impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 42rem;
}

.impact-list li {
  padding: var(--space-md) 0;
  padding-left: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.impact-list li:last-child {
  border-bottom: none;
}

.impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.impact-list strong {
  color: var(--text);
}

.page-cta {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.nav-back {
  color: var(--accent) !important;
  font-size: 0.875rem !important;
}

/* Services card — full-width, 4 cells in a row */
.product-card-services {
  margin-top: var(--space-lg);
  padding: var(--space-xl);
}

.product-card-services .product-card-bg {
  display: none;
}

.services-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.services-card-header .product-icon {
  position: static;
  flex-shrink: 0;
}

.services-card-header .product-name {
  margin: 0 0 var(--space-xs);
}

.services-card-header .product-tagline {
  margin: 0;
}

.services-inline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

.service-cell {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}

.service-cell:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 170, 0.2);
}

.service-cell-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.service-cell h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--text);
}

.service-cell p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.product-card-services .product-cta {
  margin-bottom: 0;
}

/* Pricing */
.pricing {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  position: relative;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-xs);
  color: var(--text);
}

.pricing-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
}

.pricing-price {
  margin-bottom: var(--space-lg);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-period {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-features {
  margin: 0 0 var(--space-lg);
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-features li {
  padding: var(--space-xs) 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.pricing-card-featured {
  border-color: rgba(0, 212, 170, 0.3);
  background: linear-gradient(180deg, rgba(0, 212, 170, 0.06) 0%, var(--surface-elevated) 100%);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.services-grid-four {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-item {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.2);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.service-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}

.service-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}

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

.contact-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 212, 170, 0.08) 0%,
    rgba(168, 85, 247, 0.06) 50%,
    var(--bg) 100%);
}

.contact-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.contact-bg .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -150px;
  right: -100px;
  animation: float 14s ease-in-out infinite;
}

.contact-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  bottom: -100px;
  left: -100px;
  animation: floatSlow 12s ease-in-out infinite reverse;
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact .section-title {
  color: var(--text);
}

.contact-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-xl);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.footer-brand {
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.footer-domain a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.footer-domain a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0 0 0 auto;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 18rem;
  }

  .trust-inner .trust-dot {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .services-inline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-inline-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy {
    margin: 0;
  }

  section {
    padding: var(--space-2xl) 0;
  }
}
