/* KeskinPOS coming-soon landing — split editorial, distinct from marketing site */

body.soon {
  min-height: 100svh;
  background: #0c111d;
  color: #f1f3f6;
  font-family: "Manrope", var(--font), system-ui, sans-serif;
}

body.soon .site-header,
body.soon .site-footer { display: none; }

.soon-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.soon-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem) 3.25rem;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% 108%, rgba(234, 88, 12, .42), transparent 58%),
    radial-gradient(640px 380px at 88% -10%, rgba(234, 88, 12, .18), transparent 55%),
    linear-gradient(165deg, #0c111d 0%, #101828 52%, #1a120c 100%);
  color: #f1f3f6;
}

.soon-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 80%, #000 10%, transparent 70%);
  pointer-events: none;
}

.soon-stage::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #ea580c;
}

.soon-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: auto;
  font-family: "Syne", var(--display), sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .82rem;
}

.soon-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.soon-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Manrope", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fdba74;
  margin-bottom: 1rem;
}

.soon-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #ea580c;
  box-shadow: 0 0 0 0 rgba(234, 88, 12, .55);
  animation: soonPulse 1.8s ease-out infinite;
}

@keyframes soonPulse {
  70% { box-shadow: 0 0 0 10px rgba(234, 88, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

.soon-stage h1 {
  position: relative;
  z-index: 1;
  font-family: "Syne", var(--display), sans-serif;
  font-weight: 800;
  font-size: clamp(4.2rem, 12vw, 8.4rem);
  line-height: .86;
  letter-spacing: -.06em;
  margin: 0 0 .85rem;
  max-width: none;
  color: #fff;
}

.soon-tag {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: #98a2b3;
  max-width: 18rem;
}

.soon-panel {
  background: #f7f8fa;
  color: #101828;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 4vw, 3.25rem);
}

.soon-panel-inner {
  width: min(100%, 420px);
}

.soon-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.35rem;
  padding: .28rem .35rem .28rem .75rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.soon-status code {
  background: #ea580c;
  color: #fff;
  border-radius: 999px;
  padding: .22rem .55rem;
  font-size: .72rem;
  font-weight: 700;
}

.soon-lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: #344054;
  margin-bottom: 1.75rem;
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}

.soon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .75rem 1.2rem;
  border-radius: 12px;
  font-family: "Syne", var(--display), sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s;
}

.soon-btn span {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  opacity: .9;
}

.soon-btn--primary {
  background: #ea580c;
  color: #fff;
  box-shadow: 0 12px 28px rgba(234, 88, 12, .28);
}

.soon-btn--primary:hover {
  background: #c2410c;
  transform: translateY(-1px);
}

.soon-btn--ghost {
  background: #fff;
  color: #101828;
  border: 1px solid #e4e7ec;
}

.soon-btn--ghost:hover {
  border-color: #cfd4dc;
  background: #fff;
}

.soon-meta {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e4e7ec;
  margin-bottom: 1.5rem;
}

.soon-meta dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #667085;
  margin-bottom: .2rem;
}

.soon-meta dd,
.soon-meta a {
  font-weight: 600;
  color: #101828;
}

.soon-meta a:hover { color: #c2410c; }

.soon-legacy {
  font-size: .88rem;
  font-weight: 600;
  color: #667085;
}

.soon-legacy::after { content: " →"; }
.soon-legacy:hover { color: #ea580c; }

@media (max-width: 860px) {
  .soon-page { grid-template-columns: 1fr; }
  .soon-stage {
    min-height: 46svh;
    padding: 1.5rem 1.35rem 2rem;
  }
  .soon-stage h1 { font-size: clamp(3.4rem, 18vw, 5.2rem); }
  .soon-panel { padding: 2rem 1.35rem 2.5rem; }
  .soon-btn { flex: 1 1 auto; }
}

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