/* KALYONWEAR — Coming Soon Page
   Yayın için sadece dosyaları public_html içine atmanız yeterlidir. */

:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --text: #f4f1ea;
  --muted: #a5a19a;
  --muted-2: #74716b;
  --line: rgba(244, 241, 234, 0.14);
  --line-strong: rgba(244, 241, 234, 0.32);
  --card: rgba(255, 255, 255, 0.035);
  --accent: #f4f1ea;
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.09), transparent 29rem),
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.05), transparent 24rem),
    linear-gradient(135deg, #030303 0%, #080808 45%, #020202 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

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

.page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.orb {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(70px);
  opacity: .42;
  pointer-events: none;
  z-index: -2;
  animation: drift 13s var(--ease) infinite alternate;
}

.orb-one {
  top: 8%;
  left: -7rem;
}

.orb-two {
  right: -9rem;
  bottom: 3%;
  width: 28rem;
  height: 28rem;
  animation-delay: -4s;
}

.shell {
  min-height: 100vh;
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 28px 0;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.topbar::after,
.footer::before {
  content: "";
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.footer::before {
  background: linear-gradient(90deg, transparent, var(--line));
}

.hero {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 56px 0;
}

.hero-card {
  position: relative;
  width: min(100%, 880px);
  padding: clamp(28px, 7vw, 76px) clamp(20px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(5,5,5,.68);
  box-shadow: 0 40px 120px var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(255,255,255,.16) 47%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: borderSweep 6.5s var(--ease) infinite;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  pointer-events: none;
}

.status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  animation: fadeUp .9s var(--ease) both;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(244,241,234,.56);
  animation: ping 1.8s ease-out infinite;
}

.logo-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: clamp(34px, 8vw, 68px) auto 24px;
}

.logo-wrap {
  position: relative;
  width: min(100%, 720px);
  padding: 12px 0;
  overflow: hidden;
  animation: logoReveal 1.5s var(--ease) .12s both;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  left: -160px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  animation: logoShine 5.4s var(--ease) 1.6s infinite;
  pointer-events: none;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.58));
}

.logo-under {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: clamp(.46em, 1.2vw, .82em);
  text-indent: clamp(.46em, 1.2vw, .82em);
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease) .55s both;
}

.headline {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(30px, 6.4vw, 76px);
  line-height: .95;
  font-weight: 600;
  letter-spacing: -.05em;
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease) .72s both;
}

.copy {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  animation: fadeUp 1s var(--ease) .9s both;
}

.actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  animation: fadeUp 1s var(--ease) 1.08s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.08);
}

.button.primary {
  color: #080808;
  background: var(--text);
  border-color: var(--text);
}

.button.primary:hover {
  background: #ffffff;
}

.progress {
  position: relative;
  z-index: 1;
  width: min(420px, 82%);
  height: 1px;
  margin: 42px auto 0;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}

.progress::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 36%;
  background: linear-gradient(90deg, transparent, var(--text), transparent);
  animation: loadingLine 2.7s ease-in-out infinite;
}

.micro {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(38px, -28px, 0) scale(1.12);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoShine {
  0%, 35% {
    left: -180px;
    opacity: 0;
  }
  48% {
    opacity: .8;
  }
  62%, 100% {
    left: calc(100% + 180px);
    opacity: 0;
  }
}

@keyframes borderSweep {
  0%, 52% {
    transform: translateX(-120%);
    opacity: 0;
  }
  62% {
    opacity: 1;
  }
  82%, 100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(244,241,234,.46);
  }
  80%, 100% {
    box-shadow: 0 0 0 10px rgba(244,241,234,0);
  }
}

@keyframes loadingLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(190%);
  }
  100% {
    transform: translateX(340%);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, var(--max));
    padding: 18px 0;
  }

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

  .topbar::after,
  .footer::before {
    display: none;
  }

  .hero {
    padding: 28px 0;
  }

  .hero-card {
    border-radius: 24px;
  }

  .hero-card::after {
    inset: 12px;
    border-radius: 18px;
  }

  .logo-under {
    letter-spacing: .42em;
    text-indent: .42em;
  }

  .headline {
    letter-spacing: -.04em;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

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