:root {
  --bg: #06090f;
  --bg2: #0a0f1a;
  --surface: rgba(255, 255, 255, 0.03);
  --card: rgba(255, 255, 255, 0.04);
  --text: #eef1f6;
  --muted: rgba(238, 241, 246, 0.6);
  --line: rgba(255, 255, 255, 0.08);

  --accent: #ff6a00;
  --accent2: #ffb86b;
  --accent-glow: rgba(255, 106, 0, 0.15);

  --radius: 16px;
  --radius-lg: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding-left: 18px; color: var(--muted); }
li { margin: 4px 0; }

/* ── Ambient background ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -10%; left: -5%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.12), transparent 70%);
  animation: float1 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  top: 30%; right: -10%;
  background: radial-gradient(circle, rgba(255, 184, 107, 0.08), transparent 70%);
  animation: float2 25s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: -5%; left: 30%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.06), transparent 70%);
  animation: float3 22s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, 40px); }
  66% { transform: translate(-30px, 60px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-50px, 30px); }
  66% { transform: translate(40px, -40px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -30px); }
}

/* ── Layout ── */
.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 15, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark.sm { width: 32px; height: 32px; border-radius: 10px; }
.brand-logo { width: 28px; height: 28px; object-fit: contain; }
.brand-mark.sm .brand-logo { width: 20px; height: 20px; }
.brand-text {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links .pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--accent2);
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .pill:hover {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.5);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  padding: 100px 0 60px;
  text-align: center;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.kicker {
  display: inline-block;
  color: var(--accent2);
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
h1 {
  margin: 20px 0 16px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.subtext {
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ── Stats ── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent2);
  font-family: "Sora", "Inter", sans-serif;
}
.stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent2);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn:active { transform: scale(0.97); }

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #1a0f05;
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.2);
}
.btn.primary:hover {
  box-shadow: 0 0 60px rgba(255, 106, 0, 0.3);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn.secondary:hover { background: rgba(255, 255, 255, 0.08); }

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 8px 14px;
}
.btn.ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}
.section.alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tag {
  display: inline-block;
  color: var(--accent2);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 50ch;
  font-size: 16px;
}

/* ── Cards ── */
.cards {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.product-cards { grid-template-columns: repeat(2, 1fr); }
.services-cards { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 107, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

/* Spotlight glow */
.card-glow {
  position: absolute;
  width: 300px; height: 300px;
  left: calc(var(--mx, 50%) - 150px);
  top: calc(var(--my, 50%) - 150px);
  background: radial-gradient(circle, rgba(255, 184, 107, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glass-card.is-hovered .card-glow { opacity: 1; }

.card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent2);
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.2);
  margin-bottom: 16px;
}

.card-number {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: rgba(255, 184, 107, 0.12);
  margin-bottom: 12px;
  line-height: 1;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.card ul { font-size: 14px; }
.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ── About ── */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}
.about h2 {
  font-size: 32px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.about p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.mini { margin-top: 12px; }

.about-box {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 24px;
}
.about-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-row:last-child { border-bottom: 0; }
.label { color: var(--muted); font-weight: 500; font-size: 14px; }
.value { font-weight: 700; font-size: 14px; }

/* ── Contact ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-left h2 {
  font-size: 32px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 8px 0 12px;
}
.contact-left p { color: var(--muted); font-size: 15px; }
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.contact-card h3 { margin: 0 0 16px; font-size: 18px; }

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { margin-top: 14px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: rgba(238, 241, 246, 0.8);
  font-size: 13px;
}
.field input,
.field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 184, 107, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.form-submit { margin-top: 16px; min-width: 140px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error {
  min-height: 16px;
  margin: 4px 0 0;
  color: #ff8c8c;
  font-size: 12px;
}
.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.honeypot-field { display: none; }

/* ── Footer ── */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}
.footer-links a:hover { color: var(--text); }

/* ── Utilities ── */
.tiny { color: var(--muted); font-size: 13px; }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}
.hint {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--accent2);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.hint.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .hero { padding: 70px 0 40px; }
  .product-cards,
  .services-cards { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; padding: 20px 24px; }
  .stat-num { font-size: 24px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    flex-direction: column;
    background: rgba(6, 9, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 24px 24px;
    gap: 20px;
    align-items: flex-start;
    transition: right 0.3s ease;
    z-index: 90;
    border-left: 1px solid var(--line);
  }
  .nav-links.open { right: 0; }
  .mobile-menu-btn { display: flex; z-index: 100; }
  .name-grid { grid-template-columns: 1fr; }
  .stats-row {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .brand-text { font-size: 14px; }
  h1 { font-size: clamp(28px, 7vw, 44px); }
  .section { padding: 60px 0; }
}
