@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --navy-950: #031027;
  --navy-900: #071b3b;
  --navy-850: #0b2449;
  --navy-800: #102d57;
  --gold-500: #d8ab49;
  --gold-400: #ebc86f;
  --gold-300: #f3dfa1;
  --cream: #f7f1df;
  --white: #ffffff;
  --muted: #aebbd0;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(41, 88, 149, 0.18), transparent 34rem),
    linear-gradient(180deg, #06152f 0%, #031027 100%);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
  border-radius: 8px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(3, 16, 39, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 30px rgba(216, 171, 73, 0.22);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: #d8e0ec;
  font-size: 14px;
  font-weight: 600;
}

.nav a { transition: color 180ms ease; }
.nav a:hover { color: var(--gold-300); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.section-heading h2,
.product-copy h2,
.future-card h2,
.legal-hero h1,
.not-found h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(52px, 7vw, 92px);
}

.hero-copy h1 span {
  color: var(--gold-400);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-400);
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c3cddd;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #15203a;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 34px rgba(216, 171, 73, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.hero-card {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(235, 200, 111, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 35%, rgba(216, 171, 73, 0.12), transparent 17rem);
  box-shadow: var(--shadow);
}

.hero-emblem {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  box-shadow: 0 24px 60px rgba(216, 171, 73, 0.24);
  position: relative;
  z-index: 2;
}

.hero-card > p {
  margin: 26px 0 4px;
  font-weight: 800;
  letter-spacing: 0.34em;
  position: relative;
  z-index: 2;
}

.hero-card > span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 2;
}

.orbital {
  position: absolute;
  border: 1px solid rgba(235, 200, 111, 0.14);
  border-radius: 50%;
}

.orbital-one { width: 360px; height: 360px; }
.orbital-two { width: 520px; height: 220px; transform: rotate(-22deg); }

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-a {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 30px;
  background: rgba(53, 101, 166, 0.12);
}

.hero-glow-b {
  width: 340px;
  height: 340px;
  left: -180px;
  bottom: -80px;
  background: rgba(216, 171, 73, 0.07);
}

.values-section {
  padding: 92px 0 110px;
  border-top: 1px solid var(--line);
}

.section-heading.compact { max-width: 760px; }
.section-heading h2,
.future-card h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.value-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--glass);
}

.card-index {
  color: var(--gold-400);
  font-weight: 800;
  font-size: 13px;
}

.glass-card h3 {
  margin: 58px 0 10px;
  font-size: 24px;
}

.glass-card p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(216, 171, 73, 0.09), transparent 28rem),
    rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 88px;
}

.product-visual {
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-frame {
  width: min(360px, 100%);
  padding: 12px;
  border-radius: 46px;
  background: #020914;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 34px 100px rgba(0,0,0,0.48);
}

.phone-top {
  width: 90px;
  height: 22px;
  margin: 0 auto -4px;
  border-radius: 0 0 16px 16px;
  background: #020914;
  position: relative;
  z-index: 2;
}

.game-surface {
  min-height: 610px;
  border-radius: 36px;
  padding: 48px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(56, 108, 180, 0.45), transparent 19rem),
    linear-gradient(180deg, #123a73, #071b3b 72%);
  overflow: hidden;
}

.mini-brand {
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 800;
}

.game-title {
  margin-top: 58px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  color: var(--gold-300);
  text-align: center;
}

.game-surface > p {
  margin: 0;
  color: #dce5f3;
}

.word-slots {
  display: flex;
  gap: 7px;
  margin: 46px 0 24px;
}

.word-slots span {
  width: 42px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  color: #0d2b57;
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.question-card {
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
  color: #e6edf7;
  font-size: 14px;
}

.game-button {
  margin-top: auto;
  width: 100%;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #15203a;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-weight: 900;
  letter-spacing: 0.14em;
}

.product-copy h2 {
  font-size: clamp(54px, 6vw, 82px);
}

.product-lead {
  margin: 22px 0 0;
  color: #c7d1df;
  font-size: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.stat-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
}

.stat-grid strong {
  display: block;
  color: var(--gold-300);
  font-size: 28px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 12px;
}

.product-note {
  color: var(--muted);
  margin: 0 0 30px;
}

.button-store {
  min-height: 66px;
  justify-content: flex-start;
  background: #ffffff;
  color: #0a1730;
  max-width: 310px;
}

.store-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #0d2b57;
  color: var(--gold-300);
}

.button-store span:last-child {
  display: grid;
}

.button-store small {
  font-size: 11px;
  font-weight: 600;
}

.button-store strong {
  font-size: 17px;
}

.future-section { padding: 110px 0; }

.future-card {
  text-align: center;
  padding: 76px 30px;
  border: 1px solid rgba(235, 200, 111, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 171, 73, 0.12), transparent 28rem),
    var(--glass);
}

