:root {
  --bg: #020d1e;
  --bg-2: #06162e;
  --panel: rgba(9, 31, 62, 0.74);
  --panel-strong: #092247;
  --line: rgba(85, 156, 255, 0.20);
  --text: #f7f9ff;
  --muted: #aebcd1;
  --blue: #1488ff;
  --blue-2: #36b9ff;
  --yellow: #ffd200;
  --green: #23e69d;
  --purple: #9d6cff;
  --cyan: #4be6e6;
  --orange: #ff861d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(17, 96, 210, .18), transparent 26%),
    linear-gradient(180deg, #020b19 0%, #03142c 48%, #020b19 100%);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .13;
  z-index: -1;
}
.page-glow--one { background: #007bff; top: 12%; left: -180px; }
.page-glow--two { background: #006dff; right: -160px; top: 50%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(111, 168, 255, .12);
  background: rgba(2, 13, 30, .82);
  backdrop-filter: blur(18px);
}
.header-inner { height: 86px; display: flex; align-items: center; gap: 28px; }
.brand {
  width: 168px;
  display: inline-flex;
  flex-direction: column;
  line-height: .82;
  font-style: italic;
  letter-spacing: .08em;
}
.brand-small { font-size: .83rem; font-weight: 600; letter-spacing: .23em; margin-left: 12px; }
.brand-main { font-size: 2.15rem; font-weight: 800; }
.brand-wheel { color: var(--yellow); font-style: normal; }

.main-nav { flex: 1; display: flex; justify-content: center; gap: 8px; }
.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 29px 17px;
  color: #c7d2e4;
  font-size: .93rem;
}
.main-nav a svg { width: 17px; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 14px var(--blue);
}
.menu-button {
  display: none;
  margin-left: auto;
  color: #fff;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  padding: 9px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 600;
}
.button svg { width: 18px; }
.button--outline { border: 1px solid #168fff; box-shadow: inset 0 0 24px rgba(0, 120, 255, .08); }
.button--outline:hover { background: rgba(20, 136, 255, .12); }
.header-cta { border-radius: 26px; white-space: nowrap; }

.hero {
  position: relative;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(65, 132, 220, .17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 132, 220, .17) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 34px;
}
.eyebrow {
  margin: 0 0 16px;
  color: #39a7ff;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.1rem, 5.3vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero h1 span, .team-intro h2 span {
  display: block;
  color: #288df5;
  text-shadow: 0 0 28px rgba(26, 132, 255, .20);
}
.hero-description {
  max-width: 650px;
  margin: 25px 0 30px;
  color: var(--muted);
  font-size: 1.19rem;
}
.hero-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.action-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid #165597;
  border-radius: 14px;
  background: rgba(5, 25, 54, .84);
  box-shadow: var(--shadow);
  transition: .25s ease;
}
.action-card:hover { transform: translateY(-4px); border-color: var(--blue-2); }
.action-card--primary { background: linear-gradient(135deg, #087eff, #005be7); border-color: #39b2ff; }
.action-card--yellow { border-color: rgba(255, 210, 0, .65); }
.action-card--yellow .action-icon, .action-card--yellow > svg { color: var(--yellow); }
.action-card strong { display: block; font-size: .93rem; }
.action-card small { display: block; color: #b8c7dc; font-size: .72rem; margin-top: 2px; }
.action-card--primary small { color: #e7f5ff; }
.action-card svg { width: 20px; }
.action-icon svg { width: 25px; height: 25px; }

.hero-visual { position: relative; min-height: 520px; }
.platform {
  position: absolute;
  left: 50%;
  bottom: 44px;
  width: 500px;
  height: 260px;
  transform: translateX(-48%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 160, 255, .38), rgba(0, 70, 180, .1) 55%, transparent 72%);
}
.platform::before, .platform::after, .platform-ring {
  content: "";
  position: absolute;
  inset: 40px 30px;
  border: 2px solid #17b3ff;
  border-radius: 50%;
  box-shadow: 0 0 20px #0f8fff, inset 0 0 24px rgba(14, 139, 255, .25);
}
.platform::after { inset: 67px 68px; opacity: .65; }
.platform-ring{
    inset:92px 110px;
    opacity:.45;
    animation:ringPulse 6s ease-in-out infinite;
}
.laptop {
  position: absolute;
  left: 50%;
  top: -68px;
  width: 310px;
  transform: translateX(-50%) rotate(-4deg);
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.5));
}
.laptop-screen {
  height: 190px;
  padding: 11px;
  border: 7px solid #62799b;
  border-bottom-width: 12px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(145deg, #091a39, #020712);
  box-shadow: inset 0 0 40px rgba(0, 122, 255, .15);
}
.screen-brand { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-style: italic; }
.screen-brand small { letter-spacing: .2em; }
.screen-brand strong { font-size: 2.3rem; line-height: 1; }
.screen-brand span { color: var(--yellow); }
.laptop-base {
  width: 360px;
  height: 24px;
  margin-left: -25px;
  clip-path: polygon(7% 0, 93% 0, 100% 72%, 58% 100%, 42% 100%, 0 72%);
  background: linear-gradient(#87a4cb, #274463);
}

.orbit { position: absolute; border: 1px dashed rgba(43, 163, 255, .25); border-radius: 50%; }
.orbit--one { width: 460px; height: 460px; left: 50%; top: 42%; transform: translate(-50%, -50%); }
.orbit--two { width: 360px; height: 360px; left: 50%; top: 42%; transform: translate(-50%, -50%); }
.orbit--three { width: 270px; height: 270px; left: 50%; top: 42%; transform: translate(-50%, -50%); }
.tech-node {
  position: absolute;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  color: #37c6ff;
  background: rgba(3, 24, 53, .88);
  border: 2px solid #13b1ff;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  filter: drop-shadow(0 0 15px rgba(0, 168, 255, .45));
}
.tech-node svg { width: 30px; height: 30px; }
.tech-node--one { left: 14%; top: 7%; }
.tech-node--two { right: 13%; top: 9%; }
.tech-node--three { left: 2%; top: 34%; }
.tech-node--four { right: 0; top: 37%; }
.tech-node--five { right: 5%; bottom: 13%; }

.section { padding: 74px 0 86px; }
.section-heading { text-align: center; margin-bottom: 38px; }
.section-heading h2, .team-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -.035em;
}
.section-heading p:last-child { color: var(--muted); margin: 10px 0 0; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.service-card {
  min-height: 302px;
  padding: 27px 22px 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 38, 73, .82), rgba(6, 24, 50, .82));
  box-shadow: var(--shadow);
  transition: .28s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(61, 161, 255, .55); }
.service-icon { height: 64px; display: flex; align-items: center; }
.service-icon svg { width: 43px; height: 43px; stroke-width: 1.8; }
.service-icon--green { color: var(--green); }
.service-icon--blue { color: #3c9cff; }
.service-icon--yellow { color: var(--yellow); }
.service-icon--purple { color: var(--purple); }
.service-icon--cyan { color: var(--cyan); }
.service-icon--orange { color: var(--orange); }
.service-card h3 { margin: 7px 0 10px; font-size: 1.12rem; }
.service-card p { margin: 0; color: #c2cde0; font-size: .89rem; }
.service-card a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #32a7ff;
  font-size: .88rem;
  font-weight: 700;
}
.service-card a svg { width: 16px; }

.team-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 50%, rgba(40, 62, 169, .15), transparent 35%);
}
.team-layout { display: grid; grid-template-columns: 280px 1fr; gap: 45px; align-items: center; }
.team-intro p:not(.eyebrow) { color: var(--muted); margin: 18px 0 28px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.member-card {
  min-height: 325px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(12, 36, 70, .9), rgba(6, 23, 47, .85));
}
.member-photo {
  width: 155px;
  height: 155px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid #7e5cff;
  background:
    radial-gradient(circle at 50% 35%, rgba(52, 145, 255, .35), transparent 35%),
    linear-gradient(145deg, #163663, #07152e);
  box-shadow: 0 0 0 8px rgba(76, 84, 255, .06), 0 0 26px rgba(80, 91, 255, .17);
  object-fit: cover;
}
.member-photo span { font-size: 2.2rem; font-weight: 800; color: #d8e8ff; }
.member-card h3 { margin: 0; font-size: 1rem; }
.member-card p { margin: 5px 0 2px; color: #cbd6e7; font-size: .88rem; }
.member-card small { color: #7cbef3; font-size: .72rem; }

.values-section { padding: 35px 0; border-bottom: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value { display: flex; gap: 16px; padding: 12px 30px; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; }
.value > svg { width: 36px; height: 36px; color: #26b5ff; flex: 0 0 auto; }
.value h3 { margin: 0; font-size: .94rem; }
.value p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }

.site-footer { padding: 43px 0; background: rgba(1, 9, 21, .72); }
.footer-layout { display: grid; grid-template-columns: 180px 1fr 220px; gap: 35px; align-items: start; color: #c4cfe0; font-size: .86rem; }
.footer-layout p { margin: 3px 0; }
.footer-layout a:hover { color: #39a7ff; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-layout { grid-template-columns: 1fr; padding: 80px 0 50px; }
  .hero-visual { min-height: 480px; }
  .hero-actions { max-width: 900px; }
  .team-layout { grid-template-columns: 1fr; }
  .team-intro { max-width: 650px; }
}

@media (max-width: 900px) {
  .header-cta { display: none; }
  .menu-button { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    left: 22px; right: 22px; top: 78px;
    padding: 10px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(3, 17, 38, .98);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .main-nav a.active::after { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2) { border-right: 0; }
  .value { border-bottom: 1px solid var(--line); }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { height: 72px; }
  .brand { width: 138px; }
  .brand-main { font-size: 1.8rem; }
  .hero-layout { padding-top: 65px; }
  .hero h1 { font-size: 3.15rem; }
  .hero-visual { min-height: 390px; transform: scale(.78); transform-origin: center top; margin-bottom: -80px; }
  .service-grid, .team-grid, .values-grid, .footer-layout { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .value { border-right: 0; }
  .footer-brand { grid-column: auto; }
}

.logo-misol {
    display: block;
    width: auto;
    height: 58px;
    object-fit: contain;
}

@media (max-width: 620px) {
    .logo-misol {
        height: 45px;
    }
}

.footer-logo {
    height: 65px;
    width: auto;
}

.laptop-logo {
    display: block;
    width: 190px;
    max-width: 72%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}
/* ===== MISOL ONE ===== */


.coming-label{
    margin:18px 0;
    color:#FFD54A;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}
.coming-link{
    color:#ffd700;
    font-weight:700;
    cursor:default;
}

.coming-link:hover{
    text-decoration:none;
}

@keyframes pulseGlow{

0%{
box-shadow:0 0 0 rgba(255,212,0,0);
}

50%{
box-shadow:0 0 18px rgba(255,212,0,.6);
}

100%{
box-shadow:0 0 0 rgba(255,212,0,0);
}

}
/* ===== Animación del aro ===== */

@keyframes ringPulse{

    0%{
        transform:scale(1);
        opacity:.45;
        filter:brightness(1);
    }

    50%{
        transform:scale(1.03);
        opacity:.75;
        filter:brightness(1.35);
    }

    100%{
        transform:scale(1);
        opacity:.45;
        filter:brightness(1);
    }

}

.orbit--one{
    animation: orbitRotate 90s linear infinite;
}

.orbit--two{
    animation: orbitRotate 70s linear infinite reverse;
}

.orbit--three{
    animation: orbitRotate 50s linear infinite;
}

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