/* ======================= */
/* Okan Okay & Co. — Website */
/* ======================= */

:root {
  --bg: #0a0f1a;
  --bg-2: #0f1623;
  --bg-card: #111827;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.72);
  --text-mute: rgba(255,255,255,0.5);
  --cyan: #00E5FF;
  --purple: #a855f7;
  --green: #10b981;
  --orange: #f97316;
  --red: #ef4444;
  --max-w: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.dim { color: var(--text-mute); font-weight: 400; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}
.logo img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 229, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(168, 85, 247, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #06b6d4);
  color: #0a0f1a;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.3), 0 8px 24px -8px rgba(0, 229, 255, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.5), 0 12px 30px -8px rgba(0, 229, 255, 0.6); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-mute);
  font-size: 13px;
}
.dot-sep {
  width: 4px; height: 4px;
  background: var(--text-mute);
  border-radius: 50%;
  opacity: 0.5;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 56px;
  text-align: left;
  max-width: 700px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-dim);
  font-size: 16px;
  margin-top: 14px;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.15s;
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.feature-icon {
  font-size: 28px;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-cyan   { background: rgba(0, 229, 255, 0.12); }
.icon-purple { background: rgba(168, 85, 247, 0.14); }
.icon-green  { background: rgba(16, 185, 129, 0.14); }
.icon-orange { background: rgba(249, 115, 22, 0.14); }
.icon-red    { background: rgba(239, 68, 68, 0.14); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== Privacy cards ===== */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.privacy-card {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.privacy-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.privacy-card p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.price-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(0,229,255,0.05), var(--bg-card));
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.2), 0 20px 40px -20px rgba(0, 229, 255, 0.3);
}
@media (max-width: 880px) {
  .price-card.featured { transform: none; }
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #0a0f1a;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.price-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.price-features li {
  font-size: 14px;
  color: var(--text-dim);
}
.price-trial {
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-align: center;
}

/* ===== Download / Store buttons ===== */
.download-container { text-align: center; }
.store-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: #000;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  transition: transform 0.15s, border-color 0.2s;
  min-width: 200px;
}
.store-btn:hover { transform: translateY(-2px); border-color: var(--text-dim); }
.store-icon {
  font-size: 28px;
  line-height: 1;
}
.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.store-text small {
  font-size: 10px;
  color: var(--text-mute);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.store-text strong {
  font-size: 16px;
  font-weight: 700;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-tag {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-loc {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-mute);
}
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer ul li a {
  font-size: 14px;
  color: var(--text-dim);
}
.footer ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-mute);
}

/* ===== Legal page (privacy/terms) ===== */
.legal-page {
  padding: 60px 0 100px;
}
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-header .meta {
  color: var(--text-mute);
  font-size: 13px;
}
.legal-content {
  max-width: 780px;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 12px 0 12px 22px;
  color: var(--text-dim);
}
.legal-content ul li {
  font-size: 15px;
  margin-bottom: 6px;
}
.legal-content strong { color: var(--text); }

.lang-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.lang-switch a:hover { color: var(--text); border-color: var(--border-strong); }
.lang-switch a.active {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.3);
  color: var(--cyan);
}