.future-card p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand { margin-bottom: 14px; }
.footer-grid p { color: var(--muted); }

.footer-links {
  display: grid;
  gap: 10px;
  color: #d3dcea;
  font-size: 14px;
}

.footer-links a:hover, .footer-bottom a:hover { color: var(--gold-300); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #7f91a9;
  font-size: 12px;
}

.legal-main {
  padding: 90px 0 100px;
}

.legal-shell {
  max-width: 920px;
}

.legal-hero {
  padding: 28px 0 46px;
}

.legal-hero h1 {
  font-size: clamp(50px, 7vw, 78px);
}

.legal-hero > p:last-child {
  color: var(--muted);
  max-width: 760px;
  font-size: 17px;
}

.legal-card,
.faq-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
}

.legal-card section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-card h2,
.support-card h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

.legal-card p,
.legal-card li,
.support-card p,
.faq-card p {
  color: #bbc7d7;
}

.legal-card a,
.faq-card a {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card li + li { margin-top: 8px; }

.contact-line {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.legal-note {
  margin: 42px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold-500);
  background: rgba(216, 171, 73, 0.07);
  border-radius: 0 14px 14px 0;
  font-size: 13px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--glass);
}

.primary-support {
  grid-column: 1 / -1;
  padding: 38px;
  background:
    radial-gradient(circle at 85% 10%, rgba(216,171,73,0.1), transparent 18rem),
    var(--glass);
}

.support-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: rgba(216,171,73,0.12);
  color: var(--gold-300);
  font-weight: 800;
}

.primary-support .button { margin-top: 12px; }

.faq-card {
  margin-top: 24px;
}

.faq-card details {
  border-top: 1px solid var(--line);
}

.faq-card details:first-of-type {
  margin-top: 8px;
}

.faq-card summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  color: #e9eef6;
}

.faq-card details p {
  margin-top: 0;
  padding-bottom: 20px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.not-found-card {
  max-width: 700px;
  text-align: center;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.not-found .hero-emblem { margin: 0 auto 26px; }
.not-found h1 { font-size: clamp(44px, 7vw, 72px); }
.not-found p:not(.eyebrow) { color: var(--muted); margin-bottom: 28px; }

@media (max-width: 920px) {
  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 52px; }
  .hero-card { min-height: 410px; }
  .product-grid { gap: 48px; }
  .product-visual { order: 2; min-height: auto; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { position: static; }
  .nav-wrap { min-height: 68px; }
  .nav a:first-child { display: none; }
  .nav { gap: 16px; font-size: 13px; }
  .brand-word { font-size: 13px; }
  .hero { padding: 72px 0 62px; }
  .hero-copy h1 { font-size: clamp(46px, 15vw, 66px); }
  .hero-card { min-height: 360px; border-radius: 26px; }
  .hero-emblem { width: 96px; height: 96px; font-size: 60px; }
  .values-section,
  .product-section,
  .future-section { padding: 74px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .product-visual { min-height: auto; }
  .phone-frame { width: min(330px, 100%); }
  .game-surface { min-height: 560px; }
  .word-slots span { width: 38px; height: 44px; }
  .footer-grid,
  .footer-bottom { flex-direction: column; }
  .footer-bottom { align-items: flex-start; }
  .legal-main { padding: 52px 0 70px; }
  .legal-card,
  .faq-card { padding: 24px; border-radius: 22px; }
  .support-grid { grid-template-columns: 1fr; }
  .primary-support { grid-column: auto; padding: 28px; }
  .not-found-card { padding: 36px 24px; }
}

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


/* LATIVERA RESMİ LOGO V1.0 — exact locked master image integration */
.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(216, 171, 73, 0.22);
}

.hero-logo-image {
  width: min(250px, 58%);
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(216, 171, 73, 0.24);
}

.not-found-logo {
  width: 116px;
  margin: 0 auto 26px;
  border-radius: 24px;
}

@media (max-width: 680px) {
  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .hero-logo-image {
    width: min(220px, 64%);
    border-radius: 24px;
  }

  .not-found-logo {
    width: 96px;
  }
}
