/* ===========================
   SafeCut — Design System
   Industrial-Craft Aesthetic
   =========================== */

:root {
  --yellow: #FFD100;
  --yellow-dark: #e6bc00;
  --black: #0d0d0d;
  --off-black: #1a1a1a;
  --dark-grey: #2a2a2a;
  --mid-grey: #888;
  --light-grey: #f4f4f2;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: rgba(0,0,0,.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: cubic-bezier(.4,0,.2,1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: rgba(255,209,0,.12);
  border: 1px solid rgba(255,209,0,.3);
  padding: .3em .8em;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--black);
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 48ch;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-body { margin: 1rem auto 0; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
.section { padding: 5rem 0; }
@media (max-width: 768px) { .section { padding: 3.5rem 0; } }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--transition), box-shadow .18s var(--transition), background .18s;
  box-shadow: 0 4px 14px rgba(255,209,0,.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,209,0,.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 6px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s;
}
.btn-ghost:hover { border-color: var(--black); background: rgba(0,0,0,.04); transform: translateY(-2px); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s, transform .35s var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.site-nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .nav-inner { padding: 0 2rem; } }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--yellow-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .18s;
}
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-cta {
  padding: .55rem 1.3rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 5px;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(255,209,0,.3);
}
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,209,0,.4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---- Mobile Menu ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .35s var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: .4rem;
  border-radius: 4px;
  transition: background .18s, color .18s;
}
.mobile-close:hover { background: var(--light-grey); color: var(--black); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: .25rem;
  flex: 1;
}
.mobile-nav-link {
  display: block;
  padding: .95rem 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  border-radius: 8px;
  transition: background .18s, color .18s;
  letter-spacing: .01em;
}
.mobile-nav-link:hover { background: var(--light-grey); }
.mobile-cta {
  margin: 1.5rem;
  justify-content: center;
  font-size: 1.1rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
  background: #fafaf8;
}
@media (max-width: 768px) { .hero { padding: 5.5rem 0 3.5rem; } }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,.6) 0%, transparent 70%);
}
.hero-blob {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,209,0,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: .4em 1em;
  border-radius: 100px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--yellow-dark);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.proof-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.01em;
}
.proof-item span {
  font-size: .75rem;
  color: var(--text-muted);
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
/* Product card */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.product-img-wrap { width: 100%; height: 100%; }
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .5em 1em;
  border-radius: 100px;
}
.hero-stat-card {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.hero-visual { position: relative; }
@media (max-width: 900px) {
  .hero-stat-card { right: 0; top: 1rem; }
  .product-card { aspect-ratio: 4/3; }
}

/* ---- Strip Section ---- */
.strip-section {
  background: var(--off-black);
  padding: 1.75rem 0;
}
.strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.strip-item strong { color: var(--white); }
.strip-item--highlight { color: var(--white); }
.strip-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-icon--red { background: rgba(255,80,80,.15); color: #ff6b6b; }
.strip-icon--yellow { background: rgba(255,209,0,.2); color: var(--yellow); }
.strip-arrow { color: rgba(255,255,255,.3); font-size: 1.5rem; }
@media (max-width: 600px) { .strip-arrow { display: none; } }

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--light-grey);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: border-color .25s, transform .25s var(--transition), box-shadow .25s;
}
.feature-card:hover {
  border-color: var(--yellow-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- How It Works ---- */
.how-section { background: var(--light-grey); }
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .how-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  opacity: .7;
}
.step-text {
  padding-top: .35rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.step-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.01em;
}
.step-text span {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.how-visual { position: relative; }
.how-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-grey);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.how-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--transition);
}
.how-img-wrap:hover img { transform: scale(1.04); }
.how-callout {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
  right: 2rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-sm);
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,209,0,.4);
}
@media (max-width: 900px) { .how-callout { position: relative; bottom: 0; left: 0; right: 0; margin-top: 1rem; border-radius: var(--radius-md); } }

/* ---- Quote ---- */
.quote-section { background: var(--white); padding: 4rem 0; }
.quote-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: var(--yellow-dark);
  font-family: Georgia, serif;
  margin-bottom: .5rem;
  opacity: .5;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
