/* ══════════════════════════════════════════
   JAWL Brand — CSS Design System
   Jazz · Whisky · Lo-fi
   ══════════════════════════════════════════ */

/* ── 1. CSS Variables ─────────────────── */
:root {
  /* Color Palette — 위스키 앰버 + 딥 재즈 블랙 */
  --c-bg:           #0d0c0a;       /* 딥 블랙 (바이크 블랙) */
  --c-bg-2:         #131210;       /* 카드 배경 */
  --c-bg-3:         #1a1814;       /* 섹션 대비 */
  --c-surface:      #201e19;       /* 서피스 */
  --c-border:       rgba(212,168,90,0.15);

  --c-amber:        #d4a85a;       /* 위스키 앰버 (메인 액센트) */
  --c-amber-light:  #e8c47a;       /* 라이트 앰버 */
  --c-amber-dark:   #a07830;       /* 다크 앰버 */
  --c-amber-glow:   rgba(212,168,90,0.12);

  --c-cream:        #f0e8d4;       /* 크림 화이트 */
  --c-text:         #e8e0d0;       /* 본문 텍스트 */
  --c-text-muted:   #8a7f6e;       /* 뮤트 텍스트 */
  --c-text-dim:     #5a5248;       /* 딤 텍스트 */

  /* Jazz 컬러 */
  --c-jazz:         #c8885a;       /* 재즈 테라코타 */
  /* Whisky 컬러 */
  --c-whisky:       #d4a85a;       /* 앰버 */
  /* Lo-fi 컬러 */
  --c-lofi:         #7a9a8a;       /* 로파이 세이지 */

  /* Typography */
  --f-display:      'Playfair Display', 'Noto Serif KR', Georgia, serif;
  --f-serif:        'Noto Serif KR', 'Playfair Display', Georgia, serif;
  --f-mono:         'Space Mono', 'Courier New', monospace;
  --f-sans:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       2rem;
  --space-lg:       4rem;
  --space-xl:       6rem;
  --space-xxl:      10rem;

  /* Layout */
  --max-w:          1200px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;

  /* Transitions */
  --t-fast:         0.2s ease;
  --t-base:         0.35s ease;
  --t-slow:         0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 2. Reset & Base ──────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

ul { list-style: none; }

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

/* ── 3. Typography ────────────────────── */
.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-cream);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── 4. Layout ────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── 5. Buttons ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--c-amber);
  color: var(--c-bg);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--c-amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,90,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(240,232,212,0.25);
}

.btn-ghost:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-amber);
  border: 1px solid var(--c-amber);
}

.btn-outline:hover {
  background: var(--c-amber);
  color: var(--c-bg);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── 6. HEADER / NAV ──────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--t-base);
}

.site-header.scrolled {
  background: rgba(13, 12, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--c-border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-amber);
  transition: opacity var(--t-fast);
}

.nav-logo:hover { opacity: 0.8; }

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

.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-amber);
  transition: width var(--t-base);
}

.nav-links a:hover,
.nav-links a:hover::after {
  color: var(--c-amber);
  width: 100%;
}

.nav-cta {
  color: var(--c-amber) !important;
  border: 1px solid var(--c-amber) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--c-amber) !important;
  color: var(--c-bg) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  transition: all var(--t-base);
}

/* ── 7. HERO ──────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem var(--space-md) 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,90,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(200,136,90,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-bg) 0%, #0a0906 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(13,12,10,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title-main {
  display: block;
  font-family: var(--f-mono);
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-cream);
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(212,168,90,0.15);
}

.hero-title-sub {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--c-text-muted);
  margin-top: 0.5rem;
  font-style: normal;
}

.hero-title-sub em {
  font-style: italic;
  color: var(--c-amber);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll-hint span {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-deco-text {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,90,0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
}

/* ── 8. BRAND STATEMENT ───────────────── */
.brand-statement {
  padding: var(--space-xl) 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.statement-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.statement-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.statement-label span:last-child {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.label-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-amber), transparent);
  writing-mode: initial !important;
  transform: none !important;
}

.statement-quote {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--c-cream);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.statement-quote em {
  color: var(--c-amber);
  font-style: italic;
}

.statement-text {
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.statement-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.keyword {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-amber);
  border: 1px solid var(--c-border);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  transition: all var(--t-fast);
}

