/* =========================================================
   Михаил Хугоян · Инвест-портал
   Aesthetic: Editorial Noir + Amber
   ========================================================= */

:root {
  /* Palette */
  --bg: #0E0E10;
  --bg-warm: #13110F;
  --surface: #17151A;
  --surface-2: #1C1A20;
  --border: #2A2630;
  --border-soft: #1F1C24;

  --ink: #F5EFE4;
  --ink-soft: #C9C1B0;
  --ink-mute: #8B8478;
  --ink-faint: #5A5448;

  --amber: #E8B43C;
  --amber-bright: #FFC76B;
  --amber-soft: #C9952A;
  --amber-glow: rgba(232, 180, 60, 0.18);

  --green: #6DE6A8;
  --green-soft: rgba(109, 230, 168, 0.14);

  /* Fonts */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Sizes */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-sm: 12px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--amber); color: #1a1505; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }

/* =========================================================
   Atmosphere — background grain, glow, grid
   ========================================================= */

.atmosphere {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
}

.atmosphere__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.atmosphere__glow--1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(232,180,60,0.18), transparent 70%);
}
.atmosphere__glow--2 {
  width: 600px; height: 600px;
  top: 40%; left: -200px;
  background: radial-gradient(circle, rgba(232,180,60,0.06), transparent 70%);
}

.atmosphere__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 239, 228, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 228, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

.atmosphere__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.93 0 0 0 0 0.85 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}

.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
}

.nav__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--amber);
  color: #1A1505;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  border-radius: 9px;
  font-family: var(--f-display);
}

.nav__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
}

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.nav__cta:hover {
  background: var(--amber);
  color: #1a1505;
  border-color: var(--amber);
  transform: translateX(2px);
}

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* =========================================================
   Buttons & shared atoms
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 18px 28px; font-size: 15.5px; }

.btn--primary {
  background: var(--amber);
  color: #1A1505;
}
.btn--primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px var(--amber-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-family: var(--f-mono);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  text-transform: lowercase;
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232,180,60,0.18);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,180,60,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(232,180,60,0.08); }
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-mute);
  display: inline-block;
}
.dot--live {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(109, 230, 168, 0.15);
}

/* =========================================================
   Layout / sections
   ========================================================= */

.section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}

.section__head { max-width: 760px; margin-bottom: 64px; }
.section__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section__title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.section__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 580px;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 73px);
  padding: clamp(40px, 8vh, 90px) clamp(20px, 4vw, 56px) 60px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex; flex-direction: column;
  justify-content: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  padding: 30px 0;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(48px, 7.8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 28px 0 36px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}
.hero__title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 40px;
}
.hero__sub strong {
  color: var(--amber);
  font-weight: 500;
  font-family: var(--f-mono);
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.hero__meta {
  display: flex; flex-wrap: wrap;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.hero__meta > div {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__meta-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__meta-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* Deal card */
.hero__card { position: relative; }

.dealcard {
  position: relative;
  background: linear-gradient(180deg, #1B1822 0%, #131017 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}
.dealcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.dealcard::after {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  pointer-events: none;
}

.dealcard__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.dealcard__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dealcard__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(232, 180, 60, 0.12);
  color: var(--amber);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.dealcard__amount {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--f-display);
  margin-bottom: 8px;
  line-height: 1;
}
.dealcard__num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.dealcard__num .thin { font-weight: 200; }
.dealcard__currency {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--amber);
  font-style: italic;
}

.dealcard__use {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.dealcard__div {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 0 0 22px;
}

.dealcard__terms {
  display: flex; flex-direction: column; gap: 14px;
  margin: 0 0 24px;
}
.dealcard__terms div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px;
}
.dealcard__terms dt {
  font-size: 13px;
  color: var(--ink-mute);
}
.dealcard__terms dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  text-align: right;
  font-family: var(--f-mono);
}
.dealcard__terms strong {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--f-mono);
}

.dealcard__foot {
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  font-size: 12.5px;
  color: var(--ink-soft);
}

.hero__scroll {
  display: flex; align-items: center; gap: 14px;
  margin-top: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scroll svg { color: var(--ink-faint); }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__meta { gap: 24px; }
}

/* =========================================================
   Metrics row
   ========================================================= */

.metrics {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28,26,32,0.4), rgba(20,18,24,0.2));
}
.metrics__row {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric {
  padding: 50px clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.metric:last-child { border-right: 0; }

.metric__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.metric__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 350;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.metric__num strong {
  color: var(--amber);
  font-weight: 400;
}
.metric__num em {
  font-size: 0.55em;
  color: var(--ink-mute);
  font-style: normal;
  margin-left: 4px;
}

.metric__hint {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .metrics__row { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(1), .metric:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 520px) {
  .metrics__row { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--border); }
  .metric:last-child { border-bottom: 0; }
}

/* =========================================================
   Problem / Solution
   ========================================================= */

.prosol__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pane {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.pane--solution {
  background: linear-gradient(180deg, rgba(232, 180, 60, 0.04), transparent);
  border-color: rgba(232, 180, 60, 0.25);
}

.pane__tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 5px 11px;
  background: rgba(160, 150, 130, 0.08);
  color: var(--ink-mute);
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pane__tag--accent {
  background: rgba(232, 180, 60, 0.12);
  color: var(--amber);
}

.pane__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 24px;
}
.pane__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}
.pane__num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-faint);
  padding-top: 4px;
}
.pane__list h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pane__list p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .prosol__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Economy — metaphor + cards
   ========================================================= */

