/* ===========================
   OTAKU NERDS — GLOBAL
=========================== */
:root {
  --black: #050505;
  --black-2: #0d0d0d;
  --black-3: #141414;
  --orange: #C17B2F;
  --orange-bright: #D4852A;
  --orange-glow: rgba(193, 123, 47, 0.4);
  --cream: #EDE8DF;
  --cream-dim: rgba(237, 232, 223, 0.6);
  --cream-ghost: rgba(237, 232, 223, 0.07);
  --warm-brown: #8B5E2A;
  --white: #F0EDE6;
  --white-dim: rgba(240, 237, 230, 0.6);
  --white-ghost: rgba(240, 237, 230, 0.08);
  --mono: 'Share Tech Mono', monospace;
  --display: 'Bebas Neue', cursive;
  --body: 'Rajdhani', sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

/* ===========================
   CUSTOM CURSOR
=========================== */
.cursor {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 32px; height: 32px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 123, 47, 0.15);
  transition: all 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: rgba(193, 123, 47, 0.3);
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 1px 0 rgba(237,232,223,0.04);
}
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  background: var(--cream);
  padding: 3px 6px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 10px 20px;
  border: 1px solid var(--orange);
  color: var(--orange);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--black);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(5,5,5,0.98);
  border-bottom: 1px solid var(--orange-glow);
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  gap: 20px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--orange); }
.mobile-cta {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 12px 20px;
  border: 1px solid var(--orange);
  color: var(--orange);
  text-align: center;
  margin-top: 8px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.3s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--orange-bright);
  box-shadow: 0 0 30px var(--orange-glow);
  transform: translateY(-2px);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 14px 28px;
  border: 1px solid var(--white-ghost);
  color: var(--white-dim);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===========================
   SECTION SHARED
=========================== */
.section-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--orange); }
.section-sub {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 480px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193,123,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193,123,47,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(193,123,47,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,140,0,0.08) 0%, transparent 70%);
  bottom: 100px; left: 200px;
  animation-delay: 3s;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(193,123,47,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation-delay: 5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream);
  background: rgba(237,232,223,0.06);
  border: 1px solid rgba(237,232,223,0.15);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--display);
  line-height: 0.95;
  margin-bottom: 24px;
}
.title-line {
  display: block;
  animation: fadeUp 0.8s ease both;
}
.line-1 {
  font-size: clamp(72px, 10vw, 140px);
  color: var(--white);
  animation-delay: 0.1s;
}
.line-2 {
  font-size: clamp(48px, 6.5vw, 96px);
  color: var(--white-dim);
  animation-delay: 0.2s;
}
.line-2 em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 1px var(--orange);
}
.line-3 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white-dim);
  animation-delay: 0.3s;
}

.hero-sub {
  font-size: 18px;
  color: var(--white-dim);
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--white-dim);
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--white-ghost);
}

/* HERO CARD STACK */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 420px;
}
.hero-card {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 2px;
}
.card-back-2 {
  background: var(--black-3);
  border: 1px solid rgba(193,123,47,0.1);
  transform: rotate(6deg) translate(20px, 10px);
}
.card-back-1 {
  background: var(--black-2);
  border: 1px solid rgba(193,123,47,0.2);
  transform: rotate(3deg) translate(10px, 5px);
}
.card-front {
  background: var(--black-3);
  border: 1px solid rgba(193,123,47,0.4);
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(193,123,47,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 60%, transparent 100%);
}
.card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 12px;
}
.card-title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}
.card-price {
  font-family: var(--display);
  font-size: 40px;
  color: var(--orange);
  margin-bottom: 16px;
}
.card-btn {
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 12px;
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  transition: all 0.2s;
}
.card-btn:hover {
  background: var(--orange-bright);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  z-index: 1;
  animation: fadeUp 1s 1s ease both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--orange);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.4; }
}

/* ===========================
   SHOP
=========================== */
.shop {
  padding: 120px 80px;
  background: var(--black);
  position: relative;
}
.shop::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.bundle-card--wide {
  grid-column: span 3;
}