.keyword:hover {
  background: var(--c-amber-glow);
  border-color: var(--c-amber);
}

/* ── 9. PILLARS ───────────────────────── */
.pillars {
  padding: var(--space-xl) 0;
  background: var(--c-bg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--t-base);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,90,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.pillar-card[data-pillar="jazz"]:hover::before  { background: var(--c-jazz); }
.pillar-card[data-pillar="whisky"]:hover::before { background: var(--c-whisky); }
.pillar-card[data-pillar="lofi"]:hover::before  { background: var(--c-lofi); }

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-amber-glow);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--c-amber);
  transition: all var(--t-base);
}

.pillar-card[data-pillar="jazz"]:hover  .pillar-icon { color: var(--c-jazz); border-color: var(--c-jazz); background: rgba(200,136,90,0.1); }
.pillar-card[data-pillar="whisky"]:hover .pillar-icon { color: var(--c-whisky); }
.pillar-card[data-pillar="lofi"]:hover  .pillar-icon { color: var(--c-lofi); border-color: var(--c-lofi); background: rgba(122,154,138,0.1); }

.pillar-number {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
  margin-bottom: 0.75rem;
}

.pillar-title {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.pillar-subtitle {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--c-amber);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pillar-accent {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}

/* ── 10. TARGET ───────────────────────── */
.target {
  padding: var(--space-xl) 0;
  background: var(--c-bg-3);
  overflow: hidden;
}

.target-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.target-visual {
  background: linear-gradient(135deg, var(--c-bg) 0%, rgba(212,168,90,0.08) 100%);
  border-right: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  min-height: 500px;
}

.target-visual-content {
  text-align: center;
}

.target-stat-group {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.target-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--f-mono);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--c-amber);
  line-height: 1;
  position: relative;
}

.stat-num small {
  font-size: 0.55em;
  color: var(--c-amber-light);
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.target-text {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.target-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.target-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.target-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--c-amber-glow);
  border: 1px solid var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--c-amber);
  margin-top: 0.2rem;
}

.target-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c-cream);
  margin-bottom: 0.35rem;
}

