:root {
  --blue-950: #071a45;
  --blue-900: #0b2563;
  --blue-800: #123a96;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-400: #60a5fa;
  --cyan-300: #67e8f9;
  --white: #ffffff;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --green: #16a34a;
  --orange: #f97316;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.20);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slate-950);
  font-size: 1.4rem;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--slate-600); font-weight: 650; font-size: .95rem; }
.nav-links a:hover { color: var(--blue-700); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 20px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 14px 30px rgba(29, 78, 216, .32);
}
.btn-secondary {
  color: var(--blue-800);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline {
  color: var(--blue-700);
  background: white;
  border: 1px solid var(--slate-200);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 24%, rgba(103, 232, 249, .35), transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(96, 165, 250, .25), transparent 32%),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 46%, var(--blue-700) 100%);
  padding: 76px 0 64px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .22;
}
.hero::before {
  inset: -100px auto auto -120px;
  width: 360px; height: 360px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 44px;
  transform: rotate(25deg);
}
.hero::after {
  right: -160px; bottom: -220px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .86rem;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-300); box-shadow: 0 0 0 6px rgba(103,232,249,.16); }
.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: .96;
  letter-spacing: -0.075em;
  max-width: 760px;
}
.hero h1 strong { color: var(--cyan-300); font-weight: inherit; }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  max-width: 660px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.78); font-weight: 650; }
.meta-pill { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); }

