/* Plenty — design language replicated from the Tilda mock */

:root {
  --black: #000;
  --white: #fff;
  --card: #f5f5f5;
  --card-dark: #494949;
  --muted: #6f6f6f;
  --muted-light: #9b9b9b;
  --pad: clamp(20px, 3.4vw, 44px);
  --font: "IBM Plex Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-size: 15px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container { padding-left: var(--pad); padding-right: var(--pad); }

h1, h2, .display {
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.section-pad { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 14px 34px;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.75; }
.btn-black { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-outline { background: var(--white); color: var(--black); border: 1px solid #dcdcdc; }

/* ---------- ticker ---------- */

.ticker {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 40s linear infinite;
}
.ticker span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-right: 64px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad);
  mix-blend-mode: difference;
  color: var(--white);
}
.site-header .menu-toggle { justify-self: start; }
.site-header .header-cta { justify-self: end; }
.site-header img { filter: invert(1); }
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: -0.05em;
  color: var(--white);
}
.header-logo img { height: 24px; width: auto; }
.header-cta {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}

/* ---------- overlay menu ---------- */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  display: none;
  flex-direction: column;
  padding: 24px var(--pad);
}
.menu-overlay.open { display: flex; }
.menu-overlay .menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-overlay .menu-close img { filter: invert(1); width: 18px; height: 18px; }
.menu-overlay nav {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-overlay nav a {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.15;
  transition: opacity 0.15s;
}
.menu-overlay nav a:hover { opacity: 0.6; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  background: url("../assets/hero.jpg") center top / cover no-repeat;
  margin-top: -66px; /* sit under the fixed header */
  display: flex;
  align-items: flex-end;
}
.hero-inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 0 var(--pad) clamp(32px, 4vw, 56px);
}
.hero-copy { max-width: 560px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy p {
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-card {
  background: var(--white);
  padding: 20px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.hero-card-media {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 14px;
  background: var(--card);
  padding: 12px;
}
.hero-card h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-card p {
  font-size: 13px;
  color: var(--muted);
  min-height: 3.6em;
  margin-bottom: 14px;
}
.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-card .btn { flex: 1; border: 1px solid #dcdcdc; }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button {
  font-size: 18px;
  line-height: 1;
  padding: 8px 10px;
  border: 1px solid #dcdcdc;
  background: var(--white);
}

/* ---------- value cards ---------- */

.values h2 { max-width: 900px; margin-bottom: 36px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.value-card {
  background: var(--card);
  padding: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.value-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.value-card-top h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.15;
  max-width: 220px;
}
.value-card-top img { height: 26px; width: auto; flex-shrink: 0; }
.value-card-icon {
  margin: auto;
  height: 140px;
  width: auto;
}
.value-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 24px;
}
.value-card-bottom p {
  font-size: 13px;
  line-height: 1.35;
  max-width: 240px;
}
.value-card-bottom .btn { padding: 12px 28px; }

/* ---------- product carousel ---------- */

.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}
.catalog-head h2 { max-width: 560px; }
.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrows button {
  width: 40px;
  height: 32px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}
.product-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.product-track::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 clamp(260px, 24vw, 310px);
  scroll-snap-align: start;
}
.product-card-media {
  position: relative;
  background: var(--card);
  height: clamp(320px, 30vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-card-media img {
  max-height: 82%;
  max-width: 70%;
  object-fit: contain;
}
.product-card-media .card-actions {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.card-actions .btn { padding: 12px 24px; font-size: 11px; }
.product-card h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}
.product-card .prod-desc {
  font-size: 13px;
  color: var(--muted);
  min-height: 2.7em;
  max-width: 260px;
  margin-bottom: 14px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.rating img { width: 18px; height: 18px; }
.rating .count { color: var(--muted-light); font-weight: 400; font-size: 13px; }

/* ---------- brand section ---------- */

.brand-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: stretch;
}
.brand-copy { display: flex; flex-direction: column; }
.brand-copy h2 { margin-bottom: 28px; }
.brand-copy p { font-size: 14px; max-width: 340px; margin-bottom: 14px; }
.brand-copy .team-label { margin-top: auto; padding-top: 40px; margin-bottom: 12px; }
.team-list { display: flex; flex-direction: column; gap: 8px; }
.team-list li {
  list-style: none;
  background: var(--card);
  padding: 26px 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.brand-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- big marquee ---------- */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: clamp(28px, 4vw, 56px) 0;
}
.marquee-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.marquee span {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-right: 80px;
}

/* ---------- dark zone (blog + faq + innovation) ---------- */

.dark { background: var(--black); color: var(--white); }

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 8px;
}
.blog-card { margin-bottom: 24px; }
.blog-card-media { position: relative; }
.blog-card-media img { width: 100%; aspect-ratio: 592/363; object-fit: cover; }
.blog-card-media .btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 28px;
}
.blog-card h3 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 16px 0 8px;
  padding-bottom: 0;
}
.blog-card p { font-size: 13px; color: var(--muted-light); padding-bottom: 18px; border-bottom: 1px solid #2a2a2a; }

/* ---------- faq ---------- */

.faq h2 { margin-bottom: 24px; }
.faq-item { border-top: 1px solid #2e2e2e; }
.faq-item:last-child { border-bottom: 1px solid #2e2e2e; }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(200px, 380px) 1fr 32px;
  gap: 24px;
  align-items: center;
  text-align: left;
  padding: 30px 0;
  color: inherit;
}
.faq-q h3 { font-size: 19px; font-weight: 400; letter-spacing: -0.04em; }
.faq-a {
  font-size: 13px;
  color: var(--muted-light);
  visibility: hidden;
}
.faq-item.open .faq-a { visibility: visible; }
.faq-icon { width: 32px; height: 32px; }
.faq-icon.minus { display: none; }
.faq-item.open .faq-icon.plus { display: none; }
.faq-item.open .faq-icon.minus { display: block; }

/* light faq variant (product page) */
.faq-light { background: var(--white); color: var(--black); }
.faq-light .faq-item { border-color: #e6e6e6; }
.faq-light .faq-a { color: var(--muted); }

/* ---------- innovation ---------- */

.innovation-grid {
  display: grid;
  grid-template-columns: minmax(260px, 460px) 1fr;
  gap: clamp(24px, 4vw, 64px);
}
.innovation-copy { display: flex; flex-direction: column; }
.innovation-copy h2 { margin-bottom: 28px; }
.innovation-copy .label { font-size: 14px; }
.innovation-copy .caption {
  margin-top: auto;
  font-size: 12px;
  color: var(--muted-light);
  max-width: 220px;
  padding-top: 48px;
}
.innovation-card {
  background: var(--card-dark);
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innovation-card img { width: 180px; height: 180px; }
.innovation-card .btn {
  position: absolute;
  left: -1px;
  bottom: -1px;
  transform: translateX(-40%);
  padding: 12px 32px;
}

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 90px);
}
.footer-glow {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}
.footer-glow.left { left: -40%; top: -10%; width: 90%; }
.footer-glow.right { right: -20%; bottom: -30%; width: 70%; }
.footer-inner { position: relative; z-index: 1; }
.footer-wordmark {
  width: min(93%, 1200px);
  margin: 0 auto clamp(36px, 5vw, 64px);
  filter: brightness(0) invert(1);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.footer-social img { width: 40px; height: 40px; }
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #cfcfcf;
  padding: 0 var(--pad) 28px;
  flex-wrap: wrap;
}

/* ---------- waitlist modal ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--black);
  color: var(--white);
  width: min(460px, 100%);
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}
.modal-close img { filter: invert(1); width: 16px; height: 16px; }
.modal h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  padding-right: 24px;
}
.modal p { font-size: 14px; color: var(--muted-light); margin-bottom: 26px; }
.modal input[type="email"] {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #3a3a3a;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  padding: 10px 0;
  margin-bottom: 22px;
  outline: none;
}
.modal input[type="email"]:focus { border-color: var(--white); }
.modal .btn { width: 100%; padding: 16px; }
.modal .form-error { color: #ff7a7a; font-size: 13px; margin-top: 12px; display: none; }
.modal .hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.modal .success { display: none; }
.modal.sent form { display: none; }
.modal.sent .success { display: block; }

/* ---------- product page ---------- */

.pdp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 24px;
}
.pdp-top .back { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.pdp-top img { height: 12px; width: auto; }
.pdp-top .close img { height: 16px; }

.pdp-grid {
  display: grid;
  grid-template-columns: 96px minmax(300px, 520px) 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 90px);
}
.pdp-thumbs { display: flex; flex-direction: column; gap: 8px; }
.pdp-thumbs img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  cursor: pointer;
  background: var(--card);
}
.pdp-thumbs img.active { outline: 1px solid var(--black); }
.pdp-main img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--card); }
.pdp-info { padding-top: 4px; }
.pdp-info h1 { font-size: clamp(22px, 2vw, 30px); margin-bottom: 28px; }
.pdp-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 360px;
}
.pdp-info .desc { font-size: 13px; margin-bottom: 10px; }
.pdp-info .actives { font-size: 12px; color: var(--muted); margin-bottom: 40px; }
.pdp-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 420px;
}
.pdp-buy .btn { padding: 14px 44px; }

