/* VGSphere Software — static hosting friendly */
:root {
  --bg-deep: #07080c;
  --bg-elevated: #0e1118;
  --bg-card: rgba(20, 24, 34, 0.65);
  --bg-card-solid: #12161f;
  --border: rgba(180, 195, 220, 0.09);
  --border-warm: rgba(201, 162, 126, 0.22);
  --text: #eef1f6;
  --muted: #8e96a8;
  --accent: #5ee0f0;
  --accent-dim: rgba(94, 224, 240, 0.12);
  --accent-2: #a78bfa;
  --gold: #c9a27e;
  --gold-dim: rgba(201, 162, 126, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Poppins", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --max: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(94, 224, 240, 0.14), transparent 52%),
    radial-gradient(ellipse 60% 45% at 100% 20%, rgba(167, 139, 250, 0.09), transparent 45%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(201, 162, 126, 0.06), transparent 50%);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  z-index: 9999;
}
.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(7, 8, 12, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
  color: var(--accent);
}
.logo span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="true"] {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(145deg, #e8f8fb 0%, var(--accent) 45%, #3db8c8 100%);
  color: #061016;
  box-shadow: 0 4px 20px rgba(94, 224, 240, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(94, 224, 240, 0.35);
  text-decoration: none;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-warm);
  color: var(--gold);
  background: var(--gold-dim);
  text-decoration: none;
}

main {
  overflow-x: hidden;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero {
  padding-top: 3.25rem;
  padding-bottom: 4.5rem;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(520px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 em {
    background: linear-gradient(120deg, var(--text) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.85rem;
  font-weight: 400;
}
.lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-pill {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.trust-pill:hover {
  border-color: rgba(201, 162, 126, 0.35);
  background: rgba(201, 162, 126, 0.04);
}
.trust-pill strong {
  color: var(--text);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}
.trust-pill span {
  opacity: 0.92;
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(22, 26, 36, 0.95) 0%, rgba(12, 14, 20, 0.88) 100%);
  border: 1px solid var(--border);
  box-shadow:
    0 4px 3px rgba(0, 0, 0, 0.04),
    0 32px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-card--stack {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 35%, rgba(94, 224, 240, 0.05) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(255, 255, 255, 0.02) 31px,
      rgba(255, 255, 255, 0.02) 32px
    );
  pointer-events: none;
}

.device-duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.35rem 1rem 0.5rem;
  position: relative;
  z-index: 1;
}

.device {
  width: 92px;
  border-radius: 22px;
  background: linear-gradient(180deg, #2a2d36 0%, #12141a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  padding: 6px;
}

.device--ios {
  height: 168px;
}

.device--android {
  height: 178px;
  border-radius: 18px;
}

.device-notch {
  width: 36%;
  height: 5px;
  margin: 4px auto 8px;
  border-radius: 4px;
  background: #0a0b0f;
}

.device-bar {
  width: 28%;
  height: 4px;
  margin: 6px auto 10px;
  border-radius: 3px;
  background: #3a3f4d;
}

.device-screen {
  height: calc(100% - 28px);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(94, 224, 240, 0.15) 0%, rgba(167, 139, 250, 0.12) 50%, rgba(201, 162, 126, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-screen--d {
  border-radius: 12px;
  height: calc(100% - 32px);
  background: linear-gradient(195deg, rgba(167, 139, 250, 0.14) 0%, rgba(94, 224, 240, 0.1) 100%);
}

.code-window {
  position: relative;
  z-index: 1;
  padding: 1rem 1.1rem 1.15rem;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.7rem;
  line-height: 1.55;
  color: #9aa8bc;
}
.code-window--overlay {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.code-window .kw {
  color: var(--accent);
}
.code-window .str {
  color: var(--accent-2);
}
.code-window .cm {
  color: #5c6578;
}

.floating-badge {
  position: absolute;
  bottom: 1.1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold-dim), rgba(94, 224, 240, 0.08));
  border: 1px solid var(--border-warm);
  color: var(--gold);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.section-head {
  margin-bottom: 0.25rem;
}

.section-desc {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 2.25rem;
  font-size: 1.02rem;
}
.section-desc--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 40rem;
}

.grid-services {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.card--lift:hover {
  border-color: rgba(201, 162, 126, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
  font-size: 1.2rem;
  color: var(--accent);
}
.card-icon--soft {
  background: rgba(94, 224, 240, 0.08);
  color: var(--accent);
}
.card-icon--gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 126, 0.2);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.band {
  width: 100%;
}
.band-alt {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(10, 12, 18, 0.5) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band-craft {
  background: linear-gradient(170deg, rgba(14, 16, 22, 0.95) 0%, rgba(7, 8, 12, 1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.craft-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.craft-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .craft-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.craft-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 24, 32, 0.9), rgba(10, 11, 16, 0.95));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.craft-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}
.craft-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-3px);
}
.craft-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(201, 162, 126, 0.35);
  margin-bottom: 0.75rem;
}
.craft-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.craft-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-delay {
    transition-delay: 0s;
  }
}

.contact-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.75;
}
.contact-list li {
  margin-bottom: 0.35rem;
}
.contact-list li::marker {
  color: var(--gold);
}

.products-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.product-card .status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4ade80;
  margin-bottom: 0.65rem;
}
.product-card .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.product-card p {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding-top: 0.5rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 162, 126, 0.25);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-box dl {
  margin: 0;
}
.contact-box dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 1rem;
}
.contact-box dt:first-child {
  margin-top: 0;
}
.contact-box dd {
  margin: 0.25rem 0 0;
  font-size: 1rem;
}
.contact-box a {
  color: var(--text);
}
.contact-box a:hover {
  color: var(--accent);
}

.wa-link {
  color: #25d366;
  font-weight: 500;
}
.wa-link:hover {
  color: #1ebe5d;
}

.contact-box-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hub-links a {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
}
.hub-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}
.site-footer a {
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 799px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(10, 14, 23, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
  }
  .nav.is-open {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .header-cta {
    width: 100%;
    justify-content: flex-end;
    order: 3;
  }
}