.phone-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.phone {
  position: absolute;
  width: 306px;
  min-height: 612px;
  border: 12px solid #111827;
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 102px; height: 26px; border-radius: 99px;
  background: #020617;
  z-index: 4;
}
.phone-main { right: 70px; top: 8px; transform: rotate(3deg); }
.phone-back { left: 30px; bottom: 6px; transform: rotate(-7deg) scale(.88); opacity: .96; }
.phone-header { background: linear-gradient(135deg, #0f3fb4, #1d4ed8); color: white; padding: 50px 18px 18px; }
.phone-title { display:flex; justify-content:space-between; align-items:center; font-weight:800; }
.phone-body { padding: 16px; }
.tabs { display:flex; gap:8px; background:#eef2ff; padding:4px; border-radius:12px; margin-bottom:12px; }
.tab { flex:1; text-align:center; padding:8px; border-radius:10px; font-size:.72rem; color:#475569; font-weight:800; }
.tab.active { background:#1d4ed8; color:white; }
.search { height: 38px; background:#f1f5f9; border-radius: 12px; margin-bottom: 16px; }
.job-card, .report-card, .stat-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 11px;
  box-shadow: 0 8px 20px rgba(2,6,23,.05);
}
.job-top { display:flex; justify-content:space-between; gap:10px; font-size:.76rem; color:#64748b; }
.job-id { color:#1d4ed8; font-weight:900; }
.job-name { margin-top:4px; color:#0f172a; font-weight:900; }
.badge { display:inline-flex; align-items:center; border-radius:999px; padding:4px 8px; background:#dbeafe; color:#1d4ed8; font-size:.68rem; font-weight:900; }
.report-card h3 { margin: 0 0 10px; color:#0f172a; font-size: 1rem; }
.report-grid { display:grid; grid-template-columns: 1fr 1fr; gap:6px; font-size:.72rem; color:#475569; }
.photo-row { display:grid; grid-template-columns: repeat(3, 1fr); gap:6px; margin:12px 0; }
.photo-thumb { height:58px; border-radius:8px; background: linear-gradient(135deg, #94a3b8, #1e293b); }
.signature { height:68px; border:1px solid #cbd5e1; border-radius:10px; display:grid; place-items:center; color:#0f172a; font-family: "Brush Script MT", cursive; font-size:1.5rem; }
.stats { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.stat-card strong { display:block; color:#1d4ed8; font-size:1.5rem; line-height:1; }
.stat-card span { color:#64748b; font-size:.74rem; font-weight:800; }

.section { padding: 82px 0; }
.section-white { background:white; }
.section-blue { background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%); }
.section-header { max-width: 760px; margin: 0 auto 44px; text-align:center; }
.kicker { color: var(--blue-700); font-weight:900; letter-spacing:.08em; text-transform:uppercase; font-size:.78rem; }
.section h2 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.6rem); line-height:1.04; letter-spacing:-.055em; color:var(--slate-950); }
.section-header p { margin:0; color:var(--slate-600); font-size:1.08rem; }

.feature-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background:white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}
.icon-bubble {
  width: 52px; height: 52px; border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: var(--blue-700);
  font-size:1.35rem;
  margin-bottom:16px;
}
.feature-card h3 { margin:0 0 8px; font-size:1.12rem; letter-spacing:-.02em; }
.feature-card p { margin:0; color:var(--slate-600); }

.split { display:grid; grid-template-columns: .92fr 1.08fr; gap:42px; align-items:center; }
.panel {
  background:white;
  border:1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-head { padding:24px; background:linear-gradient(135deg, var(--blue-800), var(--blue-700)); color:white; }
.panel-head h3 { margin:0; font-size:1.5rem; letter-spacing:-.04em; }
.panel-body { padding:24px; }
.check-list { list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.check-list li { display:flex; gap:12px; align-items:flex-start; color:var(--slate-700); }
.check-list li::before { content:"✓"; flex:0 0 26px; width:26px; height:26px; border-radius:8px; display:grid; place-items:center; background:#dcfce7; color:#15803d; font-weight:900; }

.workflow { display:grid; gap:14px; }
.step {
  display:flex; gap:16px; align-items:flex-start;
  background:white; border:1px solid var(--slate-200); border-radius:18px; padding:18px;
}
.step-number { width:38px; height:38px; border-radius:12px; background:var(--blue-700); color:white; display:grid; place-items:center; font-weight:900; }
.step h3 { margin:0 0 4px; }
.step p { margin:0; color:var(--slate-600); }

.pro-band {
  color:white;
  background:
    radial-gradient(circle at 86% 10%, rgba(103, 232, 249, .26), transparent 32%),
    linear-gradient(135deg, var(--slate-950), var(--blue-900));
  border-radius: 36px;
  padding: 42px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.pro-band h2 { color:white; margin-top:0; }
.pro-band p { color: rgba(255,255,255,.78); }
.pro-list { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.pro-list li { background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.15); border-radius:16px; padding:14px 16px; }

.privacy-hero { padding:64px 0; background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); color:white; }
.privacy-hero h1 { margin: 0 0 12px; font-size: clamp(2.3rem, 5vw, 4.2rem); line-height:1; letter-spacing:-.06em; }
.privacy-hero p { margin:0; color:rgba(255,255,255,.78); max-width:760px; }
.legal-content { max-width: 920px; margin: 0 auto; }
.legal-content h2 { font-size:1.6rem; margin:34px 0 10px; letter-spacing:-.035em; }
.legal-content h3 { margin:22px 0 8px; }
.legal-content p, .legal-content li { color:var(--slate-600); }
.legal-card { background:white; border:1px solid var(--slate-200); border-radius:24px; padding:30px; box-shadow: 0 12px 34px rgba(15,23,42,.06); }

.footer { background: var(--slate-950); color:white; padding: 46px 0; }
.footer-grid { display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; align-items:flex-start; }
.footer p { color:rgba(255,255,255,.62); margin: 8px 0 0; }
.footer a { color:rgba(255,255,255,.82); }
.footer a:hover { color:white; }

@media (max-width: 980px) {
  .nav-links { display:none; }
  .hero-grid, .split, .pro-band { grid-template-columns: 1fr; }
  .phone-stage { min-height: 560px; }
  .phone-main { right: calc(50% - 250px); }
  .phone-back { left: calc(50% - 245px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { min-height: 68px; }
  .nav-cta .btn-outline { display:none; }
  .hero { padding: 52px 0 40px; }
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .phone-stage { min-height: 500px; transform: scale(.86); transform-origin: top center; margin-bottom:-70px; }
  .phone-main { right: calc(50% - 220px); }
  .phone-back { left: calc(50% - 200px); }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .pro-band { padding: 28px; border-radius: 24px; }
  .footer-grid { display:grid; }
}
