
:root {
  --bg: #000000;
  --bg-soft: #050505;
  --fg: #f5f5f5;
  --muted: #a3a3a3;
  --accent: #ff6200;
  --accent-soft: rgba(255, 97, 0, 0.25);
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-strong: 0 30px 120px rgba(0, 0, 0, 0.95);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  background: #000;
  color: var(--fg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Dynamic cursor lighting */
.cursor-light {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 97, 0, 0.21),
    transparent 70%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-out;
  z-index: 0;
}

/* BACKGROUND LAYERS */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-stars {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 160px 160px, 220px 220px;
  opacity: 0.25;
  animation: driftStars 38s linear infinite;
}

.bg-orbits::before,
.bg-orbits::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bg-orbits::before {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -80px;
  box-shadow: 0 0 120px rgba(255, 97, 0, 0.18);
  animation: orbitDrift 32s linear infinite;
}

.bg-orbits::after {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -120px;
  border-color: rgba(255, 97, 0, 0.45);
  opacity: 0.4;
  animation: orbitDriftReverse 42s linear infinite;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.65),
    transparent
  );
  backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 35% 65% 50% 60%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  background: radial-gradient(circle at 20% 0%, #ffb347, #ff6100 70%);
  box-shadow: 0 0 18px rgba(255, 97, 0, 0.7);
  color: #050505;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-text span:last-child {
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.nav-link:hover {
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  border-radius: 999px;
  border: 1px solid rgba(255, 97, 0, 0.7);
  background: radial-gradient(circle at top, #ffb347, #ff6100);
  color: #050505;
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(255, 97, 0, 0.45);
  transition: transform 0.16s ease, box-shadow 0.18s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(255, 97, 0, 0.7);
}

.nav-toggle {
  display: none;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--fg);
  padding: 0.45rem 0.6rem;
  border-radius: 0.8rem;
  cursor: pointer;
}

/* SECTION LAYOUT */
.section {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2.2rem 4.2rem;
  z-index: 1;
}

/* HERO HOME */
.hero {
  padding-top: 3.4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at left, rgba(255, 97, 0, 0.35), #050505);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.9);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  margin: 1.2rem 0 1.1rem;
  font-size: clamp(3.4rem, 3.1rem + 2.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.accent {
  background: linear-gradient(120deg, #ffb347, #ff6100, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 1.7rem;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  padding: 0.7rem 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: radial-gradient(circle at top, #ffb347, #ff6100);
  color: #050505;
  box-shadow: 0 20px 55px rgba(255, 97, 0, 0.5);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 28px 80px rgba(255, 97, 0, 0.75);
}

.btn.ghost {
  background: rgba(10, 10, 10, 0.7);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--fg);
}

.btn.ghost:hover {
  background: rgba(255, 97, 0, 0.12);
  border-color: rgba(255, 97, 0, 0.7);
}

/* HERO STRIP */
.hero-strip {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #050505, #020202 60%);
  box-shadow: var(--shadow-strong);
  padding: 0.9rem 1rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.chip-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-start;
}

.chip {
  font-size: 0.7rem;
  padding: 0.16rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.9);
  color: rgba(245, 245, 245, 0.9);
}

.metric-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.metric-block {
  padding: 0.5rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top, #050505, #020202 75%);
  min-width: 120px;
}

.metric-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.metric-value {
  font-size: 0.9rem;
  font-weight: 600;
}

/* HERO PANEL - COMPLEX BORDERS */
.hero-panel {
  position: relative;
}

.panel-shell {
  position: relative;
  padding: 2px;
  border-radius: var(--radius-xl);
  background:
    conic-gradient(from 180deg, rgba(255, 97, 0, 0.7), transparent 40%,
      rgba(255, 255, 255, 0.16), transparent 75%),
    radial-gradient(circle at top left, rgba(255, 97, 0, 0.7), transparent 65%);
  box-shadow: var(--shadow-strong);
}

.panel-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  mix-blend-mode: screen;
  pointer-events: none;
}

.panel-inner {
  position: relative;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, #111111, #020202 70%);
  padding: 1.2rem 1.3rem 1.2rem;
  overflow: hidden;
}

.panel-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.panel-tag {
  font-size: 0.78rem;
  color: var(--muted);
}

.panel-status {
  font-size: 0.75rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.panel-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 97, 0, 0.8);
}

/* PANEL PREVIEW LAYOUT */
.panel-preview {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #050505, #000);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.preview-column {
  position: relative;
}

/* Left column: avatar block */
.preview-avatar-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 0%, rgba(255, 97, 0, 0.45), transparent);
  opacity: 0.7;
}

