/* ═══════════════════════════════════════
   ELITE HYBRID CATS — Dark Cyberpunk
   ═══════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500&display=swap');

:root {
  --font-d: 'Clash Display', sans-serif;
  --font-b: 'Satoshi', 'Inter', sans-serif;

  --bg:       #07080d;
  --bg2:      #0c0d14;
  --surface:  #111218;
  --surface2: #161820;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.13);

  --text:     #e8e9f2;
  --muted:    #7a7c8a;
  --faint:    #3a3c4a;

  --cyan:     #00d4ff;
  --magenta:  #ff2d78;
  --purple:   #9b5fff;
  --orange:   #ff8c42;
  --gold:     #ffc844;

  --ease: cubic-bezier(0.16,1,0.3,1);
  --t: 220ms var(--ease);

  --max: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --sec: clamp(60px, 8vw, 120px);
}

*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-d); line-height: 1.05; text-wrap: balance; }
ul { list-style: none; }

/* ── SECTION HEADERS ── */
.section-head { text-align: center; margin-bottom: clamp(40px,5vw,64px); }
.section-pre  { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.section-title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--text); }
.section-sub  { margin-top: 16px; font-size: clamp(0.9rem,1.2vw,1.05rem); color: var(--muted); max-width: 540px; margin-inline: auto; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t), box-shadow var(--t);
}
.nav--scrolled {
  background: rgba(7,8,13,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text);
  transition: color var(--t);
}
.nav__logo:hover { color: var(--cyan); }
.nav__links { display: flex; align-items: center; gap: clamp(16px,3vw,36px); }
.nav__links a { font-size: 0.88rem; color: var(--muted); letter-spacing: 0.03em; transition: color var(--t); }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  border: 1px solid var(--cyan) !important; color: var(--cyan) !important;
  padding: 0.45em 1.1em; border-radius: 4px;
}
.nav__cta:hover { background: rgba(0,212,255,0.08) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all var(--t); }

/* ── HERO IMG ── */
.hero-img {
  position: relative; width: 100%; height: 100svh; min-height: 500px; overflow: hidden;
}
.hero-img__pic {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-img__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,8,13,0) 50%, rgba(7,8,13,0.6) 100%);
}
.hero-img__btn {
  position: absolute; bottom: clamp(36px,5vw,64px); left: var(--pad);
  display: inline-flex; align-items: center;
  padding: 0.78em 1.8em;
  background: var(--magenta); color: #fff;
  font-family: var(--font-d); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 28px rgba(255,45,120,0.45);
  transition: all var(--t);
}
.hero-img__btn:hover { background: #ff4d8f; transform: translateY(-2px); }
.hero-img__scroll {
  position: absolute; bottom: clamp(36px,5vw,64px); right: var(--pad);
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all var(--t);
}
.hero-img__scroll:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── STATS ── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: var(--max); margin: 0 auto; padding: 24px var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px,4vw,48px); flex-wrap: wrap;
}
.stats__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stats__num  { font-family: var(--font-d); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--cyan); line-height: 1; }
.stats__label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.stats__div  { width: 1px; height: 40px; background: var(--border); }

/* ── KITTENS ── */
.kittens { padding: var(--sec) var(--pad); max-width: var(--max); margin: 0 auto; }
.kittens__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(16px,2vw,28px); align-items: start;
}

/* KITTEN CARD */
.kcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.kcard:hover { transform: translateY(-6px); border-color: var(--border2); }
.kcard--silver:hover { box-shadow: 0 20px 60px rgba(0,212,255,0.18); }
.kcard--golden:hover { box-shadow: 0 20px 60px rgba(255,140,66,0.18); }
.kcard--hp:hover     { box-shadow: 0 20px 60px rgba(255,45,120,0.18); }

.kcard--featured { border-color: rgba(155,95,255,0.35); transform: translateY(-10px); }
.kcard--featured:hover { transform: translateY(-16px); }
.kcard__featured-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
}

