/* =============================================
   KYLO CONSULTING — STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=JetBrains+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --bg: #080808;
  --bg-card: #0D0D0D;
  --bg-card-alt: #0B0B0B;
  --bg-card-deep: #090909;
  --border: #1F1F1F;
  --border-hover: #2E2E2E;
  --text-primary: #FFFFFF;
  --text-secondary: #888888;
  --text-muted: #D2D2D2;
  --text-dim: #555555;
  --text-nav: #D2D2D2;
  --accent: #00d97e;
  --accent-glow: rgba(0, 217, 126, 0.3);
  --accent-subtle: rgba(0, 217, 126, 0.06);

  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 999px;

  --section-pad: 120px 0;
  --container: 1200px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.08s; }
.reveal-delay-2.visible { transition-delay: 0.16s; }
.reveal-delay-3.visible { transition-delay: 0.24s; }
.reveal-delay-4.visible { transition-delay: 0.32s; }
.reveal-delay-5.visible { transition-delay: 0.40s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn--lg { font-size: 13px; padding: 12px 20px; }

.btn--primary {
  background: var(--text-primary);
  color: #080808;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 4px 22px rgba(255,255,255,0.1); }
.btn--primary:hover::after { left: 160%; }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}
.btn--ghost:hover { background: rgba(255,255,255,0.04); transform: translateY(-1px); }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement {
  background: #0B0B0B;
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideDown 0.5s var(--ease-out-expo) both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.announcement__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.announcement__text { font-size: 13px; color: #A8A8A8; }
.announcement__link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
  position: relative;
  transition: opacity 0.15s ease;
}
.announcement__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--text-primary);
  transition: width 0.25s ease;
}
.announcement__link:hover::after { width: 100%; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(8,8,8,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.96);
  border-bottom-color: #272727;
}

.navbar__left {
  display: flex; align-items: center; gap: 10px;
  width: 280px;
  padding-left: 2px;
}
.navbar__logo-box {
  width: 18px; height: 18px;
  background: #F3F3F3;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}
.navbar__logo-box:hover { transform: scale(1.12) rotate(-4deg); }
.navbar__logo-k {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: #080808; line-height: 1;
  margin-top: -1px;
}
.navbar__logo-name {
  font-size: 16px; font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.navbar__center {
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
.navbar__link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-nav);
  position: relative;
  transition: color 0.15s ease;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text-primary);
  transition: width 0.22s ease;
}
.navbar__link:hover,
.navbar__link.active { color: var(--text-primary); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__right {
  display: flex; align-items: center; justify-content: flex-end;
  width: 280px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.navbar__hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--text-primary);
  transition: all 0.25s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { display: flex; }
.mobile-nav.visible { opacity: 1; }
.mobile-nav__link {
  font-family: var(--font-mono);
  font-size: 22px; color: var(--text-primary);
  transition: color 0.15s ease, transform 0.2s ease;
}
.mobile-nav__link:hover { color: var(--text-secondary); transform: translateX(4px); }
.mobile-nav__close {
  position: absolute; top: 24px; right: 28px;
  font-size: 22px; color: var(--text-secondary);
  cursor: pointer; transition: color 0.15s ease, transform 0.2s ease;
  line-height: 1;
}
.mobile-nav__close:hover { color: var(--text-primary); transform: rotate(90deg); }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; overflow: hidden; background: var(--bg); }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(29,29,29,0.38) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29,29,29,0.38) 1px, transparent 1px);
  background-size: 120px 70px;
  pointer-events: none;
}
.hero-grid::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 60px 32px 84px;
  gap: 20px; text-align: center;
}

/* Trust badge */
.hero__trust {
  display: inline-flex; align-items: center; gap: 8px;
  background: #111111;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  animation: fadeInUp 0.6s var(--ease-out-expo) 0.1s both;
}
.hero__trust-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px 2px var(--accent-glow);
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 9px 2px rgba(0,217,126,0.3); }
  50%      { box-shadow: 0 0 18px 5px rgba(0,217,126,0.55); }
}
.hero__trust-text {
  font-family: var(--font-mono);
  font-size: 12px; color: #8A8A8A;
  letter-spacing: 0.05em;
}
.hero__trust-industry {
  color: #C8C8C8;
  display: inline-block;
  min-width: 128px;
}
.hero__trust-industry.swap-out {
  animation: trustOut 0.25s ease forwards;
}
.hero__trust-industry.swap-in {
  animation: trustIn 0.3s var(--ease-out-expo) forwards;
}
@keyframes trustOut {
  to { opacity: 0; transform: translateY(-7px); }
}
@keyframes trustIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Headline */
.hero__headline {
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 1060px;
}
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .line-inner {
  display: block;
  transform: translateY(105%);
  animation: slideUp 0.85s var(--ease-out-expo) both;
}
.hero__headline .line:nth-child(2) .line-inner { animation-delay: 0.14s; }
@keyframes slideUp { to { transform: translateY(0); } }

