/*
  PUMPEY – editorial sportswear x meme-launch landing page
*/

:root {
  --green-50: #f5ffca;
  --green-100: #e8ff8b;
  --green-200: #d8fb4d;
  --green-300: #c0ef1c;
  --green-400: #99d410;
  --green-500: #78ad11;
  --green-600: #5b8610;
  --green-700: #496d10;
  --green-800: #35510b;
  --green-900: #243706;

  --gray-50: #faf9f3;
  --gray-100: #f1efdf;
  --gray-200: #d8d4bf;
  --gray-300: #bbb59d;
  --gray-400: #91886e;
  --gray-500: #6a614e;
  --gray-600: #494133;
  --gray-700: #302b23;
  --gray-800: #171511;
  --gray-900: #0a0907;

  --white: #fffef7;
  --black: #080806;

  --primary: var(--green-300);
  --primary-foreground: var(--black);
  --secondary: rgba(255, 254, 247, 0.64);
  --secondary-foreground: var(--gray-900);
  --muted: rgba(241, 239, 223, 0.72);
  --muted-foreground: var(--gray-500);
  --accent: rgba(232, 255, 139, 0.22);
  --accent-foreground: var(--gray-900);
  --destructive: #ef4444;
  --destructive-foreground: var(--white);
  --border: rgba(48, 43, 35, 0.12);
  --input: rgba(48, 43, 35, 0.16);
  --ring: var(--green-300);
  --background: #f8f5e8;
  --foreground: var(--gray-900);
  --card: rgba(255, 254, 247, 0.82);
  --card-foreground: var(--gray-900);

  --font-sans: 'Archivo', 'Arial Narrow', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Barlow Condensed', Impact, 'Arial Narrow Bold', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, monospace;

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 1.9rem;
  --radius-2xl: 2.4rem;
  --radius-full: 9999px;

  --shadow-sm: 0 8px 20px rgb(0 0 0 / 0.05);
  --shadow: 0 12px 32px rgb(0 0 0 / 0.08);
  --shadow-md: 0 18px 40px rgb(0 0 0 / 0.12);
  --shadow-lg: 0 24px 48px rgb(0 0 0 / 0.14);
  --shadow-xl: 0 34px 72px rgb(0 0 0 / 0.16);
  --shadow-2xl: 0 46px 90px rgb(0 0 0 / 0.24);

  --transition: all 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-colors: color 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(216, 251, 77, 0.24), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(180deg, #fbf9ef 0%, #f1ecd7 55%, #f8f5e8 100%);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(48, 43, 35, 0.08);
  background: rgba(248, 245, 232, 0.82);
  backdrop-filter: blur(14px) saturate(150%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand:hover {
  color: var(--green-700);
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 255, 139, 0.36));
  border: 1px solid rgba(48, 43, 35, 0.08);
  box-shadow: var(--shadow-sm);
}

.brand-icon img {
  width: 3.3rem;
  height: 3.3rem;
  object-fit: contain;
}

.brand--sm {
  font-size: 1.45rem;
}

.brand--sm .brand-icon {
  width: 2.8rem;
  height: 2.8rem;
}

.brand--sm .brand-icon img {
  width: 2.1rem;
  height: 2.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition-colors);
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--green-300);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.28rem 0;
  border-radius: 99px;
  background: var(--foreground);
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.88rem 1.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-large {
  padding: 1.12rem 2.1rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-300), var(--green-100));
  color: var(--black);
  border-color: rgba(48, 43, 35, 0.08);
  box-shadow: 0 14px 26px rgba(153, 212, 16, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 254, 247, 0.55);
  color: var(--foreground);
  border-color: rgba(48, 43, 35, 0.14);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 254, 247, 0.84);
  border-color: rgba(48, 43, 35, 0.24);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4.75rem;
  background:
    linear-gradient(128deg, rgba(216, 251, 77, 0.24) 0%, rgba(255, 254, 247, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 46%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(48, 43, 35, 0.04) calc(100% - 1px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(48, 43, 35, 0.04) calc(100% - 1px));
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 90%);
}