.target-list p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ── 11. PRODUCTS ─────────────────────── */
.products {
  padding: var(--space-xl) 0;
  background: var(--c-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-base);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,90,0.3);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.product-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-thumb--apparel  { background: linear-gradient(135deg, #1a1208 0%, #2a1e10 100%); }
.product-thumb--goods    { background: linear-gradient(135deg, #0e1218 0%, #1a2030 100%); }
.product-thumb--accessories { background: linear-gradient(135deg, #120e18 0%, #201830 100%); }
.product-thumb--digital  { background: linear-gradient(135deg, #0e1a14 0%, #182a20 100%); }

.product-thumb-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,168,90,0.08);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--c-amber);
  transition: all var(--t-base);
}

.product-card:hover .product-thumb-inner {
  background: var(--c-amber-glow);
  border-color: var(--c-amber);
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.6rem;
  background: var(--c-amber);
  color: var(--c-bg);
  font-weight: 700;
  border-radius: 2px;
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}

.product-price {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  text-transform: uppercase;
}

.btn-notify {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  border: 1px solid var(--c-amber);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  cursor: pointer;
  background: transparent;
}

.btn-notify:hover {
  background: var(--c-amber);
  color: var(--c-bg);
}

/* ── 12. CULTURE ──────────────────────── */
.culture {
  padding: var(--space-xl) 0;
  background: var(--c-bg-3);
}

.culture-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 0.75rem 0;
  margin-bottom: var(--space-lg);
  background: var(--c-bg);
}

.culture-marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.culture-marquee span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.culture-marquee span:nth-child(even) {
  color: var(--c-amber);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.culture-body {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.culture-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.culture-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--t-base);
}

.culture-feature:hover {
  border-color: var(--c-amber);
  background: var(--c-amber-glow);
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--c-amber-glow);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-amber);
  transition: all var(--t-fast);
}

.culture-feature:hover .feature-icon {
  background: var(--c-amber);
  color: var(--c-bg);
  border-color: var(--c-amber);
}

.feature-text h4 {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 0.4rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ── 13. POSITIONING / SWOT ───────────── */
.positioning {
  padding: var(--space-xl) 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.swot-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}

.swot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.swot-strength  { background: linear-gradient(135deg, rgba(122,154,138,0.08) 0%, var(--c-bg-2) 100%); }
.swot-opportunity { background: linear-gradient(135deg, rgba(212,168,90,0.08) 0%, var(--c-bg-2) 100%); }
.swot-weakness  { background: linear-gradient(135deg, rgba(200,136,90,0.06) 0%, var(--c-bg-2) 100%); }
.swot-threat    { background: linear-gradient(135deg, rgba(160,80,60,0.06) 0%, var(--c-bg-2) 100%); }

.swot-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.swot-strength  .swot-label { color: var(--c-lofi); }
.swot-opportunity .swot-label { color: var(--c-amber); }
.swot-weakness  .swot-label { color: var(--c-jazz); }
.swot-threat    .swot-label { color: #c06050; }

.swot-card h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--c-cream);
  margin-bottom: 0.75rem;
}

.swot-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ── 14. COMMUNITY ────────────────────── */
.community {
  padding: var(--space-xl) 0;
  background: var(--c-bg-3);
  border-top: 1px solid var(--c-border);
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.community-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.community-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.channel-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}

.channel-link i {
  font-size: 1rem;
  color: var(--c-amber);
  width: 20px;
  text-align: center;
}

.channel-link:hover {
  border-color: var(--c-amber);
  color: var(--c-cream);
  background: var(--c-amber-glow);
}

/* Form */
.community-form-wrap {
  position: relative;
}

.community-form,
.form-success {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.community-form h3,
.form-success h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.community-form > p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--c-text);
  transition: border-color var(--t-fast);
  outline: none;
}

.form-group input::placeholder { color: var(--c-text-dim); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(212,168,90,0.08);
}

.form-group select option { background: var(--c-bg-2); }

.form-privacy {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-align: center;
  margin-top: 1rem;
}

/* Success state */
.form-success {
  text-align: center;
}

.form-success[hidden] { display: none; }

.success-icon {
  font-size: 3rem;
  color: var(--c-lofi);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ── 15. CONTACT ──────────────────────── */
.contact {
  padding: var(--space-xl) 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.contact-text > p {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.contact-link i {
  font-size: 1rem;
  color: var(--c-amber);
  width: 20px;
  text-align: center;
}

.contact-link:hover { color: var(--c-amber); }

.contact-manifesto {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(212,168,90,0.06) 0%, transparent 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}

.contact-manifesto blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text-muted);
  text-align: center;
}

.contact-manifesto blockquote strong {
  color: var(--c-amber);
  font-style: normal;
}

/* ── 16. FOOTER ───────────────────────── */
.site-footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--c-border);
}

.footer-logo {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-amber);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
  margin-bottom: 0.25rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  transition: color var(--t-fast);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-text-dim);
  transition: all var(--t-fast);
}

.footer-social a:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
  background: var(--c-amber-glow);
}

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

.footer-copy,
.footer-made {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.footer-made { color: var(--c-amber); }

/* ── 17. TOAST ────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-cream);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  z-index: 999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── 18. Scroll Reveal ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 19. Animations ───────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 20. Responsive ───────────────────── */
@media (max-width: 1024px) {
  .statement-grid  { grid-template-columns: 1fr; }
  .statement-label { flex-direction: row; align-items: center; }
  .statement-label span:last-child {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.65rem;
  }
  .label-line { width: 40px; height: 1px; }

  .pillars-grid   { grid-template-columns: 1fr; gap: 1rem; }
  .target-inner   { grid-template-columns: 1fr; }
  .target-visual  { min-height: 280px; border-right: none; border-bottom: 1px solid var(--c-border); }
  .target-stat-group { flex-direction: row; justify-content: center; gap: 2rem; }
  .culture-grid   { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; }
  .contact-inner  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80vw; max-width: 320px;
    height: 100svh;
    background: rgba(13,12,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    border-left: 1px solid var(--c-border);
    transition: right var(--t-base);
    z-index: 200;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 0.9rem;
  }

  .products-grid { grid-template-columns: 1fr; }
  .swot-grid     { grid-template-columns: 1fr; }
  .culture-features { grid-template-columns: 1fr; }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav ul { flex-direction: row; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: clamp(4rem, 22vw, 6rem); }
  .community-form, .form-success { padding: 1.75rem; }
  .contact-manifesto { padding: var(--space-md); }
  .swot-card { padding: 1.5rem; }
}
