/* ============================================================
   JWALATH ENERGY — AmunRa Website
   Premium CSS — White, fluid, editorial design
   ============================================================ */

:root {
  --crimson: #C8350A;
  --amber: #E8821A;
  --gold: #F5C842;
  --deep: #1A0800;
  --ink: #0F0F0F;
  --mid: #4A4A4A;
  --muted: #888888;
  --border: #E8E4DF;
  --surface: #FAFAF8;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --max-w: 1200px;
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--crimson);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200, 53, 10, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-smooth), width 0.3s, height 0.3s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 6px; height: 6px; background: var(--amber); }
body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 56px; height: 56px; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Reveal Animations ── */
.reveal, .reveal-slow, .reveal-line {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-slow { transition-duration: 1.2s; }
.reveal-line { display: inline-block; overflow: hidden; }
.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ── Typography ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--crimson);
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--crimson);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }
.section-header .section-sub { margin: 0 auto; }
.body-large { font-size: 1.2rem; line-height: 1.8; color: var(--ink); margin-bottom: 20px; }
.body-regular { font-size: 1rem; line-height: 1.8; color: var(--mid); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: #fff;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover { background: #a82c08; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,53,10,0.35); }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}
.btn-ghost:hover { border-color: var(--crimson); color: var(--crimson); transform: translateY(-2px); }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 6px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.nav-logo-text span { color: var(--crimson); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--crimson);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #a82c08 !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 32px 40px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--crimson); padding-left: 8px; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  padding-top: var(--nav-h);
}
#energy-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  flex: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 28px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accent-line {
  color: var(--crimson);
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-logo-wrap {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-logo-img {
  width: clamp(180px, 22vw, 340px);
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(200, 53, 10, 0.25));
  animation: hero-float 6s ease-in-out infinite;
  border-radius: 20px;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(232, 130, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--crimson);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ══════════════════════════════════
   PRODUCT
══════════════════════════════════ */
.product {
  padding: 120px 0;
  background: var(--surface);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--white);
  padding: 44px 36px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--crimson), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.08); }
.product-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  color: var(--crimson);
  margin-bottom: 24px;
}
.card-icon svg { width: 100%; height: 100%; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  border: 1px solid rgba(232,130,26,0.3);
  padding: 4px 10px;
  display: inline-block;
  border-radius: 1px;
}

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 60px 0;
  overflow-x: auto;
}
.flow-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 140px;
}
.flow-layer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}
.flow-nodes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flow-node {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-spring);
  cursor: default;
}
.flow-node:hover {
  border-color: var(--crimson);
  box-shadow: 0 8px 24px rgba(200,53,10,0.12);
  transform: translateY(-3px);
}
.flow-node span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.flow-node small {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}
.node-icon {
  width: 38px; height: 38px;
  color: var(--crimson);
}
.node-icon-lg { width: 48px; height: 48px; }
.node-icon svg { width: 100%; height: 100%; }
.node-ai {
  border-color: var(--crimson);
  background: rgba(200,53,10,0.03);
  min-width: 148px;
  padding: 24px 20px;
}
.node-pulse {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: 8px; right: 8px;
  animation: pulse-node 2s ease-in-out infinite;
}
.node-pulse-lg {
  background: var(--crimson);
  width: 10px; height: 10px;
}
@keyframes pulse-node {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}
.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  min-width: 80px;
}
.flow-arrow svg {
  width: 80px; height: 24px;
  color: var(--border);
}
.arrow-path.animated {
  animation: draw-arrow 1s var(--ease-out) forwards;
}
@keyframes draw-arrow {
  to { stroke-dashoffset: 0; }
}
.flow-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}
/* Mobile flow */
.flow-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 40px 0;
}
.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
}
.flow-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(200,53,10,0.12);
  line-height: 1;
  min-width: 56px;
}
.flow-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.flow-step-content p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}
.flow-connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--border), transparent);
  margin-left: 27px;
}

/* ══════════════════════════════════
   SEGMENTS
══════════════════════════════════ */
.segments {
  padding: 120px 0;
  background: var(--surface);
}
.segment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.segment-card {
  padding: 52px 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring);
}
.segment-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.segment-premium::after { background: linear-gradient(to right, #C8350A, #E8821A); }
.segment-utility::after { background: linear-gradient(to right, #E8821A, #F5C842); }
.segment-public::after { background: linear-gradient(to right, #F5C842, #C8350A); }
.segment-card:hover { transform: translateY(-4px); }
.segment-card:hover::after { transform: scaleX(1); }
.segment-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(200,53,10,0.06);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
}
.segment-icon {
  width: 56px; height: 56px;
  color: var(--crimson);
  margin-bottom: 24px;
}
.segment-icon svg { width: 100%; height: 100%; }
.segment-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.segment-card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.segment-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.segment-points li {
  font-size: 0.85rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
}
.segment-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
}

/* ══════════════════════════════════
   IP SECTION
══════════════════════════════════ */
.ip-section {
  padding: 120px 0;
  background: var(--ink);
}
.ip-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.ip-section .section-label { color: var(--amber); }
.ip-section .section-label::before { background: var(--amber); }
.ip-section .section-title { color: var(--white); }
.ip-section .section-title em { color: var(--gold); }
.ip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.ip-badge svg { width: 14px; height: 14px; }
.ip-right .body-large { color: rgba(255,255,255,0.85); }
.ip-note {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  border-radius: 2px;
  margin: 28px 0;
}
.ip-note-icon {
  font-size: 1.2rem;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1.5;
}
.ip-note p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.ip-items { display: flex; flex-direction: column; gap: 20px; }
.ip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ip-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
}
.ip-dot.active { border-color: var(--amber); background: rgba(245,200,66,0.2); }
.ip-dot.active::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(245,200,66,0.3);
  animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
}
.ip-item strong { font-size: 0.95rem; color: var(--white); display: block; margin-bottom: 4px; }
.ip-item span { font-size: 0.83rem; color: rgba(255,255,255,0.45); font-family: var(--font-mono); }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact { padding: 120px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--crimson);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item strong { font-size: 0.78rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); display: block; margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--mid); line-height: 1.7; }
.contact-item a { color: var(--ink); text-decoration: none; display: block; }
.contact-item a:hover { color: var(--crimson); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(200,53,10,0.08);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  gap: 16px;
}
.form-success.show { display: flex; }
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(200,53,10,0.08);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.form-success p { color: var(--mid); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.footer-tagline { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--crimson); }
.footer-bottom { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(136,136,136,0.7); max-width: 600px; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-logo-wrap { right: 30px; }
}

@media (max-width: 900px) {
  .segment-cards { grid-template-columns: 1fr; gap: 2px; }
  .ip-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 60px 20px 100px; }
  .hero-logo-wrap {
    position: relative;
    right: auto; top: auto; transform: none;
    text-align: center;
    padding: 0 20px 60px;
  }
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-logo-img { width: 200px; margin: 0 auto; display: block; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .flow-diagram { display: none; }
  .flow-mobile { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .btn-primary, .btn-ghost, input, select, textarea { cursor: auto; }
  .stat-row { gap: 28px; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ── Selection ── */
::selection { background: rgba(200,53,10,0.15); color: var(--ink); }
