/* GoreeCloud public website — v2 */

:root {
  --bg: #050b14;
  --bg-soft: #081321;
  --panel: rgba(13, 28, 48, 0.78);
  --border: rgba(143, 183, 255, 0.16);
  --text: #eef5ff;
  --muted: #a8b8cc;
  --blue: #5aa9ff;
  --blue-strong: #2c83ff;
  --cyan: #65e6ff;
  --orange: #ff9a4a;
  --green: #61d69a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(44, 131, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(101, 230, 255, 0.08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 20, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  filter: drop-shadow(0 9px 22px rgba(44, 131, 255, .22));
}

.brand-text { font-size: 1.06rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: .95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); }

.site-nav .nav-cta {
  color: var(--text);
  border: 1px solid var(--border);
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .5rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 4.7rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: .77rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
}

h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 5.9vw, 5.15rem);
  max-width: 12.5ch;
  margin: 0;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  margin: 0;
}

h3 { font-size: 1.35rem; }

.hero-lede {
  max-width: 63ch;
  color: var(--muted);
  font-size: 1.16rem;
  margin: 1.55rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button.primary {
  color: #04111f;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 40px rgba(44, 131, 255, 0.26);
}

.button.secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.hero-points li::before {
  content: "•";
  color: var(--orange);
  margin-right: .45rem;
}

.hero-card {
  min-height: 455px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 35%, rgba(90, 169, 255, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
  justify-items: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.cloud-orb {
  width: 280px;
  height: 280px;
  position: relative;
  display: grid;
  place-items: center;
}

.orb-core {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(90,169,255,.95), rgba(101,230,255,.65));
  box-shadow: 0 0 90px rgba(90,169,255,.4);
  position: relative;
  z-index: 2;
}

.orb-core img {
  width: 98px;
  height: 98px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(143, 183, 255, 0.34);
  border-radius: 50%;
}

.orbit-one { width: 210px; height: 210px; }
.orbit-two { width: 275px; height: 275px; }

.node {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255,154,74,.7);
}

.n1 { top: 23px; left: 131px; }
.n2 { right: 24px; bottom: 102px; background: var(--cyan); }
.n3 { left: 44px; bottom: 43px; background: var(--blue); }

.hero-card-copy {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(97,214,154,.7);
}

.band {
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.018);
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.band-grid > div {
  padding: 1.45rem 1.2rem;
  border-right: 1px solid var(--border);
}

.band-grid > div:last-child { border-right: 0; }

.band strong,
.band span { display: block; }

.band strong { margin-bottom: .25rem; }

.band span {
  color: var(--muted);
  font-size: .9rem;
}

.section { padding: 7rem 0; }

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.008));
  border-block: 1px solid var(--border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3.2rem;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  position: relative;
  min-height: 276px;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 14px 45px rgba(0,0,0,.14);
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(101,230,255,.34);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(90,169,255,.12);
  border: 1px solid rgba(90,169,255,.22);
  color: var(--cyan);
  font-weight: 900;
}

.service-kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 850;
  margin: 1.2rem 0 .4rem;
}

.service-card h3 { margin: 0; }

.service-card p:not(.service-kicker) {
  color: var(--muted);
  margin-bottom: 3rem;
}

.badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  font-size: .72rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid;
  font-weight: 800;
}

.badge.active {
  color: #9cf0be;
  background: rgba(97,214,154,.08);
  border-color: rgba(97,214,154,.25);
}

.badge.planned {
  color: #bdcce0;
  background: rgba(168,184,204,.06);
  border-color: rgba(168,184,204,.16);
}

.badge.growing {
  color: #ffd0a8;
  background: rgba(255,154,74,.08);
  border-color: rgba(255,154,74,.24);
}

.status-note {
  color: var(--muted);
  font-size: .87rem;
  margin-top: 1.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 5rem;
}

.about-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 2rem;
}

.principle-grid div {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  background: rgba(255,255,255,.025);
}

.principle-grid strong,
.principle-grid span { display: block; }

.principle-grid span {
  color: var(--muted);
  margin-top: .35rem;
  font-size: .9rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 154px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--blue), rgba(90,169,255,.08));
}

.timeline article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 3rem;
  position: relative;
}

.timeline article::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid var(--bg);
  position: absolute;
  left: 149px;
  top: 1.5rem;
  z-index: 2;
}

.timeline time {
  padding-top: 1.25rem;
  color: var(--cyan);
  font-size: .83rem;
  font-weight: 850;
}

.timeline article > div {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  padding: 1.25rem 1.4rem;
}

.timeline h3 { margin: 0 0 .4rem; }

.timeline p {
  color: var(--muted);
  margin: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(90,169,255,.08), transparent 9rem),
    rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(101,230,255,.38);
  background:
    radial-gradient(circle at 20% 10%, rgba(90,169,255,.14), transparent 9rem),
    rgba(255,255,255,.035);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(90,169,255,.1);
  border: 1px solid rgba(90,169,255,.2);
  font-weight: 900;
  font-size: 1rem;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-letter { font-size: 1.05rem; }

.social-card span:not(.social-icon),
.social-card small { color: var(--muted); }

.social-card small { margin-top: .6rem; }

.contact-section { padding-top: 5rem; }

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3.5rem;
  border: 1px solid rgba(90,169,255,.24);
  background:
    radial-gradient(circle at 15% 50%, rgba(44,131,255,.14), transparent 30rem),
    var(--panel);
  border-radius: 28px;
  padding: 2.6rem 2.8rem;
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 760px;
}

.contact-card h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.1vw, 3.55rem);
}

.contact-card p:last-child { color: var(--muted); }

.contact-button {
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-brand { color: var(--text); }

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a { text-decoration: none; }

.copyright {
  grid-column: 1 / -1;
  font-size: .82rem;
  margin: .5rem 0 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 390px; }

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

  .band-grid > div:nth-child(2) { border-right: 0; }

  .band-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

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

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

  .social-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(5,11,20,.97);
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .nav-toggle { display: block; }

  .hero { padding-top: 5rem; }

  .hero-card { min-height: 340px; }

  .cloud-orb { transform: scale(.82); }

  .band-grid,
  .service-grid,
  .principle-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .band-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .band-grid > div:last-child { border-bottom: 0; }

  .social-card:last-child { grid-column: auto; }

  .timeline::before,
  .timeline article::before {
    display: none;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .timeline time { padding-top: 0; }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.4rem;
  }

  .contact-card h2 {
    max-width: 13ch;
  }

  .contact-button {
    width: fit-content;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    transition: none !important;
  }
}
