/* ============================================================
   Baiteras Sprendimai — styles.css
   Modern dark theme · glassmorphism · 3D & motion
   ============================================================ */

:root {
  --bg: #07070d;
  --bg-2: #0c0c18;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef0f8;
  --text-dim: #a2a6bd;
  --text-faint: #6f7391;

  --accent: #6c5ce7;
  --accent-2: #00e0d1;
  --accent-3: #ff4d8d;
  --grad: linear-gradient(120deg, #7b6cff 0%, #00e0d1 100%);
  --grad-hot: linear-gradient(120deg, #ff4d8d 0%, #7b6cff 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px -8px rgba(108, 92, 231, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Sora', 'Inter', sans-serif;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background gradient wash under the canvas */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1000px 600px at 15% -10%, rgba(108, 92, 231, 0.22), transparent 60%),
    radial-gradient(900px 700px at 100% 10%, rgba(0, 224, 209, 0.14), transparent 55%),
    radial-gradient(700px 700px at 50% 120%, rgba(255, 77, 141, 0.12), transparent 60%);
  z-index: -3;
  pointer-events: none;
}

#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: -2;
  opacity: 0.85;
  pointer-events: none;
}

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

.accent { color: var(--accent-2); }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; mix-blend-mode: difference; }
.cursor { width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,0.7); transform: translate(-50%, -50%); transition: width .25s var(--ease), height .25s var(--ease), background .25s; }
.cursor-dot { width: 6px; height: 6px; background: #fff; transform: translate(-50%, -50%); }
.cursor.is-hover { width: 56px; height: 56px; background: rgba(255,255,255,0.12); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 1000; box-shadow: var(--shadow-glow); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.9rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid transparent; border-radius: 100px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
  will-change: transform;
}
.btn--sm { --pad-y: 0.6rem; --pad-x: 1.1rem; font-size: 0.9rem; }
.btn--lg { --pad-y: 1.05rem; --pad-x: 2rem; font-size: 1.05rem; }
.btn--primary { background: var(--grad); color: #08080f; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 55px -6px rgba(0, 224, 209, 0.6); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: var(--surface-2); transform: translateY(-3px); border-color: var(--accent); }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 16, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.nav__logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad); color: #08080f; font-weight: 800; font-size: 0.85rem;
  box-shadow: var(--shadow-glow);
  transition: transform .4s var(--ease);
}
.nav__logo:hover .nav__logo-mark { transform: rotate(-8deg) scale(1.06); }
.nav__logo-text .accent { color: var(--accent-2); }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__link { color: var(--text-dim); font-weight: 500; font-size: 0.96rem; position: relative; transition: color .3s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); transition: width .3s var(--ease); border-radius: 2px; }
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Layout / sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 1rem; padding: 0.35rem 0.9rem; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); }
.section__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.02em; }
.section__lead { color: var(--text-dim); font-size: clamp(1rem, 2vw, 1.15rem); margin-top: 1.1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 7rem clamp(1rem, 4vw, 2rem) 4rem; }
.hero__inner { max-width: 900px; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.5rem 1.1rem; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); backdrop-filter: blur(10px); font-size: 0.9rem; color: var(--text-dim); margin-bottom: 1.8rem; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(0, 224, 209, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,224,209,0.5); } 70% { box-shadow: 0 0 0 12px rgba(0,224,209,0); } 100% { box-shadow: 0 0 0 0 rgba(0,224,209,0); } }
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.3rem, 7vw, 4.6rem); line-height: 1.04; letter-spacing: -0.03em; }
.type-target { color: var(--accent-2); border-right: 3px solid var(--accent-2); padding-right: 4px; animation: caret 0.9s step-end infinite; }
@keyframes caret { 50% { border-color: transparent; } }
.hero__subtitle { color: var(--text-dim); font-size: clamp(1.02rem, 2.2vw, 1.25rem); margin: 1.6rem auto 2.4rem; max-width: 640px; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__stats { display: flex; gap: clamp(1.5rem, 5vw, 3.5rem); justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num, .stat__suffix { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat { position: relative; }
.stat__suffix { position: absolute; right: -0.7em; top: 0; font-size: 1.4rem; }
.stat__label { color: var(--text-faint); font-size: 0.85rem; margin-top: 0.2rem; }
.hero__scroll-hint { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--text-faint); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.mouse { width: 24px; height: 38px; border: 2px solid var(--text-faint); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.mouse__wheel { width: 4px; height: 8px; background: var(--accent-2); border-radius: 2px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ---------- Glass utility ---------- */
.glass { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(16px) saturate(130%); }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.2rem; }
.card { position: relative; padding: 1.9rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; transform-style: preserve-3d; }
.card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(123,108,255,0.12), transparent 45%); opacity: 0; transition: opacity .4s; }
.card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__icon { font-size: 2.2rem; margin-bottom: 1rem; display: inline-block; transition: transform .4s var(--ease); transform: translateZ(30px); }
.card:hover .card__icon { transform: translateZ(45px) scale(1.12) rotate(-6deg); }
.card__title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; transform: translateZ(20px); }
.card__text { color: var(--text-dim); font-size: 0.95rem; transform: translateZ(12px); }
.card__glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(0,224,209,0.35), transparent 70%); filter: blur(30px); opacity: 0; transition: opacity .4s; pointer-events: none; left: var(--mx, 50%); top: var(--my, 50%); transform: translate(-50%, -50%); }
.card:hover .card__glow { opacity: 0.5; }
.inline-link { color: var(--accent-2); font-weight: 600; border-bottom: 1px solid rgba(0,224,209,0.4); transition: color .3s; }
.inline-link:hover { color: #fff; }

/* ---------- Filter tabs ---------- */
.filter { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter__btn {
  padding: 0.6rem 1.3rem; border-radius: 100px; font-weight: 600; font-size: 0.92rem;
  color: var(--text-dim); background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(10px); transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
}
.filter__btn:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-2px); }
.filter__btn.is-active { color: #08080f; background: var(--grad); border-color: transparent; box-shadow: var(--shadow-glow); }

/* Card enter animation on filter switch */
@keyframes cardIn { from { opacity: 0; transform: translateY(22px) scale(0.96); } to { opacity: 1; transform: none; } }
.card--anim { animation: cardIn 0.5s var(--ease) both; }

/* ---------- Config price badge ---------- */
.config__pricebadge {
  display: inline-block; margin-top: 1.2rem; padding: 0.7rem 1.2rem;
  border-radius: 100px; background: rgba(0,224,209,0.08);
  border: 1px solid rgba(0,224,209,0.28); color: var(--text-dim); font-size: 0.92rem;
}
.config__pricebadge strong { color: var(--accent-2); }

/* ---------- B2B / Shop banner ---------- */
.shopband-wrap { padding-top: 0; padding-bottom: 0; }
.shopband {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(2rem, 5vw, 3.2rem); border-radius: var(--radius); flex-wrap: wrap;
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(123,108,255,0.18), transparent 60%),
    radial-gradient(600px 200px at 100% 100%, rgba(0,224,209,0.15), transparent 60%),
    var(--surface);
  position: relative; overflow: hidden;
}
.shopband__text { max-width: 640px; }
.shopband__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0.4rem 0 0.8rem; }
.shopband__text p { color: var(--text-dim); font-size: 1.02rem; }
.shopband__text strong { color: var(--text); }
.shopband__cta { flex-shrink: 0; }