.pdp-section { margin-bottom: clamp(56px, 7vw, 90px); }
.pdp-section h2 { font-size: clamp(20px, 1.8vw, 26px); margin-bottom: 24px; }

.steps-grid, .precautions-grid, .storage-grid {
  display: grid;
  gap: 8px;
}
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.step-card img { width: 100%; aspect-ratio: 392/419; object-fit: cover; margin-bottom: 12px; }
.step-card { position: relative; }
.step-card .step-pag { position: absolute; top: 18px; left: 18px; width: 84px; height: auto; aspect-ratio: auto; margin: 0; }
.step-card p { font-size: 13px; max-width: 300px; }

.precautions-grid { grid-template-columns: repeat(4, 1fr); }
.storage-grid { grid-template-columns: repeat(2, 1fr); }
.icon-card {
  background: var(--card);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.icon-card img { width: 90px; height: 90px; object-fit: contain; }
.icon-cell p { font-size: 13px; max-width: 300px; }

.inci p { font-size: 13px; max-width: 560px; color: var(--black); }

/* ---------- about page ---------- */

.about-hero { padding-top: clamp(40px, 6vw, 80px); }
.about-hero h1 { max-width: 900px; margin-bottom: 24px; }
.about-hero .lede { font-size: 17px; max-width: 560px; color: var(--black); }

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
}
.story-copy p { font-size: 15px; max-width: 460px; margin-bottom: 16px; }
.story-copy .kicker, .kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 20px;
}
.story-media img { width: 100%; object-fit: cover; }

