@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/AlteHaasGroteskRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/AlteHaasGroteskBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0A0A0A;
  --text: #F0F7F4;
  --text-dim: rgba(240, 247, 244, 0.55);
  --text-faint: rgba(240, 247, 244, 0.35);
  --primary: #4056F4;
  --border: rgba(240, 247, 244, 0.10);
  --border-hover: #F0F7F4;
  --glass-bg: rgba(10, 10, 10, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-title: 'Alte Haas Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --border-color: var(--border);
  --text-primary: var(--text);
  --text-muted: var(--text-dim);
  --bg-primary: var(--bg);
  --bg-secondary: #111111;
  --accent: #35A7FF;
  --font-display: var(--font-title);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
  font-weight: 400;
}

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

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

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--text); color: var(--bg);
  padding: 8px 16px; z-index: 10000; transition: top 0.3s ease;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px 14px 32px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.navbar--scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.navbar-left { display: flex; align-items: center; gap: 12px; }

.navbar-logo {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo img { width: 100%; height: 100%; object-fit: contain; }

.navbar-right { display: flex; align-items: center; gap: 6px; }

.navbar-link {
  font-size: 16px;
  padding: 6px 12px;
  color: var(--text);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.navbar-link:hover { color: var(--text); }

.navbar-link--accent {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.navbar-link--accent:hover {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
}

/* HERO */
.hero {
  padding: 160px 64px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.35;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.6;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-media {
  width: 100%;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.4;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-link {
  font-size: 14px;
  color: var(--text);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.hero-link:hover { opacity: 1; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background 0.4s ease, color 0.4s ease;
  border: 0.2px solid var(--text);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--text);
  border: 0.2px solid var(--text);
}
.btn-primary svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.6;
  padding-bottom: 4px;
  border-bottom: 0.2px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.btn-secondary:hover {
  color: var(--text);
  opacity: 1;
  border-color: var(--border-hover);
}

/* SECTIONS */
.section {
  padding: 96px 64px;
  max-width: 1920px;
  margin: 0 auto;
}

.section-header {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.35;
  margin-bottom: 16px;
}

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-title {
  font-family: var(--font-title);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}

.why-body {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--text);
  opacity: 0.6;
  max-width: 560px;
}

.why-body p + p { margin-top: 16px; }

.why-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.6;
  margin-top: 20px;
  transition: opacity 0.3s ease;
}
.why-link:hover { opacity: 1; }
.why-link svg { width: 14px; height: 14px; }

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.stats-grid > div:nth-child(1) { justify-self: start; }
.stats-grid > div:nth-child(2) { justify-self: center; }
.stats-grid > div:nth-child(3) { justify-self: end; }

.stat-value {
  font-family: var(--font-title);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.5;
  max-width: 280px;
}

/* IMAGE + CAPTION BLOCKS */
.img-block {
  padding: 0 64px;
  max-width: 1920px;
  margin: 0 auto;
}

.img-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.img-block--border img {
  border: 1px solid var(--border);
}

.img-caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.4;
  margin-top: 12px;
  max-width: 560px;
}

.img-caption--right {
  margin-left: auto;
  text-align: right;
  max-width: 420px;
}

/* COMMUNITY */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.community-title {
  font-family: var(--font-title);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 420px;
}

.community-body {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--text);
  opacity: 0.6;
  max-width: 520px;
}

.community-body p + p { margin-top: 16px; }

/* BLOG */
.blog-section { padding-bottom: 120px; }

.blog-heading {
  font-family: var(--font-title);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card__img img { transform: scale(1.03); }

.blog-card__date {
  font-size: 12px;
  color: var(--text);
  opacity: 0.5;
}

.blog-card__title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  transition: opacity 0.3s ease;
}
.blog-card:hover .blog-card__title { opacity: 0.75; }

.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.55;
  max-width: 320px;
}

.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.6;
  margin-top: 48px;
  transition: opacity 0.3s ease;
}
.blog-all:hover { opacity: 1; }
.blog-all svg { width: 14px; height: 14px; }