.hero__subhead {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400; line-height: 1.4;
  color: #9A9A9A;
  max-width: 880px;
  animation: fadeInUp 0.7s var(--ease-out-expo) 0.35s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__ctas {
  display: flex; align-items: center; gap: 14px;
  padding-top: 6px; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.7s var(--ease-out-expo) 0.5s both;
}

/* =============================================
   DASHBOARD PREVIEW
   ============================================= */
.dash-wrap {
  display: flex; justify-content: center;
  padding: 8px 20px 80px;
  background: var(--bg);
}
.dash-inner { width: 100%; max-width: 1130px; }
.dash-frame {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dash-frame img { width: 100%; height: auto; display: block; }

/* Hero dashboard zoom */
.dash-zoom-wrap {
  position: relative;
  clip-path: inset(0 round var(--radius-md));
  overflow: hidden;
  cursor: zoom-in;
  -webkit-user-select: none; user-select: none;
}
.dash-zoom-wrap.is-zoomed { cursor: zoom-out; }
.dash-zoom-img {
  width: 100%; height: auto; display: block;
  transform-origin: 50% 50%;
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
}
.dash-zoom-wrap.is-resetting .dash-zoom-img {
  transition: transform 0.45s var(--ease-out-expo);
}
.dash-zoom-hint {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  padding: 5px 11px 5px 8px;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px; color: #888;
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.dash-zoom-wrap.is-zoomed .dash-zoom-hint { opacity: 0; }
.dash-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  color: var(--text-dim);
}
.dash-placeholder svg { opacity: 0.4; }
.dash-placeholder__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================
   SECTIONS — SHARED
   ============================================= */
.section {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.section__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 26px;
}
.section__label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center;
}
.section__head {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}
.section__sub {
  font-size: 18px; font-weight: 400;
  color: var(--text-secondary); line-height: 1.4;
}
.section__note {
  font-size: 12px; color: var(--text-secondary);
  text-align: center;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works .section__head {
  font-size: clamp(28px, 3.5vw, 46px);
  text-align: center; max-width: 980px;
}
.how-it-works .section__sub { max-width: 980px; text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; width: 100%;
}
.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-md); padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--border);
  border-top-width: 2px;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--border-hover); box-shadow: 0 16px 48px rgba(0,0,0,0.55); }
.step-card:hover::before { opacity: 1; }
.step-card__phase {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.05em;
}
.step-card__title {
  font-size: 20px; font-weight: 600;
  line-height: 1.2; color: var(--text-primary);
}
.step-card__desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.48; flex: 1;
}

/* =============================================
   CASE STUDIES
   ============================================= */
.case-studies .section__head { font-size: clamp(32px, 4vw, 50px); text-align: center; }
.case-studies .section__sub { text-align: center; }

.stats-row {
  width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 18px 10px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.2s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.032); opacity: 0;
  transition: opacity 0.25s ease;
}
.stat-item:hover::after { opacity: 1; }
.stat-item__value {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 700; color: var(--text-primary); line-height: 1;
}
.stat-item__label { font-size: 11px; color: var(--text-secondary); text-align: center; }

