/* Safreza — Coming Soon */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.cs-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #e6e8ee;
  background: #07080c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  overflow-x: hidden;
}

.cs-page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 32px clamp(20px, 5vw, 64px);
  isolation: isolate;
}

/* Ambient glow */
.cs-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(56, 132, 255, 0.18) 0%, rgba(7, 8, 12, 0) 70%),
    radial-gradient(40% 35% at 80% 90%, rgba(140, 90, 255, 0.14) 0%, rgba(7, 8, 12, 0) 70%),
    radial-gradient(35% 30% at 15% 80%, rgba(0, 200, 200, 0.10) 0%, rgba(7, 8, 12, 0) 70%);
  filter: blur(10px);
}

.cs-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* Header */
.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cs-logo img {
  display: block;
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.cs-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-lang a {
  color: rgba(230, 232, 238, 0.55);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cs-lang a:hover {
  color: #ffffff;
}

.cs-lang a.active {
  color: #ffffff;
}

.cs-lang span {
  color: rgba(230, 232, 238, 0.25);
}

/* Main content */
.cs-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
  max-width: 720px;
  margin: 0 auto;
}

.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 232, 238, 0.7);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 28px;
}

.cs-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3884ff;
  box-shadow: 0 0 12px rgba(56, 132, 255, 0.9);
  animation: cs-pulse 2s ease-in-out infinite;
}

@keyframes cs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.cs-title {
  font-size: clamp(56px, 11vw, 128px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cs-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(230, 232, 238, 0.65);
  margin: 0;
  max-width: 540px;
}

/* Footer */
.cs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: rgba(230, 232, 238, 0.55);
}

.cs-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cs-contact a {
  color: rgba(230, 232, 238, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-contact a:hover {
  color: #ffffff;
}

.cs-dot {
  color: rgba(230, 232, 238, 0.25);
}

.cs-copy {
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .cs-page {
    padding: 24px 20px;
  }

  .cs-logo img {
    height: 30px;
  }

  .cs-footer {
    justify-content: center;
    text-align: center;
  }

  .cs-eyebrow {
    margin-bottom: 20px;
  }
}
