:root {
  --blue-950: #0a0e27;
  --blue-900: #111936;
  --blue-800: #1a1f3a;
  --blue-600: #2563eb;
  --cyan-600: #006b8f;
  --cyan-400: #3daedb;
  --slate-950: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --red-600: #d22532;
  --paper: #f8fafc;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--slate-950);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.home-body {
  overflow-x: hidden;
  background: var(--blue-950);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.universe {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 50%, #0f1428 100%);
}

.universe::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(600px, 80vw);
  height: min(600px, 80vh);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 100, 246, 0.07) 0%, rgba(30, 58, 138, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--white);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hub-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 2rem;
  text-align: center;
}

.company-name {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.tagline {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  font-weight: 400;
}

.solar-system {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  max-width: 1400px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

.beams-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.beam-line {
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.8));
  animation: beamPulse 2s ease-in-out infinite;
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.55; }
}

.sun-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(255, 220, 80, 0.04) 0deg 8deg,
    transparent 8deg 16deg
  );
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.4) 15%, rgba(0,0,0,0.15) 50%, transparent 72%);
  mask-image: radial-gradient(circle, rgba(0,0,0,0.4) 15%, rgba(0,0,0,0.15) 50%, transparent 72%);
  transform: translate(-50%, -50%);
  animation: rotateSunRays 120s linear infinite;
  pointer-events: none;
  z-index: 8;
}

@keyframes rotateSunRays {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.central-planet {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: flex;
  width: 200px;
  height: 200px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 58%, rgba(180, 80, 0, 0.18) 0%, transparent 22%),
    radial-gradient(circle at 50% 40%, #fffef3 0%, #fff3af 35%, #ffd365 60%, #fda02c 78%, #e66410 100%);
  box-shadow: 0 0 50px rgba(255, 240, 100, 1), 0 0 100px rgba(255, 200, 60, 0.9), 0 0 160px rgba(255, 160, 30, 0.65), 0 0 240px rgba(255, 130, 10, 0.35), 0 0 360px rgba(255, 90, 0, 0.12), inset 0 0 40px rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  animation: solarPulse 6s ease-in-out infinite;
}

.central-planet::before,
.central-planet::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 170, 0.35) 0%, rgba(255, 136, 0, 0) 70%);
  filter: blur(8px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: solarFlare 8s ease-in-out infinite;
}

.central-planet::after {
  inset: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 136, 0, 0) 65%);
  animation-direction: reverse;
  animation-duration: 11s;
}

.central-logo-image {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 239, 170, 0.8));
  animation: solarGlow 5s ease-in-out infinite;
}

@keyframes solarPulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(255, 240, 100, 0.9), 0 0 90px rgba(255, 200, 60, 0.8), 0 0 150px rgba(255, 160, 30, 0.55), 0 0 220px rgba(255, 130, 10, 0.28), 0 0 320px rgba(255, 90, 0, 0.1), inset 0 0 35px rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 245, 120, 1), 0 0 120px rgba(255, 210, 70, 1), 0 0 180px rgba(255, 170, 40, 0.75), 0 0 280px rgba(255, 140, 15, 0.45), 0 0 400px rgba(255, 100, 0, 0.15), inset 0 0 50px rgba(255, 255, 255, 0.5);
  }
}

@keyframes solarFlare {
  0%, 100% { opacity: 0.6; transform: rotate(0deg) scale(1); }
  50% { opacity: 1; transform: rotate(12deg) scale(1.12); }
}

