/* ==========================================================================
   Organizasyon360 — Coming Soon
   ========================================================================== */

:root {
  --accent: rgb(232, 93, 4);
  --accent-light: rgb(255, 148, 60);
  --accent-dark: rgb(200, 72, 0);
  --accent-08: rgba(232, 93, 4, 0.08);
  --accent-12: rgba(232, 93, 4, 0.12);
  --accent-20: rgba(232, 93, 4, 0.2);
  --accent-35: rgba(232, 93, 4, 0.35);
  --ink: #12121a;
  --text: #45455a;
  --muted: #7a7a8c;
  --bg: #f7f4ef;
  --bg-warm: #fffdf9;
  --surface: rgba(255, 255, 255, 0.85);
  --border: rgba(18, 18, 26, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --shadow-panel: 0 16px 48px rgba(18, 18, 26, 0.08), 0 4px 16px rgba(232, 93, 4, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* Background
   -------------------------------------------------------------------------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%, var(--accent-12), transparent 55%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.ambient__grid {
  position: absolute;
  inset: -28px;
  background-image:
    linear-gradient(rgba(18, 18, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 26, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 15%, transparent 72%);
  animation: grid-drift 48s linear infinite;
}

@keyframes grid-drift {
  to { transform: translate(28px, 28px); }
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orb-drift 14s ease-in-out infinite;
}

.ambient__orb--1 {
  width: 380px;
  height: 380px;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 93, 4, 0.26), transparent 70%);
}

.ambient__orb--2 {
  width: 240px;
  height: 240px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.12), transparent 70%);
  animation-delay: -5s;
  animation-duration: 18s;
}

.ambient__sparkles {
  position: absolute;
  inset: 0;
}

.ambient__sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: sparkle 6s ease-in-out infinite;
}

.ambient__sparkles span:nth-child(1) { left: 12%; top: 22%; animation-delay: 0s; }
.ambient__sparkles span:nth-child(2) { left: 78%; top: 18%; animation-delay: -1.2s; width: 3px; height: 3px; }
.ambient__sparkles span:nth-child(3) { left: 88%; top: 62%; animation-delay: -2.4s; }
.ambient__sparkles span:nth-child(4) { left: 22%; top: 70%; animation-delay: -3.6s; width: 3px; height: 3px; }
.ambient__sparkles span:nth-child(5) { left: 52%; top: 38%; animation-delay: -4.8s; }
.ambient__sparkles span:nth-child(6) { left: 68%; top: 55%; animation-delay: -2s; width: 3px; height: 3px; }
.ambient__sparkles span:nth-child(7) { left: 8%; top: 48%; animation-delay: -3.2s; }
.ambient__sparkles span:nth-child(8) { left: 42%; top: 82%; animation-delay: -5.5s; width: 5px; height: 5px; }

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); opacity: 1; }
  50% { transform: translate(0, -16px); opacity: 0.85; }
}

.ambient__orb--1 {
  animation-name: orb-drift-center;
}

@keyframes orb-drift-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  20% { opacity: 0.6; }
  50% { opacity: 0.25; transform: scale(1) translateY(-12px); }
  80% { opacity: 0.5; }
}

/* Layout
   -------------------------------------------------------------------------- */

.shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
  animation: fade-up 0.7s var(--ease) both;
}

.logo {
  display: inline-block;
  line-height: 0;
  transition: transform 0.25s var(--ease);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo__img {
  width: clamp(210px, 48vw, 280px);
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(232, 93, 4, 0.18));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero panel
   -------------------------------------------------------------------------- */

.hero {
  width: 100%;
}

.hero__panel {
  position: relative;
  text-align: center;
  padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero__panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(18, 18, 26, 0.1), 0 8px 28px rgba(232, 93, 4, 0.1);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 30%,
    var(--accent-35) 50%,
    transparent 70%
  );
  background-size: 300% 300%;
  animation: panel-shimmer 8s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__panel::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--accent-12), transparent 65%);
  pointer-events: none;
  animation: panel-glow 5s ease-in-out infinite;
}

@keyframes panel-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes panel-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero__panel > * {
  position: relative;
  z-index: 1;
}

.hero__panel .badges {
  animation: fade-up 0.65s var(--ease) 0.12s both;
}

