/* QwickBridge Coming Soon — tokens aligned with the site design system */

@font-face {
  font-family: 'Google Sans Flex Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 1 1000;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  --qb-bg: #f5f8fc;
  --qb-surface: #ffffff;
  --qb-border: rgba(13, 22, 34, 0.09);
  --qb-text: #0b1420;
  --qb-text-mid: #4a5663;
  --qb-text-dim: #69747f;
  --qb-link: #0b63c4;
  --qb-link-hover: #0a4e9c;
  --qb-accent-ink: #0a6f80;
  --qb-focus: #1e86a0;
  --qb-green: #00c422;
  --qb-teal: #00897a;
  --qb-cyan: #0680a0;
  --qb-blue: #0243d2;
  --qb-shadow: 0 12px 40px -28px rgba(11, 20, 32, 0.28);
  --qb-font: 'Google Sans Flex Variable', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--qb-bg);
  color: var(--qb-text);
  font-family: var(--qb-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.004em;
  font-variation-settings: 'opsz' 22;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--qb-focus);
  outline-offset: 2px;
  border-radius: 8px;
}

.soon {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.soon__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(46% 60% at 50% 34%, rgba(6, 128, 160, 0.16), transparent 70%),
    radial-gradient(38% 52% at 78% 26%, rgba(2, 67, 210, 0.14), transparent 70%),
    radial-gradient(38% 52% at 22% 30%, rgba(0, 196, 34, 0.13), transparent 70%);
}

.soon__card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  min-height:430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 5vw, 48px);
  background: var(--qb-surface);
  border: 1px solid var(--qb-border);
  border-radius: 24px;
  box-shadow: var(--qb-shadow);
  animation: soon-in 0.7s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

.soon__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(95deg, var(--qb-green), var(--qb-teal), var(--qb-cyan), var(--qb-blue));
}

.soon__logo {
  height: 40px;
  width: auto;
  max-width: min(240px, 72vw);
  object-fit: contain;
  flex-shrink: 0;
}

.soon__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding:0;
  width: 100%;
}

.soon__title {
  margin: 0;
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: -0.038em;
  text-wrap: balance;
  font-variation-settings: 'opsz' 128, 'ROND' 100;
  background: linear-gradient(95deg, #0a7d2c, #0a6f80, #2c6def);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.soon__message {
  margin: 0;
  max-width: 34ch;
  color: var(--qb-text-mid);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  text-wrap: pretty;
}

.soon__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--qb-border);
  flex-shrink: 0;
}

.soon__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--qb-text-mid);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}

.soon__contact:hover {
  color: var(--qb-link-hover);
}

.soon__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--qb-accent-ink);
}

@keyframes soon-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 559px) {
  .soon {
    padding: 16px;
    align-items: stretch;
  }

  .soon__card {
    min-height: calc(100dvh - 32px);
    padding: 28px 20px 24px;
  }

  .soon__logo {
    height: 34px;
  }

  .soon__body {
    padding: 32px 0;
    gap: 12px;
  }

  .soon__contacts {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon__card {
    animation: none;
  }
}
