/* PixaLabs — pixalabs.com.tr */
:root {
  --bg: #06080f;
  --bg-soft: #0b1220;
  --surface: #111827;
  --surface-hover: #1a2332;
  --border: rgba(148, 163, 184, 0.12);
  --border-bright: rgba(56, 189, 248, 0.25);
  --sky: #38bdf8;
  --sky-bright: #7dd3fc;
  --violet: #818cf8;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --success: #34d399;
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  --max: 1080px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

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

img, svg { display: block; max-width: 100%; }
a { color: var(--sky); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sky-bright); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--sky);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus { top: 1rem; }

/* Background */
.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% -10%, rgba(56, 189, 248, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(129, 140, 248, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(56, 189, 248, 0.05), transparent);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(6, 8, 15, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand img, .brand svg { width: 32px; height: 32px; }

.brand span em {
  font-style: normal;
  color: var(--sky);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--sky) 0%, #0ea5e9 100%);
  color: #041018;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(56, 189, 248, 0.3);
  color: #041018;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--border-bright);
  color: var(--sky);
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.hero-content { max-width: 680px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--sky-bright), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.section-head p { color: var(--text-muted); font-size: 1.02rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sky);
  margin-bottom: 0.15rem;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  transition: border-color 0.2s, transform 0.2s;
}

.value-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.value-icon {
  width: 42px;
  height: 42px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Apps */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.app-card-header {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
}

.app-meta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.app-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.app-status.live {
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
}

.app-status.soon {
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-dim);
}

.app-card-body {
  padding: 1rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.app-tags span {
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
}

.app-card-footer {
  display: flex;
  gap: 0.6rem;
}

.app-icon-placeholder {
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border: 1px dashed var(--border);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}

.app-card.coming {
  opacity: 0.65;
  pointer-events: none;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.process-step .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(56, 189, 248, 0.4);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Contact */
.contact-wrap {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 0.65rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-link:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

.contact-link-icon {
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.contact-link small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid var(--sky);
  outline-offset: 0;
  border-color: transparent;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.form-alert {
  display: none;
  padding: 0.85rem 1rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 9px;
  color: var(--success);
  font-size: 0.88rem;
}

.form-alert.visible { display: block; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.75rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Legal */
.legal {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.legal .container { max-width: 720px; }

.legal h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}

.legal-meta {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--sky);
  margin: 1.75rem 0 0.6rem;
}

.legal p, .legal li {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0.65rem;
}

.legal ul { padding-left: 1.2rem; margin-bottom: 0.75rem; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}

.back:hover { color: var(--sky); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-wrap { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem;
    background: rgba(6, 8, 15, 0.97);
    border-bottom: 1px solid var(--border);
    gap: 0.85rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .values-grid,
  .process-steps,
  .form-row,
  .stat-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  section { padding: 3.5rem 0; }
  .contact-wrap { padding: 2rem; }
}
