@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #060810;
  --bg-soft: #0c1018;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(0, 245, 255, 0.15);
  --text: #e8eeff;
  --muted: #8b9dc3;
  --accent: #00f5ff;
  --accent-dim: #00c4cc;
  --accent-2: #a855f7;
  --radius: 12px;
  --radius-sm: 8px;
  --glow: 0 0 30px rgba(0, 245, 255, 0.25);
  --glow-strong: 0 0 40px rgba(0, 245, 255, 0.4);
  --dur: 0.4s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

/* SEO / a11y: content only for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animations - respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes menuCircleIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
  50% { box-shadow: 0 0 35px rgba(0, 245, 255, 0.5); }
}

@keyframes gridMove {
  0% { transform: perspective(400px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(400px) rotateX(60deg) translateY(48px); }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(30px, -40px) scale(1.1); opacity: 0.6; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-20px, 30px) scale(1.05); opacity: 0.5; }
}

@keyframes scanLine {
  0% { top: -2px; }
  100% { top: 100%; }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Order success overlay - delivery animation */
@keyframes deliveryShip {
  0% { left: 12%; opacity: 0.6; transform: translateY(-50%) scale(0.8); }
  15% { opacity: 1; transform: translateY(-50%) scale(1); }
  85% { opacity: 1; transform: translateY(-50%) scale(1); }
  100% { left: 88%; opacity: 0.6; transform: translateY(-50%) scale(0.8); }
}

@keyframes orderSuccessIn {
  from { opacity: 0; transform: scale(0.9); filter: blur(8px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes orderMessageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.7); }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Living grid background - 2090 tech */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -2;
  animation: gridMove 8s linear infinite;
}

/* Floating orbs - AI/tech vibe */
body::after {
  content: "";
  position: fixed;
  width: 80vmax;
  height: 80vmax;
  left: -20vmax;
  top: -20vmax;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: orbFloat1 15s ease-in-out infinite;
}

.bg-orb-2 {
  position: fixed;
  width: 60vmax;
  height: 60vmax;
  right: -15vmax;
  bottom: -15vmax;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: orbFloat2 18s ease-in-out infinite;
}

.scan-line {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
  animation: scanLine 6s linear infinite;
}

/* One-time background sequence: strip bottom → robot left→right → strip vertical (no delay) */
@keyframes stripBottom {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes robotMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120vw); }
}

@keyframes stripVertical {
  0% { top: -4px; opacity: 1; }
  100% { top: 100%; opacity: 1; }
}

.bg-strip-bottom {
  position: fixed;
  bottom: 0;
  left: -100%;
  width: 80%;
  max-width: 400px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 20px var(--accent);
  pointer-events: none;
  z-index: 0;
  animation: stripBottom 3s linear 0s forwards;
}

.bg-robot {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-120%);
  width: 56px;
  height: 56px;
  pointer-events: none;
  z-index: 0;
  color: var(--accent);
  animation: robotMove 8s linear 3s forwards;
}

.bg-robot svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(0, 245, 255, 0.6));
}

.bg-strip-vertical {
  position: fixed;
  left: 50%;
  top: -4px;
  width: 2px;
  height: 4px;
  margin-left: -1px;
  background: linear-gradient(180deg, var(--accent), transparent);
  box-shadow: 0 0 15px var(--accent);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: stripVertical 5s linear 11s forwards;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Header + Logo - 2090 glass */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 8, 16, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.08);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, text-shadow 0.2s;
}

.brand:hover {
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.brand .brand-logo + span {
  white-space: nowrap;
}

.menu-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  position: relative;
  overflow: visible;
}

