/* ============================================================
   NLG Studio — vanilla styles
   ============================================================ */

:root {
  --bg: #000000;
  --ink-900: #040508;
  --ink-800: #0a0b0d;
  --ink-700: #101216;
  --ink-600: #171a20;

  --brand-300: #6ee1f1;
  --brand-400: #45d2e8;
  --brand-500: #28c5e2;
  --brand-600: #149fbd;
  --brand-700: #157e96;

  --white: #ffffff;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;

  --ease: cubic-bezier(0.21, 0.47, 0.32, 0.98);

  --maxw: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--slate-200);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, figure {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(40, 197, 226, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-600);
  border-radius: 9999px;
  border: 2px solid #000;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-500);
}

.hidden {
  display: none !important;
}

/* ---------- Icons ---------- */
.ico {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}
.ico-xs { width: 10px; height: 10px; }
.ico-sm { width: 14px; height: 14px; }
.ico-md { width: 20px; height: 20px; }
.ico-lg { width: 24px; height: 24px; }

.muted { color: var(--slate-500); }
.faint { color: var(--slate-500); }
.brand { color: var(--brand-500); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }
}

.section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}
@media (min-width: 640px) {
  .section { padding: 8rem 0; }
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.blob-violet,
.blob-brand {
  position: absolute;
  border-radius: 9999px;
  filter: blur(140px);
}
.blob-violet {
  left: 25%;
  top: 33%;
  width: 20rem;
  height: 20rem;
  background: rgba(69, 210, 232, 0.1);
}
.blob-brand {
  left: 50%;
  top: 25%;
  width: 30rem;
  height: 30rem;
  transform: translateX(-50%);
  background: rgba(20, 159, 189, 0.1);
}

/* ---------- Glass ---------- */
.glass {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.glass-strong {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

/* ---------- Gradients (text & fills) ---------- */
.text-gradient {
  background: linear-gradient(135deg, #fff, #fff 40%, var(--slate-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-brand {
  background: linear-gradient(90deg, var(--brand-400), var(--brand-500), var(--brand-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-niepekaj {
  background: linear-gradient(90deg, #ff6b35, #ff2e9a, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-pulse {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-sky-brand { background: linear-gradient(135deg, #38bdf8, var(--brand-500)); }
.grad-brand { background: linear-gradient(135deg, var(--brand-400), var(--brand-600)); }
.grad-purple-pink { background: linear-gradient(135deg, #a855f7, #ff2e9a); }
.grad-orange-pink { background: linear-gradient(135deg, #ff6b35, #ff2e9a); }
.grad-pulse { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: #fff;
  color: var(--ink-900);
}
.btn-primary:hover {
  background: var(--slate-200);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 60px -20px rgba(40, 197, 226, 0.45);
}
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--slate-200);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}
.btn-secondary:active { transform: scale(0.98); }

/* ============================================================
   NAVBAR
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}
.header-inner {
  padding: 1.25rem 0;
  transition: padding 0.4s var(--ease);
}
.header.scrolled .header-inner {
  padding: 0.75rem 0;
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  padding: 0.625rem 1rem;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
@media (min-width: 640px) {
  .nav { padding: 0.625rem 1.25rem; }
}
.header.scrolled .nav {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.nav-logo img {
  height: 2rem;
  width: auto;
}
@media (min-width: 640px) {
  .nav-logo img { height: 2.25rem; }
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-400);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-cta { display: none; }
@media (min-width: 640px) {
  .nav-cta { display: inline-flex; }
}
.nav-toggle {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--slate-200);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.mobile-menu {
  padding-top: 0.5rem;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu-panel {
  margin-top: 0.5rem;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
  animation: menu-in 0.25s ease;
}
.mobile-menu-panel a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: all 0.2s;
}
.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.mobile-menu-cta {
  margin-top: 0.5rem;
  width: 100%;
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
@media (min-width: 640px) {
  .hero { padding: 11rem 0 7rem; }
}
@media (min-width: 1024px) {
  .hero { padding: 13rem 0 5rem; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.hero-radial {
  position: absolute;
  left: 50%;
  top: 0;
  width: 60rem;
  height: 40rem;
  max-width: 100%;
  transform: translateX(-50%);
  background: radial-gradient(60% 60% at 50% 0%, rgba(40, 197, 226, 0.2) 0%, rgba(40, 197, 226, 0) 70%);
}
.hero-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(120px);
}
.hero-blob-1 {
  left: -10rem;
  top: 10rem;
  background: rgba(20, 159, 189, 0.2);
}
.hero-blob-2 {
  right: -10rem;
  top: 5rem;
  background: rgba(69, 210, 232, 0.2);
}
.hero-grid-layout {
  display: grid;
  align-items: center;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}
.hero-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}
.hero-lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
}
@media (min-width: 640px) {
  .hero-lead { font-size: 1.125rem; }
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}
.hero-mockup {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 36rem;
}
@media (min-width: 1024px) {
  .hero-mockup { margin: 0; }
}
.hero-mockup-inner {
  position: relative;
}

/* ---------- Dashboard mockup ---------- */
.dash {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
}
.dot { height: 0.625rem; width: 0.625rem; border-radius: 9999px; }
.dot-red { background: rgba(248, 113, 113, 0.7); }
.dot-yellow { background: rgba(250, 204, 21, 0.7); }
.dot-green { background: rgba(74, 222, 128, 0.7); }
.dash-url {
  margin-left: 0.75rem;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.375rem 0.625rem;
  font-size: 0.625rem;
  color: var(--slate-500);
}
.dash-body { display: flex; }
.dash-sidebar {
  display: none;
  width: 8rem;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
}
@media (min-width: 640px) {
  .dash-sidebar { display: flex; }
}
.dash-brand {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-200);
}
.dash-brand-badge {
  display: grid;
  place-items: center;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-400));
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
}
.dash-navitem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.625rem;
  color: var(--slate-500);
}
.dash-navitem.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.dash-main { flex: 1; padding: 1rem; }
.dash-head {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-head-title { font-size: 0.6875rem; font-weight: 600; color: var(--slate-200); }
.dash-head-sub { font-size: 0.5625rem; color: var(--slate-500); }
.dash-btn {
  border-radius: 0.375rem;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  padding: 0.25rem 0.625rem;
  font-size: 0.5625rem;
  font-weight: 500;
  color: #fff;
}
.dash-stats {
  margin-bottom: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.dash-stat {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
}
.dash-stat-k { font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-500); }
.dash-stat-v { margin-top: 0.125rem; font-size: 0.875rem; font-weight: 700; color: #fff; }
.dash-stat-d { font-size: 0.5rem; font-weight: 500; color: var(--brand-300); }
.dash-chart {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
}
.dash-chart-head {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.5625rem;
  color: var(--slate-400);
}
.dash-bars {
  display: flex;
  height: 5rem;
  align-items: flex-end;
  gap: 0.375rem;
}
.dash-bars span {
  flex: 1;
  border-radius: 0.25rem 0.25rem 0 0;
  background: linear-gradient(to top, rgba(40, 197, 226, 0.4), var(--brand-400));
}

/* ---------- Floating cards ---------- */
.float-card {
  position: absolute;
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 60px -20px rgba(40, 197, 226, 0.45);
  display: none;
}
@media (min-width: 1024px) {
  .float-card { display: block; }
}
.float-classly { width: 11rem; left: -1.5rem; top: -2rem; animation: float 6s ease-in-out infinite; }
.float-payment { width: 10rem; right: -1.5rem; top: 6rem; display: none; animation: float 7s ease-in-out infinite 0.5s; }
@media (min-width: 1024px) { .float-payment { display: flex; align-items: center; gap: 0.625rem; } }
.float-activity { width: 10rem; left: 1.5rem; bottom: -2.5rem; animation: float 8s ease-in-out infinite 1s; }
.fc-row { display: flex; align-items: center; gap: 0.5rem; }
.fc-badge {
  display: grid;
  place-items: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 0.5rem;
  color: #fff;
  flex: 0 0 auto;
}
.float-payment .fc-badge { height: 2rem; width: 2rem; }
.fc-title { font-size: 0.6875rem; font-weight: 600; color: #fff; }
.fc-sub { font-size: 0.5rem; color: var(--slate-500); }
.fc-list { margin-top: 0.625rem; display: flex; flex-direction: column; gap: 0.375rem; }
.fc-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.5rem;
}
.fc-line-k { font-size: 0.5rem; color: var(--slate-400); }
.fc-line-v { font-size: 0.5625rem; font-weight: 600; color: #fff; }
.fc-ok { display: flex; align-items: center; gap: 0.25rem; font-size: 0.5rem; color: var(--brand-300); }
.fc-act-title { font-size: 0.5625rem; font-weight: 600; color: var(--slate-200); }
.fc-actbars { margin-top: 0.5rem; display: flex; align-items: flex-end; gap: 0.25rem; }
.fc-actbars span {
  width: 0.375rem;
  flex: 1;
  border-radius: 9999px;
  background: linear-gradient(to top, rgba(40, 197, 226, 0.3), var(--brand-500));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-anim { animation: float 7s ease-in-out infinite; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-400);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.eyebrow-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: var(--brand-400);
}
.section-title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 2.75rem; line-height: 1.1; }
}
.section-desc {
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
}
@media (min-width: 640px) {
  .section-desc { font-size: 1.125rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-intro {
  max-width: 48rem;
  margin: 2rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
}
.cards-3 {
  margin-top: 4rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.card-glow {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  height: 8rem;
  width: 8rem;
  border-radius: 9999px;
  background: rgba(40, 197, 226, 0.1);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s;
}
.card:hover .card-glow { opacity: 1; }
.card-icon {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  color: var(--brand-400);
}
.card-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.card-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-400);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}
.team-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
  pointer-events: none;
}
.team-info { margin-top: 1.25rem; }
.team-name { font-size: 1.125rem; font-weight: 600; color: #fff; }
.team-role { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--brand-400); }
.team-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.team-tags span {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--slate-400);
}
.team-contact {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.team-contact a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color 0.2s;
  min-width: 0;
}
.team-contact a:hover { color: #fff; }
.team-contact a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.project {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
@media (min-width: 640px) { .project { padding: 2rem; } }
@media (min-width: 1024px) { .project { padding: 2.5rem; } }
.project:first-of-type { margin-top: 4rem; }
.project-classly {
  border-radius: 1.5rem;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.project-niepekaj {
  border: 1px solid rgba(255, 46, 154, 0.2);
  background: rgba(4, 5, 8, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.project-pulse {
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(4, 5, 8, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.project:hover {
  transform: translateY(-4px);
}
.project-glow {
  position: absolute;
  height: 18rem;
  width: 18rem;
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}
.project-glow-sky { right: -5rem; top: -5rem; background: rgba(56, 189, 248, 0.15); }
.project-glow-brand { bottom: -6rem; left: -4rem; background: rgba(20, 159, 189, 0.1); }
.project-glow-pink { right: -5rem; top: -5rem; background: rgba(255, 46, 154, 0.15); }
.project-glow-orange { bottom: -6rem; left: -4rem; background: rgba(255, 107, 53, 0.12); }
.project-glow-violet { right: -5rem; top: -5rem; background: rgba(139, 92, 246, 0.15); }
.project-glow-fuchsia { bottom: -6rem; left: -4rem; background: rgba(236, 72, 153, 0.12); }

.project-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
}
.project-visual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 28rem;
}
.order-first { order: -1; }
@media (min-width: 1024px) {
  .order-first { order: 0; }
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.badge {
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-sky { border: 1px solid rgba(56, 189, 248, 0.3); background: rgba(56, 189, 248, 0.1); color: #7dd3fc; }
.badge-pink { border: 1px solid rgba(255, 46, 154, 0.3); background: rgba(255, 46, 154, 0.1); color: #ff7bbf; }
.badge-violet { border: 1px solid rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.1); color: #c4b5fd; }
.badge-muted { font-size: 0.75rem; color: var(--slate-500); }

.project-title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) { .project-title { font-size: 2.25rem; } }
.project-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-400);
}
@media (min-width: 640px) { .project-text { font-size: 1rem; } }
.project-text + .project-text { margin-top: 0.75rem; }

.feat-2col {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 0.625rem;
}
.feat-2col li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}
.feat-cols {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feat-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.feat-col > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}
.feat-check {
  display: grid;
  place-items: center;
  height: 1rem;
  width: 1rem;
  flex: 0 0 auto;
  border-radius: 9999px;
}
.brand-check { background: rgba(40, 197, 226, 0.15); color: var(--brand-300); }
.pink-check { background: rgba(255, 46, 154, 0.15); color: #ff7bbf; }
.green-check { background: rgba(16, 185, 129, 0.15); color: #10b981; }

.chips {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chips span {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-300);
}
.project-cta { margin-top: 2rem; }

.soon {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.soon-pink { border: 1px solid rgba(255, 46, 154, 0.3); background: rgba(255, 46, 154, 0.1); color: #ff7bbf; }
.soon-violet { border: 1px solid rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.1); color: #c4b5fd; cursor: not-allowed; }

/* ---------- Classly app mockup ---------- */
.classly {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.classly-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
}
.classly-brand { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: #fff; }
.classly-badge {
  display: grid;
  place-items: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 0.5rem;
  color: #fff;
}
.classly-top-right { display: flex; align-items: center; gap: 0.75rem; color: var(--slate-500); }
.avatar-grad {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-300));
}
.classly-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
}
.classly-stat {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem;
}
.classly-stat-k { margin-top: 0.5rem; font-size: 0.625rem; color: var(--slate-500); }
.classly-stat-v { font-size: 0.875rem; font-weight: 700; color: #fff; }
.classly-plan { padding: 0 1rem 1rem; }
.classly-plan-head {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.classly-plan-title { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 500; color: var(--slate-300); }
.classly-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.classly-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.625rem 0.75rem;
}
.classly-time { font-size: 0.6875rem; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--slate-400); }
.classly-bar { height: 1.75rem; width: 0.25rem; border-radius: 9999px; flex: 0 0 auto; }
.c-sky { background: #38bdf8; }
.c-blue { background: #3b82f6; }
.c-cyan { background: #22d3ee; }
.classly-name { flex: 1; font-size: 0.75rem; font-weight: 500; color: #fff; }
.classly-tag {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.125rem 0.5rem;
  font-size: 0.5625rem;
  color: var(--slate-400);
  white-space: nowrap;
}

/* ---------- Phone mockup (Nie Pękaj!) ---------- */
.phone-wrap { position: relative; margin: 0 auto; width: 230px; }
.phone-glow { position: absolute; inset: -1.5rem; z-index: -1; pointer-events: none; }
.pg { position: absolute; border-radius: 9999px; filter: blur(60px); }
.pg-pink { left: 50%; top: 2rem; height: 12rem; width: 12rem; transform: translateX(-50%); background: rgba(255, 46, 154, 0.3); }
.pg-orange { bottom: 2rem; left: 33%; height: 10rem; width: 10rem; background: rgba(255, 107, 53, 0.25); }
.pg-purple { right: 0.5rem; top: 33%; height: 10rem; width: 10rem; background: rgba(168, 85, 247, 0.25); }
.phone {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  border: 7px solid var(--ink-700);
  background: #000;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  z-index: 20;
  height: 1.25rem;
  width: 6rem;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: #000;
}
.phone-screen {
  position: relative;
  height: 420px;
  background: linear-gradient(to bottom, #1a0a16, #000 50%, #0b0500);
}
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 0;
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.phone-status-icons { display: flex; align-items: center; gap: 0.25rem; }
.phone-back { padding: 0.75rem 1rem 0; }
.phone-back svg {
  display: grid;
  box-sizing: content-box;
  height: 1rem;
  width: 1rem;
  padding: 0.375rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}
.phone-player { margin-top: 1.5rem; display: flex; justify-content: center; }
.np-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ff6b35, #ff2e9a);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(255, 46, 154, 0.8);
}
.phone-title { margin-top: 1rem; padding: 0 1.5rem; text-align: center; }
.phone-title h4 { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.phone-title p { margin-top: 0.25rem; font-size: 0.625rem; font-style: italic; color: rgba(255, 255, 255, 0.4); }
.phone-options { margin-top: 1.75rem; padding: 0 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.np-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 0.75rem;
}
.np-truth { border: 1px solid rgba(168, 85, 247, 0.3); background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(255, 46, 154, 0.1)); }
.np-dare { border: 1px solid rgba(255, 107, 53, 0.3); background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), rgba(255, 46, 154, 0.1)); }
.np-option-ico {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  color: #fff;
  flex: 0 0 auto;
}
.np-option-title { font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.np-option-sub { font-size: 0.5625rem; color: rgba(255, 255, 255, 0.4); }
.phone-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}
.phone-dots span { height: 0.375rem; width: 0.375rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.2); }
.phone-dots span.active { width: 1.5rem; background: linear-gradient(90deg, #ff6b35, #ff2e9a); }

/* ---------- Pulse light dashboard ---------- */
.pulse {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.14);
}
.pulse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding: 0.875rem 1rem;
}
.pulse-brand { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; font-weight: 700; color: #0f172a; }
.pulse-logo {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 0.5rem;
  color: #fff;
}
.pulse-head-right { display: flex; align-items: center; gap: 0.75rem; }
.pulse-bell { color: #94a3b8; }
.pulse-avatar { height: 1.75rem; width: 1.75rem; border-radius: 9999px; }
.pulse-body { padding: 1rem; }
.pulse-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
.pulse-kpi {
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  background: rgba(248, 250, 252, 0.6);
  padding: 0.625rem;
}
.pulse-kpi-ico {
  display: grid;
  place-items: center;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 0.5rem;
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
}
.pulse-kpi-k { margin-top: 0.5rem; font-size: 0.5625rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; color: #94a3b8; }
.pulse-kpi-v { margin-top: 0.125rem; font-size: 1rem; font-weight: 700; color: #0f172a; }
.pulse-kpi-v small { font-size: 0.5625rem; font-weight: 400; color: #94a3b8; }
.pulse-plan {
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  padding: 0.75rem;
}
.pulse-plan-head {
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #0f172a;
}
.pulse-plan-date { font-weight: 400; color: #94a3b8; }
.pulse-rows { display: flex; flex-direction: column; gap: 0.375rem; }
.pulse-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  background: rgba(248, 250, 252, 0.7);
  padding: 0.5rem 0.625rem;
}
.pulse-time { font-size: 0.625rem; font-weight: 600; font-variant-numeric: tabular-nums; color: #64748b; }
.pulse-name { flex: 1; font-size: 0.625rem; font-weight: 500; color: #0f172a; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pulse-status { flex: 0 0 auto; border-radius: 9999px; padding: 0.125rem 0.5rem; font-size: 0.5rem; font-weight: 600; }
.ps-green { background: rgba(16, 185, 129, 0.12); color: #0a8f63; }
.ps-amber { background: rgba(245, 158, 11, 0.15); color: #b8770a; }
.ps-blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-logo img { height: 2.5rem; width: auto; }
.footer-about {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-400);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-500);
}
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.75rem; color: var(--slate-500); }

/* ============================================================
   REVEAL ANIMATION (pure CSS — no JS timers required)
   ============================================================ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}
.reveal {
  animation: fade-up 0.6s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .float-anim,
  .float-card,
  .mobile-menu-panel {
    animation: none;
  }
  html { scroll-behavior: auto; }
}