.bundle-card {
  background: var(--black-2);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--white-ghost);
}
.bundle-card:hover {
  background: var(--black-3);
  border-color: var(--bundle-color, var(--orange));
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bundle-card:hover .bundle-accent {
  opacity: 0.08;
}
.bundle-accent {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bundle-color, var(--orange));
  opacity: 0;
  transition: opacity 0.3s;
}
.bundle-number {
  font-family: var(--display);
  font-size: 80px;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  transition: color 0.3s;
}
.bundle-card:hover .bundle-number {
  color: rgba(255,255,255,0.06);
}
/* BUNDLE IMAGES */
.bundle-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  margin: -40px -32px 20px -32px;
  overflow: hidden;
  height: 200px;
  position: relative;
  z-index: 1;
}
.bundle-images--wide {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  height: 140px;
}
.bundle-poster,
.bundle-notion {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
}
.bundle-card:hover .bundle-poster,
.bundle-card:hover .bundle-notion {
  transform: scale(1.04);
  filter: brightness(1.0);
}
.bundle-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.bundle-tagline {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.bundle-price {
  font-family: var(--display);
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.bundle-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 10px 18px;
  border: 1px solid var(--orange);
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.bundle-btn:hover, .bundle-card:hover .bundle-btn {
  background: var(--orange);
  color: var(--black);
}

.bundle-card--wide {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 32px;
}
.bundle-card--wide .bundle-number {
  position: static;
  font-size: 60px;
  color: rgba(255,255,255,0.06);
}
.bundle-card--wide .bundle-emoji {
  font-size: 48px;
  margin-bottom: 0;
}
.bundle-card--wide .bundle-name { margin-bottom: 4px; }
.bundle-card--wide .bundle-tagline { margin-bottom: 0; }
.bundle-card--wide .bundle-price { margin-bottom: 0; }

.shop-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  background: var(--black-2);
  border: 1px solid rgba(193,123,47,0.2);
}
.shop-cta-bar p {
  font-family: var(--display);
  font-size: 24px;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

/* ===========================
   BLOG
=========================== */
.blog {
  padding: 120px 80px;
  background: var(--black-2);
  position: relative;
}
.blog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,123,47,0.4), transparent);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.blog-card {
  background: var(--black-3);
  padding: 40px 32px;
  border: 1px solid var(--white-ghost);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cream));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.blog-card:hover::after { transform: scaleX(1); }
.blog-card:hover {
  border-color: rgba(193,123,47,0.4);
  transform: translateY(-4px);
}
.blog-card--featured {
  background: var(--black);
  border-color: rgba(193,123,47,0.2);
  border-left: 3px solid var(--orange);
}
.blog-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 16px;
}
.blog-title {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.blog-date, .blog-read {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(240,237,230,0.3);
}
/* BLOG ANNOUNCEMENT */
.blog-announcement {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(193,123,47,0.1) 0%, rgba(237,232,223,0.05) 100%);
  border: 1px solid rgba(193,123,47,0.35);
  border-left: 4px solid var(--orange);
  padding: 32px 36px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.blog-announcement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(193,123,47,0.02) 20px,
    rgba(193,123,47,0.02) 40px
  );
}
.announce-icon {
  font-size: 40px;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease infinite;
}
.announce-text {
  position: relative;
  z-index: 1;
}
.announce-title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 10px;
}
.announce-body {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 680px;
}
.announce-body strong {
  color: var(--orange);
  font-weight: 700;
}
.announce-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--orange);
  padding: 10px 16px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  font-weight: 700;
  cursor: none;
  transition: all 0.2s;
}
.announce-badge:hover {
  background: var(--orange-bright);
  box-shadow: 0 0 20px var(--orange-glow);
  transform: scale(1.03);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--black-3);
  border: 1px solid rgba(193,123,47,0.4);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  position: relative;
  animation: fadeUp 0.3s ease both;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 18px;
  cursor: none;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--orange); }