.metaphor {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 56px clamp(20px, 4vw, 60px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.metaphor::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.metaphor__from, .metaphor__to {
  display: flex; flex-direction: column; gap: 8px;
}
.metaphor__to { text-align: right; }

.metaphor__label, .metaphor__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.metaphor__label { color: var(--ink-faint); }
.metaphor__sub { color: var(--ink-mute); }

.metaphor__big {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 350;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.metaphor__big em {
  font-style: normal;
  color: var(--amber);
}

.metaphor__arrow {
  position: relative;
  width: clamp(120px, 16vw, 220px);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.metaphor__arrow svg { width: 100%; height: 60px; }

.metaphor__mult {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.metaphor__mult strong {
  color: var(--amber);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 760px) {
  .metaphor { grid-template-columns: 1fr; text-align: center; }
  .metaphor__to { text-align: center; }
  .metaphor__arrow { transform: rotate(90deg); margin: 12px auto; }
}

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

.econcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: all .3s var(--ease);
  position: relative;
}
.econcard:hover {
  transform: translateY(-4px);
  border-color: rgba(232,180,60,0.35);
}
.econcard--highlight {
  background: linear-gradient(180deg, rgba(232,180,60,0.06), var(--surface));
  border-color: rgba(232,180,60,0.3);
}

.econcard__head {
  display: flex; align-items: center; gap: 12px;
}
.econcard__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(232, 180, 60, 0.12);
  color: var(--amber);
  border-radius: 10px;
}
.econcard__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--f-mono);
}

.econcard__price {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 350;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}
.econcard__price strong {
  color: var(--ink);
  font-weight: 500;
}

.econcard__roi {
  display: flex; align-items: baseline; gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.econcard__roi-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.econcard__roi-label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

.econcard__note {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .econcards { grid-template-columns: 1fr; }
}

/* =========================================================
   Market — big stats + insight
   ========================================================= */

.market__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.bigstat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all .3s var(--ease);
}
.bigstat:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
}

.bigstat__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.bigstat__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 350;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.bigstat__num em {
  font-size: 0.4em;
  font-style: normal;
  color: var(--ink-mute);
  font-family: var(--f-body);
  font-weight: 400;
  margin-left: 4px;
}

.bigstat__delta {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--amber);
  padding: 4px 10px;
  background: rgba(232,180,60,0.08);
  border-radius: 999px;
  align-self: flex-start;
}

.bigstat__src {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-top: auto;
}

@media (max-width: 980px) {
  .market__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .market__grid { grid-template-columns: 1fr; }
}