.hero__panel .hero__eyebrow {
  animation: fade-up 0.65s var(--ease) 0.18s both;
}

.hero__panel .hero__title-wrap {
  animation: fade-up 0.65s var(--ease) 0.24s both;
}

.hero__panel .hero__topics {
  animation: fade-up 0.65s var(--ease) 0.28s both;
}

.hero__panel .hero__subtitle {
  animation: fade-up 0.65s var(--ease) 0.3s both;
}

.hero__panel .hero__teaser {
  animation: fade-up 0.65s var(--ease) 0.36s both;
}

.hero__panel .teasers__heading {
  animation: fade-up 0.65s var(--ease) 0.48s both;
}

.hero__panel .hero__whisper {
  animation: fade-up 0.65s var(--ease) 0.6s both, whisper-breathe 5s ease-in-out 0.8s infinite;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.badge {
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-08);
  border: 1px solid var(--accent-20);
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.badge:nth-child(1) { animation: pop-in 0.5s var(--ease) 0.2s both; }
.badge:nth-child(2) { animation: pop-in 0.5s var(--ease) 0.28s both, badge-glow 3s ease-in-out 1s infinite; }
.badge:nth-child(3) { animation: pop-in 0.5s var(--ease) 0.36s both; }

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--accent-20);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border: 1px solid var(--accent-20);
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(232, 93, 4, 0.08);
}

.hero__title-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.75rem;
}

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(260px, 78vw);
  height: min(260px, 78vw);
  transform: translate(-50%, -50%);
  border: 1px dashed var(--accent-20);
  border-radius: 50%;
  opacity: 0.55;
  animation: ring-spin 32s linear infinite;
  pointer-events: none;
}

.hero__ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(232, 93, 4, 0.25);
  animation: ring-spin-inner 18s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-spin-inner {
  to { transform: rotate(360deg); }
}

.hero__title-wrap .hero__title {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.35);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.35); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
  font-size: clamp(2rem, 7.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 20px var(--accent-20); }
}

.hero__title-accent {
  display: block;
  margin-top: 0.08em;
  padding-bottom: 0.18em;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-light) 40%,
    var(--accent-dark) 70%,
    var(--accent-light) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-shimmer 6s ease-in-out infinite;
  position: relative;
}

.hero__title-accent::after {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin: 0.4em auto 0;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), transparent);
  background-size: 200% 100%;
  animation: line-shimmer 5s ease-in-out infinite;
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero__topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 auto 1rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero__topics-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}

.hero__topic {
  padding: 0.25rem 0.55rem;
  color: var(--muted);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  animation: topic-hl 9s ease-in-out infinite;
}

.hero__topic:nth-child(2) { animation-delay: 0s; }
.hero__topic:nth-child(3) { animation-delay: -3s; }
.hero__topic:nth-child(4) { animation-delay: -6s; }

@keyframes topic-hl {
  0%, 18%, 100% {
    color: var(--muted);
    border-color: var(--border);
    background: var(--bg-warm);
    transform: scale(1);
    box-shadow: none;
  }
  22%, 38% {
    color: var(--accent-dark);
    border-color: var(--accent-20);
    background: var(--accent-08);
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.14);
  }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--muted);
  max-width: 36ch;
  margin: 0 auto 1rem;
  line-height: 1.65;
  font-weight: 500;
  text-wrap: balance;
}

.hero__teaser {
  font-size: 0.88rem;
  color: var(--text);
  max-width: 34ch;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.hero__teaser strong {
  color: var(--accent);
  font-weight: 800;
}

.hero__teaser-q {
  display: block;
  margin-top: 0.35rem;
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 600;
  animation: teaser-pulse 3s ease-in-out infinite;
}

@keyframes teaser-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* Stats
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.stat {
  padding: 1rem 0.5rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  animation: fade-up 0.55s var(--ease) both;
}

.stat:nth-child(1) { animation-delay: 0.48s; }
.stat:nth-child(2) { animation-delay: 0.54s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

.stat:hover {
  border-color: var(--accent-20);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.1);
}

.stat__value {
  display: block;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.2rem;
  animation: stat-pulse 4s ease-in-out infinite;
}

.stat:nth-child(2) .stat__value { animation-delay: -1.3s; }
.stat:nth-child(3) .stat__value { animation-delay: -2.6s; }

@keyframes stat-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.92; }
}