/* Site nav: vertical list under the menu button */
.nav {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  width: 220px;
  padding: 8px 0;
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.nav.is-open {
  pointer-events: auto;
  opacity: 1;
}

.nav a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  margin: 0 6px;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nav a.active,
.nav a:hover {
  color: var(--accent);
  background: rgba(0, 245, 255, 0.08);
  border-color: rgba(0, 245, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
}

.nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Round menu button - visible on all devices (top right) */
.menu-toggle {
  display: flex;
  width: 52px;
  height: 52px;
  border: 1px solid var(--card-border);
  background: rgba(0, 245, 255, 0.06);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.2s;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.12);
  flex-shrink: 0;
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-toggle:hover {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.08);
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  box-shadow: 0 0 8px var(--accent);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle-text {
  display: none;
}

/* Main - page entrance 2090 */
main {
  padding: 56px 0 80px;
  position: relative;
  z-index: 1;
  animation: pageIn 0.7s var(--ease) both;
}

.hero {
  padding: 40px 36px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent 70%);
  opacity: 0.9;
  transform-origin: left;
  animation: lineReveal var(--dur) var(--ease) 0.2s both;
  box-shadow: 0 0 15px var(--accent);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 800px;
  color: var(--text);
  animation: titleReveal var(--dur) var(--ease) 0.05s both;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 800px;
  color: var(--text);
}

.hero-subtitle {
  animation: revealUp var(--dur) var(--ease) 0.15s both;
}

.hero-intro {
  animation: revealUp var(--dur) var(--ease) 0.25s both;
}

.hero-cta {
  animation: revealUp var(--dur) var(--ease) 0.35s both;
}

.hero p {
  margin-top: 18px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.button {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  color: var(--bg);
  border: 1px solid var(--accent);
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--accent);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.35);
  transition: background 0.2s, transform 0.15s ease, box-shadow 0.2s;
}

.button:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 245, 255, 0.5);
}

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.button.secondary:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.25);
}

.section-title {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  transform-origin: left;
  box-shadow: 0 0 10px var(--accent);
}

.section-title.reveal-in::after {
  animation: lineReveal var(--dur) var(--ease) 0.1s both;
}

.section-title.reveal-in {
  animation: titleReveal var(--dur) var(--ease) both;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--card);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.05);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}

.card:hover {
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.12);
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateY(-2px);
}

.card.reveal-in {
  animation: revealUp var(--dur) var(--ease) both;
}

.grid .card.reveal-in:nth-child(1) { transition-delay: 0.02s; }
.grid .card.reveal-in:nth-child(2) { transition-delay: 0.08s; }
.grid .card.reveal-in:nth-child(3) { transition-delay: 0.14s; }
.grid .card.reveal-in:nth-child(4) { transition-delay: 0.2s; }
.grid .card.reveal-in:nth-child(5) { transition-delay: 0.26s; }
.grid .card.reveal-in:nth-child(6) { transition-delay: 0.32s; }
.grid .card.reveal-in:nth-child(7) { transition-delay: 0.38s; }
.grid .card.reveal-in:nth-child(8) { transition-delay: 0.44s; }

/* Service cards: Mehr erfahren + Bestellen */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  flex: 1;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.service-card-actions .button {
  margin-top: 0;
}

.service-btn-detail {
  min-width: 120px;
}

.service-btn-order {
  min-width: 100px;
}

/* Service detail page */
.service-detail {
  padding: 32px 28px;
  max-width: 720px;
}

.service-detail-back {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.2s, text-shadow 0.2s;
}

.service-detail-back:hover {
  color: var(--accent-dim);
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.4);
}

.service-detail-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.service-detail-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.service-detail-body {
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.service-detail-body br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

.service-detail-notfound {
  margin: 0 0 16px;
  color: var(--muted);
}

.project-detail-body {
  margin-bottom: 24px;
}

.project-detail-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.project-detail-row:last-child {
  border-bottom: none;
}

.project-detail-label {
  font-weight: 600;
  color: var(--muted);
  min-width: 140px;
}

.project-detail-value {
  color: var(--text);
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.project-number {
  color: var(--accent);
  font-weight: 600;
}

.project-category {
  color: var(--muted);
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.15);
}

.projects-filter {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.projects-filter label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--muted);
}

.projects-filter input,
.projects-filter select {
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

.projects-filter input:focus,
.projects-filter select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.15);
}

.projects-filter input {
  min-width: 120px;
}