/* FOOTER */
.footer {
  position: relative;
  padding: 80px 64px;
  max-width: 1920px;
  margin: 0 auto;
  background: #0a0a0a;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/paintings/footer-image.jpg') center / cover no-repeat;
  filter: blur(10px);
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0a0a0a 0%,
    rgba(10,10,10,1) 40%,
    rgba(10,10,10, 0.70) 100%
  );
  z-index: 1;
}

.footer-card {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(15, 15, 20, 0);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 48px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-left {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-left .footer-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.footer-socials a:hover { color: var(--text); }

.footer-socials svg {
  width: 20px; height: 20px;
}

.footer-right {
  display: flex;
  gap: 64px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-column a:hover { color: var(--text); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--text); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* SEO HIDDEN HEADING */
.seo-h1 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .navbar { padding: 12px 32px; }
  .hero { padding: 140px 32px 0; }
  .section { padding: 72px 32px; }
  .img-block { padding: 0 32px; }
  .footer { padding: 64px 32px; }
  .footer-card { padding: 32px; }
  .why-grid, .community-grid { gap: 40px; }
  .stats-grid { gap: 24px; }
  .blog-grid { gap: 24px; }
}

@media (max-width: 768px) {
  .navbar { padding: 10px 20px; }
  .navbar-right .navbar-link:not(.navbar-link--accent) { display: none; }
  .hero { padding: 120px 20px 0; }
  .section { padding: 56px 20px; }
  .img-block { padding: 0 20px; }
  .footer { padding: 48px 20px; }
  .footer-card { padding: 24px; border-radius: 8px; }
  .footer-main { flex-direction: column; gap: 32px; }
  .footer-right { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
  .why-grid, .community-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .img-block--border img { object-position: -165px center; }
}

/* Legacy class mapping for imported old-site pages */
.legal-page { padding: 160px 64px 96px; }
.legal-page__inner { max-width: 760px; margin: 0 auto; }
.legal-page__tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.35;
  margin-bottom: 16px;
}
.legal-page__title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  color: var(--text);
  margin-bottom: 16px;
}
.legal-page__meta {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 60px;
}

.support-section { padding: 160px 64px 96px; }
.support-section__inner { max-width: 760px; margin: 0 auto; }
.support-section__tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.35;
  margin-bottom: 16px;
}
.support-section__title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  color: var(--text);
  margin-bottom: 16px;
}
.support-section__intro {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.6;
  max-width: 640px;
  margin-bottom: 48px;
}

.about-hero {
  padding: 160px 64px 64px;
  border-bottom: 1px solid var(--border);
}
.about-hero__inner { max-width: 1200px; margin: 0 auto; }
.about-hero__title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  color: var(--text);
  margin-bottom: 16px;
}
.about-hero__body {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.6;
  max-width: 640px;
}
.about-section__inner { max-width: 1200px; margin: 0 auto; }

@media (max-width: 1024px) {
  .legal-page, .support-section, .about-hero { padding: 140px 32px 72px; }
}
@media (max-width: 768px) {
  .legal-page, .support-section, .about-hero { padding: 120px 20px 64px; }
}

/* ===== MISSING SHARED COMPONENTS ===== */
.page-section {
  padding: 96px 64px;
  max-width: 1920px;
  margin: 0 auto;
}
.page-section--narrow {
  max-width: 1200px;
  margin: 0 auto;
}
.page-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.98px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.35;
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  color: var(--text);
  margin-bottom: 16px;
}
.page-intro {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.6;
  max-width: 640px;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background 0.4s ease, color 0.4s ease;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: var(--primary);
  color: var(--text);
}
.button--secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.6;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  background: none;
}
.button--secondary:hover {
  color: var(--text);
  opacity: 1;
  border-color: var(--border-hover);
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.6;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.link-button:hover {
  color: var(--text);
  opacity: 1;
  border-color: var(--border-hover);
}
.link-button svg {
  width: 16px;
  height: 16px;
}

.status-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== SHOP ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-card {
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.shop-card:hover {
  border-color: var(--text-dim);
  background: rgba(81, 161, 246, 0.02);
}
.shop-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.shop-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.shop-card:hover .shop-card__media img {
  transform: scale(1.03);
}
.shop-card__body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-card__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.shop-card__tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}
.shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.shop-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}
.shop-card:hover .shop-card__cta {
  border-color: var(--accent);
}
.shop-card__cta svg {
  width: 14px;
  height: 14px;
}