.case-cards {
  display: flex; flex-direction: column;
  gap: 20px; width: 100%;
}
.case-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  padding: 0; gap: 0; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover { border-color: var(--border-hover); box-shadow: 0 20px 60px rgba(0,0,0,0.55); }

/* Full-width image */
.case-card__img {
  height: 440px; overflow: hidden; flex-shrink: 0;
  position: relative;
}
.case-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.case-card:hover .case-card__img img { transform: scale(1.025); }

/* Two-column body below image */
.case-card__body {
  display: grid; grid-template-columns: 1.5fr 1fr;
  border-top: 1px solid var(--border);
}
.case-card__body-left {
  padding: 36px 44px 44px;
  display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid var(--border);
}
.case-card__body-right {
  padding: 36px 44px 44px;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 32px;
}

.case-card__tags {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.08em;
}
.case-card__title {
  font-size: clamp(22px, 2.2vw, 30px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--text-primary);
}
.case-card__desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.55; max-width: 540px;
}

.case-card__outcome-text {
  font-size: clamp(18px, 2vw, 26px); font-weight: 600;
  line-height: 1.2; letter-spacing: -0.015em;
  color: var(--text-primary);
}
.case-card__outcome-sub {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.04em;
  margin-top: 8px;
}

.case-card__link {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-secondary);
  transition: color 0.15s ease, letter-spacing 0.25s ease;
  align-self: flex-start;
}
.case-card__link:hover { color: var(--text-primary); letter-spacing: 0.03em; }

/* =============================================
   TOKEN STANDARD
   ============================================= */
.token-standard .section__head {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02; text-align: center;
  letter-spacing: -0.03em; max-width: 1000px;
}
.token-standard .section__sub {
  text-align: center; max-width: 920px; line-height: 1.42;
}

.token-divider { width: 100%; height: 1px; background: var(--border); }

.token-rows { width: 100%; display: flex; flex-direction: column; }
.token-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  gap: 48px;
  transition: background 0.18s ease;
}
.token-row:hover { background: rgba(255,255,255,0.012); padding-left: 8px; padding-right: 8px; margin: 0 -8px; border-radius: 4px; }
.token-row__claim {
  font-size: clamp(15px, 1.6vw, 22px); font-weight: 600;
  line-height: 1.2; color: var(--text-primary);
  flex: 0 0 auto; max-width: 500px; min-width: 280px;
}
.token-row__detail {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.48; flex: 1;
  text-align: right; max-width: 620px;
}

/* =============================================
   CONTROL CENTER
   ============================================= */
.control-center .section__head {
  font-size: clamp(28px, 3.5vw, 50px);
  text-align: center; max-width: 980px;
}
.control-center .section__sub { text-align: center; max-width: 860px; }

.cc-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px; width: 100%;
}
.cc-shot-col { display: flex; flex-direction: column; gap: 10px; }
.cc-shot-frame {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  aspect-ratio: 36 / 23;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  transition: border-color 0.25s ease;
}
.cc-shot-frame:hover { border-color: var(--border-hover); }
.cc-shot-frame img { width: 100%; height: 100%; object-fit: cover; }
.cc-shot-placeholder {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--border); text-transform: uppercase;
}
.cc-shot-caption { font-size: 13px; color: var(--text-secondary); }

.cc-right { display: flex; flex-direction: column; gap: 10px; }
.cc-feature {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.cc-feature:hover { border-color: var(--border-hover); transform: translateX(3px); }
.cc-feature__key {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase;
}
.cc-feature__desc { font-size: 14px; line-height: 1.4; color: var(--text-primary); }

/* =============================================
   PRICING
   ============================================= */
.pricing .section__head { font-size: clamp(28px, 3.5vw, 50px); text-align: center; }
.pricing .section__sub { text-align: center; }
.pricing__wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }

.pricing__banner {
  width: 100%;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: border-color 0.22s ease;
}
.pricing__banner:hover { border-color: var(--border-hover); }
.pricing__banner-text { font-size: 14px; line-height: 1.48; max-width: 800px; }