.stat__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

/* Teasers — gizli modüller
   -------------------------------------------------------------------------- */

.teasers__heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.teasers__heading span {
  color: var(--accent-dark);
}

.teasers {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 520px) {
  .teasers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.teaser {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.65rem 0.85rem;
  background: var(--bg-warm);
  border: 1px dashed var(--accent-20);
  border-radius: var(--radius-md);
  cursor: default;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
  overflow: hidden;
  animation: fade-up 0.55s var(--ease) both;
}

.teaser:nth-child(1) { animation-delay: 0.58s; }
.teaser:nth-child(2) { animation-delay: 0.64s; }
.teaser:nth-child(3) { animation-delay: 0.7s; }

.teaser:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.teaser:is(:hover, :focus-within) {
  border-style: solid;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.14);
  background: #fff;
}

.teaser__lock {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-08);
  border-radius: 8px;
  transition: transform 0.35s var(--ease);
}

.teaser__lock svg {
  width: 16px;
  height: 16px;
}

.teaser:is(:hover, :focus-within) .teaser__lock {
  transform: scale(1.1);
  animation: lock-unlock 0.5s var(--ease);
}

@keyframes lock-unlock {
  0% { transform: scale(1) rotate(0); }
  40% { transform: scale(1.15) rotate(-8deg); }
  100% { transform: scale(1.1) rotate(0); }
}

.teaser__mask {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  filter: blur(3px);
  opacity: 0.7;
  transition: opacity 0.35s, filter 0.35s, transform 0.35s;
  user-select: none;
}

.teaser__name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.teaser:is(:hover, :focus-within) .teaser__mask {
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.9);
}

.teaser__hint {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  transition: opacity 0.3s, color 0.3s;
}

.teaser:is(:hover, :focus-within) .teaser__hint {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.teaser:nth-child(1):is(:hover, :focus-within) .teaser__hint { font-size: 0; }
.teaser:nth-child(1):is(:hover, :focus-within) .teaser__hint::after { content: "Akıllı Planlama"; font-size: 0.72rem; font-weight: 700; color: var(--accent-dark); }
.teaser:nth-child(2):is(:hover, :focus-within) .teaser__hint { font-size: 0; }
.teaser:nth-child(2):is(:hover, :focus-within) .teaser__hint::after { content: "Premium Deneyim"; font-size: 0.72rem; font-weight: 700; color: var(--accent-dark); }
.teaser:nth-child(3):is(:hover, :focus-within) .teaser__hint { font-size: 0; }
.teaser:nth-child(3):is(:hover, :focus-within) .teaser__hint::after { content: "Anlık Takip"; font-size: 0.72rem; font-weight: 700; color: var(--accent-dark); }

.hero__whisper {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
  padding: 0.65rem 1rem;
  background: var(--accent-08);
  border-radius: 100px;
  border: 1px solid var(--accent-20);
}

@keyframes whisper-breathe {
  0%, 100% {
    box-shadow: none;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(232, 93, 4, 0.1);
    transform: scale(1.02);
  }
}

/* Footer
   -------------------------------------------------------------------------- */

.footer {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  animation: fade-up 0.7s var(--ease) 0.16s both;
}

.footer__line {
  width: min(180px, 50%);
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, var(--accent-20), transparent);
  background-size: 200% 100%;
  animation: line-shimmer 6s ease-in-out infinite;
}

@keyframes line-shimmer {
  0%, 100% { background-position: 0% center; opacity: 0.5; }
  50% { background-position: 100% center; opacity: 1; }
}

.footer__text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

/* Animation
   -------------------------------------------------------------------------- */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .logo:hover,
  .stat:hover,
  .teaser:is(:hover, :focus-within) {
    transform: none;
  }

  .teaser__mask {
    filter: none;
    opacity: 0.5;
  }

  .teaser__hint::after {
    content: none !important;
  }

  .hero__topic {
    animation: none;
    color: var(--accent-dark);
    background: var(--accent-08);
    border-color: var(--accent-20);
  }

  .hero__panel:hover {
    transform: none;
  }
}