.project-detail-number {
  margin: -8px 0 12px;
  font-size: 0.9375rem;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-detail-actions .button {
  margin-top: 0;
}

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.project-card-actions .button {
  margin-top: 0;
}

.founder-details-list {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 245, 255, 0.12);
}

.founder-details-list .project-detail-row {
  padding: 12px 0;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.card p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.project-card {
  overflow: hidden;
}

.project-media {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  min-height: 180px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.project-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 9px;
  position: relative;
  z-index: 2;
}

.project-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.featured-project {
  margin-top: 32px;
}

.featured-project .card {
  max-width: 720px;
}

.featured-card {
  max-width: 720px;
}

.featured-card .project-media img {
  height: 260px;
}

.featured-card .project-media {
  min-height: 260px;
}

.featured-project .button {
  margin-top: 16px;
}

/* Founder */
.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.founder-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg-soft);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.06);
}

.founder-photo-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.founder-info h3 {
  margin-top: 0;
  font-weight: 700;
  color: var(--text);
}

.founder-hero {
  margin-top: 36px;
}

.founder-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Contact list */
.list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  background: var(--card);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.2);
}

.contact-item.reveal-in {
  animation: revealUp var(--dur) var(--ease) both;
}

.contact-item span:first-child {
  color: var(--muted);
  font-weight: 500;
}

/* Order / Anfrage form */
#order-section {
  scroll-margin-top: 88px;
}

.order-section {
  margin-top: 40px;
}

.order-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.order-form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form select {
  cursor: pointer;
  appearance: none;
  background-color: rgba(0, 0, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300f5ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--text);
}

.order-form select option {
  background: var(--bg-soft);
  color: var(--text);
  padding: 10px 14px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.order-form textarea {
  resize: vertical;
  min-height: 100px;
}

.order-form .row-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.order-status {
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.order-status-ok {
  color: #86efac;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status-error {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Order success full-screen overlay */
.order-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.order-success-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.order-success-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 245, 255, 0.06), transparent 70%),
    rgba(6, 8, 16, 0.92);
  backdrop-filter: blur(14px);
  cursor: pointer;
  animation: orderBackdropPulse 4s ease-in-out infinite;
}

@keyframes orderBackdropPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.97; }
}

.order-success-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0, 245, 255, 0.2), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: orderSuccessIn 0.5s var(--ease) both;
}

.order-success-track {
  position: relative;
  height: 4px;
  margin: 0 0 48px;
  background: linear-gradient(90deg, rgba(0, 245, 255, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 2px;
  overflow: visible;
}

.order-success-point {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  transform: translateY(-50%);
  box-shadow: 0 0 20px var(--accent);
}

.order-success-point-a { left: 0; transform: translate(-50%, -50%); animation: pulseGlow 1.5s ease-in-out infinite; }
.order-success-point-b { left: 100%; transform: translate(50%, -50%); animation: pulseGlow 1.5s ease-in-out 0.5s infinite; }

.order-success-ship {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 48px;
  height: 48px;
  color: var(--accent);
  transform: translateY(-50%);
  animation: deliveryShip 2.2s var(--ease) 0.3s both;
  filter: drop-shadow(0 0 12px var(--accent));
}

.order-success-ship svg {
  width: 100%;
  height: 100%;
  display: block;
}

.order-success-message {
  animation: orderMessageIn 0.6s var(--ease) 2.2s both;
}

.order-success-title {
  margin: 0 0 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
  letter-spacing: 0.02em;
}

.order-success-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.order-success-close {
  margin-top: 0;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--accent-dim);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

/* Footer - 2090 */
.site-footer {
  border-top: 1px solid var(--card-border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  font-size: 0.9375rem;
  padding: 28px 0;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

/* Scroll-in reveal (JS adds .reveal-in) */
.reveal-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .header-row {
    min-height: 64px;
    padding: 12px 0;
  }

  .brand-logo {
    height: 36px;
  }

  .hero {
    padding: 28px 20px;
  }

  .nav {
    width: min(220px, 92vw);
  }

  .nav a {
    padding: 10px 14px;
    font-size: 0.875rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle-bar {
    width: 20px;
  }

  .founder-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-photo-wrap img {
    height: 240px;
  }
}