.preview-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 40% 60% 55% 45%;
  background:
    radial-gradient(circle at 20% 0%, #1f2933, #020617),
    conic-gradient(from 180deg, rgba(255, 97, 0, 0.5), transparent 40%,
      rgba(255, 255, 255, 0.06), transparent 80%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.preview-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    transparent 40%
  );
  mix-blend-mode: screen;
}

.preview-lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview-lines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
  overflow: hidden;
  position: relative;
}

.preview-lines span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff6100, transparent 55%);
  transform: translateX(-60%);
  animation: shimmer 3.5s linear infinite;
}

.preview-lines span:nth-child(2)::before {
  animation-delay: 0.5s;
}
.preview-lines span:nth-child(3)::before {
  animation-delay: 0.9s;
}

/* Right column: metrics card */
.preview-card {
  position: relative;
  border-radius: 1rem;
}

.stack {
  margin-bottom: 0.7rem;
}

.stack-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: conic-gradient(
    from 200deg,
    rgba(255, 97, 0, 0.7),
    transparent 40%,
    rgba(255, 255, 255, 0.08),
    transparent 80%
  );
  opacity: 0.8;
  filter: blur(10px);
}

.stack-inner {
  position: relative;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top left, #050505, #020202 70%);
  padding: 0.75rem 0.8rem 0.75rem;
}

.stack-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stack-bars {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stack-bar span {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.9);
}

.stack-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.stack-value {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.82);
}

.stack-desc {
  margin: 0.2rem 0 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.bar-rail {
  position: relative;
  margin-top: 0.18rem;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.98);
  overflow: hidden;
}

.bar-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffb347, #ff6100);
  box-shadow: 0 0 16px rgba(255, 97, 0, 0.7);
  transform-origin: left;
}

/* Badges */
.badges {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 0 0, #050505, #010101 70%);
  padding: 0.65rem 0.8rem 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.badge {
  font-size: 0.75rem;
  color: rgba(229, 229, 229, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.9);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 97, 0, 0.8);
}

/* Panel footer */
.panel-footer {
  margin-top: 0.85rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 1;
}

.foot-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.foot-text {
  font-size: 0.8rem;
  color: var(--muted);
}

/* SECONDARY PAGE PATTERNS */
.page-hero {
  padding: 2.8rem 3rem 1.8rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.6rem, 2.2rem + 1.6vw, 3.4rem);
  letter-spacing: -0.01em;
  max-width: 980px;
}

.page-hero p {
  max-width: 52rem;
  color: var(--muted);
  margin: 0;
}

.page-lede {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.9);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.card {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #0b0b0b, #050505 75%);
  box-shadow: var(--shadow-strong);
  padding: 1.15rem 1.35rem 1.1rem;
}

.card h3 {
  margin: 0.2rem 0 0.35rem;
}

.card p {
  color: var(--muted);
  margin: 0 0 0.5rem;
}

/* Contact widget card override for better contrast on dark bg */
.contact-widget {
  background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.08), rgba(8, 8, 8, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f5f5f5;
}

.project-thumb {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at 20% 0, rgba(255, 97, 0, 0.18), #0a0a0a);
  height: 150px;
  margin-bottom: 0.65rem;
}

.meta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-link {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
}

.cta-link:hover {
  color: var(--accent);
}

.feature-band {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 97, 0, 0.12), #060606 60%);
  box-shadow: var(--shadow-strong);
  padding: 1.6rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  align-items: center;
}

.feature-text h2 {
  margin: 0.1rem 0 0.4rem;
}

.feature-text p {
  margin: 0;
  color: var(--muted);
}

.accent-bar {
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347, #ff6100);
  margin: 0.4rem 0 0.6rem;
}