.insight {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(232,180,60,0.08), transparent 60%);
  border: 1px solid rgba(232,180,60,0.25);
  border-radius: var(--radius);
}
.insight__mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--amber);
  color: #1a1505;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  border-radius: 50%;
  font-style: italic;
}
.insight__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 10px;
}
.insight__text {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink);
  line-height: 1.55;
}
.insight__text strong {
  color: var(--ink);
  font-weight: 500;
}
.insight__hl {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(232,180,60,0.32) 60%);
  padding: 0 2px;
  font-weight: 500;
}

/* =========================================================
   Portfolio — bento
   ========================================================= */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.bento__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  grid-column: span 2;
  transition: all .35s var(--ease);
  text-decoration: none;
  color: inherit;
}
.bento__card--xl { grid-column: span 4; grid-row: span 2; }
.bento__card--flag { grid-column: span 2; grid-row: span 2; }
.bento__card--accent {
  background: linear-gradient(180deg, rgba(232,180,60,0.08), var(--surface));
  border-color: rgba(232,180,60,0.25);
}
.bento__card--more {
  background: transparent;
  border-style: dashed;
}

.bento__card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}
.bento__card:hover .bento__arrow { color: var(--amber); transform: translate(2px, -2px); }

.bento__pin {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--amber);
  color: #1a1505;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}

.bento__top {
  display: flex; justify-content: space-between; align-items: center;
}
.bento__tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(160,150,130,0.08);
  color: var(--ink-mute);
  border-radius: 999px;
}
.bento__tag--money {
  background: var(--green-soft);
  color: var(--green);
}
.bento__tag--ai, .bento__tag--bet {
  background: rgba(232,180,60,0.12);
  color: var(--amber);
}
.bento__arrow {
  font-size: 18px;
  color: var(--ink-mute);
  transition: all .25s var(--ease);
}

