/* ===== Design tokens ===== */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --surface: #161616;
  --surface-2: #1d1d1d;
  --border: #262626;
  --text: #f5f5f5;
  --text-dim: #a3a3a3;
  --accent: #e8810c;
  --accent-2: #f59e0b;
  --accent-soft: rgba(232, 129, 12, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ===== Logo ===== */
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.logo span { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0f00;
  box-shadow: 0 10px 30px rgba(232, 129, 12, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(232, 129, 12, 0.45); }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }
.btn-lg { padding: 17px 34px; font-size: 1.1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(232,129,12,0.18), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 129, 12, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.accent { color: var(--accent); }
.lead {
  font-size: 1.18rem;
  color: var(--text-dim);
  max-width: 30em;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust {
  font-size: 0.92rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-trust .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  flex-shrink: 0;
}

/* Hero phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(232,129,12,0.25), transparent 60%);
  filter: blur(40px);
}
.phone {
  position: relative;
  width: 300px;
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a2a, #0e0e0e);
  border: 1px solid #333;
  box-shadow: var(--shadow);
}
.phone img {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 36em;
  margin: 0 auto 52px;
}

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(232,129,12,0.4); background: var(--surface-2); }
.card-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--accent-soft);
  border-radius: 14px;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.98rem; }

/* ===== Flow ===== */
.flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1 1 250px;
  max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.flow-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  font-weight: 800; font-size: 1.2rem;
  color: #1a0f00;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  margin-bottom: 16px;
}
.flow-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.flow-step p { color: var(--text-dim); font-size: 0.98rem; }
.flow-arrow {
  display: flex; align-items: center;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 700;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.shot {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
.shot:hover { transform: translateY(-5px); }
.shot img { width: 100%; height: auto; }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,129,12,0.14), transparent 60%), var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-inner p { color: var(--text-dim); font-size: 1.15rem; margin-bottom: 30px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-dim); font-size: 0.95rem; margin-top: 10px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-content: flex-start;
}
.footer-links a { color: var(--text-dim); font-size: 0.95rem; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* ===== Legal page ===== */
.legal { padding: 56px 0 72px; }
.legal-inner { max-width: 800px; }
.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.legal-updated { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 32px; }
.legal h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 34px 0 12px;
  color: #fff;
}
.legal p { color: var(--text-dim); margin-bottom: 14px; }
.legal ul { color: var(--text-dim); margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
.legal a { color: var(--accent); text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 620px) {
  .hero { padding: 48px 0 56px; }
  .section { padding: 60px 0; }
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .phone { width: 250px; }
  .footer-inner { flex-direction: column; }
}