.feature-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.feature-badges .badge {
  background: rgba(255, 255, 255, 0.05);
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.image-block {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 25% 10%, rgba(255, 97, 0, 0.15), #050505 70%);
  min-height: 220px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.image-block.tall {
  min-height: 260px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.mosaic .testimonial-card {
  background: linear-gradient(150deg, rgba(255, 97, 0, 0.12), #050505 65%);
}

.contact-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(115deg, rgba(255, 97, 0, 0.08), #050505 60%);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-strong);
}

.contact-hero p {
  margin: 0.2rem 0 0.4rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card ul,
.addon-list {
  margin: 0.4rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.cta-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.translator-bar {
  display: flex;
  justify-content: center;
  padding: 0.4rem 1rem 0.2rem;
}

.translator-bar .elfsight-app-3abb3e26-469a-45ec-b39b-bbba6cfabcd2 {
  position: static !important;
}

.addons {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.8rem;
}

.testimonial-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(255, 97, 0, 0.08), #060606 65%);
  padding: 1rem;
  box-shadow: var(--shadow-strong);
}

.testimonial-quote {
  font-size: 1rem;
  margin: 0 0 0.6rem;
  color: rgba(245, 245, 245, 0.92);
}

.testimonial-author {
  font-weight: 600;
  color: var(--muted);
}

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

.pill-title {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #0b0b0b, #040404 70%);
  padding: 1rem;
  box-shadow: var(--shadow-strong);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.payment-chip {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.8rem;
  background: rgba(10, 10, 10, 0.9);
  color: rgba(245, 245, 245, 0.9);
}

.refund-box {
  margin-top: 0.7rem;
  border-radius: 0.9rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form-card {
  background: radial-gradient(circle at 20% 0, rgba(255, 97, 0, 0.12), #060606 75%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.9);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.92);
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 130, 50, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 97, 0, 0.2);
  transform: translateY(-1px);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
}

.form-status.pending {
  color: #ffb347;
}

.form-status.success {
  color: #9be29b;
}

.form-status.error {
  color: #ff8a80;
}

.contact-details {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 20% 0, rgba(255, 97, 0, 0.12), #060606 70%);
  padding: 1rem;
}

.contact-details a {
  color: var(--fg);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent);
}

/* LAYOUT SHOWCASE */
.layout-section {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.layout-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, rgba(255, 97, 0, 0.08), #050505 60%);
  box-shadow: var(--shadow-strong);
  padding: 1.4rem 1.3rem 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  align-items: center;
  overflow: hidden;
}

.layout-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.report-block {
  background: linear-gradient(140deg, rgba(255, 97, 0, 0.12), #060606 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  border-radius: 1rem;
  padding: 1rem;
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.report-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.45rem;
  margin: 0.4rem 0 0.6rem;
}

.report-metrics .metric {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.6rem;
  padding: 0.55rem 0.65rem;
}

.report-progress {
  display: grid;
  gap: 0.4rem;
  margin: 0.4rem 0 0.8rem;
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.4rem;
  align-items: center;
}

.bar-fill.inline {
  transform-origin: left center;
  background: linear-gradient(90deg, #ffb347, #ff6100);
  height: 6px;
  border-radius: 999px;
  transition: transform 0.35s ease;
}

.report-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.layout-copy h3 {
  margin: 0.3rem 0 0.35rem;
}

.layout-copy p {
  margin: 0;
  color: var(--muted);
}

.layout-right {
  display: grid;
  gap: 0.9rem;
}

.stack-bars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem 0.9rem;
}

.stack-bar span {
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.9);
}

.bar-rail {
  position: relative;
  margin-top: 0.25rem;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffb347, #ff6100);
  box-shadow: 0 0 16px rgba(255, 97, 0, 0.7);
  transform-origin: left;
  position: relative;
}

.bar-fill::after {
  content: attr(data-bar) "%";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  color: #050505;
  font-weight: 700;
  opacity: 0.9;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  font-size: 0.75rem;
  color: rgba(229, 229, 229, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 20% 0, rgba(255, 97, 0, 0.1), #0b0b0b 70%);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 97, 0, 0.8);
}

.tune-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  background: radial-gradient(circle at 20% 0, rgba(255, 97, 0, 0.08), #060606 70%);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 0.5rem;
}

.tune-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 0.6rem;
}

.tune-row label {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.9);
}

.bar-slider {
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.bar-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff6100);
  box-shadow: 0 0 18px rgba(255, 97, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.bar-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff6100);
  box-shadow: 0 0 18px rgba(255, 97, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* MAP SECTION */
.map-section {
  padding-top: 0;
  padding-bottom: 3.6rem;
}

.map-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #050505, #020202 70%);
  box-shadow: var(--shadow-strong);
  padding: 1.6rem 1.5rem 1.4rem;
}

.map-header {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.map-title-group h2 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.6rem;
}

.map-title-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 30rem;
}

.map-subtext {
  margin-top: 0.45rem;
  color: rgba(245, 245, 245, 0.8);
}

.map-subtext {
  margin-top: 0.4rem;
}

.map-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.9);
}

.map-metadata {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-metadata > div {
  padding: 0.5rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.9);
}

.map-frame {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.map-frame iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* FOOTER */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), #010101);
  padding: 1.8rem 1.5rem;
  margin-top: 1.6rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  padding-top: 0.8rem;
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347, #ff6100);
  box-shadow: 0 0 22px rgba(255, 97, 0, 0.5);
}

/* ANIMATIONS */
@keyframes driftStars {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-80px, -80px, 0);
  }
}

@keyframes orbitDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(20px, 10px, 0) rotate(360deg);
  }
}

@keyframes orbitDriftReverse {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-25px, -10px, 0) rotate(-360deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

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

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

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

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 0.8rem 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-soft);
    display: none;
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding-inline: 1.1rem;
  }

  .section {
    padding-inline: 1.1rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-inline: 1.3rem;
  }
}
