/* WinKonnect Coming Soon Landing Page */

:root {
  --navy: #06164d;
  --navy-dark: #020a2a;
  --blue: #087cff;
  --blue-bright: #21b5ff;
  --white: #ffffff;
  --muted: #b9c7e8;
  --glass: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(0, 126, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #020a2a 0%, #06164d 50%, #042c79 100%);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.background-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(31, 179, 255, .45), transparent 68%);
  animation: float 9s ease-in-out infinite;
}

.orb-two {
  width: 500px;
  height: 500px;
  bottom: -280px;
  left: -200px;
  background: radial-gradient(circle, rgba(20, 81, 255, .35), transparent 68%);
  animation: float 12s ease-in-out infinite reverse;
}

.site-header,
.hero,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.brand img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
  object-fit: contain;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #dbe6ff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34e69b;
  box-shadow: 0 0 0 5px rgba(52, 230, 155, .12);
  animation: pulse-dot 2s infinite;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 70px;
  padding: 50px 0 70px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #75cfff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow-line {
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue));
}

h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #69d2ff 55%, #3f8dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.time-box {
  min-width: 88px;
  padding: 16px 14px 13px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  text-align: center;
}

.time-box strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.time-box span {
  display: block;
  margin-top: 8px;
  color: #9eb0d8;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.time-separator {
  color: #5b75ac;
  font-size: 24px;
  font-weight: 700;
  transform: translateY(-7px);
}

.notify-form {
  display: flex;
  width: min(100%, 550px);
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.notify-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  color: #fff;
  background: transparent;
}

.notify-form input::placeholder {
  color: #91a3cc;
}

.notify-form button {
  border: 0;
  border-radius: 11px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #087cff, #16b8ff);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.notify-form button span {
  display: inline-block;
  margin-left: 8px;
  transition: transform .2s ease;
}

.notify-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(8, 124, 255, .35);
}

.notify-form button:hover span {
  transform: translateX(3px);
}

.form-message {
  min-height: 20px;
  margin: 9px 0 0 4px;
  color: #73efb3;
  font-size: 12px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: #8398c5;
  font-size: 12px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37d99a;
}

.visual-card {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.card-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 163, 255, .45), transparent 65%);
  filter: blur(10px);
  animation: breathe 5s ease-in-out infinite;
}

.connection-ring {
  position: absolute;
  border: 1px solid rgba(82, 193, 255, .28);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.ring-one {
  width: 380px;
  height: 210px;
  animation: spin 18s linear infinite;
}

.ring-two {
  width: 450px;
  height: 250px;
  transform: rotate(36deg);
  animation: spin-reverse 23s linear infinite;
}

.ring-three {
  width: 510px;
  height: 290px;
  transform: rotate(70deg);
  opacity: .5;
  animation: spin 28s linear infinite;
}

.visual-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(-3px);
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.35));
}

.logo-circle {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 7px dotted rgba(255,255,255,.88);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #31c8ff, #087cff 42%, #071e88 100%);
  box-shadow:
    inset -16px -18px 28px rgba(0,0,0,.28),
    0 0 55px rgba(19, 159, 255, .25);
}

.logo-circle span {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.logo-word {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.065em;
}

.logo-word span {
  display: block;
  color: #9cc9ff;
  font-size: 39px;
  margin-top: -8px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  min-width: 185px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  background: rgba(5, 22, 72, .72);
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  margin-top: 4px;
  color: #8ea6d5;
  font-size: 10px;
}

.card-top {
  top: 70px;
  right: 15px;
  animation: float-card 5s ease-in-out infinite;
}

.card-bottom {
  bottom: 65px;
  left: 0;
  animation: float-card 6s ease-in-out infinite reverse;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #0b8bff, #5bceff);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34e69b;
  box-shadow: 0 0 0 7px rgba(52,230,155,.1);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7187b6;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(22px); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(.95); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }

  .hero-content {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow,
  .trust-row {
    justify-content: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .notify-form {
    margin-inline: auto;
  }

  .visual-card {
    min-height: 380px;
  }

  .card-top {
    top: 15px;
    right: 8%;
  }

  .card-bottom {
    bottom: 20px;
    left: 8%;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding-top: 20px;
    flex-direction: column;
    gap: 18px;
  }

  .brand img {
    width: 230px;
  }

  .status-pill {
    font-size: 10px;
  }

  .hero {
    padding: 35px 0 25px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .countdown {
    justify-content: center;
    gap: 5px;
  }

  .time-box {
    min-width: 62px;
    padding: 13px 8px 11px;
  }

  .time-box strong {
    font-size: 23px;
  }

  .time-box span {
    font-size: 8px;
  }

  .time-separator {
    font-size: 17px;
  }

  .notify-form {
    flex-direction: column;
    padding: 7px;
  }

  .notify-form input {
    width: 100%;
    padding: 14px 12px;
  }

  .notify-form button {
    min-height: 48px;
  }

  .visual-card {
    min-height: 330px;
  }

  .logo-circle {
    width: 92px;
    height: 92px;
  }

  .logo-circle span {
    font-size: 45px;
  }

  .logo-word {
    font-size: 34px;
  }

  .logo-word span {
    font-size: 28px;
  }

  .ring-one {
    width: 290px;
    height: 160px;
  }

  .ring-two {
    width: 340px;
    height: 190px;
  }

  .ring-three {
    width: 390px;
    height: 220px;
  }

  .floating-card {
    min-width: 150px;
    padding: 10px 12px;
  }

  .card-top {
    right: 0;
  }

  .card-bottom {
    left: 0;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
