/* ═══════════════════════════════════════════════════════════
   DENNOHXY CORPORATION — home.css
   dennohxy.ink · June 2026
═══════════════════════════════════════════════════════════ */

:root {
  --dn-deep:    #0B1F3A;
  --dn-exec:    #1F3864;
  --dn-gold:    #C9A84C;
  --dn-gold-lt: #E2C97A;
  --dn-graph:   #111827;
  --dn-steel:   #E5E7EB;
  --dn-porc:    #F8FAFC;
  --dn-mid:     #374151;
  --dn-muted:   #6B7280;
  --dn-trans:   0.6s cubic-bezier(0.16,1,0.3,1);
}

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dn-trans), transform var(--dn-trans);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── SHARED LAYOUT ──────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dn-gold);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--dn-exec);
}
.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.5rem;
  color: var(--dn-mid);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--dn-gold);
  color: var(--dn-deep);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--dn-gold-lt); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--dn-exec);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  border: 1.5px solid var(--dn-exec);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: var(--dn-exec); color: #fff; }

/* dark-bg overrides */
.hero-cta-row .btn-ghost,
.home-flywheel .btn-primary,
.home-contact .btn-ghost,
.jbc-cta {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
}
.hero-cta-row .btn-ghost:hover,
.home-flywheel .btn-primary:hover,
.home-contact .btn-ghost:hover,
.jbc-cta:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   §1 HERO
═══════════════════════════════════════════════════════════ */
.home-hero {
  background: var(--dn-deep);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(31,56,100,.55) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 420px; gap: 4rem; }
}
.hero-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dn-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--dn-gold);
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-headline .word-jp { color: var(--dn-gold); }
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.25rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-stat  { display: flex; flex-direction: column; gap: 0.2rem; }
.home-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--dn-gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-visual { display: none; }
@media (min-width: 1024px) {
  .hero-visual { display: flex; align-items: center; justify-content: center; }
}
.hero-visual svg { width: 400px; height: 400px; max-width: 100%; overflow: visible; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; opacity: 0.5;
  transition: opacity 0.2s;
}
.hero-scroll-cue:hover { opacity: 0.85; }
@keyframes home-scroll-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.scroll-dot { animation: home-scroll-bob 1.8s ease-in-out infinite; }
@keyframes orbit-rotate { to { transform: rotate(360deg); } }
.orbit-path { animation: orbit-rotate 36s linear infinite; transform-origin: 200px 200px; }
@media (prefers-reduced-motion: reduce) { .orbit-path, .scroll-dot { animation: none; } }

/* ═══════════════════════════════════════════════════════════
   §2 THESIS
═══════════════════════════════════════════════════════════ */
.home-thesis { background: var(--dn-porc); padding: 5rem 0; }
.home-thesis .section-heading { color: var(--dn-exec); }

.thesis-equation {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.625rem;
  margin: 2rem 0;
}
.eq-block {
  background: #fff;
  border: 1px solid var(--dn-steel);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 150px;
  flex: 1;
}
.eq-icon  { font-size: 1.75rem; }
.eq-label { font-size: 0.8125rem; font-weight: 700; color: var(--dn-exec); }
.eq-desc  { font-size: 0.75rem;   color: var(--dn-muted); line-height: 1.5; }
.eq-op {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dn-gold);
  display: flex;
  align-items: center;
  padding: 0 2px;
  flex-shrink: 0;
}
.eq-result {
  background: var(--dn-exec);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  flex: 1.5;
  min-width: 180px;
}
.eq-result-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dn-gold);
  line-height: 1.3;
}
.eq-result-sub { font-size: 0.75rem; color: rgba(255,255,255,.6); }
.thesis-body   { font-size: 1rem; color: var(--dn-mid); line-height: 1.8; max-width: 780px; }