@keyframes solarGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 239, 170, 0.7)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 249, 220, 0.95)); }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(100, 140, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 8px 1px rgba(100, 140, 255, 0.06);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.orbit.paused {
  animation-play-state: paused !important;
}

.orbit.repelled {
  opacity: 0.28;
  transform: translate(-50%, -50%) scale(1.5);
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.satellite-planet {
  position: absolute;
  display: flex;
  width: 84px;
  height: 84px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.06) 28%, transparent 30%, rgba(0,0,40,0.18) 48%, transparent 50%, rgba(255,255,255,0.04) 68%, transparent 70%),
    radial-gradient(circle at 32% 28%, #dbeafe 0%, #93c5fd 22%, #3b82f6 55%, #1e40af 80%, #172554 100%);
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.10), 0 0 0 6px rgba(59, 130, 246, 0.06), 0 0 20px rgba(59, 130, 246, 0.55), 0 0 45px rgba(59, 130, 246, 0.22), inset 0 0 22px rgba(0, 0, 0, 0.38);
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.satellite-planet::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 15%;
  width: 35%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.satellite-planet:hover,
.satellite-planet:focus-visible {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 0 0 3px rgba(147,197,253,0.18), 0 0 0 6px rgba(59,130,246,0.1), 0 0 35px rgba(59,130,246,0.85), 0 0 60px rgba(59,130,246,0.35), inset 0 0 22px rgba(0,0,0,0.38);
  outline: 0;
}

.satellite-planet.selected {
  z-index: 100;
  transform: translate(-50%, -50%) scale(2.5);
  box-shadow: 0 0 0 3px rgba(147,197,253,0.3), 0 0 0 6px rgba(59,130,246,0.15), 0 0 80px rgba(59,130,246,1), 0 0 140px rgba(59,130,246,0.65), 0 0 220px rgba(59,130,246,0.25), inset 0 0 30px rgba(0,0,0,0.4);
}

.planet-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 72px;
  min-height: 28px;
  margin-bottom: 0.25rem;
}

.satellite-planet .planet-logo:last-child {
  margin-bottom: 0;
}

.star-bright {
  box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.7), 0 0 8px 3px rgba(200, 220, 255, 0.35);
}