cite {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ---- Materials ---- */
.materials-section { background: var(--white); padding-top: 2rem; }
.materials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.material-pill {
  padding: .65rem 1.3rem;
  background: var(--light-grey);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: background .18s, border-color .18s, transform .18s;
}
.material-pill:hover {
  background: var(--yellow);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
}

/* ---- CTA Banner ---- */
.cta-section {
  position: relative;
  background: var(--black);
  padding: 5.5rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--off-black);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { color: var(--white); display: inline-block; margin-bottom: 1rem; font-size: 1.5rem; }
.footer-brand .nav-logo span { color: var(--yellow); }
.footer-brand p { font-size: .9rem; line-height: 1.6; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: .9rem;
  margin-bottom: .75rem;
  transition: color .18s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .85rem; }
.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a {
  color: rgba(255,255,255,.4);
  transition: color .18s;
}
.footer-socials a:hover { color: var(--white); }

/* ---- Scroll Animations ---- */
/* Default: fully visible. JS adds .js-ready to <html> to enable animations */
.fade-up {
  opacity: 1;
  transform: none;
}
html.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
  transition-delay: var(--delay, 0s);
}
html.js-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .fade-up { transition: none; opacity: 1; transform: none; }
}

/* ---- About page ---- */
.about-hero { padding: 8rem 0 5rem; background: #fafaf8; text-align: center; }
.about-hero .section-title { font-size: clamp(2.5rem, 6vw, 4.5rem); margin: .75rem 0; }
.about-hero .section-body { margin: 1rem auto 0; font-size: 1.15rem; }

.story-section { background: var(--white); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 900px) { .story-layout { grid-template-columns: 1fr; } }
.story-content { max-width: 56ch; }
.story-content p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.story-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--black); margin: 2rem 0 .75rem; }
.story-content ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.story-content ul li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--text-muted); }
.story-content ul li::before { content: '→'; color: var(--yellow-dark); font-weight: 700; flex-shrink: 0; }
.story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-grey);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  position: sticky;
  top: 5rem;
}
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.stats-section {
  background: var(--off-black);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.stat-block {}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label-dark {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: .5rem;
}

.values-section { background: var(--light-grey); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .25s var(--transition), box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--black); margin-bottom: .6rem; }
.value-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Board Gliding page ---- */
.bg-hero { padding: 8rem 0 5rem; background: var(--black); text-align: center; }
.bg-hero .section-title { color: var(--white); }
.bg-hero .section-body { color: rgba(255,255,255,.6); margin: 1rem auto 0; }
.bg-hero .section-label { background: rgba(255,209,0,.15); color: var(--yellow); border-color: rgba(255,209,0,.3); }

.video-section { background: var(--white); }
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-placeholder {
  text-align: center;
  color: rgba(255,255,255,.5);
}
.video-placeholder svg { width: 64px; height: 64px; margin: 0 auto 1rem; }
.video-placeholder p { font-size: .9rem; }

.technique-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .technique-steps-grid { grid-template-columns: 1fr; } }
.technique-step {
  background: var(--light-grey);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform .25s var(--transition), box-shadow .25s;
}
.technique-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.technique-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow-dark);
  opacity: .4;
  line-height: 1;
  margin-bottom: .5rem;
}
.technique-step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--black); margin-bottom: .6rem; }
.technique-step p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Contact page ---- */
.contact-hero { padding: 8rem 0 5rem; background: #fafaf8; text-align: center; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s;
  margin-bottom: 1rem;
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: .35rem; }
.contact-info-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; }
.contact-info-card a { color: var(--text); font-size: .95rem; font-weight: 600; transition: color .18s; }
.contact-info-card a:hover { color: var(--yellow-dark); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--black); margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.15rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light-grey);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(255,209,0,.2);
  background: var(--white);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.form-checkbox input { margin-top: .2rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--yellow-dark); cursor: pointer; }
