:root {
  /* Vorino brand palette */
  --bg: #0E0E10;
  --bg2: #161618;
  --card: #1C1C1E;
  --card-2: #232326;
  --border: rgba(255,255,255,0.08);
  --accent: #FF9500;        /* iOS-style orange */
  --accent-dark: #E07F00;
  --accent-soft: rgba(255,149,0,0.12);
  --text: #F2F2F7;
  --muted: #98989F;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: rgba(14,14,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px; border-radius: 10px;
  font-weight: 600; font-size: 0.85rem !important;
  transition: opacity .2s, transform .15s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 5vw 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,149,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,149,0,0.04) 0%, transparent 70%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); border: 1px solid rgba(255,149,0,0.3);
  color: var(--accent); padding: 6px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-badge::before { content: "●"; font-size: 0.6rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:0.4 } }
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
h1 span { color: var(--accent); }
.hero-desc {
  color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,149,0,0.3); }
.btn-secondary {
  background: var(--card); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--card-2); }
.btn-disabled {
  background: var(--card); color: var(--muted);
  border: 1px solid var(--border);
  cursor: not-allowed;
  opacity: 0.8;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
}
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.75rem; color: var(--muted); }

/* App Store coming soon badge */
.app-store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); text-decoration: none;
  font-size: 0.95rem; font-weight: 600;
}
.app-store-badge .apple-logo {
  font-size: 1.4rem; line-height: 1;
}
.app-store-badge .badge-text-small {
  display: block; font-size: 0.7rem; color: var(--muted); font-weight: 500;
}
.app-store-badge .badge-text-big {
  display: block; font-size: 0.95rem; color: var(--text); font-weight: 700;
}

/* Phone Mockup */
.phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone {
  width: 240px; height: 480px;
  background: var(--card);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow), 0 0 60px rgba(255,149,0,0.08);
  overflow: hidden;
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #232326 0%, #161618 100%);
  display: flex; flex-direction: column;
  padding: 24px 16px 16px;
  gap: 10px;
}
.phone-bar {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.06);
}
.phone-bar.accent { background: rgba(255,149,0,0.4); width: 60%; }
.phone-bar.soft { background: rgba(255,255,255,0.12); width: 40%; }
.phone-card-mock {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex; align-items: center; gap: 10px;
}
.phone-icon-mock {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,149,0,0.3), rgba(255,149,0,0.12));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.phone-text-mock { flex: 1; }
.phone-text-line {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.12); margin-bottom: 5px;
}
.phone-text-line.short { width: 60%; background: rgba(255,255,255,0.06); }
.phone-glow {
  position: absolute; top: -80px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,149,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
section { padding: 80px 5vw; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 520px; }
.section-header { margin-bottom: 3.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(255,149,0,0.3);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.8rem; margin-bottom: 1rem;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.how-bg { background: var(--bg2); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
  position: relative;
}
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FFB552);
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ── PRIVACY HIGHLIGHT ───────────────────────────────────────────────────── */
.privacy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; max-width: 900px; margin: 0 auto;
}
.privacy-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.privacy-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.privacy-item h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; }
.privacy-item p { color: var(--muted); font-size: 0.8rem; }

/* ── DOWNLOAD ────────────────────────────────────────────────────────────── */
.download-section {
  text-align: center;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
}
.download-box {
  max-width: 560px; margin: 0 auto;
  background: var(--card); border: 1px solid rgba(255,149,0,0.2);
  border-radius: 24px; padding: 3rem 2rem;
  box-shadow: 0 0 60px rgba(255,149,0,0.05);
}
.download-box h2 { margin-bottom: 0.8rem; }
.download-box p { color: var(--muted); margin-bottom: 2rem; }
.download-meta {
  display: flex; justify-content: center; gap: 2rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.download-meta span { color: var(--muted); font-size: 0.8rem; }
.download-meta span b { color: var(--text); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5vw;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.78rem; text-align: center; }

/* ── LEGAL PAGES ─────────────────────────────────────────────────────────── */
.legal-page {
  max-width: 760px; margin: 0 auto;
  padding: 100px 5vw 60px;
}
.legal-page h1 {
  font-size: 2.2rem; margin-bottom: 0.5rem;
  letter-spacing: -0.02em; font-weight: 800;
}
.legal-page .subtitle { color: var(--muted); margin-bottom: 3rem; font-size: 0.9rem; }
.legal-page h2 {
  font-size: 1.25rem; font-weight: 700;
  margin: 2.2rem 0 0.6rem; color: var(--text);
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-size: 1.05rem; font-weight: 700;
  margin: 1.5rem 0 0.4rem; color: var(--text);
}
.legal-page p, .legal-page li {
  color: var(--text); font-size: 0.95rem; margin-bottom: 0.6rem;
  line-height: 1.65;
}
.legal-page p { color: #D1D1D6; }
.legal-page li { color: #D1D1D6; }
.legal-page ul, .legal-page ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-page a { color: var(--accent); }
.legal-page a:hover { text-decoration: underline; }
.legal-page strong, .legal-page b { color: var(--text); font-weight: 700; }
.legal-page hr {
  border: none; border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.legal-page blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 1rem; margin: 1rem 0;
  background: var(--card); border-radius: 0 8px 8px 0;
  color: var(--muted); font-size: 0.9rem;
}
.legal-page blockquote p { color: var(--muted); }
.legal-page table {
  width: 100%; border-collapse: collapse;
  margin: 1rem 0;
  background: var(--card); border-radius: 12px;
  overflow: hidden;
}
.legal-page table th,
.legal-page table td {
  padding: 0.7rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: #D1D1D6;
  vertical-align: top;
}
.legal-page table th {
  background: var(--card-2);
  font-weight: 700; color: var(--text);
}
.legal-page table tr:last-child td { border-bottom: none; }
.legal-page code {
  background: var(--card-2); padding: 2px 6px;
  border-radius: 4px; font-size: 0.85em;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: var(--accent);
}
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  margin-bottom: 2rem; transition: color .2s;
}
.legal-back:hover { color: var(--text); }
.legal-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  margin-bottom: 1rem;
}
.legal-box p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* ── SUPPORT PAGE ────────────────────────────────────────────────────────── */
.support-page .faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin-bottom: 0.8rem;
}
.support-page .faq-item h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
  color: var(--text);
}
.support-page .faq-item p {
  color: #D1D1D6; font-size: 0.9rem;
}
.support-page .contact-box {
  background: var(--card); border: 1px solid rgba(255,149,0,0.25);
  border-radius: var(--radius); padding: 1.8rem;
  text-align: center; margin: 2rem 0 3rem;
}
.support-page .contact-box a {
  color: var(--accent); font-weight: 700; font-size: 1.05rem;
  text-decoration: none;
}
.support-page .contact-box a:hover { text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .phone-wrap { order: -1; }
  .phone { width: 200px; height: 400px; }
  .nav-links .nav-hide { display: none; }
  .hero-stats { gap: 1.2rem; }
  .legal-page table { font-size: 0.8rem; }
  .legal-page table th, .legal-page table td { padding: 0.5rem 0.6rem; }
}