.numbers-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.number-card { background: var(--card); padding: 24px; min-height: 200px; display: flex; flex-direction: column; }
.number-card .big {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: auto;
}
.number-card p { font-size: 13px; color: var(--black); max-width: 260px; padding-top: 24px; }
.number-card .src { font-size: 11px; color: var(--muted-light); margin-top: 6px; }

/* founders message carousel */
.founders { background: var(--black); color: var(--white); }
.founders-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}
.quote-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.quote-track::-webkit-scrollbar { display: none; }
.quote-card {
  flex: 0 0 min(480px, 86%);
  scroll-snap-align: start;
  background: #161616;
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.quote-card blockquote {
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin-bottom: auto;
}
.quote-card .who { padding-top: 28px; font-size: 13px; color: var(--muted-light); }
.quote-card .who strong { color: var(--white); font-weight: 600; display: block; font-size: 14px; }

.cta-band { text-align: left; }
.cta-band h2 { max-width: 800px; margin-bottom: 28px; }

/* ---------- blog index + articles ---------- */

.blog-light .blog-card p { color: var(--muted); border-color: #e6e6e6; }

.article {
  max-width: 720px;
  margin: 0 auto;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.article .kicker { margin-bottom: 16px; }
.article h1 { margin-bottom: 20px; }
.article .article-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin: 28px 0 36px; }
.article h2 {
  font-size: 21px;
  margin: 40px 0 14px;
  text-transform: none;
  letter-spacing: -0.03em;
}
.article p, .article li { font-size: 16px; line-height: 1.6; margin-bottom: 16px; color: #1a1a1a; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 16px; }
.article li { margin-bottom: 8px; }
.article .note {
  background: var(--card);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--muted);
  margin: 28px 0;
}
.article-cta {
  border-top: 1px solid #e6e6e6;
  margin-top: 48px;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article-cta p { margin: 0; font-size: 15px; max-width: 380px; }

/* ---------- legal pages ---------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.legal h1 { margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 18px; margin: 32px 0 10px; text-transform: none; letter-spacing: -0.02em; }
.legal p, .legal li { font-size: 14px; line-height: 1.6; color: #1a1a1a; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }

/* ---------- 404 ---------- */

.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 340px; }
  .brand-grid { grid-template-columns: 1fr; }
  .innovation-grid { grid-template-columns: 1fr; }
  .innovation-copy .caption { padding-top: 24px; }
  .innovation-card .btn { transform: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .numbers-strip { grid-template-columns: 1fr; }
  .number-card { min-height: 140px; }
  .faq-q { grid-template-columns: 1fr 32px; }
  .faq-q .faq-a { grid-column: 1 / -1; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .precautions-grid { grid-template-columns: 1fr 1fr; }
  .storage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero {
    display: block;
    min-height: 0;
    padding-top: 0;
    background-size: 200% auto;
    background-position: 60% top;
  }
  .hero::before { content: ""; display: block; height: 96vw; }
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 56px);
    padding-top: 24px;
  }
  .hero-card { width: 100%; }
  .header-cta { display: none; }
  .footer-links { justify-content: center; text-align: center; }
  .precautions-grid { grid-template-columns: 1fr; }
}