.form-checkbox label { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.form-checkbox a { color: var(--yellow-dark); font-weight: 600; }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.alert-success { background: #e8f7e9; color: #1a6b1e; border: 1px solid #b7e5ba; }
.alert-error { background: #fff0f0; color: #9b1515; border: 1px solid #f8c0c0; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }

/* ---- Logo Image ---- */
.nav-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.mobile-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* white on dark footer */
}
.badge-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---- Homepage Video Preview Grid ---- */
.video-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .video-preview-grid { grid-template-columns: 1fr; gap: .75rem; }
}
.video-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--dark-grey);
  cursor: pointer;
  transition: transform .3s var(--transition), box-shadow .3s;
}
.video-preview-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  transition: background .3s;
}
.video-preview-card:hover .video-preview-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 100%);
}
.video-preview-overlay .play-btn {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 20px rgba(255,209,0,.5);
}
.video-preview-card:hover .play-btn { transform: scale(1.1); background: var(--yellow-dark); }
.video-preview-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
}

/* ---- Videos Hero ---- */
.videos-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.videos-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,209,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,209,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.videos-hero .section-label { display: inline-block; margin-bottom: 1rem; }
.videos-hero .section-body { max-width: 50ch; }

/* ---- Portrait Video Cards ---- */
.portrait-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) { .portrait-video-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.portrait-video-card {
  background: var(--dark-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--transition), box-shadow .3s;
}
.portrait-video-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }

/* The wrap is the clickable area */
.portrait-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  background: #111;
  overflow: hidden;
  cursor: pointer;
}
.portrait-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Controls overlay — always visible, fades when playing */
.portrait-video-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: opacity .3s, background .3s;
  pointer-events: none; /* let clicks through to the wrap */
  z-index: 2;
}
.portrait-video-controls.playing {
  opacity: 0;
  background: transparent;
}
.portrait-video-wrap:hover .portrait-video-controls.playing {
  opacity: 1;
  background: rgba(0,0,0,.2);
}

/* Hide the tap overlay — wrap handles clicks directly */
.portrait-video-tap-overlay { display: none; }

.vid-play-btn {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  pointer-events: none; /* clicks handled by wrap */
  box-shadow: 0 4px 24px rgba(255,209,0,.5);
  transition: transform .2s, background .2s;
}
.portrait-video-wrap:hover .vid-play-btn { transform: scale(1.1); }

.portrait-video-info {
  padding: 1.5rem;
}
.portrait-video-tag {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .5rem;
}
.portrait-video-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.portrait-video-info p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.video-specs {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.video-specs span {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

/* ---- Homepage Video Preview Grid ---- */
.video-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .video-preview-grid { grid-template-columns: 1fr; gap: .75rem; }
}
.video-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--dark-grey);
  cursor: pointer;
  transition: transform .3s var(--transition), box-shadow .3s;
}
.video-preview-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  transition: background .3s;
  pointer-events: none;
}
.video-preview-card:hover .video-preview-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 100%);
}
.video-preview-overlay .play-btn {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 20px rgba(255,209,0,.5);
}
.video-preview-card:hover .play-btn { transform: scale(1.1); background: var(--yellow-dark); }
.video-preview-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
}

/* ---- Product Showcase (videos page) ---- */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .product-showcase { grid-template-columns: 1fr; gap: 2rem; } }
.product-showcase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-black);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--transition);
}
.product-showcase-img:hover img { transform: scale(1.04); }

/* ---- Logo styles ---- */
.nav-logo-img { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img img { height: 44px; width: auto; display: block; object-fit: contain; }
.mobile-logo-img { height: 32px; width: auto; display: block; object-fit: contain; }
.badge-logo { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

/* ---- Footer text logo ---- */
.footer-text-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
  line-height: 1;
}
.footer-text-logo span { color: var(--yellow); }

/* ---- Contact hero ---- */
.contact-hero {
  padding: 8rem 0 5rem;
  background: #fafaf8;
  text-align: center;
}

/* ---- Videos hero ---- */
.videos-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.videos-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,209,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,209,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.videos-hero .section-label { display: inline-block; margin-bottom: 1rem; }
.videos-hero .section-body { max-width: 50ch; }
