/* ═══════════════════════════════════════════════════════════════
   YILUFA STUDIO · 模板工坊门户
   风格：暗黑科技 + 金线点缀 + Linear/Vercel 排版功底
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* 颜色系统 */
  --void:        #000000;
  --bg:          #050505;
  --bg-soft:     #0A0A0A;
  --bg-card:     #0F0F10;
  --bg-card-hi:  #14141A;

  --line:        rgba(255, 255, 255, 0.08);
  --line-hi:     rgba(255, 255, 255, 0.14);
  --line-gold:   rgba(232, 200, 121, 0.22);

  --txt:         #F4F4F6;
  --txt-mute:    #888892;
  --txt-deep:    #4A4A52;

  --gold:        #E8C879;
  --gold-bright: #FFD86B;
  --gold-deep:   #C9A961;
  --gold-glow:   rgba(255, 216, 107, 0.35);

  --accent:      #4DA8FF;   /* 链接强调 */
  --emerald:     #7DD3C0;
  --red:         #E53935;

  /* 字体 */
  --font-en:  'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --font-cn:  'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono:'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* 间距系统（8 倍数） */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* 圆角 */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* 动效曲线 */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html, body {
  background: var(--void);
  color: var(--txt);
  font-family: var(--font-cn);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

::selection { background: var(--gold); color: var(--void); }

/* ═════════ 背景层 ═════════ */
.bg-grid, .bg-glow, .bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.bg-glow {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(232, 200, 121, 0.10), transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 40%, rgba(77, 168, 255, 0.05), transparent 70%),
    radial-gradient(ellipse 40% 30% at 90% 60%, rgba(232, 200, 121, 0.04), transparent 70%);
}
.bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* ═════════ 通用 ═════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-head {
  max-width: 920px;
  margin: 0 auto var(--sp-16);
  text-align: center;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  background: rgba(232, 200, 121, 0.04);
  margin-bottom: var(--sp-6);
}
.section-eyebrow .sep {
  color: var(--txt-deep);
  font-style: normal;
  font-weight: 300;
}
.section-title {
  font-family: var(--font-cn);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--txt);
  margin-bottom: var(--sp-4);
}
.section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--txt-mute);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 640px;
  margin: 0 auto;
}