.modal-icon { font-size: 40px; margin-bottom: 16px; animation: pulse 2s ease infinite; }
.modal-title {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}
.modal-sub {
  font-size: 15px;
  color: var(--white-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}
.modal-input {
  display: block;
  width: 100%;
  background: var(--black-2);
  border: 1px solid var(--white-ghost);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.modal-input::placeholder { color: rgba(240,237,230,0.25); }
.modal-input:focus { border-color: var(--orange); }
.modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 700;
  border: none;
  cursor: none;
  transition: all 0.2s;
  margin-top: 4px;
}
.modal-submit:hover { background: var(--orange-bright); }
.modal-submit svg { width: 16px; height: 16px; }
.modal-fine {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(240,237,230,0.2);
  margin-top: 14px;
}
.modal-success-icon { font-size: 48px; margin-bottom: 16px; }
.modal-success-title {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 12px;
}
.modal-success-body {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* HUBSPOT FORM DARK THEME OVERRIDES */
.modal-box .hs-form-frame,
.modal-box iframe {
  width: 100% !important;
  border: none !important;
  background: transparent !important;
}
.modal-box .hs-form fieldset {
  max-width: 100% !important;
}
.modal-box .hs-form .hs-input {
  display: block !important;
  width: 100% !important;
  background: var(--black-2) !important;
  border: 1px solid var(--white-ghost) !important;
  padding: 14px 16px !important;
  font-family: var(--mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  color: var(--white) !important;
  margin-bottom: 12px !important;
  outline: none !important;
  border-radius: 0 !important;
}
.modal-box .hs-form .hs-input:focus {
  border-color: var(--orange) !important;
}
.modal-box .hs-form label {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  color: var(--white-dim) !important;
  text-transform: uppercase !important;
}
.modal-box .hs-form .hs-button {
  width: 100% !important;
  padding: 14px !important;
  background: var(--orange) !important;
  color: var(--black) !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.modal-box .hs-form .hs-button:hover {
  background: var(--orange-bright) !important;
}
.modal-box .hs-form .hs-error-msgs {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  color: #FF3B3B !important;
  list-style: none !important;
  padding: 0 !important;
}
.modal-box .hs-form .submitted-message {
  font-family: var(--display) !important;
  font-size: 24px !important;
  letter-spacing: 0.08em !important;
  color: var(--orange) !important;
  text-align: center !important;
  padding: 20px 0 !important;
}

/* INLINE ARTICLE EXPANSION */
.blog-expand-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  text-align: left;
}
.blog-full-article {
  display: none;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(193,123,47,0.2);
  animation: fadeUp 0.4s ease both;
}
.blog-full-article.expanded { display: block; }
.article-body p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-body h4 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 28px 0 12px;
}
.article-body ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.article-body ul li {
  font-size: 15px;
  color: var(--white-dim);
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--orange);
  margin-bottom: 8px;
  line-height: 1.6;
}
.article-body strong { color: var(--cream); font-weight: 700; }
.blog-collapse-btn {
  background: none;
  border: 1px solid rgba(193,123,47,0.3);
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--orange);
  cursor: none;
  margin-top: 16px;
  transition: all 0.2s;
}
.blog-collapse-btn:hover {
  background: rgba(193,123,47,0.1);
  border-color: var(--orange);
}

/* COMING SOON CARDS */
.blog-card--soon {
  position: relative;
  opacity: 0.6;
}
.blog-card--soon:hover { opacity: 0.85; }
.soon-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--white-dim);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .blog-announcement {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .announce-badge { justify-self: center; }
}

.blog-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--orange);
  transition: letter-spacing 0.2s;
}
.blog-link:hover { letter-spacing: 0.25em; }

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 120px 80px;
  background: var(--black);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual {
  display: flex;
  justify-content: center;
}
.about-logo-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo {
  width: 200px; height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: cardFloat 6s ease-in-out infinite;
  border-radius: 16px;
  background: var(--cream);
  padding: 12px;
}
.about-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193,123,47,0.2);
  animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 { width: 220px; height: 220px; animation-delay: 0s; }
.ring-2 { width: 260px; height: 260px; animation-delay: 0.5s; border-color: rgba(193,123,47,0.12); }
.ring-3 { width: 300px; height: 300px; animation-delay: 1s; border-color: rgba(193,123,47,0.06); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.6; }
}

.about-body {
  font-size: 17px;
  color: var(--white-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--cream);
  padding: 8px 16px;
  border: 1px solid rgba(237,232,223,0.12);
  background: rgba(237,232,223,0.04);
  transition: all 0.2s;
}
.value-item:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(193,123,47,0.2);
  padding: 80px 80px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--white-ghost);
}
.footer-logo-img {
  width: 100px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--cream);
  padding: 6px 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--white-dim);
  max-width: 240px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-links a, .footer-connect a {
  font-size: 14px;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-connect a:hover { color: var(--orange); }
.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-connect h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(240,237,230,0.25);
}
.footer-code { color: rgba(193,123,47,0.4); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; text-align: center; }
  .hero-visual { display: none; }
  .scroll-indicator { left: 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .bundles-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-card--wide { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .scroll-indicator { display: none; }
  .shop, .blog, .about { padding: 80px 24px; }
  .bundles-grid { grid-template-columns: 1fr; }
  .bundle-card--wide { grid-column: span 1; display: block; }
  .shop-cta-bar { flex-direction: column; gap: 20px; text-align: center; padding: 24px; }
  .footer { padding: 60px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
