/* ============================================================
   Dekor — hero-only landing
   ============================================================ */
:root {
  --yellow:        #e7b92e;
  --yellow-deep:   #d2a111;
  --yellow-soft:   #f7e6a8;
  --yellow-tint:   #fff6da;
  --ink:           #141a1e;
  --ink-2:         #1e252b;
  --ink-3:         #2c353c;
  --ink-soft:      #4a5560;
  --cream:         #f6f4ee;
  --cream-2:       #efece2;
  --white:         #ffffff;
  --line:          rgba(20, 26, 30, 0.08);
  --line-strong:   rgba(20, 26, 30, 0.14);
  --muted:         rgba(20, 26, 30, 0.5);
  --green:         #27c281;
  --display: "Clash Display", "Sora", system-ui, sans-serif;
  --sans:    "Sora", system-ui, -apple-system, sans-serif;
  --r-xl: 32px;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 14px;
  --shadow-card: 0 1px 2px rgba(20, 26, 30, 0.04), 0 8px 24px rgba(20, 26, 30, 0.06);
  --shadow-soft: 0 1px 2px rgba(20, 26, 30, 0.04), 0 4px 14px rgba(20, 26, 30, 0.05);
  --shadow-lg:   0 14px 40px rgba(20, 26, 30, 0.16);
  --viewport-gap: 20px;
  --store-badge-h: 44px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }

body {
  background: #e6e2d8;
  background-image: radial-gradient(circle at 1px 1px, rgba(20, 26, 30, 0.05) 1px, transparent 0);
  background-size: 26px 26px;
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  padding: var(--viewport-gap);
  min-height: 100dvh;
}

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

/* ============ VIEWPORT ============ */
.viewport {
  width: 100%;
  min-height: calc(100dvh - var(--viewport-gap) * 2);
  padding: var(--viewport-gap);
  background: var(--cream);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ============ HEADER — transparent, no card ============ */
.site-header {
  padding: 6px 8px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
}
.mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wordmark span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.header-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.dot-yellow {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(231, 185, 46, 0.22);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, background .15s;
}
.header-cta:hover { background: var(--ink-2); transform: translateY(-1px); }

/* ============ PAGE / HERO container ============ */
.page {
  flex: 1;
  display: flex;
  padding-top: var(--viewport-gap);
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  padding: clamp(36px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
  min-height: min(76vh, 720px);
}

/* ============ VIDEO — edge-to-edge to hero border ============ */
.hero-video-bg {
  position: absolute;
  inset: 0;                 /* tam hero sınırlarına dayalı */
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;   /* hero'nun radius'unu aynen al */
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16 / 9;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  border: 0;
  pointer-events: none;
  opacity: 0.55;            /* daha görünür */
  filter: grayscale(15%) contrast(105%) saturate(0.9);
}
/* Soft veil: sol metnin okunabilir kalması, sağda video görünür */
.hero-video-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,26,30,0.82) 0%, rgba(20,26,30,0.55) 50%, rgba(20,26,30,0.2) 100%),
    linear-gradient(to top, rgba(20,26,30,0.45), transparent 55%);
  pointer-events: none;
}

/* ============ HERO LEFT (only column now) ============ */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 640px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.announce-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 11px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.announce-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(231, 185, 46, 0.3);
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.rating-chip strong { color: var(--white); font-weight: 700; }

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  text-transform: lowercase;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.76);
  max-width: 48ch;
  margin: 20px 0 0;
}

/* Store actions */
.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.store-link {
  display: flex;
  align-items: center;
  height: var(--store-badge-h);
  transition: transform .15s, opacity .15s;
}
.store-link:hover { opacity: 0.88; }
.store-link:active { transform: scale(0.98); }
.store-badge {
  display: block;
  height: var(--store-badge-h);
  width: auto;
  object-fit: contain;
}
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: var(--store-badge-h);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  transition: background .15s, gap .15s;
}
.ghost-link:hover { background: rgba(255,255,255,0.14); gap: 12px; }

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.avatar-stack {
  display: inline-flex;
  align-items: center;
}
.proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  border: 2px solid var(--ink);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.proof-avatar + .proof-avatar { margin-left: -10px; }
.proof-plus { background: rgba(255,255,255,0.16); color: var(--white); }
.proof-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.proof-text strong { color: var(--white); font-weight: 600; font-size: 14px; }
.proof-text span { color: rgba(255,255,255,0.6); font-size: 12px; }

/* Pill tags */
.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.pill-tags span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ HERO VISUAL (right column) ============ */
.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
}

.discovery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 400px;
  border-radius: var(--r-lg);
  background: rgba(20,26,30,0.55);
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.discovery-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 22px 22px;
}
.discovery-glow {
  position: absolute; top: -80px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 185, 46, 0.32), transparent 65%);
  pointer-events: none;
}
.discovery-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 24px;
  background: var(--yellow);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(231, 185, 46, 0.45);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.05); }
}
.discovery-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}
.discovery-ring:nth-of-type(1) { width: 120px; height: 120px; animation: ringExpand 4s ease-out infinite; }
.discovery-ring:nth-of-type(2) { width: 190px; height: 190px; animation: ringExpand 4s ease-out infinite 1.5s; }
@keyframes ringExpand {
  0%   { width: 80px; height: 80px; opacity: 0.55; }
  100% { width: 250px; height: 250px; opacity: 0; }
}

.avatar {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 0 0 2.5px var(--ink-2), 0 6px 16px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.avatar-1 { left: 28px; top: 26px;     background: #e8b7a0; color: #5a2e1b; animation-delay: 0s; }
.avatar-2 { right: 28px; top: 40px;    background: #a7bbd6; color: #1b2a45; animation-delay: 1s; }
.avatar-3 { left: 40px; bottom: 72px;  background: #d8aec9; color: #43203a; animation-delay: 2s; }
.avatar-4 { right: 24px; bottom: 80px; background: #e3c97e; color: #4a3a12; animation-delay: 3s; }
.avatar-5 { left: 50%; top: 28px;      background: #a9c3a6; color: #22361f; animation: floatX 6s ease-in-out infinite; }
@keyframes floatX {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

.live-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 26, 30, 0.7);
  backdrop-filter: blur(10px);
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(39, 194, 129, 0.25);
}

/* ============ FLOATING CARDS over hero ============ */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}

.float-card-room {
  top: -16px;
  left: -28px;
  min-width: 200px;
}
.float-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.float-card-head strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.float-live {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
}
.float-card-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}
.dot-green {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(39,194,129,0.22);
}

.float-card-msg {
  bottom: -20px;
  right: -16px;
  max-width: 240px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation-delay: 2s;
}
.msg-avatar {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: #d8aec9;
  color: #43203a;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}
.msg-body strong {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}
.msg-body p {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.35;
  font-style: italic;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 36px 24px;
  }
  .header-pill { display: none; }
}

@media (max-width: 520px) {
  :root {
    --viewport-gap: 14px;
    --store-badge-h: 40px;
    --r-xl: 22px;
    --r-lg: 20px;
  }
  .site-header { padding: 4px 4px; }
  .wordmark span { font-size: 24px; }
  .mark { width: 38px; height: 38px; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
  .hero { padding: 28px 20px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
}
