:root {
  --bg: #050608;
  --panel: #0e1116;
  --panel-2: #141922;
  --text: #f4f7fb;
  --muted: #9ba9bb;
  --orange: #ff7a00;
  --orange-soft: #ff9c40;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(255, 122, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #040507, #090b10 42%, #06070a);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.site-shell {
  width: min(1220px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(10, 13, 18, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 122, 0, 0.3);
}

.brand-lockup h1,
.hero-copy h2,
.section h3,
.card h4,
.contact-card h4,
.highlight-panel h4 {
  font-family: "Orbitron", sans-serif;
}

.brand-lockup h1 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.btn {
  text-decoration: none;
  transition: 180ms ease;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

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

.hero,
.section {
  margin-top: 28px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(10, 13, 18, 0.95));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.05;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff5d00);
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span,
.product-tag,
.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card {
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-sheet {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h3,
.split h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid,
.feature-grid,
.faq-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.highlight-panel,
.contact-card,
.timeline-item,
.product-card,
.feature-card,
.faq-card,
.request-form,
.gallery-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.card {
  padding: 22px;
}

.card h4,
.highlight-panel h4,
.contact-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.card p,
.highlight-panel p,
.contact-card p,
.split p,
.timeline-item p,
.stack-list span,
.product-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-card,
.feature-card,
.faq-card,
.gallery-card {
  padding: 24px;
}

.product-card h4,
.feature-card h4,
.faq-card h4,
.gallery-card h4 {
  margin: 14px 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
}

.section-copy {
  margin: 10px 0 0;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.68;
}

.gallery-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.gallery-intro > div {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.gallery-intro strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.gallery-intro span {
  color: var(--muted);
  line-height: 1.62;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-actions {
  margin: 0 0 18px;
}

.gallery-tile {
  overflow: hidden;
  min-width: 0;
  position: relative;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.gallery-tile.featured {
  grid-column: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.gallery-tile-copy {
  padding: 14px 6px 2px;
}

.gallery-tile-copy h4 {
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.gallery-tile-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.gallery-tile-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 12px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--orange-soft);
  background: rgba(255, 122, 0, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.full-gallery-item {
  overflow: hidden;
  min-width: 0;
  position: relative;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
}

.full-gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.full-gallery-copy {
  width: 100%;
  min-width: 0;
  padding: 12px 4px 10px;
  position: relative;
  z-index: 2;
}

.full-gallery-item h4 {
  margin: 0 0 6px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.full-gallery-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.full-gallery-copy .gallery-tile-meta {
  margin-top: 10px;
}

.gallery-hero {
  grid-template-columns: 1fr 0.9fr;
}

.gallery-image-card {
  grid-column: span 2;
  overflow: hidden;
  padding: 14px;
}

.gallery-image-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-caption {
  padding: 16px 10px 8px;
}

.gallery-caption h4 {
  margin-top: 0;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-note-card {
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.mini-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

.about-section p + p {
  margin-top: 14px;
}

.request-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.cta-banner p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.highlight-panel,
.contact-card {
  padding: 24px;
}

.highlight-panel ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.stack-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.request-form {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label.full,
.form-actions.full,
.form-note.full {
  grid-column: 1 / -1;
}

.request-form span {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.request-form select option,
.admin-field select option {
  color: #0f141b;
  background: #ffffff;
}

.request-form textarea {
  resize: vertical;
  min-height: 140px;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #7f8a99;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-actions .btn {
  border: none;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.stack-list strong {
  display: block;
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.social-pill,
.payment-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.social-link {
  text-decoration: none;
}

.social-link:hover {
  color: var(--text);
  border-color: rgba(255, 122, 0, 0.35);
}

.hidden {
  display: none !important;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.snapcode-card {
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.snapcode-card img {
  width: min(220px, 100%);
  display: block;
  margin: 0 auto 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #fff;
}

.snapcode-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline-item {
  padding: 22px;
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.contact-card a:hover {
  color: var(--orange-soft);
}

.admin-shell {
  padding-bottom: 56px;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-section-block {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.admin-section-block h4 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field span {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.admin-field textarea {
  resize: vertical;
  min-height: 140px;
}

.admin-file-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-file-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-file-item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  margin: 28px 0 0;
  padding: 18px 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p,
.footer span {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 980px) {
  .hero,
  .split,
  .card-grid,
  .timeline,
  .product-grid,
  .feature-grid,
  .faq-grid,
  .gallery-grid,
  .gallery-showcase,
  .gallery-intro,
  .cta-banner,
  .full-gallery-grid,
  .gallery-hero {
    grid-template-columns: 1fr;
  }

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

  .request-form {
    grid-template-columns: 1fr;
  }

  .admin-content-grid,
  .admin-file-lists {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .gallery-tile.featured {
    grid-column: span 1;
  }

  .gallery-tile,
  .full-gallery-item,
  .gallery-card,
  .hero-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    isolation: isolate;
    overflow: hidden;
  }

  .gallery-tile img,
  .full-gallery-item img,
  .hero-sheet {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    flex: 0 0 auto;
  }

  .gallery-tile-copy,
  .full-gallery-copy,
  .gallery-tile-copy h4,
  .gallery-tile-copy p,
  .full-gallery-item h4,
  .full-gallery-item p,
  .gallery-card h4,
  .gallery-card p {
    width: 100%;
    min-width: 0;
    clear: both;
  }

  .gallery-tile-copy h4,
  .full-gallery-item h4,
  .gallery-card h4 {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .gallery-tile-copy p,
  .full-gallery-item p,
  .gallery-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .full-gallery-copy .gallery-tile-meta {
    align-self: flex-start;
  }

  .gallery-image-card {
    grid-column: span 1;
  }
}