.planet-icon-svg {
  color: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.planet-logo-fromusa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.planet-logo-fromusa svg {
  border-radius: 2px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.fromusa-flag-label {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.fromusa-label-from {
  font-size: 0.38rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.fromusa-label-usa {
  font-size: 0.55rem;
  color: #ff4d5e;
  font-weight: 900;
  text-shadow: 0 0 6px rgba(232, 37, 58, 0.6), 0 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.fromusa-label-domain {
  font-size: 0.3rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

.planet-logo-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.planet-symbol {
  font-size: 1.45rem;
  line-height: 1;
}

.planet-name {
  max-width: 72px;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.planet-info-card {
  position: absolute;
  z-index: 101;
  min-width: 190px;
  max-width: 240px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.45);
  color: #f8fafc;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -125%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.planet-info-card.visible {
  opacity: 1;
}

.planet-info-title {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.planet-info-description {
  margin: 0;
  color: rgba(226, 232, 240, 0.95);
  font-size: 0.75rem;
  line-height: 1.4;
}

.planet-info-hint {
  display: block;
  margin-top: 0.5rem;
  color: rgba(148, 197, 255, 0.95);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.space-hint {
  position: absolute;
  bottom: clamp(3.5rem, 10vh, 6rem);
  left: clamp(1rem, 5vw, 4rem);
  z-index: 35;
  width: min(290px, 36vw);
  padding: 0.85rem 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.92);
  border-radius: 18px 18px 18px 5px;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.38) 0%, transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(255, 255, 255, 0.36),
    0 18px 38px rgba(0, 0, 0, 0.32),
    inset 0 0 18px rgba(255, 255, 255, 0.1);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translate(-18px, 18px) scale(0.82) rotate(-6deg);
  filter: blur(5px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.space-hint::before {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: -12px;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 236, 145, 0.92);
  border-bottom: 2px solid rgba(255, 236, 145, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  transform: rotate(45deg);
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.18);
}

.space-hint::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    28px -10px 0 -2px rgba(255, 255, 255, 0.85),
    52px 2px 0 -3px rgba(147, 197, 253, 0.95);
}

.space-hint.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(-2deg);
  filter: blur(0);
  animation: spaceHintFloat 4s ease-in-out infinite, spaceHintPop 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-hint p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: clamp(0.76rem, 1.4vw, 0.88rem);
  font-weight: 900;
  line-height: 1.45;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.72),
    0 0 12px rgba(255, 255, 255, 0.38);
}

@keyframes spaceHintFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@keyframes spaceHintPop {
  0% { opacity: 0; transform: translate(-26px, 24px) scale(0.55) rotate(-12deg); filter: blur(8px); }
  45% { opacity: 1; transform: translate(6px, -4px) scale(1.08) rotate(2deg); filter: blur(0); }
  70% { transform: translate(-2px, 2px) scale(0.97) rotate(-4deg); }
  100% { transform: translate(0, 0) scale(1) rotate(-2deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  z-index: 20;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(59, 130, 246, 0.8);
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg) translate(-2px, -2px);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}

.about-section {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--blue-800) 0%, #0f1428 50%, var(--blue-800) 100%);
  color: var(--white);
}

.about-content {
  width: min(100%, 980px);
}

.about-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.about-description {
  max-width: 850px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.8;
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mission-box {
  padding: 1.5rem;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
}

.mission-label {
  margin: 0 0 0.75rem;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-text {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.7;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  border: 1px solid var(--cyan-600);
  background: var(--cyan-600);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(0, 107, 143, 0.25);
  background: rgba(61, 174, 219, 0.14);
  color: var(--cyan-600);
}

.button-light {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--cyan-600);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.founder-link {
  color: #93c5fd;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.portfolio-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.18);
}

.portfolio-label {
  margin: 0 0 1.25rem;
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
}

.portfolio-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 220px;
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.portfolio-card:hover {
  border-color: rgba(61, 174, 219, 0.6);
  background: rgba(59, 130, 246, 0.16);
  color: var(--white);
  transform: translateY(-3px);
}

.portfolio-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.2);
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.portfolio-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.85rem;
  line-height: 1.5;
}

.content-body {
  background: var(--paper);
}

.site-header,
.site-footer {
  display: flex;
  width: min(100% - 2rem, 1120px);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(12px);
}

.brand-link,
.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-link {
  color: var(--cyan-600);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav,
.site-footer {
  color: var(--slate-600);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--cyan-600);
}

.content-page {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  padding: 3rem 0 1rem;
}

.compact-page {
  min-height: 68vh;
}

.page-hero {
  max-width: 760px;
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--cyan-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1,
.fromusa-copy h1 {
  margin: 0;
  color: var(--slate-950);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
}

.page-hero p,
.fromusa-copy p,
.feature-grid p,
.steps-section p,
.seller-band p {
  color: var(--slate-600);
  font-size: 1.12rem;
  line-height: 1.75;
}

.article-content {
  max-width: 760px;
  padding-bottom: 2rem;
}

.article-content h2,
.feature-grid h2,
.steps-section h2,
.seller-band h2,
.cta-band h2 {
  margin: 2.25rem 0 0.75rem;
  color: var(--slate-950);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.15;
}

.article-content p,
.article-content li {
  color: var(--slate-600);
  font-size: 1.04rem;
  line-height: 1.8;
}

.article-content a,
.page-hero a {
  color: var(--cyan-600);
  font-weight: 800;
  text-decoration: none;
}

.article-content a:hover,
.page-hero a:hover {
  text-decoration: underline;
}

.callout {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(61, 174, 219, 0.28);
  border-radius: 8px;
  background: rgba(61, 174, 219, 0.1);
}

.callout h2 {
  margin-top: 0;
  color: var(--cyan-600);
  font-size: 1.35rem;
}

.cta-band,
.seller-band {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan-600), #0f4f74);
  color: var(--white);
}

.cta-band h2,
.cta-band p,
.seller-band h2,
.seller-band p,
.seller-band .eyebrow {
  color: var(--white);
}

.cta-band h2,
.seller-band h2 {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.fromusa-page {
  max-width: none;
  width: 100%;
  padding-top: 0;
}

.fromusa-hero,
.feature-grid,
.steps-section,
.seller-band {
  width: min(100% - 2rem, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.fromusa-hero {
  display: grid;
  min-height: 72vh;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.fromusa-copy {
  max-width: 720px;
}

.fromusa-mark {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.86));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.fromusa-mark img {
  width: min(72%, 300px);
  height: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.feature-grid h2,
.steps-section h2,
.seller-band h2 {
  margin-top: 0;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate-700);
  font-weight: 900;
}

.steps-section {
  padding: 4rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.steps-grid article {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: var(--white);
}

.steps-grid span {
  color: var(--red-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.steps-grid h3 {
  margin: 0.75rem 0 0.5rem;
  color: var(--slate-950);
  font-size: 1.1rem;
  font-weight: 900;
}

.steps-grid p {
  margin: 0;
  font-size: 0.98rem;
}

.seller-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 2rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .site-header,
  .site-footer,
  .feature-grid,
  .seller-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .fromusa-hero,
  .feature-grid,
  .seller-band {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .central-planet {
    width: 150px;
    height: 150px;
  }

  .central-logo-image {
    width: 58px;
    height: 58px;
  }

  .satellite-planet {
    width: 64px;
    height: 64px;
  }

  .satellite-planet.selected {
    transform: translate(-50%, -50%) scale(2.1);
    box-shadow: 0 0 80px rgba(59, 130, 246, 1), 0 0 120px rgba(59, 130, 246, 0.6), 0 0 0 3px rgba(147, 197, 253, 0.3), inset 0 0 25px rgba(0, 0, 0, 0.3);
  }

  .planet-name {
    font-size: 0.55rem;
  }

  .planet-info-card {
    min-width: 170px;
    max-width: 210px;
  }

  .space-hint {
    top: auto;
    right: auto;
    bottom: 5.6rem;
    left: 1rem;
    width: min(calc(100vw - 2rem), 300px);
    padding: 0.8rem 0.9rem;
    transform: translate(-18px, 18px) scale(0.82) rotate(-6deg);
  }

  .space-hint.is-visible {
    transform: translate(0, 0) scale(1) rotate(-2deg);
  }

  .space-hint p {
    font-size: 0.78rem;
  }

  .mission-grid,
  .category-list,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .fromusa-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .fromusa-mark {
    min-height: 260px;
  }
}

/* ════════════════════════════════════════════
   SPACE BODY — Tema espacial para páginas de producto
   ════════════════════════════════════════════ */

.space-body {
  background: linear-gradient(180deg, var(--blue-950) 0%, #080c1a 60%, var(--blue-900) 100%);
  color: var(--white);
}

.space-body .stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.space-body .site-header,
.space-body main,
.space-body .fromusa-page,
.space-body .site-footer {
  position: relative;
  z-index: 1;
}

.space-body .site-header {
  background: rgba(8, 12, 26, 0.9);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.space-body .site-nav a,
.space-body .site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.space-body .site-nav a:hover,
.space-body .site-footer a:hover {
  color: var(--cyan-400);
}

.space-body .site-footer {
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

.space-body .eyebrow {
  color: var(--cyan-400);
}

.space-body .eyebrow::before {
  content: '● ';
  color: var(--cyan-400);
  text-shadow: 0 0 8px rgba(61, 174, 219, 0.8);
}

.space-body .page-hero h1,
.space-body .fromusa-copy h1 {
  color: var(--white);
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.space-body .page-hero p,
.space-body .fromusa-copy p {
  color: rgba(226, 232, 240, 0.85);
}

.space-body .article-content h2,
.space-body .feature-grid h2,
.space-body .steps-section h2 {
  color: var(--white);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.28);
}

.space-body .article-content p,
.space-body .article-content li,
.space-body .feature-grid p,
.space-body .steps-section p {
  color: rgba(226, 232, 240, 0.85);
}

.space-body .article-content a,
.space-body .page-hero a {
  color: var(--cyan-400);
}

.space-body .callout {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.22);
  backdrop-filter: blur(10px);
}

.space-body .callout h2 {
  color: #60a5fa;
}

.space-body .callout li {
  color: rgba(226, 232, 240, 0.85);
}

.space-body .fromusa-mark {
  background: linear-gradient(145deg, rgba(20, 30, 80, 0.75), rgba(10, 14, 40, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.22);
  backdrop-filter: blur(12px);
}

.space-body .feature-grid {
  border-top: 1px solid rgba(59, 130, 246, 0.12);
}

.space-body .category-list li {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.space-body .steps-grid article {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(8px);
}

.space-body .steps-grid h3 {
  color: var(--white);
}

.space-body .steps-grid p {
  color: rgba(226, 232, 240, 0.82);
}

.space-body .steps-grid span {
  color: var(--cyan-400);
  text-shadow: 0 0 8px rgba(61, 174, 219, 0.5);
}

.space-body .cta-band,
.space-body .seller-band {
  border: 1px solid rgba(61, 174, 219, 0.25);
  box-shadow: 0 0 30px rgba(0, 107, 143, 0.15);
}

.space-body .button-primary {
  background: var(--cyan-400);
  border-color: var(--cyan-400);
  box-shadow: 0 0 18px rgba(61, 174, 219, 0.35);
}

.space-body .button-secondary {
  border-color: rgba(61, 174, 219, 0.4);
  background: rgba(61, 174, 219, 0.1);
  color: var(--cyan-400);
}

.space-body .button-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.space-body .brand-logo {
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 220, 100, 0.45));
}

.digiturnos-hero-icon {
  filter: drop-shadow(0 0 24px rgba(61, 174, 219, 0.8));
}