/* ---------- Footer shop link ---------- */
.footer__shop { display: inline-block; margin-top: 0.6rem; color: var(--accent-2); font-weight: 600; font-size: 0.92rem; transition: color .3s; }
.footer__shop:hover { color: #fff; }

/* ---------- Configurator ---------- */
.config__layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.6rem; align-items: start; }
.config__parts { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.6rem; }
.part-row { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); transition: border-color .3s, transform .3s var(--ease), background .3s; }
.part-row:hover { border-color: var(--border-strong); transform: translateX(4px); background: var(--surface-2); }
.part-row__icon { font-size: 1.6rem; text-align: center; }
.part-row__body { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.part-row__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); font-weight: 600; }
.part-row__label .req { color: var(--accent-3); }
.select-wrap { position: relative; }
.select-wrap::after { content: "▾"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--accent-2); pointer-events: none; font-size: 0.9rem; }
.part-select {
  width: 100%; appearance: none; -webkit-appearance: none;
  padding: 0.7rem 2.4rem 0.7rem 0.9rem;
  background: rgba(0,0,0,0.35); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; font-weight: 500;
  transition: border-color .3s, box-shadow .3s;
}
.part-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,92,231,0.25); }
.part-select option { background: #12121e; color: var(--text); }
.part-row__price, .part-row__hint { font-size: 0.82rem; color: var(--accent-2); font-weight: 600; margin-top: 0.15rem; min-height: 1em; }

/* Featured service card */
.card--feature { border-color: rgba(0,224,209,0.35); box-shadow: 0 0 30px -12px rgba(0,224,209,0.5); }
.card--feature::after { content: "Populiaru"; position: absolute; top: 12px; right: 12px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #08080f; background: var(--grad); padding: 0.25rem 0.6rem; border-radius: 100px; }

/* Best-price box (replaces total) */
.config__bestprice { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.1rem; border-radius: 12px; background: rgba(123,108,255,0.1); border: 1px solid rgba(123,108,255,0.3); margin-bottom: 1rem; }
.config__bestprice-icon { font-size: 1.5rem; line-height: 1; }
.config__bestprice strong { font-family: var(--font-head); display: block; font-size: 1.02rem; margin-bottom: 0.2rem; }
.config__bestprice p { font-size: 0.82rem; color: var(--text-dim); margin: 0; }

/* Baitera logo chips (light background so navy wordmark stays legible) */
.shopband__logo-chip, .footer__logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; padding: 0.5rem 0.8rem;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,0.5);
}
.shopband__logo-chip { margin-bottom: 1rem; }
.shopband__logo { height: 38px; width: auto; display: block; }
.footer__logo-chip { padding: 0.35rem 0.6rem; border-radius: 9px; }
.footer__logo-chip img { height: 26px; width: auto; display: block; }
.footer__shop { display: inline-flex; align-items: center; gap: 0.7rem; }

