
:root {
  --bg: #0d0c0a;
  --bg-soft: #14120f;
  --card: #211f1a;
  --card-2: #2b2822;
  --text: #f7f2e8;
  --muted: #b8afa3;
  --line: rgba(255, 255, 255, 0.12);
  --amber: #f5a536;
  --amber-2: #ffc064;
  --amber-dark: #9a5b10;
  --paper: #f5ede0;
  --paper-text: #22170e;
  --max: 1160px;
  --radius: 24px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 16% 0%, rgba(245, 165, 54, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(245, 165, 54, 0.10), transparent 26%),
    linear-gradient(180deg, #11100d 0%, #070706 100%);
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 12, 10, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 30px rgba(245, 165, 54, 0.17);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 15px;
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.1px;
}

.btn-primary {
  color: #1b140b;
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(245, 165, 54, 0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.055);
  color: var(--text);
}

.hero {
  padding: 92px 0 74px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}

.kicker {
  color: var(--amber);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.65px;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -2.4px;
}

.hero p {
  margin: 0 0 30px;
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 165, 54, 0.22), transparent 64%);
  filter: blur(16px);
}

.phone {
  position: absolute;
  width: 244px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #111;
  box-shadow: var(--shadow);
}

.phone.one {
  z-index: 3;
  transform: rotate(-8deg) translate(-105px, -18px);
}

.phone.two {
  z-index: 2;
  width: 232px;
  opacity: 0.96;
  transform: rotate(8deg) translate(108px, 38px);
}

.phone.three {
  z-index: 4;
  width: 228px;
  transform: rotate(-2deg) translate(0, 132px);
}

.section {
  padding: 80px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title h2,
.report-card h2,
.cta h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.4px;
}

.section-title p,
.report-card p,
.cta p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.section-title p {
  margin: 0;
  font-size: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.064), rgba(255,255,255,0.035));
  box-shadow: 0 12px 38px rgba(0,0,0,0.22);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(245, 165, 54, 0.15);
  color: var(--amber-2);
  font-weight: 900;
  font-size: 22px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--amber);
  color: #1a140c;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.shot {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

.shot img {
  border-radius: 22px;
}

.report-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(245, 165, 54, 0.11), transparent),
    rgba(255,255,255,0.045);
}

.report-card p {
  font-size: 18px;
}

.report-preview {
  padding: 24px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--paper-text);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}

.report-preview h3 {
  margin: 0 0 14px;
  color: #17120a;
  font-size: 24px;
}

.report-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-weight: 760;
}

.report-disclaimer {
  margin-top: 18px;
  color: #62564a;
  font-size: 13px;
}

.cta {
  padding: 60px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 165, 54, 0.22), transparent 42%),
    rgba(255,255,255,0.045);
}

.cta h2 {
  letter-spacing: -1.5px;
}

.cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 18px;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal {
  padding: 68px 0;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
}

.legal-card h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-card code {
  padding: 2px 6px;
  border-radius: 8px;
  color: var(--amber-2);
  background: rgba(255,255,255,0.055);
}

@media (max-width: 980px) {
  .hero-grid,
  .report-card {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .workflow,
  .showcase {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .features,
  .workflow,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -50px;
  }

  .phone.one {
    transform: rotate(-8deg) translate(-82px, -18px);
  }

  .phone.two {
    transform: rotate(8deg) translate(86px, 42px);
  }

  .phone.three {
    transform: rotate(-2deg) translate(0, 120px);
  }
}