.hero::after {
  content: 'PUMP / TRAIN / REPEAT';
  position: absolute;
  top: 7rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: rgba(48, 43, 35, 0.05);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.hero-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-kicker {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-ticker {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hero-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 254, 247, 0.72);
  border: 1px solid rgba(48, 43, 35, 0.08);
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.45rem;
  border-radius: var(--radius-full);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(3.9rem, 11vw, 7.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(180deg, var(--green-500) 0%, var(--green-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 35rem;
  margin: 0 0 2rem;
  color: var(--gray-600);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-quote {
  position: relative;
  max-width: 37rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem 1.35rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 247, 0.74);
  border: 1px solid rgba(48, 43, 35, 0.1);
  box-shadow: var(--shadow);
}

.hero-quote::before {
  content: 'Manifesto';
  position: absolute;
  top: -0.72rem;
  left: 1.2rem;
  padding: 0.2rem 0.58rem;
  border-radius: var(--radius-full);
  background: var(--green-300);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-quote blockquote {
  margin: 0;
  color: var(--foreground);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
  margin-top: 2rem;
}

.hero-stat {
  padding: 1rem 1.1rem;
  border-top: 3px solid var(--green-300);
  border-radius: 1rem;
  background: rgba(255, 254, 247, 0.45);
  border: 1px solid rgba(48, 43, 35, 0.08);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 6vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
}

.hero-stat-label {
  display: block;
  margin-top: 0.42rem;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 30rem);
  aspect-ratio: 1 / 1.08;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(241, 239, 223, 0.7));
  border: 1px solid rgba(48, 43, 35, 0.1);
  box-shadow: var(--shadow-2xl);
  animation: float 5s ease-in-out infinite;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(48, 43, 35, 0.08);
  border-radius: calc(var(--radius-2xl) - 0.75rem);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(120, 173, 17, 0.24));
  transition: var(--transition);
}

.hero-card:hover .hero-logo {
  transform: scale(1.05) rotate(-2deg);
}

.hero-card-glow {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 251, 77, 0.55) 0%, transparent 70%);
}

.hero-card-label {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-label::after {
  content: '';
  flex: 1;
  height: 1px;
  margin-left: 0.75rem;
  background: rgba(48, 43, 35, 0.12);
}

.hero-card-label--top {
  top: 1.1rem;
}

.hero-card-label--bottom {
  bottom: 1.1rem;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 254, 247, 0.85);
  border: 1px solid rgba(48, 43, 35, 0.1);
  box-shadow: var(--shadow-sm);
  color: var(--gray-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-orbit--left {
  left: -1rem;
  bottom: 4.5rem;
  transform: rotate(-9deg);
}

.hero-orbit--right {
  right: -1.3rem;
  top: 4.8rem;
  transform: rotate(8deg);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-0.9rem) rotate(1deg);
  }
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 254, 247, 0.5), rgba(255, 254, 247, 0.24));
  border-top: 1px solid rgba(48, 43, 35, 0.08);
  border-bottom: 1px solid rgba(48, 43, 35, 0.08);
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.section-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 1.06rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-content,
.about-principles {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255, 254, 247, 0.56);
  border: 1px solid rgba(48, 43, 35, 0.08);
  box-shadow: var(--shadow-sm);
}

.about-text {
  margin: 0 0 2rem;
  color: var(--gray-600);
  font-size: 1.08rem;
}

.about-features {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(48, 43, 35, 0.1);
}

.feature-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.feature-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.feature-item h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-item p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.92rem;
}

.about-principles h3 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.principles-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(48, 43, 35, 0.08);
}

.principles-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--green-200);
  font-size: 0.72rem;
  font-weight: 800;
}

