/* Daily 043 — premium site theme */
:root {
  --orange: #ff8c00;
  --orange-dark: #e67e00;
  --orange-light: #ffb347;
  --gold: #ffd280;
  --bg: #0f0f12;
  --bg-soft: #1a1a20;
  --surface: #ffffff;
  --surface-soft: #f8f8fa;
  --text: #1c1c1e;
  --text-muted: #6e6e73;
  --border: rgba(0,0,0,0.08);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --gradient: linear-gradient(135deg, #ff8c00 0%, #ffb347 45%, #ffd280 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--surface-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--text);
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }
.nav-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,140,0,0.12);
  color: var(--orange-dark);
  text-decoration: none;
}

.nav-right {
  display: flex; align-items: center; gap: 12px;
}

.lang-switch {
  display: flex; gap: 4px; flex-shrink: 0;
}

.lang-btn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  font-family: inherit;
  line-height: 1;
}
.lang-btn:hover, .lang-btn.active {
  background: rgba(255,140,0,0.15);
  color: var(--orange-dark);
  border-color: rgba(255,140,0,0.35);
}

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,18,0.96);
  color: rgba(255,255,255,0.9);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.cookie-banner p {
  flex: 1; min-width: 200px;
  font-size: 14px; line-height: 1.5; margin: 0;
}
.cookie-banner a { color: var(--gold); }
.cookie-banner .cookie-accept { flex-shrink: 0; }

body.has-cookie-banner { padding-bottom: 80px; }

/* ── Hero (home) ── */
.hero-home {
  background: var(--bg);
  color: #fff;
  padding: 72px 20px 80px;
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,140,0,0.35), transparent),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255,179,71,0.15), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800; letter-spacing: -1px; line-height: 1.08;
  margin-bottom: 16px;
}
.hero-copy .tagline {
  font-size: 20px; color: rgba(255,255,255,0.75);
  margin-bottom: 12px; font-weight: 500;
}
.hero-copy .desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-bottom: 28px; max-width: 420px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pill {
  padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn.disabled {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}
.hero-actions a.btn { text-decoration: none; }
.hero-actions a.btn:hover { text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 14px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(255,140,0,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline {
  background: #fff; color: var(--orange-dark);
  border: 1.5px solid rgba(255,140,0,0.35);
}

/* Phone mockup */
.phone {
  justify-self: center;
  width: 260px; padding: 12px;
  background: #2a2a32; border-radius: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.08);
}
.phone-screen {
  background: #fff; border-radius: 28px; overflow: hidden;
  min-height: 420px;
}
.phone-header {
  background: var(--gradient); padding: 28px 20px 20px; color: #fff;
}
.phone-header h3 { font-size: 18px; font-weight: 800; }
.phone-header p { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.phone-items { padding: 12px; }
.phone-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: 12px; margin-bottom: 8px;
  background: var(--surface-soft); font-size: 13px; font-weight: 600;
}
.phone-dot {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}

/* ── Sections ── */
.section { max-width: 960px; margin: 0 auto; padding: 56px 20px; }
.section-title {
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 8px; text-align: center;
}
.section-sub {
  text-align: center; color: var(--text-muted);
  margin-bottom: 36px; font-size: 16px;
}
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,140,0,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

.trust-bar {
  background: #fff; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px;
}
.trust-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 15px; font-weight: 700; }
.trust-item span { font-size: 13px; color: var(--text-muted); }

.cta-band {
  background: var(--gradient);
  padding: 48px 20px; text-align: center; color: #fff;
}
.cta-band h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.cta-band p { opacity: 0.9; margin-bottom: 20px; }

/* ── Legal pages ── */
.page-hero {
  background: var(--bg); color: #fff;
  padding: 48px 20px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,140,0,0.25), transparent);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 36px); font-weight: 800;
  position: relative; letter-spacing: -0.5px;
}
.page-hero .meta {
  position: relative; margin-top: 10px;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.page-hero .meta a { color: var(--gold); }

.legal-body {
  max-width: 720px; margin: 0 auto;
  padding: 40px 20px 64px;
}
.legal-body h2 {
  font-size: 18px; font-weight: 700;
  margin: 32px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255,140,0,0.2);
}
.legal-body p, .legal-body li { font-size: 15px; color: #333; }
.legal-body ul { padding-left: 1.3em; margin: 8px 0; }
.legal-body table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  margin: 16px 0; background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow);
}
.legal-body th, .legal-body td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.legal-body th { background: var(--surface-soft); font-weight: 700; }
.legal-body code {
  background: rgba(255,140,0,0.1); padding: 2px 6px;
  border-radius: 4px; font-size: 13px;
}
.note {
  margin-top: 32px; padding: 16px 18px;
  background: #fff; border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-size: 13px; color: var(--text-muted);
  box-shadow: var(--shadow);
}

/* Support cards */
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 24px 0;
}
.support-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.support-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 14px; color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  background: var(--bg); color: rgba(255,255,255,0.5);
  padding: 40px 20px; text-align: center; font-size: 13px;
}
.site-footer a { color: rgba(255,255,255,0.75); }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin-bottom: 16px;
}
.footer-links a { font-weight: 500; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .phone { width: 220px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
}