/* ═══════════════════════════════════════════════════════════
   §3 VENTURES
═══════════════════════════════════════════════════════════ */
.home-ventures { background: #fff; padding: 5rem 0; }

.venture-card-new {
  background: #fff;
  border: 1px solid var(--dn-steel);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.venture-card-new::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--vc-color, var(--dn-gold));
}
.venture-card-new:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-2px);
  border-color: var(--vc-color, var(--dn-gold));
}
.vc-header {
  padding: 1.5rem 1.5rem 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.vc-icon {
  font-size: 1.75rem;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--vc-bg, #F1F5F9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vc-title-block { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.vc-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dn-graph);
}
.vc-full   { font-size: 0.75rem; color: var(--dn-muted); }
.vc-badge  {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  width: fit-content;
}
.vc-badge--active   { background: #DBEAFE; color: #1D4ED8; }
.vc-badge--live     { background: #DCFCE7; color: #166534; }
.vc-badge--pilot    { background: #FEF3C7; color: #D97706; }
.vc-badge--seed     { background: var(--dn-steel); color: var(--dn-muted); }
.vc-link {
  font-size: 1.25rem;
  color: var(--vc-color, var(--dn-gold));
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
  margin-top: 4px;
  transition: transform 0.15s;
}
.vc-link:hover { transform: translateX(3px); }
.vc-desc {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.7;
  padding: 0.75rem 1.5rem 0.75rem;
}
.vc-exchange {
  margin: 0 1.5rem 0.75rem;
  background: var(--vc-bg, #F8FAFC);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: grid;
  gap: 0.4rem;
}
.vc-exchange-row {
  font-size: 0.75rem;
  color: var(--dn-mid);
  display: flex;
  gap: 0.5rem;
  line-height: 1.5;
}
.vc-ex-label {
  font-weight: 700;
  color: var(--vc-color, var(--dn-exec));
  white-space: nowrap;
  flex-shrink: 0;
}
.vc-meta {
  font-size: 0.6875rem;
  color: var(--dn-muted);
  padding: 0 1.5rem 1.25rem;
}
.ventures-cta { text-align: center; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════
   §4 FLYWHEEL
═══════════════════════════════════════════════════════════ */
.home-flywheel {
  background: var(--dn-deep);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}
.home-flywheel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.home-flywheel .section-inner { position: relative; z-index: 1; }
.home-flywheel .section-heading { color: #fff; }
.home-flywheel .section-label  { color: var(--dn-gold); }

.flywheel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .flywheel-inner { grid-template-columns: 1fr 480px; gap: 5rem; }
}
.flywheel-text { display: flex; flex-direction: column; }
.flywheel-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 1rem;
}
.flywheel-text .btn-primary { margin-top: 1rem; width: fit-content; }

.flywheel-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
#flywheel-svg { width: 100%; max-width: 480px; overflow: visible; }

@keyframes spin-cw  { to { transform: rotate(360deg);  } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
.fw-ring-outer { animation: spin-cw  45s linear infinite; transform-origin: 240px 240px; }
.fw-ring-inner { animation: spin-ccw 30s linear infinite; transform-origin: 240px 240px; }
@media (prefers-reduced-motion: reduce) {
  .fw-ring-outer, .fw-ring-inner { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   §5 CREDENTIALS
═══════════════════════════════════════════════════════════ */
.home-proof {
  background: var(--dn-graph);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.home-proof::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.home-proof .section-inner   { position: relative; z-index: 1; }
.home-proof .section-heading { color: #fff; }
.home-proof .section-sub     { color: rgba(255,255,255,.55); }

.proof-gates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px)  { .proof-gates { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .proof-gates { grid-template-columns: repeat(3, 1fr); } }

.proof-gate {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pg-label  { font-size: 0.875rem; font-weight: 700; color: var(--dn-gold); }
.pg-detail { font-size: 0.8rem;   color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── PALANTIR-STYLE FOUNDATION RAIL ─────────────────────── */
.palantir-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
  margin-top: 2rem;
}
.pal-loading {
  grid-column: 1/-1;
  padding: 2rem;
  color: rgba(255,255,255,.3);
  font-size: .875rem;
}
.pal-rail {
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
}
.pal-item {
  padding: .875rem 1.25rem;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background .15s, border-color .15s;
}
.pal-item:hover { background: rgba(255,255,255,.04); }
.pal-item.active {
  background: rgba(201,168,76,.07);
  border-left-color: var(--dn-gold);
}
.pal-item-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--dn-gold);
  margin-bottom: .4rem;
  opacity: 0;
  transition: opacity .2s;
}
.pal-item.active .pal-item-dot { opacity: 1; }
.pal-item-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  line-height: 1.4;
  transition: color .15s;
}
.pal-item.active .pal-item-label,
.pal-item:hover  .pal-item-label { color: #fff; }
.pal-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pc-block { display: none; flex-direction: column; gap: .75rem; }
.pc-block.active { display: flex; }
.pc-super {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dn-gold);
}
.pc-head {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.pc-body {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 520px;
}
.pc-note {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  border-left: 2px solid var(--dn-gold);
  padding-left: .875rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 480px;
  margin-top: .25rem;
}
@media (max-width: 640px) {
  .palantir-grid { grid-template-columns: 1fr; }
  .pal-rail {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .75rem;
    gap: .25rem;
  }
  .pal-item {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: .5rem .75rem;
    border-radius: 4px;
  }
  .pal-item.active { border-bottom-color: var(--dn-gold); }
  .pal-item-dot { display: none; }
  .pal-content { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   §6 JAPAN BRIDGE
═══════════════════════════════════════════════════════════ */
.home-japan { background: var(--dn-porc); padding: 5rem 0; }
.home-japan .section-heading { color: var(--dn-exec); }

.japan-bridge {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 860px) {
  .japan-bridge { grid-template-columns: 1fr auto 1fr; align-items: start; }
}
.japan-col { border-radius: 12px; overflow: hidden; }
.jcol-header {
  padding: 0.875rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.japan-col.ke .jcol-header { background: #166534; }
.japan-col.jp .jcol-header { background: var(--dn-exec); }
.jcol-list {
  list-style: none;
  margin: 0; padding: 1rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--dn-steel);
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.jcol-list li {
  font-size: 0.875rem;
  color: var(--dn-mid);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.jcol-list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 4px;
  font-size: 0.45rem;
  color: var(--dn-gold);
}
.japan-bridge-centre {
  background: linear-gradient(145deg, var(--dn-deep), var(--dn-exec));
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}
.jbc-logo      { font-size: 2rem; }
.jbc-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.55;
  max-width: 240px;
}
.jbc-cta {
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   §7 FOUNDER
═══════════════════════════════════════════════════════════ */
.home-founder { background: #fff; padding: 5rem 0; }
.home-founder .section-heading { color: var(--dn-exec); }

.founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .founder-inner { grid-template-columns: 280px 1fr; gap: 4rem; }
}
.founder-photo-wrap  { display: flex; justify-content: center; }
.founder-photo-placeholder {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--dn-deep), var(--dn-exec));
  border: 3px solid var(--dn-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dn-gold);
}
.founder-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--dn-exec);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.founder-body {
  font-size: 0.9375rem;
  color: var(--dn-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 600px;
}
.founder-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.5rem 0 1.75rem;
}
.founder-cap {
  background: var(--dn-porc);
  border: 1px solid var(--dn-steel);
  border-left: 3px solid var(--dn-gold);
  border-radius: 6px;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fcap-icon  { font-size: 1rem; }
.fcap-label { font-size: 0.75rem; font-weight: 700; color: var(--dn-exec); }

/* ═══════════════════════════════════════════════════════════
   §8 STAKEHOLDERS
═══════════════════════════════════════════════════════════ */
.home-stakeholders { background: var(--dn-porc); padding: 5rem 0; }
.home-stakeholders .section-heading { color: var(--dn-exec); }

.stakeholder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px)  { .stakeholder-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .stakeholder-grid { grid-template-columns: repeat(3, 1fr); } }

.sk-group {
  background: #fff;
  border: 1px solid var(--dn-steel);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sk-group-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dn-gold);
  margin-bottom: 0.5rem;
}
.sk-item {
  font-size: 0.875rem;
  color: var(--dn-exec);
  padding: 0.375rem 0;
  border-bottom: 1px solid #F1F5F9;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.15s;
}
.sk-item:last-child { border-bottom: none; }
.sk-item::before   { content: '→'; font-size: 0.75rem; opacity: 0.4; }
.sk-item:hover     { color: var(--dn-gold); }

/* ═══════════════════════════════════════════════════════════
   §9 KPIs
═══════════════════════════════════════════════════════════ */
.home-kpis { background: var(--dn-exec); padding: 4rem 0; }
.home-kpis .section-heading { color: #fff; }
.home-kpis .section-label   { color: rgba(201,168,76,.8); }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 768px)  { .kpi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .kpi-grid { grid-template-columns: repeat(6, 1fr); } }

.kpi-card {
  background: rgba(255,255,255,.04);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.kpi-card .home-stat-num { font-size: 2.5rem; }
.kpi-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   §10 NEWS
═══════════════════════════════════════════════════════════ */
.home-news { background: #fff; padding: 5rem 0; }
.home-news .section-heading { color: var(--dn-exec); }

.news-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: var(--dn-porc);
  border: 1px solid var(--dn-steel);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.news-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: var(--dn-gold);
}
.nc-date  { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dn-gold); }
.nc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dn-exec);
  line-height: 1.3;
  margin: 0;
}
.nc-body  { font-size: 0.875rem; color: var(--dn-mid); line-height: 1.7; flex: 1; }
.nc-link  { font-size: 0.8125rem; font-weight: 700; color: var(--dn-exec); text-decoration: none; margin-top: auto; transition: color 0.15s; }
.nc-link:hover { color: var(--dn-gold); }

/* ═══════════════════════════════════════════════════════════
   §11 CONTACT
═══════════════════════════════════════════════════════════ */
.home-contact {
  background: var(--dn-deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.home-contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.home-contact .section-inner   { position: relative; z-index: 1; }
.home-contact .section-heading { color: #fff; }
.home-contact .section-label   { color: var(--dn-gold); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) { .contact-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.contact-direct { display: flex; flex-direction: column; gap: 0.5rem; }
.cd-item        { font-size: 0.875rem; color: rgba(255,255,255,.6); display: flex; gap: 0.5rem; }
.cd-label       { font-weight: 700; color: var(--dn-gold); white-space: nowrap; }
.cd-item a      { color: rgba(255,255,255,.7); transition: color 0.15s; text-decoration: none; }
.cd-item a:hover { color: #fff; }

.contact-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
}
.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) { .hf-row { grid-template-columns: 1fr; } }
.hf-field { margin-bottom: 1rem; }
.hf-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dn-graph);
  margin-bottom: 0.35rem;
}
.hf-input, .hf-select, .hf-textarea {
  width: 100%;
  border: 1.5px solid var(--dn-steel);
  border-radius: 6px;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--dn-graph);
  background: #fff;
  font-family: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hf-input:focus, .hf-select:focus, .hf-textarea:focus {
  border-color: var(--dn-exec);
  box-shadow: 0 0 0 3px rgba(31,56,100,.1);
}
.hf-textarea { resize: vertical; min-height: 110px; }
.hf-consent-row {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  margin: 0.75rem 0 1rem;
}
.hf-checkbox     { margin-top: 2px; flex-shrink: 0; accent-color: var(--dn-exec); }
.hf-consent-label { font-size: 0.75rem; color: var(--dn-muted); line-height: 1.55; }
.hf-flash { padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; display: none; margin-bottom: 1rem; }
.hf-flash.success { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; display: block; }
.hf-flash.error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; display: block; }
.hf-submit {
  width: 100%;
  background: var(--dn-exec);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}
.hf-submit:hover    { background: var(--dn-deep); transform: translateY(-1px); }
.hf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.home-footer { background: var(--dn-graph); color: rgba(255,255,255,.65); padding: 4rem 0 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand   { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,.5); margin-top: 0.25rem; }
.footer-reg     { font-size: 0.75rem;  color: rgba(255,255,255,.3); }
.footer-col     { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-col-head {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dn-gold);
  margin-bottom: 0.75rem;
}
.footer-col a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.5);
  padding: 0.2rem 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-base {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.footer-base span { font-size: 0.75rem; color: rgba(255,255,255,.3); }
.footer-base a    { font-size: 0.75rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color 0.2s; }
.footer-base a:hover { color: rgba(255,255,255,.7); }