/* Contact block inside config */
.config__contact { padding: 1.8rem; }
.config__contact-title { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 0.3rem; }
.config__contact-sub { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 1.3rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field__label { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }
.field__input {
  padding: 0.8rem 1rem; background: rgba(0,0,0,0.3); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; transition: border-color .3s, box-shadow .3s;
  width: 100%; resize: vertical;
}
.field__input::placeholder { color: var(--text-faint); }
.field__input:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(0,224,209,0.18); }
.field__input.invalid { border-color: var(--accent-3); box-shadow: 0 0 0 3px rgba(255,77,141,0.18); }
.config__submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.config__disclaimer { font-size: 0.8rem; color: var(--text-faint); text-align: center; margin-top: 0.9rem; }

/* Summary */
.config__summary { padding: 1.6rem; position: sticky; top: 90px; }
.config__summary-title { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 1rem; }
.config__rig { display: grid; place-items: center; margin-bottom: 1.2rem; }
.config__rig-case {
  position: relative; width: 120px; height: 150px; border-radius: 14px;
  background: linear-gradient(160deg, #161626, #0c0c16);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 30px rgba(0,224,209,0.08), var(--shadow);
  overflow: hidden;
}
.config__rig-fan { position: absolute; width: 42px; height: 42px; border-radius: 50%; border: 3px solid rgba(0,224,209,0.5); left: 14px; }
.config__rig-fan::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; border-top: 3px solid var(--accent-2); border-left: 3px solid transparent; animation: spin 1.4s linear infinite; }
.config__rig-fan:nth-child(1) { top: 16px; }
.config__rig-fan:nth-child(2) { bottom: 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.config__rig-glow { position: absolute; right: 12px; top: 20px; bottom: 20px; width: 40px; border-radius: 8px; background: linear-gradient(180deg, rgba(123,108,255,0.6), rgba(255,77,141,0.5)); filter: blur(6px); animation: rgb-shift 4s linear infinite; }
@keyframes rgb-shift { 0%,100% { filter: blur(6px) hue-rotate(0deg); } 50% { filter: blur(9px) hue-rotate(180deg); } }
.config__list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }
.config__list li { display: flex; justify-content: space-between; gap: 0.8rem; font-size: 0.9rem; padding-bottom: 0.55rem; border-bottom: 1px dashed var(--border); }
.config__list li span:first-child { color: var(--text-dim); }
.config__list li span:last-child { color: var(--text); font-weight: 600; text-align: right; }
.config__list li.empty span { color: var(--text-faint); }
.config__compat { font-size: 0.86rem; border-radius: 10px; padding: 0.7rem 0.9rem; margin-bottom: 1rem; display: none; }
.config__compat.show { display: block; }
.config__compat.ok { background: rgba(0,224,209,0.1); border: 1px solid rgba(0,224,209,0.3); color: #7ff0e6; }
.config__compat.warn { background: rgba(255,77,141,0.1); border: 1px solid rgba(255,77,141,0.35); color: #ff9cc0; }
.config__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.6rem; border-top: 1px solid var(--border-strong); }
.config__total span { color: var(--text-dim); font-size: 0.9rem; }
.config__total strong { font-family: var(--font-head); font-size: 1.9rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.config__total-note { font-size: 0.78rem; color: var(--text-faint); margin: 0.5rem 0 1rem; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.about__content p { color: var(--text-dim); margin-top: 1rem; font-size: 1.05rem; }
.about__list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.about__list li { display: flex; align-items: center; gap: 0.7rem; }
.check { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border); color: var(--accent-2); font-weight: 700; flex-shrink: 0; }
.about__visual { display: grid; place-items: center; }
.orbit { position: relative; width: 300px; height: 300px; display: grid; place-items: center; }
.orbit__core { width: 90px; height: 90px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: #08080f; box-shadow: var(--shadow-glow); z-index: 2; }
.orbit__ring { position: absolute; border: 1px solid var(--border-strong); border-radius: 50%; }
.orbit__ring--1 { width: 160px; height: 160px; animation: spin 18s linear infinite; }
.orbit__ring--2 { width: 230px; height: 230px; animation: spin 26s linear infinite reverse; }
.orbit__ring--3 { width: 300px; height: 300px; animation: spin 34s linear infinite; }
.orbit__chip { position: absolute; padding: 0.35rem 0.7rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border-strong); backdrop-filter: blur(8px); }
.orbit__chip--1 { top: 6%; left: 50%; transform: translateX(-50%); color: var(--accent-2); }
.orbit__chip--2 { top: 50%; right: -4%; transform: translateY(-50%); color: var(--accent); }
.orbit__chip--3 { bottom: 6%; left: 50%; transform: translateX(-50%); color: var(--accent-3); }
.orbit__chip--4 { top: 50%; left: -4%; transform: translateY(-50%); color: var(--text); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.6rem; align-items: start; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__card { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.35rem; transition: transform .4s var(--ease), border-color .4s; }
.contact__card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.contact__card-icon { font-size: 1.7rem; margin-bottom: 0.4rem; }
.contact__card-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); }
.contact__card-value { font-weight: 600; }
.contact__form { padding: 1.9rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); margin-top: 4rem; background: rgba(6,6,12,0.6); backdrop-filter: blur(10px); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 3.5rem clamp(1rem, 4vw, 2rem) 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer__brand { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__brand { align-items: flex-start; }
.footer__brand .nav__logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.footer__brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 320px; margin-top: 0.4rem; }
.footer__col h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 0.55rem; transition: color .3s; }
.footer__col a:hover { color: var(--accent-2); }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding: 1.4rem clamp(1rem, 4vw, 2rem); border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--text-faint); font-size: 0.85rem; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translate(-50%, 150%); background: var(--grad); color: #08080f; padding: 1rem 1.6rem; border-radius: 100px; font-weight: 600; box-shadow: var(--shadow-glow); z-index: 2000; transition: transform .5s var(--ease); max-width: 90vw; text-align: center; }
.toast.show { transform: translate(-50%, 0); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Magnetic hover ---------- */
.magnetic { will-change: transform; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .config__layout { grid-template-columns: 1fr; }
  .config__summary { position: relative; top: 0; order: -1; }
  .about__grid { grid-template-columns: 1fr; text-align: center; }
  .about__list { align-items: center; }
  .about__visual { margin-top: 1rem; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem;
    background: rgba(9, 9, 18, 0.96); backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__burger { display: flex; z-index: 950; }
  .field-grid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cursor, .cursor-dot { display: none; }
}