/* ===== PRODUCT HERO ===== */
.product-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-hero__name {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.product-hero__tagline {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}
.product-hero__media {
  position: sticky;
  top: 120px;
  aspect-ratio: 4 / 3;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.product-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero__accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
  margin-top: 8px;
}

/* ===== PRODUCT ACCORDION ===== */
.product-accordion__item {
  border-bottom: 1px solid var(--border-color);
}
.product-accordion__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s ease;
}
.product-accordion__toggle:hover {
  color: var(--accent);
}
.product-accordion__toggle::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.product-accordion__item--open .product-accordion__toggle::after {
  content: '\2212';
  color: var(--accent);
}
.product-accordion__pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.product-accordion__item--open .product-accordion__pane {
  max-height: 800px;
  padding-bottom: 24px;
}
.product-accordion__pane p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-accordion__pane p:last-child {
  margin-bottom: 0;
}
.product-accordion__pane a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}
.product-accordion__pane a:hover {
  border-color: var(--border-hover);
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== SPEC GRID ===== */
.spec-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-color);
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: baseline;
}
.spec-row__label {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}
.spec-row__value {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== RELATED PRODUCTS ===== */
.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.related-grid {
  justify-content: start;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border-color);
}
.about-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.principle-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}
.principle-item:first-child {
  padding-top: 0;
}
.principle-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.source-entry {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.source-entry:first-child { padding-top: 0; }
.source-entry:last-child { border-bottom: none; padding-bottom: 0; }

.source-entry h2 {
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.source-entry p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 12px;
}

.source-entry p:last-child { margin-bottom: 0; }

.source-url {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-dim);
}

.source-url a {
  color: var(--text);
  opacity: 0.7;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s ease, border-color 0.3s ease;
  word-break: break-all;
}

.source-url a:hover {
  opacity: 1;
  border-color: var(--border-hover);
}

.principle-item h3 {
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.principle-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 640px;
}

/* ===== LEGAL / SUPPORT / ARTICLE ===== */
.legal-page__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-page__body h2 {
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.legal-page__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.legal-page__body ul {
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.legal-page__body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

.support-topic {
  margin-bottom: 80px;
}
.support-topic:last-child {
  margin-bottom: 0;
}
.support-topic h2 {
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.support-topic p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.support-topic ol {
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}
.support-topic li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

.article-page {
  padding: 140px 64px 96px;
  border-bottom: 1px solid var(--border-color);
}
.article-page__inner {
  max-width: 720px;
  margin: 0 auto;
}
.article-page__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.article-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.article-page__meta {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.article-page__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}
.article-page__body p {
  margin-bottom: 24px;
}
.article-page__body h2 {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-page__body ul {
  padding-left: 1.4em;
  margin-bottom: 24px;
}
.article-page__body li {
  margin-bottom: 8px;
  color: var(--text-muted);
}
.article-page__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

/* ===== SCROLL DOTS ===== */
.scroll-dots {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  pointer-events: none;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-section { padding: 72px 32px; }
  .about-section { padding: 72px 32px; }
  .article-page { padding: 120px 32px 72px; }
  .product-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .product-hero__media { position: relative; top: auto; }
  .spec-row { grid-template-columns: 160px 1fr; }
  .related-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .page-section { padding: 56px 20px; }
  .about-section { padding: 56px 20px; }
  .article-page { padding: 100px 20px 64px; }
  .shop-grid { grid-template-columns: 1fr; }
  .product-hero__name { font-size: clamp(36px, 10vw, 56px); }
  .product-hero__tagline { font-size: 16px; }
  .product-hero__media { aspect-ratio: 16/10; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .spec-row__label { font-size: 13px; }
  .spec-row__value { font-size: 15px; }
  .status-buttons { flex-direction: column; align-items: flex-start; }
  .article-page__title { font-size: clamp(28px, 7vw, 40px); }
  .article-page__body { font-size: 16px; }
  .about-hero { padding: 140px 32px 72px; }
  .legal-page, .support-section { padding: 140px 32px 72px; }
}
