﻿/* AuraX — Stitch preview design tokens */
:root {
  --navy: #0f172a;
  --navy-deep: #0a1628;
  --heading: #0f172a;
  --btn-primary-bg: #0f172a;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #fff8f5;
  --bg-hero: linear-gradient(128deg, #fff9f6 0%, #ffffff 42%, #fff5fa 100%);
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --surface-elevated: #ffffff;
  --surface-hover: #fafafa;
  --header-bg: rgba(255, 255, 255, 0.94);
  --mobile-nav-bg: #ffffff;
  --header-scroll-shadow: 0 4px 16px rgba(15, 39, 68, 0.08);
  --hero-badge-bg: #fdf2f8;
  --hero-badge-border: #fce7f3;
  --hero-badge-text: #db2777;
  --pink-soft: #fdf2f8;
  --orange: #ff8c00;
  --orange-soft: #fff7ed;
  --pink: #ec4899;
  --coral: #ff5e62;
  --gradient-brand: linear-gradient(135deg, #ff6b4a 0%, #ec4899 100%);
  --gradient-store: linear-gradient(135deg, #ff5e62 0%, #ff8c00 55%, #ec4899 100%);
  --gradient-text: linear-gradient(90deg, #ff8c00 0%, #ec4899 100%);
  --gradient-cta: linear-gradient(135deg, #1e3a5f 0%, #312e81 48%, #4c1d95 100%);
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.14);
  --shadow-btn-primary: 0 4px 14px rgba(15, 23, 42, 0.22);
  --shadow-btn-primary-hover: 0 6px 20px rgba(15, 23, 42, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  --container-max: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2rem);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --heading: #f1f5f9;
  --btn-primary-bg: #334155;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --bg: #0b1220;
  --bg-soft: #111827;
  --bg-hero: linear-gradient(128deg, #0f172a 0%, #0b1220 45%, #1a1030 100%);
  --border: #1e293b;
  --border-light: #1e293b;
  --surface-elevated: #131c2e;
  --surface-hover: #1e293b;
  --header-bg: rgba(11, 18, 32, 0.94);
  --mobile-nav-bg: #0f172a;
  --header-scroll-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  --hero-badge-bg: rgba(236, 72, 153, 0.12);
  --hero-badge-border: rgba(236, 72, 153, 0.28);
  --hero-badge-text: #f9a8d4;
  --pink-soft: rgba(236, 72, 153, 0.12);
  --orange-soft: rgba(255, 140, 0, 0.12);
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.5);
  --shadow-btn-primary: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-btn-primary-hover: 0 6px 20px rgba(0, 0, 0, 0.45);
}

html.theme-transition,
html.theme-transition * {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Fade & scroll reveal */
:root {
  --reveal-duration: 1.45s;
  --reveal-distance-y: 28px;
  --reveal-distance-x: 36px;
}

.reveal,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--ease),
    transform var(--reveal-duration) var(--ease);
}

.reveal {
  transform: translateY(var(--reveal-distance-y));
}

.reveal-fade {
  transform: none;
}

.reveal-left {
  transform: translateX(calc(-1 * var(--reveal-distance-x)));
}

.reveal-right {
  transform: translateX(var(--reveal-distance-x));
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.is-visible,
.reveal-fade.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > .reveal-item {
  opacity: 0;
  transform: translateY(var(--reveal-distance-y));
  transition:
    opacity var(--reveal-duration) var(--ease),
    transform var(--reveal-duration) var(--ease);
}

.reveal-stagger.is-visible > .reveal-item {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > .reveal-item:nth-child(1) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > .reveal-item:nth-child(2) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > .reveal-item:nth-child(3) { transition-delay: 0.46s; }
.reveal-stagger.is-visible > .reveal-item:nth-child(4) { transition-delay: 0.62s; }
.reveal-stagger.is-visible > .reveal-item:nth-child(5) { transition-delay: 0.78s; }

/* Page load: header + hero */
.header-fade {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 1.2s var(--ease),
    transform 1.2s var(--ease);
}

body.is-ready .header-fade {
  opacity: 1;
  transform: none;
}

.hero-animate-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1.35s var(--ease),
    transform 1.35s var(--ease);
}

body.is-ready .hero-animate-item {
  opacity: 1;
  transform: none;
}

body.is-ready .hero-animate-item--delay {
  transition-delay: 0.45s;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.section-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 0.85rem auto 0;
  background: var(--orange);
  border-radius: 2px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-bar {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
}

.nav-center {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--heading);
}

.nav-link.is-active {
  color: var(--heading);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.btn-icon {
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
}

.btn--navy {
  color: #fff;
  background: var(--btn-primary-bg);
  box-shadow: var(--shadow-btn-primary);
}

.btn--navy:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-btn-primary-hover);
}

.btn--store {
  color: #fff;
  background: var(--gradient-store);
  box-shadow: 0 4px 16px rgba(255, 94, 98, 0.35);
}

.btn--store:hover {
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.4);
}

.btn--gradient {
  color: #fff;
  background: var(--gradient-brand);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(255, 107, 74, 0.38);
}

.btn--gradient:hover {
  box-shadow: 0 8px 26px rgba(236, 72, 153, 0.42);
}

.btn--outline {
  color: var(--heading);
  background: var(--surface-elevated);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--text-subtle);
  background: var(--surface-hover);
}

.btn--lg {
  padding: 0.9rem 1.85rem;
  font-size: 0.9375rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  color: var(--heading);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  background: var(--surface-hover);
  border-color: var(--text-subtle);
}

.theme-toggle__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.theme-toggle__icon--sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

/* Hero */
.hero {
  background: var(--bg-hero);
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-badge-text);
  background: var(--hero-badge-bg);
  border: 1px solid var(--hero-badge-border);
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2.125rem, 5.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.35rem;
}

.hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats */
.stats {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.stat-card {
  padding: clamp(1.35rem, 2.5vw, 1.85rem) 1rem;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: var(--radius-sm);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-icon--orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.stat-icon--pink {
  color: var(--pink);
  background: var(--pink-soft);
}

.stat-value {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  line-height: 1.4;
}

/* Product Portfolio */
.portfolio {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background: var(--bg);
}

.portfolio-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.portfolio-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 36rem;
  margin-inline: auto;
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 9vw, 5.5rem);
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.portfolio-item--reverse .portfolio-item-media { order: 2; }
.portfolio-item--reverse .portfolio-item-body { order: 1; }

.portfolio-item-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  background: var(--border-light);
}

.portfolio-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.portfolio-item-title {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.portfolio-item-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.65rem;
  max-width: 30rem;
}

.portfolio-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Success Stories */
.stories {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg-soft);
}

.stories-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.stories-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 34rem;
  margin-inline: auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.story-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.story-card-stars {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--pink);
}

.story-card-quote {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: normal;
}

.story-card-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.story-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--heading);
}

.story-card-meta {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* Dedicated Support */
.support {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg);
  scroll-margin-top: 5rem;
}

.support-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.support-copy .section-heading--left::after {
  margin-left: 0;
  margin-right: auto;
}

.support-copy .section-heading--left {
  text-align: left;
}

.support-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.support-card {
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
}

.support-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.support-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-sm);
}

.support-card-icon svg {
  width: 22px;
  height: 22px;
}

.support-card-icon--orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.support-card-icon--pink {
  color: var(--pink);
  background: var(--pink-soft);
}

.support-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.45rem;
}

.support-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.support-card-text a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-card-text a:hover {
  color: var(--pink);
}

/* CTA banner */
.cta-banner {
  padding: 0 0 clamp(3.5rem, 8vw, 5.5rem);
}

.cta-banner-inner {
  text-align: center;
  padding: clamp(2.75rem, 7vw, 4.25rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-banner-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.cta-banner-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.85rem;
}

.cta-banner .btn--gradient {
  background: var(--gradient-brand);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  padding-block: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
}

.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--heading);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--mobile-nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem var(--pad-x);
  flex-direction: column;
  gap: 0.65rem;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav .nav-link {
  font-size: 1rem;
  padding: 0.4rem 0;
}

.mobile-nav-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stories-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .header-bar {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav-center {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual-frame {
    max-width: 380px;
    margin-inline: auto;
  }

  .portfolio-item,
  .portfolio-item--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-item-media,
  .portfolio-item-body,
  .portfolio-item--reverse .portfolio-item-media,
  .portfolio-item--reverse .portfolio-item-body {
    order: unset;
  }

  .portfolio-item-media { order: 1; }
  .portfolio-item-body { order: 2; }

  .portfolio-item-desc {
    max-width: none;
  }

  .support-inner {
    grid-template-columns: 1fr;
  }

  .support-copy .section-heading--left {
    text-align: center;
  }

  .support-copy .section-heading--left::after {
    margin-inline: auto;
  }

  .support-desc {
    margin-inline: auto;
    text-align: center;
    max-width: none;
  }

  .support-copy .btn {
    display: flex;
    margin-inline: auto;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 68px;
  }

  .header-cta {
    display: none;
  }

  .btn--hide-mobile {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-item-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .cta-banner .btn--lg {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mobile-nav-cta .btn {
    flex: 1;
    min-width: calc(50% - 0.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-fade,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-stagger > .reveal-item,
  .header-fade,
  .hero-animate-item,
  .legal-enter-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