/* 滚动揭示动画 */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═════════ NAV ═════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 56px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--txt);
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--txt-mute);
}
.nav-links a:not(.nav-cta):hover { color: var(--txt); }
.nav-cta {
  padding: 8px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  color: var(--gold) !important;
  background: rgba(232, 200, 121, 0.06);
  transition: all 0.25s var(--ease-out);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--void) !important;
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ═════════ HERO ═════════ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 32px 80px;
  text-align: center;
}
.hero-inner { max-width: 1100px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--txt-mute);
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  margin-bottom: var(--sp-8);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: dotPulse 1.6s ease-in-out infinite;
}
.hero-eyebrow .sep {
  color: var(--txt-deep);
  font-style: normal;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-cn);
  font-size: clamp(48px, 7.2vw, 96px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--txt);
  margin-bottom: var(--sp-8);
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--txt-mute);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-12);
  line-height: 1.65;
}
.hero-sub-en {
  font-family: var(--font-en);
  font-size: 0.85em;
  color: var(--txt-deep);
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-20);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-cn);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--void);
  box-shadow:
    0 0 0 1px var(--gold),
    0 8px 28px rgba(232, 200, 121, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--gold-bright),
    0 16px 40px rgba(232, 200, 121, 0.45);
}
.btn-primary .arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn-primary:hover .arrow { transform: translateY(2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt);
  border-color: var(--line-hi);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.hero-stats {
  display: inline-flex;
  gap: var(--sp-12);
  align-items: center;
  padding: 24px 56px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-en);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-unit {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  font-family: var(--font-cn);
  font-size: 12px;
  color: var(--txt-mute);
  letter-spacing: 0.2em;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--txt-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hint-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--txt-deep), transparent);
  animation: hintLine 2.2s ease-in-out infinite;
}
@keyframes hintLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ═════════ TEMPLATES ═════════ */
.templates {
  position: relative;
  z-index: 2;
  padding: var(--sp-32) 56px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.tpl-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.tpl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(232, 200, 121, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.tpl-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow:
    0 0 0 1px var(--line-gold),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(232, 200, 121, 0.06);
}
.tpl-card:hover::before { opacity: 1; }

.tpl-preview {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.tpl-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  pointer-events: none;
}
.preview-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* 金桌 preview */
.tpl-preview-golden {
  background:
    radial-gradient(circle at center, rgba(229, 57, 53, 0.15), transparent 60%),
    linear-gradient(135deg, #0A0A0A 0%, #1A0F08 100%);
}
.preview-level {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(180deg, #FF5252, #B71C1C);
  border-radius: 100px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 0 24px rgba(229, 57, 53, 0.5);
}
.preview-countdown {
  font-family: var(--font-en);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
.preview-meta {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-bright);
  font-weight: 600;
}

/* Mall preview */
.tpl-preview-mall {
  background:
    radial-gradient(circle at center, rgba(232, 200, 121, 0.10), transparent 60%),
    linear-gradient(135deg, #0A0A0A 0%, #1A1408 100%);
}
.preview-tag-row {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 14px;
}
.ptag {
  font-family: var(--font-cn);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(232, 200, 121, 0.12);
  color: var(--gold);
  border: 1px solid var(--line-gold);
  font-weight: 500;
}
.preview-bignum {
  font-family: var(--font-en);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 30px var(--gold-glow);
}

/* Health preview */
.tpl-preview-health {
  background:
    radial-gradient(circle at center, rgba(125, 211, 192, 0.10), transparent 60%),
    linear-gradient(135deg, #0A0A0A 0%, #081A14 100%);
}
.preview-pulse {
  width: 200px;
  margin: 0 auto 14px;
  opacity: 0.9;
}
.tpl-preview-health .preview-bignum {
  color: #fff;
  font-family: var(--font-cn);
  font-weight: 700;
  letter-spacing: 4px;
  text-shadow: 0 0 30px rgba(125, 211, 192, 0.3);
  font-size: clamp(28px, 3.5vw, 40px);
}
.tpl-preview-health .preview-meta {
  color: var(--emerald);
}

.tpl-info {
  padding: var(--sp-6) var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--line);
}
.tpl-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.tpl-name {
  font-family: var(--font-cn);
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.tpl-desc {
  font-size: 14px;
  color: var(--txt-mute);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
  flex: 1;
}
.tpl-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--line);
}
.tpl-price {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.tpl-action {
  font-size: 13px;
  color: var(--txt-mute);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s var(--ease-out);
}
.tpl-card:hover .tpl-action {
  color: var(--gold);
}

/* ═════════ VALUES ═════════ */
.values {
  position: relative;
  z-index: 2;
  padding: var(--sp-32) 56px;
  max-width: 1400px;
  margin: 0 auto;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-item {
  padding: var(--sp-8) var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.value-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transition: width 0.5s var(--ease-out);
}
.value-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-hi);
  background: var(--bg-card-hi);
}
.value-item:hover::after { width: 100%; }
.value-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.value-title {
  font-family: var(--font-cn);
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}
.value-desc {
  font-size: 14px;
  color: var(--txt-mute);
  line-height: 1.7;
}

/* ═════════ TESTIMONIALS ═════════ */
.testimonials {
  position: relative;
  z-index: 2;
  padding: var(--sp-32) 56px;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: var(--sp-8);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Inter', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
}
.testimonial:hover {
  border-color: var(--line-hi);
  transform: translateY(-2px);
}
.t-quote {
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt);
  margin: var(--sp-6) 0 var(--sp-8);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.t-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.t-name {
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.t-role {
  font-size: 12px;
  color: var(--txt-mute);
  letter-spacing: 0.05em;
}

/* ═════════ CONTACT ═════════ */
.contact {
  position: relative;
  z-index: 2;
  padding: var(--sp-32) 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-inner {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-hi) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-xl);
  padding: var(--sp-20) var(--sp-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 200, 121, 0.08), transparent 60%);
  pointer-events: none;
}
.contact-title {
  font-family: var(--font-cn);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--txt);
  margin: var(--sp-4) 0;
  position: relative;
  z-index: 2;
}
.contact-sub {
  font-size: 17px;
  color: var(--txt-mute);
  margin-bottom: var(--sp-12);
  position: relative;
  z-index: 2;
}
.contact-grid {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: var(--sp-16);
  align-items: stretch;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.qr-frame {
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-gold);
  box-shadow: 0 0 30px rgba(232, 200, 121, 0.15);
}
.qr-img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center 60%;  /* 截掉头像，留二维码主体 */
  border-radius: 4px;
}
.contact-card-hint {
  font-size: 12px;
  color: var(--txt-mute);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 4px;
}
.contact-divider {
  background: var(--line);
  width: 1px;
  align-self: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  justify-content: center;
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--txt-deep);
  text-transform: uppercase;
  font-weight: 500;
}
.info-value {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--txt);
  font-weight: 500;
  letter-spacing: 0.02em;
}
a.info-value:hover { color: var(--gold); }

/* ═════════ FOOTER ═════════ */
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-8) 56px;
  border-top: 1px solid var(--line);
  margin-top: var(--sp-16);
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-brand {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.footer-tag {
  font-size: 12px;
  color: var(--txt-mute);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.footer-right {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--txt-deep);
  letter-spacing: 0.1em;
}

/* ═════════ RESPONSIVE ═════════ */
@media (max-width: 1100px) {
  .nav { padding: 16px 32px; }
  .nav-links { gap: 24px; font-size: 13px; }
  .templates, .values, .testimonials, .contact { padding: 96px 32px; }
  .footer { padding: 32px; }
  .template-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; padding: 20px 36px; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-brand { font-size: 15px; }
  .hero { padding: 100px 20px 60px; }
  .templates, .values, .testimonials, .contact { padding: 80px 20px; }
  .template-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn { justify-content: center; }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }
  .stat-divider { width: 50%; height: 1px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .contact-divider { width: 50%; height: 1px; justify-self: center; }
  .contact-inner { padding: var(--sp-12) var(--sp-6); }
  .footer { padding: 24px 20px; text-align: center; justify-content: center; }
  .footer-right { width: 100%; text-align: center; }
}
