/* ============================================
   HUGINN — Dedicated Page Styles
   ============================================ */

/* --- Hero --- */
.h-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--content-padding) 4rem;
  overflow: hidden;
}

.h-hero__aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.h-hero__aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.h-hero__aurora-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: h-aurora-drift 12s ease-in-out infinite alternate;
}

.h-hero__aurora-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d97706, transparent 70%);
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: h-aurora-drift 15s ease-in-out infinite alternate-reverse;
}

.h-hero__aurora-blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: 40%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation: h-aurora-drift 18s ease-in-out infinite alternate;
}

@keyframes h-aurora-drift {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-40%, -60%) scale(1.2); }
}

.h-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.h-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.h-hero__title-gradient {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.h-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.h-hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-huginn);
}

.h-hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.h-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-card);
}

/* --- Active nav link --- */
.nav__link--active {
  color: var(--color-huginn) !important;
}

/* --- Positioning --- */
.h-positioning {
  padding: var(--section-padding) var(--content-padding);
  background: var(--bg-secondary);
}

.h-positioning__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.h-positioning__text {
  max-width: 700px;
  margin-bottom: 3rem;
}

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

.h-pos-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s var(--ease-out);
}

.h-pos-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
}

.h-pos-card__icon {
  color: var(--color-huginn);
  margin-bottom: 1rem;
}

.h-pos-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.h-pos-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Four Pillars --- */
.h-pillars {
  padding: var(--section-padding) var(--content-padding);
}