.bento__body h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.bento__card--xl .bento__body h3 {
  font-size: clamp(28px, 3vw, 42px);
}
.bento__body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.bento__foot { margin-top: 12px; }
.bento__stats {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.bento__stats span {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bento__stats strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.02em;
  text-transform: none;
}

.bento__url {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.bento__more-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-style: italic;
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__card { grid-column: span 2; }
  .bento__card--xl { grid-column: span 4; grid-row: auto; }
  .bento__card--flag { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card,
  .bento__card--xl,
  .bento__card--flag { grid-column: span 1; }
}

/* =========================================================
   Deal full block
   ========================================================= */

.dealblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.dealblock::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.dealblock__col {
  padding: 48px 40px;
}
.dealblock__col--ask {
  border-right: 1px solid var(--border);
}
.dealblock__col--get {
  background: linear-gradient(135deg, rgba(232,180,60,0.06), transparent);
}

.dealblock__caption {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.dealblock__big {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--f-display);
  font-weight: 350;
  margin-bottom: 32px;
  line-height: 1;
}
.dealblock__big span {
  font-size: clamp(54px, 7vw, 96px);
  color: var(--ink);
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.dealblock__big em {
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--amber);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.dealblock__big--accent span { color: var(--amber); }
.dealblock__big--accent em { color: var(--ink-soft); }

.dealblock__what {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.dealblock__what strong {
  color: var(--ink);
  font-weight: 500;
}

.dealblock__terms {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.dealblock__terms li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.dealblock__terms li:last-child { border-bottom: 0; }
.dealblock__terms span {
  font-size: 13.5px;
  color: var(--ink-mute);
}
.dealblock__terms strong {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink);
  text-align: right;
}

.dealnote {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 22px 28px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}
.dealnote span {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  background: rgba(232,180,60,0.12);
  color: var(--amber);
  border-radius: 50%;
  font-style: italic;
}
.dealnote p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.dealnote p strong { color: var(--amber); font-weight: 500; }

@media (max-width: 880px) {
  .dealblock { grid-template-columns: 1fr; }
  .dealblock__col--ask { border-right: 0; border-bottom: 1px solid var(--border); }
  .dealblock__col { padding: 36px 28px; }
}

/* =========================================================
   Timeline
   ========================================================= */

.tl {
  position: relative;
  display: flex; flex-direction: column;
  gap: 36px;
}
.tl__line {
  position: absolute;
  top: 30px; bottom: 30px;
  left: 24px;
  width: 1px;
  background: linear-gradient(180deg, var(--amber), var(--border) 60%, transparent);
}

.tl__step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 28px;
  position: relative;
}

.tl__bubble {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  z-index: 2;
}
.tl__bubble--star {
  background: var(--amber);
  border-color: var(--amber);
  color: #1a1505;
  font-size: 22px;
  box-shadow: 0 0 0 4px rgba(232,180,60,0.18);
}

.tl__content {
  padding-bottom: 12px;
}
.tl__period {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 10px;
}
.tl__period--goal { color: var(--amber); }

.tl__content h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 10px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.tl__step--goal .tl__content h3 { color: var(--amber); font-style: italic; }

.tl__content p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 580px;
}

.tl__chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  font-family: var(--f-mono);
  font-size: 11.5px;
  padding: 5px 12px;
  background: rgba(160,150,130,0.08);
  border: 1px solid var(--border-soft);
  color: var(--ink-soft);
  border-radius: 999px;
}

/* =========================================================
   About
   ========================================================= */

.about__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.about__col--meta {
  position: sticky;
  top: 100px;
}

.avatar {
  position: relative;
  width: 130px; height: 130px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border-radius: 50%;
  margin: 24px 0;
  font-family: var(--f-display);
  font-size: 46px;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.03em;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.avatar__ring {
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(232,180,60,0.4);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.about__role {
  margin: 0 0 28px;
  color: var(--ink-mute);
  font-size: 14.5px;
}

.about__quick {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.about__quick li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--ink-mute);
}
.about__quick strong {
  color: var(--ink);
  font-family: var(--f-mono);
  font-weight: 500;
}

.about__quote {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 50px;
  position: relative;
  padding-left: 22px;
  border-left: 2px solid var(--amber);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.about__qmark {
  display: none;
}

.about__values, .about__check { margin-top: 40px; }
.about__values h3, .about__check h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
}

.values { display: flex; flex-wrap: wrap; gap: 10px; }
.value {
  font-family: var(--f-mono);
  font-size: 12.5px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-soft);
}

.about__check ol {
  margin: 0; padding: 0 0 0 22px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

@media (max-width: 880px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__col--meta { position: static; }
}

/* =========================================================
   Documents
   ========================================================= */

.docs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: all .3s var(--ease);
}
.doc:hover {
  background: var(--surface-2);
  border-color: var(--amber);
  transform: translateY(-3px);
}
.doc__head { display: flex; justify-content: space-between; align-items: center; }
.doc__fmt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: rgba(232,180,60,0.12);
  color: var(--amber);
  border-radius: 6px;
}
.doc__icon { color: var(--ink-mute); }
.doc h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 14px 0 4px;
  color: var(--ink);
}
.doc p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.doc__action {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--amber);
  margin-top: 18px;
  transition: transform .25s var(--ease);
}
.doc:hover .doc__action { transform: translateX(4px); }

@media (max-width: 880px) {
  .docs__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Contact
   ========================================================= */

.contact {
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--amber-glow), transparent 60%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  max-width: 720px;
}

.contact__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 350;
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.contact__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 560px;
}

.contact__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 60px;
}

.contact__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact__list li {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact__list a {
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.contact__list a:hover { color: var(--amber); }

@media (max-width: 680px) {
  .contact__list { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 36px clamp(20px, 4vw, 56px);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer__brand {
  display: flex; align-items: center; gap: 14px;
}
.footer__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--amber);
  color: #1a1505;
  font-family: var(--f-display);
  font-weight: 700;
  border-radius: 9px;
}
.footer__brand > div {
  display: flex; flex-direction: column; gap: 2px;
}
.footer__name {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
}
.footer__role {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.footer__legal {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

@media (max-width: 680px) {
  .footer__legal { align-items: flex-start; }
}

/* =========================================================
   Reveal animation
   ========================================================= */

/* Reveal only hides elements when JS is available */
body.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
body.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .atmosphere__glow,
  .avatar__ring,
  .badge__dot { animation: none; }
}
