:root {
  --ink: #f7f4ee;
  --paper: #080809;
  --panel: #141416;
  --panel-2: #1f2022;
  --soft: #f2efe8;
  --muted: #b9b2a8;
  --line: #323236;
  --acid: #c8ff2f;
  --blue: #2468ff;
  --red: #b7192c;
  --red-dark: #79111f;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(8, 8, 9, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  min-height: 92vh;
  padding: 112px clamp(18px, 5vw, 74px) 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(36, 104, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #080809 0%, #111113 48%, #0c0c0e 100%);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 88px);
  bottom: 26px;
  color: rgba(255, 255, 255, 0.05);
  content: "LIVEFEEZY";
  font-size: clamp(68px, 13vw, 210px);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.hero-art {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  min-height: 610px;
  overflow: visible;
}

.hero-shirt {
  position: absolute;
  display: block;
  width: min(54vw, 680px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-shirt-main {
  right: clamp(0px, 2vw, 34px);
  top: 48px;
  transform: rotate(1.5deg);
}

.hero-shirt-stack {
  right: min(24vw, 250px);
  top: 300px;
  width: min(38vw, 470px);
  opacity: 0.78;
  transform: rotate(-5deg);
}

.hero-face {
  position: absolute;
  right: min(2vw, 42px);
  top: 6px;
  width: min(24vw, 270px);
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.4));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy,
.section-heading > p:not(.eyebrow) {
  color: #ddd6cb;
  font-size: 20px;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}

.button-primary {
  color: var(--paper);
  background: var(--acid);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--acid);
}

.marquee {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 0 14px;
  color: var(--paper);
  background: var(--acid);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.drops-band,
.checkout-band,
.studio-band,
.mockups-band,
.fulfillment-band,
.impact-band,
.faq-band,
.signup-band {
  padding: 78px clamp(18px, 5vw, 74px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 660px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-visual {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 0;
  background: #ece9e1;
  margin: 0;
}

.product-visual img {
  display: block;
  width: 100%;
  height: clamp(390px, 31vw, 480px);
  object-fit: cover;
  object-position: center;
}

.product-copy {
  flex: 1;
  padding: 22px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.product-controls {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 0 22px 22px;
}

select,
input {
  min-height: 48px;
  width: 100%;
  color: var(--ink);
  background: #101013;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}

select {
  color: var(--white);
}

input {
  color: var(--paper);
}

.interest-button {
  color: var(--white);
  background: var(--red);
}

.interest-button:hover,
.interest-button:focus-visible {
  background: var(--red-dark);
}

.checkout-band {
  background:
    linear-gradient(135deg, rgba(36, 104, 255, 0.2), rgba(8, 8, 9, 0) 42%),
    #0d0d10;
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid div {
  min-height: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.trust-grid strong {
  display: block;
  color: var(--acid);
  font-size: 34px;
  line-height: 1;
}

.trust-grid span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.studio-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  background: var(--soft);
  color: #111113;
}

.studio-band .eyebrow,
.mockups-band .eyebrow,
.impact-band .eyebrow {
  color: var(--red);
}

.studio-copy p:not(.eyebrow) {
  max-width: 660px;
  color: #3f3f42;
  font-size: 19px;
}

.studio-band .button-secondary {
  color: #111113;
  border-color: #111113;
}

.studio-mark {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200, 255, 47, 0.94), rgba(255, 255, 255, 0.96)),
    #d6ff31;
  border: 1px solid #d6d3cd;
  border-radius: 8px;
}

.studio-mark img {
  width: min(88%, 620px);
  filter: drop-shadow(0 20px 38px rgba(36, 104, 255, 0.22));
}

.mockups-band {
  background: #ffffff;
  color: #111113;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 0.85fr));
  gap: 10px;
}

.mockup-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  object-position: center;
  border: 1px solid #d6d3cd;
  border-radius: 8px;
  background: #e8e5dd;
}

.fulfillment-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(360px, 1.3fr);
  gap: 36px;
  background: #111113;
  border-top: 1px solid var(--line);
}

.fulfillment-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fulfillment-grid article,
.faq-grid article {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fulfillment-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.impact-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  background: #f3efe7;
  color: #111113;
}

.faq-band {
  background: #0b0b0d;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-copy p:not(.eyebrow) {
  color: #414146;
  font-size: 18px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.impact-stats div {
  min-height: 190px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #ddd7cd;
  border-radius: 8px;
}

.impact-stats strong {
  display: block;
  color: var(--red);
  font-size: 48px;
  line-height: 1;
}

.impact-stats span {
  display: block;
  margin-top: 12px;
  color: #45454a;
  font-weight: 850;
}

.charity-panel {
  grid-column: 1 / -1;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ddd7cd;
  border-radius: 8px;
}

.charity-panel h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.charity-panel p {
  max-width: 850px;
  color: #45454a;
}

.charity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: #171719;
  font-weight: 750;
}

.charity-list li::marker {
  color: var(--red);
  font-weight: 950;
}

.signup-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.signup-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--acid);
  font-size: 14px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 950;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.policy-page {
  max-width: 980px;
  padding: 138px clamp(18px, 6vw, 86px) 72px;
}

.policy-page h1 {
  font-size: clamp(48px, 7vw, 92px);
}

.policy-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-page p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.policy-page section p {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-art {
    order: 2;
    min-height: 430px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    order: 1;
    padding-top: 36px;
    max-width: 860px;
  }

  .hero-shirt-main {
    left: 0;
    right: auto;
    width: min(88vw, 720px);
  }

  .hero-shirt-stack {
    right: 0;
    top: 210px;
  }

  .hero-face {
    right: 8%;
  }

  .drop-grid,
  .mockup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .marquee,
  .studio-band,
  .fulfillment-band,
  .impact-band,
  .signup-band {
    grid-template-columns: 1fr;
  }

  .marquee span {
    min-height: 48px;
  }

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

  .charity-list {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .fulfillment-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .studio-mark {
    min-height: 420px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand span:last-child,
  .cart-button span {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-art {
    min-height: 380px;
  }

  .hero-shirt {
    width: 92vw;
  }

  .hero-shirt-stack {
    top: 190px;
    width: 64vw;
  }

  .hero-face {
    top: 4px;
    width: 52vw;
  }

  .hero-actions {
    display: grid;
  }

  .drops-band,
  .checkout-band,
  .studio-band,
  .mockups-band,
  .fulfillment-band,
  .impact-band,
  .faq-band,
  .signup-band {
    padding-block: 54px;
  }

  .drop-grid,
  .mockup-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    min-height: 0;
  }

  .product-visual,
  .product-visual img {
    min-height: 330px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