.h-pillars__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.h-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.h-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.h-pillar-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.h-pillar-card__score {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.h-pillar-ring {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.h-pillar-ring__bg {
  fill: none;
  stroke: var(--border-card);
  stroke-width: 2.5;
}

.h-pillar-ring__fill {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dasharray 1s var(--ease-out);
}

.h-pillar-card--rf .h-pillar-ring__fill { stroke: #3b82f6; }
.h-pillar-card--network .h-pillar-ring__fill { stroke: #10b981; }
.h-pillar-card--security .h-pillar-ring__fill { stroke: #ef4444; }
.h-pillar-card--guest .h-pillar-ring__fill { stroke: #f59e0b; }

.h-pillar-card--rf:hover { border-color: rgba(59, 130, 246, 0.3); }
.h-pillar-card--network:hover { border-color: rgba(16, 185, 129, 0.3); }
.h-pillar-card--security:hover { border-color: rgba(239, 68, 68, 0.3); }
.h-pillar-card--guest:hover { border-color: rgba(245, 158, 11, 0.3); }

.h-pillar-card__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.h-pillar-card--rf .h-pillar-card__number { color: #3b82f6; }
.h-pillar-card--network .h-pillar-card__number { color: #10b981; }
.h-pillar-card--security .h-pillar-card__number { color: #ef4444; }
.h-pillar-card--guest .h-pillar-card__number { color: #f59e0b; }

.h-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.h-pillar-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.h-pillar-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.h-pillar-card__metrics span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  color: var(--text-tertiary);
}

/* --- Modules --- */
.h-module {
  padding: var(--section-padding) var(--content-padding);
}

.h-module--alt {
  background: var(--bg-secondary);
}

.h-module__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.h-module__header {
  margin-bottom: 3rem;
}

.h-module__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.h-module__icon--ai { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.h-module__icon--wifi { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.h-module__icon--network { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.h-module__icon--inventory { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.h-module__icon--security { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.h-module__icon--traffic { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.h-module__icon--guest { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.h-module__icon--auto { background: rgba(99, 102, 241, 0.15); color: #818cf8; }

.h-module__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.h-module__content--reverse {
  direction: rtl;
}

.h-module__content--reverse > * {
  direction: ltr;
}

.h-module__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.h-feature {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.h-feature:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-card);
}

.h-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.h-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Value coloring --- */
.h-val--good { color: #10b981; }
.h-val--warn { color: #f59e0b; }
.h-val--bad { color: #ef4444; }

/* --- Chat Mockup --- */
.h-chat-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-chat-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-size: 0.85rem;
}

.h-chat-mockup__persona {
  font-weight: 600;
  color: var(--color-huginn);
}

.h-chat-mockup__site {
  color: var(--text-tertiary);
}

.h-chat-mockup__msg {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.7;
}

.h-chat-mockup__msg--user {
  background: rgba(245, 158, 11, 0.06);
  border-bottom: 1px solid var(--border-card);
  color: var(--text-primary);
}

.h-chat-mockup__msg--ai {
  color: var(--text-secondary);
}

.h-chat-mockup__msg--ai p {
  margin-bottom: 0.5rem;
}

.h-chat-mockup__msg--ai ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.h-chat-mockup__msg--ai li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.h-chat-mockup__msg--ai li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-tertiary);
}

/* --- AP Mockup --- */
.h-ap-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-ap-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.h-ap-mockup__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-card);
}

.h-ap-stat {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--border-card);
}

.h-ap-stat:last-child { border-right: none; }

.h-ap-stat__label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.h-ap-stat__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.h-ap-mockup__clients {
  padding: 0.5rem 0;
}

.h-ap-client {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.h-ap-client:last-child { border-bottom: none; }

.h-ap-mockup__alert {
  padding: 0.75rem 1.25rem;
  background: rgba(245, 158, 11, 0.08);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  font-size: 0.8rem;
  color: var(--color-huginn);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Vendor Strip --- */
.h-vendor-strip {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.h-vendor-strip__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.h-vendor-strip__items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.h-vendor-strip__items span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

/* --- Topology Mockup --- */
.h-topo-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-topo-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.h-topo-mockup__map {
  position: relative;
  height: 280px;
  padding: 1rem;
}

.h-topo-node {
  position: absolute;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid var(--border-card);
  z-index: 2;
}

.h-topo-node span {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
}

.h-topo-node small {
  display: block;
  color: var(--text-tertiary);
  font-size: 0.65rem;
}

.h-topo-node--router {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.h-topo-node--switch {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.h-topo-node--ap {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: #a78bfa;
}

.h-topo-node--fault {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
  animation: h-fault-pulse 2s ease-in-out infinite;
}

@keyframes h-fault-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
  50% { box-shadow: 0 0 12px 4px rgba(239, 68, 68, 0.2); }
}

.h-topo-line {
  position: absolute;
  height: 1px;
  background: var(--border-card);
  z-index: 1;
}

.h-topo-line--1 { top: 32%; left: 20%; width: 30%; transform: rotate(20deg); }
.h-topo-line--2 { top: 28%; left: 40%; width: 20%; }
.h-topo-line--3 { top: 32%; left: 55%; width: 28%; transform: rotate(-18deg); }

.h-topo-mockup__legend {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-card);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.h-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.h-dot--green { background: #10b981; }
.h-dot--red { background: #ef4444; }
.h-dot--blue { background: #3b82f6; }

/* --- Inventory Mockup --- */
.h-inventory-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-inventory-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.h-inv-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.h-inv-row--header {
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.02);
}

/* --- Compliance Mockup --- */
.h-compliance-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-compliance-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.h-compliance-section {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
}

.h-compliance-section h5 {
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.h-compliance-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}

.h-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.h-check--pass {
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid #10b981;
}

.h-check--fail {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
}

.h-check--warn {
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid #f59e0b;
}

.h-compliance-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* --- Traffic Mockup --- */
.h-traffic-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-traffic-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.h-traffic-bars {
  padding: 1rem 1.25rem;
}

.h-traffic-bar {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.8rem;
}

.h-traffic-bar__label {
  color: var(--text-secondary);
}

.h-traffic-bar__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.h-traffic-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 3px;
}

.h-traffic-bar__fill--alert {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.h-traffic-bar__val {
  text-align: right;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.h-traffic-bar--alert .h-traffic-bar__label {
  color: #ef4444;
  font-weight: 600;
}

.h-traffic-alert {
  padding: 0.75rem 1.25rem;
  background: rgba(239, 68, 68, 0.08);
  border-top: 1px solid rgba(239, 68, 68, 0.15);
  font-size: 0.8rem;
  color: #f87171;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Blast Radius Mockup --- */
.h-blast-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-blast-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(239, 68, 68, 0.15);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.05);
}

.h-blast-mockup__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
}

.h-blast-stat {
  text-align: center;
}

.h-blast-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.h-blast-stat__label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h-blast-mockup__rooms {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-card);
}

.h-blast-mockup__action {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(16, 185, 129, 0.05);
}

.h-blast-mockup__action strong {
  color: #10b981;
}

/* --- Timeline Mockup --- */
.h-timeline-mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-timeline-mockup__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.h-timeline-event {
  display: grid;
  grid-template-columns: 70px 16px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.h-timeline-event:last-child { border-bottom: none; }

.h-timeline-time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-tertiary);
  padding-top: 0.1rem;
}

.h-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.2rem;
}

.h-timeline-dot--red { background: #ef4444; }
.h-timeline-dot--amber { background: #f59e0b; }
.h-timeline-dot--blue { background: #3b82f6; }
.h-timeline-dot--green { background: #10b981; }

.h-timeline-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Platform Features Grid --- */
.h-platform {
  padding: var(--section-padding) var(--content-padding);
}

.h-platform__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.h-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.h-plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s var(--ease-out);
}

.h-plat-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-3px);
}

.h-plat-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.h-plat-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* --- Pricing --- */
.h-pricing {
  padding: var(--section-padding) var(--content-padding);
  background: var(--bg-secondary);
}

.h-pricing__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

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

.h-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.h-price-card:hover {
  transform: translateY(-4px);
}

.h-price-card--featured {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.04);
}

.h-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.h-price-card__tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.h-price-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-huginn);
  margin-bottom: 0.5rem;
}

.h-price-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

.h-price-card__desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.h-price-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.h-price-card__features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.h-price-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.3);
  border: 1.5px solid var(--color-huginn);
}

/* --- Pricing Footer --- */
.h-pricing-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-card);
}

.h-pricing-note {
  margin-bottom: 2rem;
}

.h-pricing-note h4 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.h-pricing-note p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 800px;
}

.h-pricing-extras {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.h-pricing-extra {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.h-pricing-extra strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-huginn);
}

.h-pricing-extra span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* --- Comparison Table --- */
.h-comparison {
  padding: var(--section-padding) var(--content-padding);
}

.h-comparison__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.h-comparison-table {
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.h-comp-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.h-comp-row--header {
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.5rem;
}

.h-comp-row--total {
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: none;
  padding: 1rem 1.5rem;
}

/* --- Roadmap --- */
.h-roadmap {
  padding: var(--section-padding) var(--content-padding);
  background: var(--bg-secondary);
}

.h-roadmap__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.h-roadmap-timeline {
  position: relative;
  padding-left: 40px;
}

.h-roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-card);
}

.h-roadmap-phase {
  position: relative;
  padding-bottom: 2.5rem;
}

.h-roadmap-phase:last-child { padding-bottom: 0; }

.h-roadmap-phase__marker {
  position: absolute;
  left: -33px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--text-tertiary);
  z-index: 2;
}

.h-roadmap-phase--active .h-roadmap-phase__marker {
  background: var(--color-huginn);
  border-color: var(--color-huginn);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.h-roadmap-phase__content {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.5rem;
}

.h-roadmap-phase--active .h-roadmap-phase__content {
  border-color: rgba(245, 158, 11, 0.2);
}

.h-roadmap-phase__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-huginn);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.h-roadmap-phase__content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.5rem 0;
}

.h-roadmap-phase__content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.h-roadmap-phase__buyer {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .h-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .h-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .h-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .h-positioning__cards { grid-template-columns: 1fr; }
  .h-pillars__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .h-module__content,
  .h-module__content--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .h-platform-grid { grid-template-columns: 1fr; }
  .h-comp-row { grid-template-columns: 1fr 1fr; gap: 0.3rem; font-size: 0.75rem; }
  .h-comp-row--header { display: none; }
  .h-hero__stats { gap: 1rem; }
  .h-hero__stat-divider { display: none; }
  .h-ap-mockup__stats { grid-template-columns: repeat(2, 1fr); }
  .h-blast-mockup__body { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .h-hero__aurora-blob { animation: none; }
  .h-topo-node--fault { animation: none; }
}
