:root {
  color-scheme: dark;
  --bg: #070812;
  --bg-soft: #0d0e20;
  --nav: #11122d;
  --surface: rgba(18, 20, 42, 0.88);
  --surface-strong: #111424;
  --panel: #15182a;
  --border: rgba(154, 158, 222, 0.22);
  --border-soft: rgba(154, 158, 222, 0.11);
  --text: #f7f7ff;
  --muted: #a9b7d2;
  --muted-2: #747f9e;
  --purple: #6f66ef;
  --purple-light: #8b7cff;
  --violet: #934cff;
  --blue: #79a8ff;
  --green: #61d49b;
  --yellow: #efc45a;
  --red: #eb7186;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 50;
  padding: 10px 15px; border-radius: 8px; background: white;
  color: #080914; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.page-shell {
  position: relative; isolation: isolate; min-height: 100vh; min-height: 100svh;
  overflow: hidden; display: flex; flex-direction: column;
}
.page-shell::before {
  content: ""; position: absolute; inset: 0; z-index: -5;
  background:
    radial-gradient(circle at 87% 43%, rgba(112, 67, 210, .14), transparent 34%),
    radial-gradient(circle at 8% 20%, rgba(73, 74, 172, .16), transparent 30%),
    linear-gradient(115deg, #10112b 0%, #080914 47%, #0b0917 100%);
}
.grid {
  position: absolute; inset: 0; z-index: -4; opacity: .055;
  background-image:
    linear-gradient(rgba(148, 164, 207, .62) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 164, 207, .62) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}
.glow { position: absolute; z-index: -3; border-radius: 999px; filter: blur(8px); }
.glow-one {
  width: 480px; height: 480px; right: -210px; top: -190px;
  background: radial-gradient(circle, rgba(112, 92, 240, .18), transparent 67%);
}
.glow-two {
  width: 390px; height: 390px; left: -210px; bottom: -160px;
  background: radial-gradient(circle, rgba(89, 73, 190, .14), transparent 70%);
}

.site-header, .hero, footer { width: min(1180px, calc(100% - 48px)); margin-left: auto; margin-right: auto; }
.site-header {
  padding: 19px 0; display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.site-header::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 100vw;
  transform: translateX(-50%); height: 1px; background: rgba(124, 125, 190, .12);
}
.cloud-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.cloud-brand img { width: 55px; height: 42px; object-fit: contain; }
.cloud-brand span { font-size: 18px; font-weight: 760; letter-spacing: -.35px; }
.header-link {
  padding: 11px 17px; color: white; font-size: 14px; font-weight: 700;
  text-decoration: none; border-radius: 12px;
  background: linear-gradient(135deg, #7770f4, #5f5ee7);
  box-shadow: 0 10px 28px rgba(83, 82, 218, .24); transition: .2s;
}
.header-link:hover { transform: translateY(-1px); box-shadow: 0 13px 34px rgba(83, 82, 218, .34); }

.hero {
  flex: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: clamp(44px, 7vw, 100px); align-items: center; padding: 70px 0 84px;
}
.status-pill {
  width: fit-content; display: flex; align-items: center; gap: 9px; padding: 9px 14px;
  border: 1px solid rgba(126, 117, 246, .48); border-radius: 99px;
  background: linear-gradient(90deg, rgba(97, 93, 226, .14), rgba(116, 84, 202, .08));
  color: #d6d5ff; font-size: 12px; font-weight: 750; letter-spacing: .025em;
  text-transform: uppercase;
}
.status-pill span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--violet);
  box-shadow: 0 0 0 5px rgba(147, 76, 255, .09), 0 0 18px rgba(147, 76, 255, .72);
  animation: pulse 2.4s ease-in-out infinite;
}
.eyebrow { margin: 28px 0 7px; color: #9aa7ca; font-size: 13px; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 0 0 25px; font-size: clamp(47px, 5.15vw, 74px); line-height: 1.025; letter-spacing: -.058em; font-weight: 820; }
h1 strong {
  font-weight: 820; background: linear-gradient(95deg, #ffffff 0%, #c8cbff 48%, #8e82ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.72; }
.note { max-width: 620px; margin: 16px 0 0; color: var(--muted-2); font-size: 13px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 50px; padding: 13px 19px; border-radius: 11px; display: inline-flex;
  align-items: center; justify-content: center; gap: 13px; font-size: 14px;
  font-weight: 750; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .header-link:focus-visible, .cloud-brand:focus-visible, footer a:focus-visible {
  outline: 3px solid rgba(125, 118, 246, .55); outline-offset: 3px;
}
.primary { background: linear-gradient(135deg, #7770f4, #5c59df); color: white; box-shadow: 0 14px 35px rgba(83, 82, 218, .27); }
.primary:hover { box-shadow: 0 18px 46px rgba(83, 82, 218, .36); }
.secondary { color: #e5e7ff; border: 1px solid var(--border); background: rgba(19, 21, 42, .72); }
.secondary:hover { border-color: rgba(138, 132, 246, .48); background: rgba(29, 31, 57, .9); }
.contact-strip {
  display: flex; align-items: center; gap: 10px; margin-top: 48px; padding-top: 20px;
  border-top: 1px solid var(--border-soft); color: #75819f; font-size: 12px;
}
.contact-strip a { color: #b9c4e0; text-decoration: none; }
.contact-strip a:hover { color: #aaa5ff; }

.visual { position: relative; min-height: 500px; display: grid; place-items: center; perspective: 1200px; }
.portal-card {
  position: relative; width: min(100%, 505px); padding: 25px; overflow: hidden;
  border: 1px solid rgba(123, 132, 174, .3); border-radius: 22px;
  background: linear-gradient(145deg, rgba(22, 25, 47, .96), rgba(9, 11, 25, .98));
  box-shadow: 0 32px 95px rgba(0, 0, 0, .5), inset 0 1px rgba(255,255,255,.045);
  transform: rotateY(-4deg) rotateX(2deg); animation: float 7s ease-in-out infinite;
  backdrop-filter: blur(12px);
}
.portal-card::before {
  content: ""; position: absolute; top: -95px; right: -80px; width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(113, 94, 239, .16), transparent 68%);
}
.card-head { position: relative; display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.card-brand { display: flex; align-items: center; gap: 10px; color: #f0f1ff; font-size: 12px; font-weight: 750; }
.card-brand img { width: 34px; height: 27px; object-fit: contain; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(97, 212, 155, .68); }
.readiness { padding: 26px 0 23px; }
.readiness-value { display: flex; align-items: baseline; gap: 10px; }
.readiness-value strong { font-size: 39px; letter-spacing: -.05em; }
.readiness-value span { color: #8995b3; font-size: 13px; }
.progress { height: 7px; margin-top: 17px; overflow: hidden; border-radius: 9px; background: rgba(255,255,255,.07); }
.progress i { display: block; width: 92%; height: 100%; border-radius: 9px; background: linear-gradient(90deg, #756cf2, #8d65f0, #7159cf); box-shadow: 0 0 18px rgba(118, 108, 242, .37); }
.checks { display: grid; gap: 9px; }
.checks > div { display: flex; align-items: center; gap: 13px; padding: 12px 13px; border: 1px solid var(--border-soft); border-radius: 11px; background: rgba(255,255,255,.018); }
.checks > div > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: rgba(97, 212, 155, .09); color: var(--green); font-size: 12px; font-weight: 800; }
.checks > div.active { border-color: rgba(124, 115, 242, .25); background: rgba(106, 101, 228, .075); }
.checks > div.active > span { background: rgba(126, 117, 246, .14); color: #aaa5ff; }
.checks p { margin: 0; display: flex; flex-direction: column; gap: 3px; }
.checks strong { font-size: 11px; color: #e8eaff; }
.checks small { font-size: 9px; color: #74809e; }
.card-message { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-soft); color: #75809d; font-size: 10px; text-align: center; }
.floating-chip { position: absolute; padding: 10px 14px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(131, 139, 183, .24); border-radius: 10px; background: rgba(14, 16, 32, .92); color: #c4cae2; font-size: 10px; font-weight: 700; box-shadow: 0 15px 42px rgba(0,0,0,.32); backdrop-filter: blur(12px); }
.floating-chip span { color: #9992ff; }
.chip-one { left: -8px; bottom: 66px; animation: floatSmall 5s ease-in-out infinite; }
.chip-two { right: -7px; top: 70px; animation: floatSmall 5.5s ease-in-out infinite reverse; }
.orbit { position: absolute; border-radius: 50%; }
.orbit-one { width: 245px; height: 245px; top: 4px; right: -22px; border: 1px solid rgba(117, 108, 242, .12); box-shadow: inset 0 0 90px rgba(117, 108, 242, .035); }
.orbit-two { width: 355px; height: 355px; border: 1px solid rgba(132, 144, 194, .06); }

footer { margin-top: auto; padding: 20px 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--border-soft); }
.corporate-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.corporate-brand img { width: 45px; height: 40px; object-fit: contain; }
.corporate-brand > span { color: #909bb8; font-size: 11px; font-weight: 650; }
.footer-meta { display: flex; align-items: center; gap: 18px; color: #626d89; font-size: 10px; }
.footer-meta a { color: #8792af; text-decoration: none; }
.footer-meta a:hover { color: #aaa5ff; }

@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.72); opacity: .6; } }
@keyframes float { 0%,100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); } 50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-9px); } }
@keyframes floatSmall { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding-top: 52px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .lead, .note { max-width: 680px; }
  .contact-strip { justify-content: center; width: 100%; }
  .visual { width: min(600px, 100%); margin: -8px auto 0; }
}
@media (max-width: 640px) {
  .site-header, .hero, footer { width: min(100% - 32px, 1180px); }
  .site-header { padding: 17px 0; }
  .cloud-brand img { width: 49px; height: 38px; }
  .cloud-brand span { font-size: 16px; }
  .header-link { font-size: 0; padding: 10px 13px; }
  .header-link span { font-size: 18px; }
  .hero { gap: 34px; padding: 43px 0 48px; }
  .eyebrow { margin-top: 23px; }
  h1 { font-size: clamp(40px, 12.5vw, 58px); }
  .lead { font-size: 15px; line-height: 1.68; }
  .note { font-size: 12px; }
  .actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .contact-strip { flex-direction: column; gap: 6px; margin-top: 38px; }
  .visual { min-height: 410px; }
  .portal-card { padding: 20px; border-radius: 16px; transform: none; animation-name: floatMobile; }
  .floating-chip { padding: 8px 10px; font-size: 8px; }
  .chip-one { left: -4px; bottom: 28px; }
  .chip-two { right: -5px; top: 38px; }
  footer { flex-direction: column; justify-content: center; text-align: center; }
  .footer-meta { justify-content: center; flex-wrap: wrap; gap: 10px 15px; }
  .footer-meta span { width: 100%; }
}
@keyframes floatMobile { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