.kcard__img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.kcard__img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s var(--ease); }
.kcard:hover .kcard__img { transform: scale(1.04); }

.kcard__glow { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; pointer-events: none; }
.kcard__glow--cyan    { background: linear-gradient(to top, rgba(0,212,255,0.5), transparent); }
.kcard__glow--orange  { background: linear-gradient(to top, rgba(255,140,66,0.5), transparent); }
.kcard__glow--magenta { background: linear-gradient(to top, rgba(255,45,120,0.5), transparent); }

.kcard__badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-d); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28em 0.75em; border-radius: 4px;
  background: var(--cyan); color: #07080d;
}
.kcard__badge--gold { background: var(--orange); color: #07080d; }
.kcard__badge--hp   { background: var(--magenta); color: #fff; }

.kcard__body { padding: clamp(16px,2vw,24px); }
.kcard__gen  { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.kcard__name { font-size: clamp(1.3rem,2vw,1.8rem); font-weight: 700; margin-bottom: 12px; }
.kcard--silver .kcard__name { color: var(--cyan); }
.kcard--golden .kcard__name { color: var(--orange); }
.kcard--hp     .kcard__name { color: var(--magenta); }

.kcard__desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.kcard__traits { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.kcard__traits li {
  font-size: 0.8rem; color: var(--muted); padding-left: 16px; position: relative;
}
.kcard__traits li::before {
  content:''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
}
.kcard--silver .kcard__traits li::before { background: var(--cyan); }
.kcard--golden .kcard__traits li::before { background: var(--orange); }
.kcard--hp     .kcard__traits li::before { background: var(--magenta); }

.kcard__price {
  font-family: var(--font-d); font-size: clamp(1.1rem,1.5vw,1.4rem); font-weight: 700;
  margin-bottom: 14px;
}
.kcard--silver .kcard__price { color: var(--cyan); }
.kcard--golden .kcard__price { color: var(--gold); }
.kcard--hp     .kcard__price { color: var(--magenta); }

.kcard__btn {
  display: block; width: 100%; text-align: center;
  padding: 0.7em 1em;
  border: 1px solid var(--border2); border-radius: 6px;
  font-family: var(--font-d); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  transition: all var(--t);
}
.kcard__btn:hover { border-color: var(--cyan); color: var(--cyan); }
.kcard__btn--accent { border-color: var(--purple); color: var(--purple); }
.kcard__btn--accent:hover { background: rgba(155,95,255,0.08); color: #c79fff; border-color: var(--purple); }

/* ── BREED ── */
.breed {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: var(--sec) var(--pad);
}
.breed__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
}
.breed__text .section-pre,
.breed__text .section-title { text-align: left; }
.breed__text .section-title { margin-bottom: 20px; }
.breed__body { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

.breed__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.breed__col-title {
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.breed__list--good .breed__col-title { color: var(--cyan); border-color: rgba(0,212,255,0.2); }
.breed__list--plain .breed__col-title { color: var(--muted); }
.breed__list { display: flex; flex-direction: column; gap: 8px; }
.breed__list li { font-size: 0.83rem; color: var(--muted); padding-left: 14px; position: relative; }
.breed__list li::before { content:''; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; }
.breed__list--good li::before { background: var(--cyan); }
.breed__list--plain li::before { background: var(--faint); }

.breed__visual { position: relative; }
.breed__photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: 16px;
}
.breed__ring {
  position: absolute; inset: -1px; border-radius: 16px;
  border: 1px solid rgba(0,212,255,0.2); pointer-events: none;
}
.breed__stat {
  position: absolute; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; display: flex; flex-direction: column; gap: 3px;
  backdrop-filter: blur(8px);
}
.breed__stat--1 { top: 20px; left: -20px; }
.breed__stat--2 { bottom: 40px; right: -16px; }
.breed__stat-n { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--cyan); }
.breed__stat-l { font-size: 0.72rem; color: var(--faint); line-height: 1.3; }

/* ── GENERATIONS ── */
.gen-section { padding: var(--sec) var(--pad); max-width: var(--max); margin: 0 auto; }
.gen-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: clamp(12px,1.5vw,20px);
}
.gen-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.gen-card:hover { border-color: var(--border2); }

.gen-card__top {
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--border);
}
.gen-card__top--f1  { background: linear-gradient(135deg, rgba(255,140,66,0.15), transparent); }
.gen-card__top--f2  { background: linear-gradient(135deg, rgba(155,95,255,0.15), transparent); }
.gen-card__top--f3  { background: linear-gradient(135deg, rgba(0,212,255,0.15), transparent); }
.gen-card__top--hp  { background: linear-gradient(135deg, rgba(255,45,120,0.2), transparent); }

.gen-card__label {
  font-family: var(--font-d); font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.gen-card__top--f1 .gen-card__label { color: var(--orange); }
.gen-card__top--f2 .gen-card__label { color: var(--purple); }
.gen-card__top--f3 .gen-card__label { color: var(--cyan); }
.gen-card__top--hp .gen-card__label { color: var(--magenta); }

.gen-card__blood { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }

.gen-card__body { padding: 16px 20px 20px; }
.gen-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.gen-card__desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.gen-card__price { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; }
.gen-card__top--f1 ~ .gen-card__body .gen-card__price { color: var(--gold); }
.gen-card__top--f2 ~ .gen-card__body .gen-card__price { color: var(--purple); }
.gen-card__top--f3 ~ .gen-card__body .gen-card__price { color: var(--cyan); }
.gen-card__top--hp ~ .gen-card__body .gen-card__price { color: var(--magenta); }

/* ── GALLERY ── */
.gallery { padding: var(--sec) var(--pad); max-width: var(--max); margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: clamp(8px,1vw,14px);
}
.gallery__item { overflow: hidden; border-radius: 10px; background: var(--surface); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item { aspect-ratio: 1/1; }
.gallery__item--tall { aspect-ratio: auto; }
.gallery__item--wide { aspect-ratio: 16/7; }

/* ── CONTACT ── */
.contact {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: var(--sec) var(--pad);
}
.contact__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: start;
}
.contact__left .section-pre,
.contact__left .section-title { text-align: left; }
.contact__left .section-title { margin-bottom: 16px; }
.contact__sub { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.contact__channels { display: flex; flex-direction: column; gap: 12px; }
.contact__ch {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--muted); padding: 0.65em 1.2em;
  border: 1px solid var(--border2); border-radius: 6px; width: fit-content;
  transition: all var(--t);
}
.contact__ch:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.05); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form__group   { display: flex; flex-direction: column; gap: 6px; }
.form__label   { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.form__input {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.8em 1em;
  font-family: var(--font-b); font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none; appearance: none;
}
.form__input::placeholder { color: var(--faint); }
.form__input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7c8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form__textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  padding: 0.85em 1em; background: var(--cyan); color: #07080d;
  font-family: var(--font-d); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 6px; cursor: pointer;
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
  transition: all var(--t);
}
.btn-submit:hover { background: #33dcff; box-shadow: 0 0 50px rgba(0,212,255,0.5); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 32px var(--pad); }
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--muted);
}
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.82rem; color: var(--faint); transition: color var(--t); }
.footer__links a:hover { color: var(--text); }
.footer__copy { font-size: 0.75rem; color: var(--faint); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .gen-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .kittens__grid { grid-template-columns: 1fr 1fr; }
  .kcard--featured { transform: none; }
  .breed__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .breed__stat--1 { left: 8px; }
  .breed__stat--2 { right: 8px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; position: fixed;
    inset: 0; top: 58px; background: rgba(7,8,13,0.97);
    backdrop-filter: blur(16px); padding: 40px var(--pad); gap: 24px;
    z-index: 99; align-items: flex-start;
  }
  .nav__links.open a { font-size: 1.5rem; font-family: var(--font-d); font-weight: 600; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .kittens__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .gen-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .stats__div { display: none; }
}