.principles-list span {
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 254, 247, 0.82), rgba(255, 254, 247, 0.62));
  border: 1px solid rgba(48, 43, 35, 0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 251, 77, 0.16), transparent 42%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: rgba(153, 212, 16, 0.45);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gray-500);
}

.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.clothing-item {
  padding: 1rem 1rem 1.5rem;
  border-radius: 1.8rem;
  background: rgba(255, 254, 247, 0.86);
  border: 1px solid rgba(48, 43, 35, 0.1);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: var(--transition);
}

.clothing-item:hover {
  transform: translateY(-7px) rotate(-0.4deg);
  border-color: rgba(153, 212, 16, 0.45);
  box-shadow: var(--shadow-lg);
}

.clothing-image {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 1.3rem;
}

.clothing-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 1.3rem;
  transition: var(--transition);
}

.clothing-item:hover .clothing-image img {
  transform: scale(1.05);
}

.clothing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.8rem;
}

.clothing-tag,
.clothing-price {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clothing-tag {
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(216, 251, 77, 0.25);
  color: var(--gray-800);
}

.clothing-price {
  color: var(--gray-500);
}

.clothing-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.clothing-item p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.94rem;
}

.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: rgba(255, 254, 247, 0.64);
  border: 1px solid rgba(48, 43, 35, 0.08);
  box-shadow: var(--shadow-sm);
}

.roadmap-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.roadmap-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--green-300);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.roadmap-line {
  width: 2px;
  height: 4.5rem;
  margin-top: 0.5rem;
  background: rgba(48, 43, 35, 0.14);
}

.roadmap-item:last-child .roadmap-line {
  display: none;
}

.roadmap-content {
  flex: 1;
}

.roadmap-phase {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.28rem 0.78rem;
  margin-bottom: 0.7rem;
  border-radius: var(--radius-full);
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-content h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.roadmap-content p {
  margin: 0 0 1rem;
  color: var(--gray-500);
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(216, 251, 77, 0.3);
  color: var(--gray-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-status::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green-600);
}

.cta-container {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 2.25rem;
  text-align: center;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 254, 247, 0.9), rgba(216, 251, 77, 0.16));
  border: 1px solid rgba(48, 43, 35, 0.1);
  box-shadow: var(--shadow-md);
}

.cta-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.cta-description {
  margin: 0 0 2rem;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-action .btn {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cta-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-note {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(48, 43, 35, 0.08);
  background: rgba(255, 254, 247, 0.44);
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-tagline {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .hero-card,
  .feature-card,
  .clothing-item,
  .btn,
  .hero-logo {
    animation: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero::after {
    display: none;
  }

  .hero-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-kicker-row,
  .hero-actions {
    justify-content: center;
  }

  .hero-description,
  .hero-quote {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-orbit--left {
    left: 0.5rem;
  }

  .hero-orbit--right {
    right: 0.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.5rem, 1200px);
  }

  .header-inner {
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.15rem;
    background: rgba(255, 254, 247, 0.96);
    border-top: 1px solid rgba(48, 43, 35, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-list li,
  .nav-link,
  .nav .btn {
    width: 100%;
  }

  .nav .btn {
    justify-content: center;
  }

  .hero {
    padding-top: 5.5rem;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .clothing-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    flex-direction: column;
  }

  .roadmap-marker {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .roadmap-line {
    width: 4rem;
    height: 2px;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.75rem;
  }

  .hero-badge,
  .hero-kicker,
  .hero-ticker span,
  .section-eyebrow,
  .nav-link,
  .btn {
    letter-spacing: 0.1em;
  }

  .hero-card-label {
    left: 1rem;
    right: 1rem;
    font-size: 0.62rem;
  }

  .hero-orbit {
    font-size: 0.65rem;
    padding: 0.52rem 0.8rem;
  }

  .section,
  .hero {
    padding-bottom: 3.5rem;
  }

  .cta-container,
  .about-content,
  .about-principles,
  .roadmap-item {
    padding: 1.45rem;
  }

  .clothing-image img {
    height: 320px;
  }
}