.pricing__sprint {
  width: 100%;
  background: #0A0A0A; border: 1px solid var(--border);
  border-radius: 6px; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: border-color 0.22s ease;
}
.pricing__sprint:hover { border-color: var(--border-hover); }
.pricing__sprint-text { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
.pricing__sprint-link {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  white-space: nowrap; transition: opacity 0.15s ease;
}
.pricing__sprint-link:hover { opacity: 0.65; }

.pricing-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; width: 100%;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 430px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  opacity: 0; transition: opacity 0.25s ease;
}
.pricing-card:hover { border-color: var(--border-hover); box-shadow: 0 10px 36px rgba(0,0,0,0.4); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card__tag {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.08em;
}
.pricing-card__title {
  font-size: 30px; font-weight: 600;
  line-height: 1.14; letter-spacing: -0.02em;
}
.pricing-card__desc { font-size: 14px; line-height: 1.48; color: var(--text-secondary); }
.pricing-card__list { font-size: 13px; line-height: 1.7; white-space: pre-line; }
.pricing-card__fine {
  font-size: 12px; font-style: italic;
  color: var(--text-secondary); line-height: 1.45;
  margin-top: auto;
}
.pricing__fine { font-size: 12px; color: var(--text-secondary); text-align: center; max-width: 700px; }

/* =============================================
   FAQ
   ============================================= */
.faq .section__head { font-size: clamp(28px, 3.5vw, 48px); text-align: center; }
.faq .section__sub { text-align: center; }

.faq-list { width: 100%; max-width: 820px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item__question {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 16px 0; text-align: left; cursor: pointer;
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  color: var(--text-primary); line-height: 1.4;
  transition: color 0.15s ease;
}
.faq-item__question:hover { color: rgba(255,255,255,0.82); }
.faq-item__toggle {
  font-size: 20px; font-weight: 300; flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.32s ease, color 0.15s ease;
  line-height: 1; margin-top: 1px;
}
.faq-item.open .faq-item__toggle { transform: rotate(45deg); color: var(--text-primary); }
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-item__answer { max-height: 300px; }
.faq-item__answer-inner {
  padding: 0 0 18px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.48;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer__inner { display: flex; flex-direction: column; gap: 30px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; }

.footer__left { display: flex; flex-direction: column; gap: 12px; width: 320px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo-box {
  width: 18px; height: 18px; background: var(--text-primary);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.footer__logo-box:hover { transform: scale(1.1) rotate(-3deg); }
.footer__logo-k { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #080808; }
.footer__logo-name { font-family: var(--font-mono); font-size: 15px; font-weight: 600; }
.footer__tagline { font-size: 13px; color: var(--text-secondary); }
.footer__social { font-family: var(--font-mono); font-size: 12px; transition: opacity 0.15s ease; }
.footer__social:hover { opacity: 0.65; }

.footer__center { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer__nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer__nav-link {
  font-family: var(--font-mono); font-size: 12px;
  transition: color 0.15s ease;
}
.footer__nav-link:hover { color: var(--text-secondary); }

.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; width: 320px; }
.footer__ready { font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.footer__copy { font-size: 12px; color: var(--text-secondary); }
.footer__email { font-size: 12px; color: var(--text-secondary); transition: color 0.15s ease; }
.footer__email:hover { color: var(--text-primary); }


/* =============================================
   NAVBAR LOGO IMAGE
   ============================================= */
.navbar__logo-box img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 2px;
}

/* =============================================
   CONTROL CENTER — MAGNIFYING ZOOM
   ============================================= */
.cc-zoom-wrap {
  position: relative;
  /* clip-path handles rounding for GPU-composited children; border-radius alone
     can leak dark corners when will-change:transform is on the child layer */
  clip-path: inset(0 round var(--radius-md));
  overflow: hidden;
  width: 100%; height: 100%;
  cursor: zoom-in;
  -webkit-user-select: none; user-select: none;
}
.cc-zoom-wrap.is-zoomed { cursor: zoom-out; }

.cc-zoom-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform-origin: 50% 50%;
  transition: transform 0.12s ease;
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
}
.cc-zoom-wrap.is-resetting .cc-zoom-img {
  transition: transform 0.45s var(--ease-out-expo);
}

/* Hint badge — bottom right */
.cc-zoom-hint {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  padding: 5px 11px 5px 8px;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px; color: #888;
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cc-zoom-wrap.is-zoomed .cc-zoom-hint { opacity: 0; }

/* Edge vignette — shows there's more image to see */
.cc-zoom-wrap::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 40px rgba(8,8,8,0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.cc-zoom-wrap.is-zoomed::after { opacity: 1; }

/* Mobile expand button */
.cc-expand-btn {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10px; color: #C8C8C8;
  cursor: pointer; letter-spacing: 0.05em;
  display: none; align-items: center; gap: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.cc-expand-btn:hover { background: rgba(28,28,28,0.9); color: #fff; }
.cc-expand-btn svg { opacity: 0.7; }

/* Lightbox */
.cc-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cc-lightbox.open { display: flex; }
.cc-lightbox.visible { opacity: 1; }
.cc-lightbox__inner {
  position: relative;
  max-width: 1100px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.cc-lightbox__img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  touch-action: pinch-zoom;
  display: block;
}
.cc-lightbox__close {
  position: absolute; top: -40px; right: 0;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #aaa; cursor: pointer;
  transition: color 0.15s ease, transform 0.2s ease, background 0.15s ease;
}
.cc-lightbox__close:hover { color: #fff; transform: rotate(90deg); background: rgba(255,255,255,0.1); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-grid { grid-template-columns: 1fr; }
  .cc-right { display: grid; grid-template-columns: repeat(2, 1fr); }
  /* On smaller screens, swap zoom for expand button */
  .cc-zoom-hint { display: none; }
  .cc-expand-btn { display: flex; }
  .cc-zoom-wrap { cursor: default; }
  /* Disable hero zoom on touch/small screens */
  .dash-zoom-wrap { cursor: default; pointer-events: none; }
  .dash-zoom-hint { display: none; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px 0; }
  .navbar__center, .navbar__right { display: none; }
  .navbar__hamburger { display: flex; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

  .token-row { flex-direction: column; gap: 6px; }
  .token-row__claim { min-width: unset; max-width: unset; }
  .token-row__detail { text-align: left; max-width: unset; }

  .pricing__banner, .pricing__sprint { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pricing__banner .btn { align-self: flex-start; }

  .footer__top { flex-direction: column; gap: 40px; }
  .footer__left, .footer__right { width: 100%; }
  .footer__right { align-items: flex-start; }

  .navbar__left { width: auto; }

  .dash-wrap { padding: 8px 16px 56px; }

  .case-card__img { height: 320px; }
  .case-card__body { grid-template-columns: 1fr; }
  .case-card__body-left { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 28px 24px; }
  .case-card__body-right { padding: 24px 28px 28px; }
  .section__sub { font-size: 16px; }
}

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
  .case-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .cc-right { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__nav { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 14px; }

  .token-standard .section__head { letter-spacing: -0.025em; }
  .step-card__title { font-size: 18px; }
  .pricing-card__title { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { justify-content: center; }
  .announcement { padding: 10px 16px; }
  .announcement__inner { flex-wrap: wrap; justify-content: center; }
  .navbar { padding: 0 20px; }
  .hero__content { padding: 48px 20px 64px; }
  .dash-wrap { padding: 8px 12px 40px; }
  .container { padding: 0 16px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item__value { font-size: 28px; }

  .hero__trust { padding: 7px 12px; }
  .hero__trust-text { font-size: 11px; }
  .hero__trust-industry { min-width: 110px; }

  .case-card__img { height: 240px; }
  .case-card__body-left, .case-card__body-right { padding: 22px 20px; }
  .pricing-card { padding: 16px; min-height: unset; }
  .faq-item__question { font-size: 13px; }
}
