/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* BASE */
body {
font-family: Inter, system-ui, sans-serif;
background: #0f172a;
color: #e5e7eb;
line-height: 1.6;
}

a {
color: inherit;
text-decoration: none;
}

.container {
max-width: 1100px;
margin: auto;
padding: 0 1.5rem;
}

/* HEADER */
.header {
padding: 1.2rem 0;
border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.brand {
font-size: 1.4rem;
font-weight: 600;
}

nav a {
margin-left: 1.5rem;
opacity: 0.8;
}

nav a:hover {
opacity: 1;
}

/* HERO */
.hero {
padding: 5rem 0;
}
.hero-logo {
  position: relative;
  width: 460px;
  height: 460px;
  justify-self: end;
  overflow: visible;
}

.hero h2 {
font-size: 3rem;
margin-bottom: 1rem;
}

.hero p {
max-width: 500px;
margin-bottom: 2rem;
opacity: 0.9;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}


/* BUTTONS */
.btn {
display: inline-block;
background: linear-gradient(135deg, #6366f1, #22d3ee);
color: #0f172a;
padding: 0.8rem 1.6rem;
border-radius: 999px;
font-weight: 600;
}

.btn.secondary {
background: transparent;
border: 1px solid rgba(255,255,255,0.3);
color: #e5e7eb;
}

/* LOGO */
.logo-placeholder {
width: 36px;
height: 660px;
border-radius: 50%;
border: 2px dashed rgba(255,255,255,0.2);
display: flex;
align-items: center;
justify-content: center;
opacity: 0.5;
}

/* SECTIONS */
.section {
padding: 4rem 0;
}

.section.dark {
background: #020617;
}

.section h3 {
font-size: 2rem;
margin-bottom: 1rem;
}

/* SERVICES */
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}

.card {
padding: 2rem;
border-radius: 1rem;
background: rgba(255,255,255,0.05);
text-align: center;
}

/* FOOTER */
.footer {
padding: 2rem;
text-align: center;
font-size: 0.9rem;
opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 800px) {
.hero-grid {
grid-template-columns: 1fr;
text-align: center;
}

nav {
display: none;
}
}

/* === Satelitix SVG Animations === */

.logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

@keyframes logoFade {
to {
opacity: 1;
transform: scale(1);
}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
.logo-svg,
.orbit {
animation: none;
}
}

#satellite-float {
animation: floatIdle 6s ease-in-out infinite;
transform-origin: center;
}

@keyframes floatIdle {
0%   { transform: translateY(0); }
  50%  { transform: translateY(-24px); }
  50%  { transform: translateY(-54px); }
100% { transform: translateY(0); }
}

#satellite-wrapper {
will-change: transform;
}
.logo-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.6);
  transform-origin: center;
  pointer-events: none;
}


